/* =====================================================================
   NUTRIVERSE — sistem desain
   Tema terang saja. Hijau tua sebagai warna utama, latar putih hangat.
   Enam warna kategori pangan sudah diuji: pasangan bertetangga terpisah
   ΔE 9.3 pada simulasi deutan dan ΔE 17.3 pada penglihatan normal
   (OKLab ×100). URUTAN SLOTNYA MENGIKAT — jangan diacak.
   ===================================================================== */

:root {
  /* permukaan */
  --bg: #FAF7F0;
  --surface: #FFFFFF;
  --sunken: #F1EDE2;
  --tint: #EBF3EC;
  --outline: #DFD9CB;
  --track: #E8E2D5;

  /* merek */
  --primary: #125B3F;
  --primary-strong: #0B4630;
  --primary-soft: #E3EFE6;
  --on-primary: #F7FBF6;
  --secondary: #7FB93B;
  --accent: #E4922B;
  --accent-soft: #FDF1DC;

  /* tinta */
  --ink: #1A211C;
  --ink-soft: #48524A;
  --ink-muted: #616B63;

  /* enam kategori pangan (urutan slot mengikat) */
  --cat-karbo: #A98235;
  --cat-perairan: #0E9CA2;
  --cat-hewani: #BE7353;
  --cat-nabati: #8F7BC4;
  --cat-sayur: #66995B;
  --cat-buah: #B76C9F;

  /* bentuk */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 999px;

  /* jarak */
  --s-3xs: 4px;
  --s-2xs: 8px;
  --s-xs: 12px;
  --s-sm: 16px;
  --s-md: 24px;
  --s-lg: 32px;
  --s-xl: 48px;
  --s-2xl: 72px;
  --s-3xl: 112px;
  --content: 1200px;

  /* kedalaman: garis dan latar, bukan bayangan tebal */
  --sh-card: 0 1px 2px rgba(26, 33, 28, .06);
  --sh-float: 0 8px 24px rgba(26, 33, 28, .10);

  /* huruf */
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 68px;
}
/* ---------- reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: clip; /* clip, bukan hidden: sticky header tetap bekerja */
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 60;
  background: var(--primary); color: var(--on-primary);
  padding: 10px 18px; border-radius: var(--r-md); text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- tipografi ----------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; }
.d-xl { font-size: clamp(2.35rem, 6.1vw, 4.5rem); font-weight: 700; line-height: 1.02; letter-spacing: -.03em; }
.d-lg { font-size: clamp(1.85rem, 4vw, 3rem); font-weight: 700; line-height: 1.08; letter-spacing: -.022em; }
.h-md { font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.18; }
.h-sm { font-size: 1.375rem; line-height: 1.3; letter-spacing: -.01em; }
.t-sm { font-size: 1.0625rem; font-weight: 600; line-height: 1.45; font-family: var(--font-body); }
.b-lg { font-size: 1.1875rem; line-height: 1.65; }
.b-sm { font-size: .9375rem; line-height: 1.55; }
.micro { font-size: .75rem; font-weight: 500; letter-spacing: .06em; line-height: 1.3; }
.eyebrow {
  font-size: .8125rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary);
}
.data-value {
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  font-size: clamp(2.1rem, 4.4vw, 3.25rem); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.data-label { font-size: .875rem; font-weight: 500; line-height: 1.4; }
.tnum { font-variant-numeric: tabular-nums; }
.soft { color: var(--ink-soft); }
.muted { color: var(--ink-muted); }
.green { color: var(--primary); }
.prose { max-width: 68ch; }
/* ---------- tata letak ---------------------------------------------- */
.wrap { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: var(--s-md); }
.sec { padding-block: var(--s-3xl); }
.sec--tight { padding-block: var(--s-2xl); }
.sec--surface { background: var(--surface); border-block: 1px solid var(--outline); }
.sec--tint { background: var(--tint); border-block: 1px solid var(--outline); }
.sec-head { max-width: 68ch; }
.sec-head h1, .sec-head h2 { margin-top: var(--s-xs); }
.sec-head p { margin-top: var(--s-sm); color: var(--ink-soft); font-size: 1.1875rem; }

.grid { display: grid; gap: var(--s-md); }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; gap: var(--s-xl); align-items: center; }
.split--wide { grid-template-columns: 1.05fr .95fr; }
.split--map { grid-template-columns: 1.35fr 1fr; align-items: start; }
.split--res { grid-template-columns: 1.25fr 1fr; align-items: start; }
.row { display: flex; align-items: center; gap: var(--s-xs); }
.row--wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.push { margin-left: auto; }
.mt-sm { margin-top: var(--s-sm); } .mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); } .mt-xl { margin-top: var(--s-xl); }

/* ---------- header / navigasi --------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline);
}
.nav { display: flex; align-items: center; gap: var(--s-md); height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand-mark {
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: var(--primary); color: var(--on-primary);
  display: grid; place-items: center;
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: var(--s-3xs); margin-left: auto; }
.nav-links a {
  display: block; padding: 8px 12px; border-radius: var(--r-sm);
  font-size: .9375rem; color: var(--ink-soft); text-decoration: none;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-links a:hover { color: var(--primary); background: var(--primary-soft); }
.nav-links a[aria-current="page"] { color: var(--primary); font-weight: 600; }
.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; }
/* ---------- tombol & lencana ---------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2xs);
  height: 52px; padding-inline: 28px; border-radius: var(--r-full);
  font-size: 1.0625rem; font-weight: 600; text-decoration: none; white-space: nowrap;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), opacity .2s var(--ease);
}
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-strong); }
.btn--ghost { background: var(--surface); color: var(--primary); border: 1px solid var(--outline); }
.btn--ghost:hover { border-color: var(--primary); }
.btn--light { background: var(--on-primary); color: var(--primary); }
.btn--light:hover { opacity: .9; }
.btn--outline-light { border: 1px solid rgba(247, 251, 246, .35); color: var(--on-primary); }
.btn--outline-light:hover { border-color: var(--on-primary); }
.btn--sm { height: 42px; padding-inline: 18px; font-size: .9375rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

.badge {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  padding: 4px 9px; border-radius: var(--r-sm);
  font-size: .75rem; font-weight: 500; letter-spacing: .04em;
}
.badge--proto { background: var(--accent); color: var(--ink); }
.badge--soft { background: var(--accent-soft); color: var(--ink); }
.badge--green { background: var(--primary-soft); color: var(--primary); }
.pill {
  display: inline-flex; align-items: center; gap: var(--s-2xs);
  padding: 6px 14px; border-radius: var(--r-full);
  background: var(--primary-soft); color: var(--primary);
  font-size: .8125rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.pill .tick { width: 6px; height: 6px; border-radius: var(--r-full); background: var(--secondary); }

/* ---------- kartu ---------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--outline);
  border-radius: var(--r-lg); padding: var(--s-lg);
}
.card--bg { background: var(--bg); }
.card--panel { border-radius: var(--r-xl); padding: var(--s-lg); }
.card--float { box-shadow: var(--sh-card); }
.card--full { display: flex; flex-direction: column; height: 100%; }
.card h3 { margin-top: var(--s-md); }
.card p { margin-top: 10px; color: var(--ink-soft); font-size: .9375rem; }
.icon-badge {
  width: 44px; height: 44px; border-radius: var(--r-full);
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--primary-soft); color: var(--primary);
}
.icon-badge--solid { background: var(--primary); color: var(--on-primary); }
.step-no { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; color: var(--primary-soft); }
/* ---------- bar: panjang = besaran, nama & angka selalu tertulis ----- */
.bars { display: grid; gap: 14px; }
.bar-head { display: flex; align-items: baseline; gap: var(--s-2xs); font-size: .9375rem; }
.bar-head .push { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.bar-track {
  height: 10px; margin-top: 6px; border-radius: var(--r-full);
  background: var(--track); overflow: hidden;
}
.bar-fill { height: 100%; width: 0; border-radius: var(--r-full); transition: width 1s var(--ease); }
.cat-dot { width: 12px; height: 12px; border-radius: var(--r-full); flex-shrink: 0; display: inline-block; }
.cat-list { display: grid; gap: 10px; }
.cat-list li { display: flex; align-items: center; gap: 10px; font-size: .9375rem; }

/* ---------- hero ----------------------------------------------------- */
.hero { padding-top: var(--s-2xl); padding-bottom: var(--s-3xl); }
.hero h1 { margin-top: var(--s-md); max-width: 19ch; }
.hero p.lede { margin-top: var(--s-md); color: var(--ink-soft); font-size: 1.1875rem; max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-xs); margin-top: var(--s-lg); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-md); margin-top: var(--s-xl);
  border-top: 1px solid var(--outline); padding-top: var(--s-md); max-width: 30rem;
}
.hero-stats dt { font-size: .875rem; font-weight: 500; color: var(--ink-muted); }
.hero-stats dd {
  margin-top: 4px; font-family: var(--font-display); font-weight: 700;
  font-size: 1.6rem; font-variant-numeric: tabular-nums;
}
.teaser-pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--s-xs); align-items: center; margin-top: var(--s-md); }
.teaser-box { border: 1px solid var(--outline); border-radius: var(--r-md); background: var(--bg); padding: 12px; text-align: center; }
.teaser-box--hit { border-color: var(--primary); background: var(--primary-soft); }
.teaser-box p:first-child { font-size: .75rem; color: var(--ink-muted); }
.teaser-box p:last-child { margin-top: 2px; font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; }

/* ---------- piring gizi --------------------------------------------- */
.plate-fig { text-align: center; }
.plate-fig svg { margin-inline: auto; width: 100%; max-width: 380px; height: auto; }
.plate-fig figcaption { margin-top: var(--s-sm); font-size: .75rem; color: var(--ink-muted); }
.legend { display: grid; gap: 10px; margin-top: var(--s-lg); }
.legend li {
  display: flex; align-items: center; gap: var(--s-xs);
  border: 1px solid var(--outline); border-radius: var(--r-md);
  background: var(--surface); padding: 12px 14px; font-size: .9375rem;
}
.legend .ic { width: 32px; height: 32px; border-radius: var(--r-full); display: grid; place-items: center; flex-shrink: 0; }
.legend .push { font-variant-numeric: tabular-nums; color: var(--ink-muted); }
/* ---------- peta ------------------------------------------------------ */
.map-panel { position: relative; background: var(--bg); border: 1px solid var(--outline); border-radius: var(--r-xl); padding: var(--s-md); }
.map-dot { cursor: pointer; outline: none; transition: r .25s var(--ease); }
.map-dot:hover { r: 12; }
.dot-ring {
  opacity: 0; pointer-events: none; transform-box: fill-box; transform-origin: center;
  transform: scale(.6); transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.map-dot:focus-visible + .dot-ring, .dot-ring.on { opacity: 1; transform: scale(1); }
.map-label { pointer-events: none; }
.map-tip {
  position: absolute; left: 0; top: 0; pointer-events: none;
  background: var(--ink); color: var(--on-primary);
  border-radius: var(--r-md); padding: 8px 12px; font-size: .875rem;
  box-shadow: var(--sh-float); max-width: 260px;
}
.map-tip[hidden] { display: none; }
.map-legend {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-sm);
  margin-top: var(--s-xs); font-size: .75rem; color: var(--ink-muted);
}
.map-legend .sz { display: inline-block; border-radius: var(--r-full); background: var(--primary); }
.pulse { animation: pulse 2.8s var(--ease) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 0% { opacity: .45; transform: scale(.8); } 70%, 100% { opacity: 0; transform: scale(2.1); } }

/* ---------- formulir & proses --------------------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-xl); padding: var(--s-lg); }
.form-row { display: grid; gap: var(--s-sm); grid-template-columns: 1fr 1fr auto; align-items: end; }
.field label { display: block; font-size: .875rem; font-weight: 500; color: var(--ink-soft); }
.field select {
  margin-top: var(--s-2xs); width: 100%; height: 52px;
  border: 1px solid var(--outline); border-radius: var(--r-md);
  background: var(--surface); padding-inline: var(--s-sm); color: var(--ink);
}
.field select:focus { border-color: var(--primary); outline: 2px solid rgba(18, 91, 63, .22); outline-offset: 0; }
.note { margin-top: var(--s-sm); font-size: .75rem; color: var(--ink-muted); }

.steps-line { display: grid; gap: var(--s-sm); margin-top: var(--s-md); }
.step { display: flex; align-items: flex-start; gap: var(--s-xs); }
.step-dot {
  width: 10px; height: 10px; margin-top: 7px; flex-shrink: 0;
  border-radius: var(--r-full); background: var(--track);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.step-label { font-size: .9375rem; color: var(--ink-muted); }
.step.done .step-dot { background: var(--primary); }
.step.active .step-dot { background: var(--secondary); transform: scale(1.4); }
.step.done .step-label, .step.active .step-label { color: var(--ink); }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.reason-list { display: grid; gap: var(--s-xs); margin-top: var(--s-sm); }
.reason-list li { display: flex; gap: var(--s-xs); font-size: .9375rem; color: var(--ink-soft); }
.reason-list .tick { width: 6px; height: 6px; margin-top: 9px; flex-shrink: 0; border-radius: var(--r-full); background: var(--secondary); }
/* ---------- graf jaringan ------------------------------------------- */
.net { width: 100%; height: auto; }
.net-node, .net-link { transition: opacity .25s var(--ease); }
.net.dim .net-node, .net.dim .net-link { opacity: .16; }
.net.dim .net-node.hi, .net.dim .net-link.hi { opacity: 1; }
.net-hit { cursor: pointer; outline: none; }
.net-hit:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ---------- tabel ----------------------------------------------------- */
.table-wrap { overflow-x: auto; }
table.data { width: 100%; min-width: 680px; font-size: .9375rem; }
table.data caption { text-align: left; padding-bottom: var(--s-xs); font-size: .75rem; color: var(--ink-muted); }
table.data th, table.data td { padding: 9px 10px; text-align: left; }
table.data thead th { border-bottom: 1px solid var(--outline); font-weight: 600; }
table.data tbody tr { border-bottom: 1px solid color-mix(in srgb, var(--outline) 70%, transparent); }
table.data tbody th { font-weight: 400; }
table.data td { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
details.disclose { border: 1px solid var(--outline); border-radius: var(--r-lg); background: var(--bg); margin-top: var(--s-md); }
details.disclose > summary { cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--primary); }
details.disclose > div { padding: 0 20px 20px; }

/* ---------- blok CTA & footer --------------------------------------- */
.cta-block {
  background: var(--primary); color: var(--on-primary);
  border-radius: var(--r-xl); padding: var(--s-3xl) var(--s-lg); text-align: center;
}
.cta-block .eyebrow { color: var(--secondary); }
.cta-block h2 { margin-top: var(--s-sm); max-width: 24ch; margin-inline: auto; }
.cta-block p { margin-top: var(--s-sm); color: var(--primary-soft); max-width: 60ch; margin-inline: auto; font-size: 1.1875rem; }
.cta-block .hero-actions { justify-content: center; }

.site-foot { background: var(--surface); border-top: 1px solid var(--outline); padding-block: var(--s-2xl) var(--s-lg); }
.foot-grid { display: grid; gap: var(--s-xl); grid-template-columns: 1.4fr 1fr 1fr; }
.foot-grid h2 { font-family: var(--font-body); font-size: .875rem; font-weight: 500; color: var(--ink-muted); }
.foot-grid ul { display: grid; gap: 8px; margin-top: var(--s-xs); font-size: .9375rem; }
.foot-grid a { color: var(--ink-soft); text-decoration: none; }
.foot-grid a:hover { color: var(--primary); text-decoration: underline; }
.foot-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-xs);
  margin-top: var(--s-xl); padding-top: var(--s-md);
  border-top: 1px solid var(--outline); font-size: .75rem; color: var(--ink-muted);
}

/* ---------- gerak ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[hidden] { display: none !important; }
/* ---------- responsif ------------------------------------------------- */
@media (max-width: 1024px) {
  .split--wide, .split--map, .split--res { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: grid; position: absolute; left: 0; right: 0; top: var(--nav-h);
    background: var(--surface); border-bottom: 1px solid var(--outline);
    padding: var(--s-xs) var(--s-md) var(--s-md); gap: 2px; margin: 0;
  }
  .nav-links.open a { padding: 12px; font-size: 1.0625rem; }
  .nav-toggle {
    display: grid; place-items: center; width: 44px; height: 44px; margin-left: auto;
    border: 1px solid var(--outline); border-radius: var(--r-md); color: var(--ink-soft);
  }
  .nav-cta { display: none; }
}
@media (max-width: 720px) {
  :root { --s-3xl: 72px; --s-2xl: 56px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .legend { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-sm); }
  .hero-stats dd { font-size: 1.3rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-block { padding: var(--s-2xl) var(--s-md); }
  .card { padding: var(--s-md); }
  .map-panel, .form-card, .card--panel { padding: var(--s-sm); }
  .map-legend { font-size: .7rem; }
}
@media (min-width: 721px) {
  .legend { grid-template-columns: 1fr 1fr; }
  .steps-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1025px) {
  .steps-line { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cta-block { padding-inline: var(--s-3xl); }
}

/* Gambar yang sangat lebar (peta, graf) tidak diperkecil sampai labelnya
   tidak terbaca. Di layar sempit ia diberi kerangka gulir mendatar dengan
   lebar minimum, plus petunjuk geser yang hanya muncul di layar itu. */
.scroll-x { overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; }
.scroll-x:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.scroll-hint {
  display: none; align-items: center; gap: 6px;
  margin-bottom: var(--s-2xs); font-size: .7rem; color: var(--ink-muted);
}

@media (max-width: 900px) {
  .scroll-hint { display: flex; }
  .map-panel .scroll-x > svg { min-width: 820px; }
  .net-wrap > svg { min-width: 760px; }
}

@media (max-width: 520px) {
  :root { --s-3xl: 56px; --s-2xl: 48px; --s-xl: 32px; }
  .wrap { padding-inline: var(--s-sm); }
  .hero-stats { grid-template-columns: 1fr 1fr; max-width: none; }
  .hero-stats > div:last-child { grid-column: 1 / -1; }
  .hero-actions .btn, .cta-block .btn { width: 100%; }
  .teaser-pair { grid-template-columns: 1fr; }
  .teaser-pair .arrow { transform: rotate(90deg); margin-inline: auto; }
  .btn { padding-inline: 20px; }
  .cta-block { padding: var(--s-xl) var(--s-sm); }
  .hero p.lede, .sec-head p, .cta-block p { font-size: 1.0625rem; }
  .foot-bottom { flex-direction: column; }
  table.data { min-width: 540px; }
  .brand-name { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
}
@media print {
  .site-head, .site-foot, .no-print, .nav-toggle { display: none !important; }
  body { background: #fff; }
  .sec { padding-block: 24px; break-inside: avoid; }
  .card, .map-panel, .form-card { box-shadow: none; }
}
