/* Tradelia – obchodní design, barvy, designové prvky */

:root {
  --gold: #c9a227;
  --gold-light: #f5e6c8;
  --indigo: #3d348b;
  --indigo-light: #e8e6f2;
  --green: #2d6a4f;
  --green-light: #d8f3dc;
  --terracotta: #bc6c25;
  --terracotta-light: #fef3e8;
  --text: #1f2937;
  --text-muted: #6b7280;
  --bg: #fafaf9;
  --surface: #ffffff;
  --border: #e5e7eb;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap--wide {
  max-width: 1280px;
}

/* ========== HEADER – designové menu ========== */
.header {
  position: relative;
  background: linear-gradient(135deg, #faf6ed 0%, #ede8f5 45%, #e8f0ee 100%);
  box-shadow: 0 1px 0 rgba(61, 52, 139, 0.1);
}

.header-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, transparent 40%),
    linear-gradient(225deg, rgba(61, 52, 139, 0.1) 0%, transparent 45%),
    linear-gradient(315deg, rgba(45, 106, 79, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.header-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--indigo) 30%, var(--green) 65%, var(--terracotta) 100%);
  border-radius: 0 0 4px 4px;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.15rem 1.5rem;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--indigo) 0%, #5349a8 100%);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(61, 52, 139, 0.25);
  transition: box-shadow 0.2s, transform 0.2s;
}

.logo:hover .logo-mark {
  box-shadow: 0 6px 16px rgba(61, 52, 139, 0.35);
}

.logo-mark-inner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--indigo);
  transition: color 0.2s;
}

.logo:hover .logo-text {
  color: #5349a8;
}

.nav {
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  padding: 0.6rem 1.1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.4rem;
  height: 2px;
  background: var(--indigo);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--indigo);
  background: var(--indigo-light);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--indigo);
  background: var(--indigo-light);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.lang-switcher {
  margin-left: auto;
  display: flex;
  gap: 0;
  padding: 3px;
  background: var(--border);
  border-radius: 12px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.lang-btn {
  width: 38px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 1.15rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.lang-btn.active {
  background: var(--surface);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.lang-flag {
  display: block;
  width: 28px;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 3px;
  pointer-events: none;
}

.lang-btn[data-lang="en"] .lang-flag {
  aspect-ratio: 2/1;
  width: 28px;
}

@media (max-width: 640px) {
  .header-inner {
    gap: 1rem;
  }

  .nav {
    order: 3;
    width: 100%;
  }
}

/* ========== INTRO ========== */
.intro {
  padding: 2.5rem 0 3rem;
  position: relative;
}

.intro-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 720px) {
  .intro-wrap {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .intro-africa {
    width: 120px;
    height: 144px;
    opacity: 0.28;
  }
}

.intro-content {
  position: relative;
}

.intro-africa {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 240px;
  opacity: 0.35;
  pointer-events: none;
  color: var(--indigo);
}

.intro-africa-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top right;
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.3;
  margin: 0 0 1rem;
  max-width: 28ch;
}

.intro-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 52ch;
  line-height: 1.65;
}

.intro-text--secondary {
  margin-top: 0.75rem;
}

.intro-highlight-wrap {
  margin-top: 2rem;
}

.intro-highlight {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--indigo);
  background: var(--indigo-light);
  border-left: 4px solid var(--indigo);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 42ch;
  line-height: 1.45;
  box-shadow: 0 2px 8px rgba(61, 52, 139, 0.12);
}

.intro-highlight--full {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.intro-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 40ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.intro-actions {
  margin-top: 1.5rem;
}

.btn-primary {
  margin-top: 0;
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 2px 12px rgba(61, 52, 139, 0.35);
}

.btn-primary:hover {
  background: var(--indigo-dark, #342d6e);
  box-shadow: 0 4px 16px rgba(61, 52, 139, 0.4);
}

.intro-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 1.25rem;
}

.intro-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  max-width: none;
}

.intro-experience {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--indigo-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 8px rgba(61, 52, 139, 0.08);
}

.intro-experience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

.intro-experience-text {
  margin: 0;
}

.intro-experience-line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.4;
}

.intro-experience-line + .intro-experience-line {
  margin-top: 0.25rem;
}

.intro-experience-line--check {
  color: var(--green);
}

.intro-pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--indigo);
}

.intro-pillar-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.intro-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 348;
  object-fit: cover;
  object-position: center top;
}

.intro-caption {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--indigo-light);
  text-align: center;
}

/* ========== SEKCE – společné ========== */
.section {
  padding: 2.5rem 0;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.section-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.section-dot--gold { background: var(--gold); }
.section-dot--indigo { background: var(--indigo); }
.section-dot--green { background: var(--green); }
.section-dot--terracotta { background: var(--terracotta); }

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin: 0;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

/* Látky – fialový nádech (stejný styl jako Komodity) */
.section-latky {
  background: linear-gradient(180deg, var(--indigo-light) 0%, transparent 100%);
  border-radius: 0 0 24px 24px;
  margin: 0 1rem;
  padding: 2.5rem 1.5rem 3rem;
}

/* Komodity – karty s barvou */
.section-commodities {
  background: linear-gradient(180deg, var(--gold-light) 0%, transparent 100%);
  border-radius: 0 0 24px 24px;
  margin: 0 1rem;
  padding: 2.5rem 1.5rem 3rem;
}

.commodity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.commodity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  font-weight: 500;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
}

.commodity-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.2);
}

.commodity-icon {
  font-size: 1.25rem;
}

/* Látky – karta s pruhem */
.section-fabrics .section-desc {
  margin-bottom: 1rem;
}

.fabrics-card {
  position: relative;
  background: linear-gradient(135deg, var(--indigo) 0%, #5a4da6 100%);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  overflow: hidden;
}

.fabrics-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta), var(--green));
  opacity: 0.9;
}

.fabrics-note {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* O nás – světle šedé pozadí */
.section-about {
  background: #f7f8fa;
  border-radius: 0 0 24px 24px;
  margin: 0 1rem;
  padding: 2.5rem 1.5rem 1.25rem;
}

.section-title--about {
  margin-bottom: 0.75rem;
}

/* Stránka Kontakt – pouze kontaktní údaje */
.main-contact {
  padding: 2.5rem 0 3rem;
}

/* Stránka Látky */
.main-latky {
  padding: 2.5rem 0 3rem;
}

/* Stránka Komodity */
.main-komodity {
  padding: 2.5rem 0 3rem;
}

.section-desc--lead {
  font-size: 1.1rem;
  max-width: 70ch;
}

.latky-block {
  margin-top: 2rem;
}

.latky-h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--indigo);
  margin: 0 0 0.75rem;
}

.latky-block p {
  margin: 0 0 0.75rem;
  line-height: 1.65;
}

.latky-block p:last-child {
  margin-bottom: 0;
}

.latky-list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.5rem;
  line-height: 1.65;
}

.latky-list li {
  margin-bottom: 0.5rem;
}

.latky-list--numbered {
  list-style: decimal;
}

.latky-list--compact li {
  margin-bottom: 0.2rem;
}

.latky-subtitle {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.latky-block--business {
  padding: 1.25rem 1.5rem;
  background: var(--gold-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.latky-cta {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: var(--indigo-light);
  border-radius: var(--radius);
}

.latky-cta-text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.latky-cta .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--indigo);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}

.latky-cta .btn:hover {
  background: #5349a8;
}

.latky-block--note {
  padding: 1.25rem 1.5rem;
  background: var(--indigo-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--indigo);
}

.latky-block--note p {
  margin: 0;
}

/* Obrázky na stránce Látky */
.latky-figure {
  margin: 1.5rem 0;
}

.latky-figure--lead {
  margin: 2rem 0 2.5rem;
}

.latky-figure--lead img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.latky-figure--inline {
  margin: 1rem 0 1.5rem;
}

.latky-figure--inline img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.latky-figure--right {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 560px) {
  .latky-figure--right {
    float: none;
    margin-left: 0;
  }

  .latky-figure--inline img {
    max-width: 100%;
  }
}

.latky-figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Kontakt – karta */
.section-contact {
  padding-top: 0;
}
.section-contact .section-desc {
  margin-bottom: 1rem;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--terracotta);
  max-width: 420px;
}

.contact-card--grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 100%;
  width: 100%;
}

.contact-left {
  min-width: 0;
}

.contact-right {
  min-width: 0;
}

.contact-form-wrap {
  min-width: 0;
}

.contact-register {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius);
  border-left: 3px solid var(--indigo);
}

@media (max-width: 800px) {
  .contact-card--grid {
    grid-template-columns: 1fr;
  }

  .contact-right {
    display: block;
    overflow: visible;
  }

  .contact-section,
  .contact-section-cz,
  .contact-section-sk,
  .contact-section-fr {
    display: block;
    visibility: visible;
  }
}

.contact-label {
  margin: 1rem 0 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.contact-label:first-of-type {
  margin-top: 0;
}

.contact-name {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text);
}

.contact-line {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-icon {
  display: inline-block;
  margin-right: 0.35rem;
  font-style: normal;
}

.contact-card a {
  color: var(--indigo);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-divider {
  margin: 1rem 0 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Sekce CZ a FR – vlajka + text */
.contact-section {
  display: block;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-section:last-child {
  margin-bottom: 0;
}

.contact-section-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
}

.contact-flag {
  display: block;
  width: 36px;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 3px;
  object-fit: cover;
}

.contact-section-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

/* Kontaktní formulář */
.contact-form-wrap {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  align-self: start;
}

.contact-form-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
}

.contact-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 0.65rem;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--surface);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 2px rgba(61, 52, 139, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form-row {
  margin-bottom: 1rem;
}

.contact-form-row:last-child {
  margin-bottom: 0;
}

.contact-form-row--submit {
  margin-top: 1.25rem;
}

.contact-form-submit {
  padding: 0.6rem 1.5rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--indigo);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form-submit:hover {
  background: #5349a8;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  margin-top: 0;
  padding: 1.25rem 0;
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-line {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--indigo), var(--green), var(--terracotta));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
}

.footer-lang {
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-inner {
    gap: 1rem;
    padding: 1rem 1rem;
  }

  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .lang-btn {
    width: 42px;
    min-height: 44px;
  }

  .intro {
    padding: 1.5rem 0 2rem;
  }

  .intro-highlight {
    padding: 1rem;
    font-size: 1rem;
  }

  .intro-actions-row {
    gap: 1rem;
  }

  .intro-pillar {
    padding: 0.5rem 0;
  }

  .section-commodities,
  .section-about,
  .section-latky {
    margin: 0 0.5rem;
    padding: 1.5rem 1rem 1.25rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 48px;
    padding: 0.75rem 0.875rem;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-form-submit {
    min-height: 48px;
    padding: 0.75rem 1.5rem;
  }

  .contact-card--grid {
    max-width: 100%;
  }

  .contact-right {
    display: block;
    overflow: visible;
  }

  .contact-section-sk {
    display: block;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .header-inner {
    padding: 0.875rem 0.875rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .intro-title {
    font-size: 1.25rem;
  }

  .section-commodities,
  .section-about,
  .section-latky {
    margin: 0 0.375rem;
    padding: 1.25rem 0.75rem 1rem;
    border-radius: 0 0 16px 16px;
  }

  .contact-card--grid {
    gap: 1.5rem;
  }

  .contact-card,
  .contact-form-wrap {
    padding: 1.25rem 1rem;
  }

  .latky-block {
    padding: 1rem 0;
  }

  .latky-h2 {
    font-size: 1.2rem;
  }
}
