/* ==========================================================================
   Aegean Sun — dried fruit marketing site
   Single stylesheet for every page.
   ========================================================================== */

:root {
  --fig:        #5b2c53;
  --fig-dark:   #3d1c38;
  --fig-light:  #8a4c7f;
  --apricot:    #e08b3c;
  --apricot-lt: #f4b76a;
  --leaf:       #4a6b3d;
  --cream:      #fdf8f1;
  --sand:       #f3e7d7;
  --ink:        #2b2320;
  --ink-soft:   #6b5f57;
  --white:      #ffffff;
  --border:     #e6d8c6;

  --shadow-sm: 0 1px 3px rgba(43, 35, 32, .08);
  --shadow-md: 0 8px 24px rgba(43, 35, 32, .10);
  --shadow-lg: 0 20px 48px rgba(43, 35, 32, .14);

  --radius:    14px;
  --radius-sm: 8px;
  --wrap:      1140px;

  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--fig); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--fig-dark);
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--apricot);
  margin-bottom: .6em;
}

.lead { font-size: 1.1rem; color: var(--ink-soft); }

.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--apricot); outline-offset: 3px; }

.btn--primary { background: var(--fig); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--fig-dark); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--fig); border-color: var(--fig); }
.btn--ghost:hover { background: var(--fig); color: var(--white); }

.btn--light { background: var(--white); color: var(--fig-dark); }
.btn--light:hover { background: var(--sand); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 241, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}
.menu { margin-left: auto; }   /* menu + language switcher sit right */

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--fig-dark);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--apricot);
  font-weight: 700;
}

.nav__toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  cursor: pointer;
  line-height: 0;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fig-dark);
  border-radius: 2px;
}
.nav__toggle span + span { margin-top: 5px; }

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > li { position: relative; }

.menu a,
.menu__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  font-size: .96rem;
  font-weight: 600;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.menu a:hover,
.menu__button:hover { background: var(--sand); color: var(--fig-dark); }

.menu a[aria-current="page"],
.menu li.is-active > a,
.menu li.is-active > .menu__button { color: var(--fig); box-shadow: inset 0 -2px 0 var(--apricot); }

.menu__caret { transition: transform .2s ease; }
.has-dropdown.is-open .menu__caret { transform: rotate(180deg); }

.dropdown {
  --drop-gap: 6px;
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + var(--drop-gap));
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: none;
}
.has-dropdown.is-open > .dropdown { display: block; }

/* Bridges the gap between button and menu. Without it the pointer drops into
   dead space on the way down, the menu closes, and the click lands on nothing. */
.has-dropdown > .dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: var(--drop-gap);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  font-weight: 600;
  font-size: .94rem;
}
.dropdown a small {
  display: block;
  font-weight: 400;
  font-size: .8rem;
  color: var(--ink-soft);
}

.nav__cta { margin-left: 8px; }

/* ---------- Language switcher ---------- */
/* A flag button showing the current language; the other one sits underneath. */

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

.lang-switch__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--ink);
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  transition: background .18s ease, border-color .18s ease;
}
.lang-switch__button:hover { background: var(--sand); border-color: var(--sand); }
.lang-switch__button:focus-visible { outline: 3px solid var(--apricot); outline-offset: 2px; }

.lang-flag {
  height: 14px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(43, 35, 32, .18);
}

/* Stays anchored under the flag at every width, including the stacked header. */
.lang-switch .dropdown {
  --drop-gap: 8px;
  position: absolute;
  top: calc(100% + var(--drop-gap));
  right: 0;
  left: auto;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.lang-switch .dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.lang-switch .dropdown a:hover { background: var(--sand); color: var(--fig-dark); }
.lang-switch .dropdown a[aria-current="true"] { color: var(--fig); background: var(--sand); }
.lang-switch .dropdown a[aria-current="true"]::after {
  content: "";
  width: 13px;
  height: 8px;
  margin-left: auto;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -2px);
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--fig-dark) 0%, var(--fig) 55%, var(--fig-light) 100%);
  color: var(--white);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,183,106,.30), transparent 68%);
  pointer-events: none;
}
.hero h1 { color: var(--white); }
.hero p { color: rgba(255,255,255,.88); }
/* Three rows on the left (eyebrow / copy / stats) so the photo can start on
   exactly the same line as the h1 rather than at a hand-tuned offset. */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: auto auto auto;
  column-gap: 52px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow { grid-column: 1; grid-row: 1; }
.hero__copy    { grid-column: 1; grid-row: 2; }
.hero__grid > .hero-stats { grid-column: 1; grid-row: 3; }
.hero__copy > :last-child { margin-bottom: 0; }
.hero__art {
  grid-column: 2;
  grid-row: 2;          /* top edge = top of the h1, bottom edge = below the buttons */
  align-self: stretch;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sand);
}
.hero__art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;  /* keeps the stack of figs off the crop line */
}
.hero .eyebrow { color: var(--apricot-lt); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--apricot-lt);
}
.hero-stats span { font-size: .86rem; color: rgba(255,255,255,.8); }

/* ---------- Page banner (inner pages) ---------- */

.page-banner {
  background: var(--fig-dark);
  color: var(--white);
  padding: 62px 0;
}
.page-banner h1 { color: var(--white); margin-bottom: .3em; }
.page-banner p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0; }
.page-banner .eyebrow { color: var(--apricot-lt); }

.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Generic grids & cards ---------- */

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.feature__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sand);
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* The ratio lives on the image itself, so a portrait or square source is
   cropped to the card's 4:3 window instead of stretching the card. The box
   keeps a matching ratio to hold the layout if an image fails to load. */
.product-card__media { background: var(--sand); aspect-ratio: 4 / 3; }
.product-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 38%;
}
.product-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { margin-bottom: .35em; }
.product-card__body p { color: var(--ink-soft); font-size: .96rem; }
.product-card__link {
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
  color: var(--fig);
  font-size: .94rem;
}
.product-card__link:hover { text-decoration: underline; }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--leaf);
  background: rgba(74,107,61,.10);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 12px;
}

/* ---------- Format / SKU grid ---------- */

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.format-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.format-card__meta {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-bottom: 8px;
}
.format-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fig-dark);
  margin: 0 0 8px;
}
.format-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Region cards ---------- */

.region {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.region__pin { font-size: 1.6rem; line-height: 1.2; }
.region h3 { margin-bottom: .3em; }
.region p { font-size: .95rem; color: var(--ink-soft); margin: 0 0 .6em; }
.region p:last-child { margin-bottom: 0; }

/* ---------- Split / media rows ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split__art {
  border-radius: 20px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-md);
}
/* Same 4:3 window as the product cards, so a square photograph does not
   stretch the column far past the text beside it. */
.split__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.checklist { list-style: none; margin: 0 0 1.4em; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 3px var(--cream);
}

/* ---------- Spec table ---------- */

.spec-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.spec-table th { color: var(--fig-dark); font-weight: 700; }
.spec-table th[scope="row"] { width: 42%; }
.spec-table thead th { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* ---------- Steps ---------- */

.steps { counter-reset: step; display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 52px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--fig);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* ---------- Quote ---------- */

.quote {
  background: var(--white);
  border-left: 4px solid var(--apricot);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.quote blockquote { margin: 0 0 14px; font-family: var(--font-display); font-size: 1.08rem; color: var(--fig-dark); }
.quote cite { font-style: normal; font-size: .88rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--apricot) 0%, var(--apricot-lt) 100%);
  padding: 58px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: .2em; }
.cta-band p { margin: 0; color: var(--fig-dark); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 44px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 7px;
  color: var(--fig-dark);
}
.field .req { color: #b3261e; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--fig);
  box-shadow: 0 0 0 3px rgba(91,44,83,.14);
  background: var(--white);
}
.field textarea { min-height: 150px; resize: vertical; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #b3261e; background: #fdf3f2; }

.field__error {
  display: none;
  color: #b3261e;
  font-size: .84rem;
  margin-top: 6px;
}
.field.has-error .field__error { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-note { font-size: .84rem; color: var(--ink-soft); margin-top: 14px; }

.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 15px 17px;
  margin-bottom: 22px;
  font-size: .94rem;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(74,107,61,.12); border: 1px solid rgba(74,107,61,.35); color: #2f4a26; }
.form-status--err { background: #fdf3f2; border: 1px solid rgba(179,38,30,.35); color: #8c1d18; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.info-list li:last-child { border-bottom: 0; }
.info-list .info-list__icon { font-size: 1.2rem; line-height: 1.4; }
.info-list strong { display: block; color: var(--fig-dark); font-size: .93rem; }
.info-list a { color: var(--fig); }
.info-list span { color: var(--ink-soft); font-size: .93rem; }

.map-embed {
  border: 0;
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--fig-dark);
  font-family: var(--font-display);
  font-size: 1.03rem;
}
.faq details p { margin: 12px 0 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--fig-dark);
  color: rgba(255,255,255,.78);
  padding: 58px 0 26px;
  font-size: .94rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--apricot-lt); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-brand { display: flex; align-items: center; gap: 11px; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ---------- Utilities ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--fig);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero__grid { grid-template-rows: none; row-gap: 0; }
  .hero__eyebrow,
  .hero__copy,
  .hero__grid > .hero-stats,
  .hero__art { grid-column: 1; grid-row: auto; }
  .hero__art { order: -1; aspect-ratio: 3 / 2; min-height: 0; margin-bottom: 34px; }
  .grid--4, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav { flex-wrap: wrap; }
  .nav__toggle { display: block; }
  .nav { gap: 12px; }
  .lang-switch { order: 3; margin-left: auto; padding-left: 0; border-left: 0; }
  .lang-switch .dropdown { display: none; }
  .lang-switch.is-open > .dropdown { display: block; }
  .nav__toggle { order: 4; }
  .menu { order: 5; margin-left: 0; }
  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 0 18px;
    border-top: 1px solid var(--border);
  }
  .menu.is-open { display: flex; }
  /* scoped to the nav menu: the language button must not stretch */
  .menu a, .menu .menu__button { width: 100%; justify-content: space-between; padding: 12px 10px; }
  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--border);
    border-radius: 0;
    margin: 2px 0 6px 12px;
    min-width: 0;
    background: transparent;
  }
  .has-dropdown.is-open > .dropdown { display: block; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { display: block; text-align: center; }
}

@media (max-width: 360px) {
  .nav { gap: 8px; }
  .brand { font-size: 1rem; gap: 8px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__sub { font-size: .56rem; }
  .lang-switch__button { padding: 7px 7px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  /* Flag alone keeps the header on one row; the code stays for screen readers. */
  .lang-switch__button { padding: 7px 9px; gap: 6px; }
  .lang-switch__button > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .section { padding: 54px 0; }
  .grid--2, .grid--3, .grid--4, .steps, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 58px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
