/* ============================================================
   Kronoshop Retail — site design system
   Warm, trusted, premium. Light = default; dark via
   <html data-theme="dark">. Dark base is the warm brown
   carried over from the flagship hero. Geist throughout.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
  --font-ui: 'Geist', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* warm light palette (default) */
  --ink:       #1c1714;
  --ink-2:     #4b443c;
  --muted:     #8a8073;
  --faint:     #b3a99a;
  --bg:        #faf7f2;
  --bg-2:      #f2ebe0;
  --surface:   #ffffff;
  --surface-2: #fffdfa;
  --border:    #e9e1d4;
  --border-2:  #dccfbc;

  /* dark-accent band (used on light pages) = flagship warm brown */
  --band:      #211d18;
  --band-2:    #2d2823;
  --on-band:   #f4efe6;
  --on-band-2: #cfc7ba;
  --band-line: rgba(255,255,255,0.10);

  --amber:      #f59e0b;
  --amber-deep: #c9760a;   /* text-safe on light */
  --amber-soft: #fbbf24;
  --amber-tint: rgba(245,158,11,0.12);
  --amber-line: rgba(245,158,11,0.30);
  --wa:        #25d366;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(50,35,12,.05);
  --shadow-md: 0 1px 2px rgba(50,35,12,.04), 0 10px 28px rgba(50,35,12,.07);
  --shadow-lg: 0 2px 4px rgba(50,35,12,.05), 0 24px 60px rgba(50,35,12,.12);
  --shadow-amber: 0 10px 30px rgba(245,158,11,.22);

  --tracking-micro: 0.22em;
  --maxw: 1180px;
}

html[data-theme="dark"] {
  --ink:       #f4efe6;
  --ink-2:     #cabfb0;
  --muted:     #968b7c;
  --faint:     #6b6256;
  --bg:        #1a1611;   /* warm brown base */
  --bg-2:      #211c16;
  --surface:   #252019;
  --surface-2: #2c2620;
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(255,255,255,0.16);

  --band:      #120e0a;   /* deepest brown for bands */
  --band-2:    #1b1611;
  --on-band:   #f4efe6;
  --on-band-2: #cabfb0;
  --band-line: rgba(255,255,255,0.08);

  --amber-deep: #f5b13d;
  --amber-tint: rgba(245,158,11,0.15);
  --amber-line: rgba(245,158,11,0.28);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 1px 2px rgba(0,0,0,.4), 0 14px 34px rgba(0,0,0,.5);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.5), 0 30px 70px rgba(0,0,0,.6);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px; line-height: 1.55;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .3s ease, color .3s ease;
}
h1, h2, h3, h4, p, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 880px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--amber); color: #1c1714; padding: 12px 16px; z-index: 200; font-weight: 600; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; }

/* ---------- inline icons ---------- */
.ms {
  font-family: 'Material Symbols Outlined';
  font-weight: 400; font-style: normal; line-height: 1;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block; vertical-align: middle; user-select: none;
}
html.fonts-pending .ms { visibility: hidden; }
.ic { width: 1.05em; height: 1.05em; fill: currentColor; display: inline-block; vertical-align: -0.18em; flex: 0 0 auto; }
.ic-wa { color: var(--wa); }

/* ---------- micro / labels ---------- */
.micro {
  font: 900 11px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: var(--tracking-micro);
  color: var(--muted);
}
.micro--amber { color: var(--amber-deep); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--amber); }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: .02em; }
.stat-num { font: 800 inherit/1 var(--font-ui); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

/* ---------- ring mark + logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-img { height: 54px; width: auto; display: block; }
.logo--foot .logo-img { height: 80px; }
.logo__word { font: 800 21px/1 var(--font-ui); letter-spacing: -.02em; }
.logo__word .k { color: var(--amber-deep); }
.logo__word .s { color: var(--ink); }
.logo__tag { display: block; font: 900 8.5px/1 var(--font-ui); text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-top: 5px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 15px/1 var(--font-ui);
  padding: 13px 20px; border-radius: var(--r-md);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s, background .15s, border-color .15s, box-shadow .15s, color .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.975); }
.btn .ms { font-size: 19px; }
.btn--primary { background: var(--amber); color: #1c1714; box-shadow: var(--shadow-amber); }
.btn--primary:hover { background: #ffae1f; }
.btn--dark { background: var(--band); color: var(--on-band); }
.btn--dark:hover { background: var(--band-2); }
.btn--outline { border-color: var(--border-2); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #20bd5b; }
.btn--wa .ic { color: #fff; }
.btn--ghost { color: var(--ink); padding-left: 6px; padding-right: 6px; }
.btn--ghost:hover { color: var(--amber-deep); }
.btn--sm { padding: 9px 14px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--block { width: 100%; }
/* on band backgrounds */
.on-band .btn--outline { border-color: rgba(255,255,255,.25); color: var(--on-band); }
.on-band .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* ---------- pills ---------- */
.pill { display: inline-flex; align-items: center; gap: 7px; font: 600 12.5px/1 var(--font-ui); padding: 8px 13px; border-radius: var(--r-pill); border: 1px solid var(--border-2); color: var(--ink-2); background: var(--surface); }
.pill .ms { font-size: 16px; }
.pill--amber { background: var(--amber-tint); border-color: var(--amber-line); color: var(--amber-deep); }

/* ---------- placeholder ---------- */
.ph { position: relative; display: grid; place-items: center; background: repeating-linear-gradient(135deg, var(--bg-2) 0 11px, var(--surface-2) 11px 22px); border: 1px solid var(--border-2); border-radius: var(--r-lg); overflow: hidden; }
.ph__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; padding: 5px 11px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--border-2); color: var(--muted); }

/* ---------- section scaffolding ---------- */
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--bg-2); }
.rule { height: 1px; background: var(--border); border: 0; }
.sec-head { margin-bottom: 44px; }
.sec-head h2 { font: 800 40px/1.08 var(--font-ui); letter-spacing: -.025em; }
.sec-head p { color: var(--ink-2); font-size: 17px; max-width: 56ch; margin-top: 14px; }
.sec-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.sec-head--split p { margin-top: 0; max-width: 42ch; }
@media (max-width: 760px){ .sec-head h2{ font-size: 30px; } .sec-head--split{ flex-direction: column; align-items: flex-start; } }

/* ============================================================
   UTILITY STRIP + HEADER
   ============================================================ */
.util { background: var(--band); color: var(--on-band-2); font-size: 12.5px; }
.util__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 38px; }
.util__l { display: flex; align-items: center; gap: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.util__l .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); flex: 0 0 auto; }
.util__r { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.util__r a { display: inline-flex; align-items: center; gap: 6px; color: var(--on-band-2); }
.util__r a:hover { color: #fff; }
.util__r .ms { font-size: 16px; color: var(--amber-soft); }
.util__r .ic { color: var(--amber-soft); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding-left: 2px;
}
.lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  border: 1px solid var(--band-line);
  color: var(--on-band-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lang-switch__link:first-child {
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}
.lang-switch__link:last-child {
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-left: -1px;
}
.lang-switch__link:hover,
.lang-switch__link[aria-current="true"] {
  background: var(--amber);
  border-color: var(--amber);
  color: #1c1714;
}

.site-head { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.site-head__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; font-size: 15px; color: var(--ink-2); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--amber-deep); }
.head-cta { display: flex; align-items: center; gap: 10px; }
.theme-toggle { width: 40px; height: 40px; border-radius: var(--r-pill); border: 1.5px solid var(--border-2); background: transparent; display: grid; place-items: center; cursor: pointer; color: var(--ink-2); transition: border-color .15s, color .15s; flex: 0 0 auto; }
.theme-toggle:hover { border-color: var(--ink); color: var(--ink); }
.theme-toggle .ms { font-size: 20px; }
html:not([data-theme="dark"]) .theme-toggle .ms-dark { display: none; }
html[data-theme="dark"] .theme-toggle .ms-light { display: none; }

/* dark-mode toggle living in the utility bar */
.util .theme-toggle {
  width: auto; height: auto; border: 0; background: transparent;
  color: var(--on-band-2); padding: 0 16px 0 0; margin-right: 2px;
  border-right: 1px solid var(--band-line); border-radius: 0;
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
}
.util .theme-toggle:hover { color: #fff; }
.util .theme-toggle .ms { font-size: 16px; color: var(--amber-soft); }
.util .theme-toggle .tt-label { font-size: 12.5px; font-weight: 500; }
.hamburger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1.5px solid var(--border-2); background: transparent; cursor: pointer; color: var(--ink); place-items: center; }
.hamburger .ms { font-size: 24px; }

/* ============================================================
   HERO (Direction A)
   ============================================================ */
.hero { padding: 72px 0 80px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font: 800 60px/1.04 var(--font-ui); letter-spacing: -.028em; text-wrap: balance; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--amber-deep); }
.hero__sub { font-size: 18.5px; line-height: 1.6; color: var(--ink-2); max-width: 40ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__media { position: relative; }
.hero__ph { aspect-ratio: 4/5; width: 100%; }
.hero__ring { position: absolute; top: -26px; right: -26px; width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--amber); border-bottom-color: var(--border-2); transform: rotate(-30deg); }
.hero__badge { position: absolute; left: -28px; bottom: 42px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.hero__badge .n { font: 800 34px/1 var(--font-ui); color: var(--amber-deep); letter-spacing: -.02em; }
.hero__badge .l { font-size: 13px; color: var(--ink-2); line-height: 1.3; max-width: 14ch; }
@media (max-width: 920px){
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .hero__media { max-width: 460px; }
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.proof__row { display: grid; grid-template-columns: repeat(5, 1fr); }
.proof__i { padding: 30px 22px; text-align: center; border-right: 1px solid var(--border); }
.proof__i:last-child { border-right: 0; }
.proof__n { font: 800 30px/1 var(--font-ui); letter-spacing: -.02em; font-variant-numeric: tabular-nums; margin-bottom: 8px; }
.proof__n .u { color: var(--amber-deep); }
.proof__l { font-size: 12.5px; color: var(--muted); line-height: 1.35; }
@media (max-width: 760px){ .proof__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } .proof__row[style] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .proof__i:nth-child(2n){ border-right: 0; } .proof__i { min-width: 0; border-bottom: 1px solid var(--border); } }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pillar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; transition: transform .16s, box-shadow .16s, border-color .16s; }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.pillar__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--amber-tint); display: grid; place-items: center; margin-bottom: 16px; }
.pillar__ic .ms { font-size: 24px; color: var(--amber-deep); }
.pillar h3 { font-size: 16px; font-weight: 700; margin-bottom: 7px; letter-spacing: -.01em; }
.pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 1000px){ .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   CATEGORY GRID (Direction B — image-topped tiles)
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); transition: transform .16s, box-shadow .16s; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat__media { aspect-ratio: 16/10; width: 100%; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; }
.cat__body { padding: 22px 24px 26px; }
.cat__body .ms { color: var(--amber-deep); font-size: 22px; }
.cat__body h3 { font-size: 19px; font-weight: 700; margin: 10px 0 6px; letter-spacing: -.01em; }
.cat__body p { font-size: 13.5px; color: var(--muted); }
@media (max-width: 920px){ .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .cat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MARKETPLACE TILES
   ============================================================ */
.mkt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mkt { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; transition: transform .16s, box-shadow .16s, border-color .16s; }
.mkt:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--amber-line); }
.mkt__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--amber-tint); display: grid; place-items: center; margin-bottom: 16px; }
.mkt__ic .ms { font-size: 24px; color: var(--amber-deep); }
.mkt strong { display: block; font-size: 17px; margin-bottom: 7px; }
.mkt p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 920px){ .mkt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .mkt-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding-top: 14px; }
.step__num { font: 800 16px/1 var(--font-ui); color: #1c1714; background: var(--amber); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.01em; }
.step p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   THREE-COLUMN (repair) + media
   ============================================================ */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.trio__c .ms { font-size: 26px; color: var(--amber-deep); }
.trio__c h3 { font-size: 18px; font-weight: 700; margin: 12px 0 8px; }
.trio__c p { color: var(--ink-2); font-size: 14px; line-height: 1.6; }
@media (max-width: 760px){ .trio { grid-template-columns: 1fr; } }

/* ============================================================
   TEAM STRIP
   ============================================================ */
.team-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-bottom: 32px; }
.team-card { text-align: left; }
.team-card .ph { aspect-ratio: 4/5; width: 100%; margin-bottom: 14px; }
.team-card strong { display: block; font-size: 16px; }
.team-card span { font-size: 13px; color: var(--muted); }
@media (max-width: 860px){ .team-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px){ .team-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   BRANCH CARDS
   ============================================================ */
.branches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.branch { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; }
.branch__media { aspect-ratio: 16/9; width: 100%; border: 0; border-radius: 0; border-bottom: 1px solid var(--border); }
.branch__body { padding: 28px; }
.branch__body h3 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.branch__sub { color: var(--amber-deep); font-size: 13.5px; font-weight: 600; margin: 6px 0 18px; }
.branch__meta { display: flex; flex-direction: column; gap: 7px; font-size: 14px; color: var(--ink-2); margin-bottom: 20px; }
.branch__meta .row { display: flex; align-items: center; gap: 10px; }
.branch__meta .ms { font-size: 18px; color: var(--muted); }
.branch__actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 760px){ .branches { grid-template-columns: 1fr; } }

/* ============================================================
   CLOSER BAND
   ============================================================ */
.closer { background: var(--band); color: var(--on-band); padding: 72px 0; }
.closer__in { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.closer h2 { font: 800 38px/1.1 var(--font-ui); letter-spacing: -.02em; color: #fff; max-width: 18ch; }
.closer__cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 820px){ .closer__in { flex-direction: column; align-items: flex-start; } .closer h2 { font-size: 30px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: var(--band-2); color: var(--on-band-2); padding: 64px 0 28px; }
.site-foot a { color: var(--on-band-2); }
.site-foot a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.foot-col h4 { font: 900 10px/1 var(--font-ui); text-transform: uppercase; letter-spacing: var(--tracking-micro); color: var(--on-band-2); margin-bottom: 16px; opacity: .7; }
.foot-col .logo__word .s { color: #fff; }
.foot-col p { font-size: 14px; line-height: 1.6; color: var(--on-band-2); margin-top: 14px; max-width: 32ch; }
.foot-col li { margin-bottom: 9px; font-size: 14px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--band-line); font-size: 13px; color: var(--on-band-2); flex-wrap: wrap; }
@media (max-width: 860px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE NAV
   ============================================================ */
/* in-menu CTA links: hidden on desktop, shown when the mobile menu opens */
.nav__cta { display: none; }

@media (max-width: 900px){
  .nav, .head-cta .btn { display: none; }
  .hamburger { display: grid; }
  .nav.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--surface);
    border-bottom: 1px solid var(--border); padding: 6px 0 12px;
    box-shadow: var(--shadow-lg); max-height: calc(100vh - 112px); overflow-y: auto;
  }
  .nav.open a {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 22px; width: 100%; font-size: 16px; font-weight: 500;
    border-left: 3px solid transparent;
  }
  .nav.open a + a:not(.nav__cta) { border-top: 1px solid var(--border); }
  .nav.open a:hover { color: var(--amber-deep); background: var(--bg-2); }
  /* highlight the page you're on — "you are here" */
  .nav.open a[aria-current="page"] {
    color: var(--amber-deep); font-weight: 700;
    background: var(--amber-tint); border-left-color: var(--amber);
  }
  .nav.open a[aria-current="page"]::after {
    content: ""; margin-left: auto; width: 8px; height: 8px;
    border-radius: 50%; background: var(--amber); flex: 0 0 auto;
  }

  /* conversion CTAs inside the open menu */
  .nav.open .nav__cta {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    margin: 10px 22px 0; padding: 14px 18px; width: auto;
    border-radius: var(--r-md); font: 600 15px/1 var(--font-ui);
    border-left: 0;
  }
  .nav.open .nav__cta::after { content: none; }
  .nav.open .nav__cta--wa { background: var(--wa); color: #fff; }
  .nav.open .nav__cta--wa .ic { color: #fff; }
  .nav.open .nav__cta--quote { background: var(--amber); color: #1c1714; box-shadow: var(--shadow-amber); }

  .util__l span:not(.dot) { font-size: 11.5px; }
}
@media (max-width: 620px){
  .util .theme-toggle .tt-label { display: none; }
  .util .theme-toggle { padding-right: 12px; margin-right: 0; }
  .lang-switch__link { min-width: 31px; font-size: 10px; }
  .util__r { gap: 14px; }
  .util__l { font-size: 11px; }
}
/* very small: free up the contact links by dropping the location marquee */
@media (max-width: 480px){
  .util__l { display: none; }
  .util__row { justify-content: flex-end; }
  .util__r { gap: 16px; font-size: 12px; }
  .util__r a span:last-child { display: inline; }
}

/* ============================================================
   MOBILE POLISH — spacing, gutters, full-width tap targets
   ============================================================ */
@media (max-width: 560px){
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }
  .sec-head { margin-bottom: 30px; }
  .hero { padding: 48px 0 56px; }
  .hero__ring { top: -18px; right: 12px; width: 96px; height: 96px; }
  .hero__badge { left: 12px; bottom: 28px; max-width: calc(100% - 24px); }
  .closer { padding: 56px 0; }
  .site-foot { padding: 48px 0 24px; }
  /* full-width, comfortably tappable buttons in the main CTA clusters */
  .hero__cta, .phero__cta, .closer__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__cta .btn, .phero__cta .btn, .closer__cta .btn { width: 100%; }
  .btn--lg { padding: 15px 22px; }
  .closer h2 { font-size: 27px; }
}
