/* ============================================================
   hungr · marketing site
   Design tokens from DESIGN.md. Light mode only: the tinted
   cream canvas is the brand, we commit to it.
   ============================================================ */

:root {
  --canvas: #FCF6DF;
  --surface: #FFFDF4;
  --ink: #1C1A17;
  --muted: #8C8266;
  --hairline: #EFE6CE;
  --gold: #FBBF24;
  --gold-pressed: #E8A50C;
  --on-gold: #241A06;
  --sage: #5C8A5A;
  --clay: #C0563D;
  --slate: #3E6B7A;

  --font-brand: "Fraunces", Georgia, serif;
  --font-head: "Cabinet Grotesk", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-body: "General Sans", "Helvetica Neue", Arial, sans-serif;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-pill: 999px;

  --shadow-soft: 0 2px 8px rgba(28, 26, 23, 0.06), 0 8px 28px rgba(28, 26, 23, 0.07);
  --shadow-float: 0 4px 12px rgba(28, 26, 23, 0.08), 0 16px 48px rgba(28, 26, 23, 0.10);

  --t-micro: 80ms;
  --t-short: 200ms;
  --t-med: 320ms;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
::selection { background: var(--gold); color: var(--on-gold); }
:focus-visible { outline: 3px solid var(--gold-pressed); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---------- typography helpers ---------- */
.brand-serif { font-family: var(--font-brand); font-weight: 600; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.lede { font-size: 20px; color: var(--muted); font-weight: 500; }

/* hand-drawn squiggle underline for hero words */
.squiggle {
  position: relative;
  white-space: nowrap;
}
.squiggle > svg {
  position: absolute;
  left: 0; right: 0; bottom: -0.18em;
  width: 100%; height: 0.32em;
  overflow: visible;
}
.squiggle > svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 16px 14px;
  background: linear-gradient(to bottom, var(--canvas) 68%, rgba(252, 246, 223, 0));
}
.nav-card {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255, 253, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 22px;
  gap: 16px;
}
.logo {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 26px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.logo .pin-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(251,191,36,.25); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  transition: background var(--t-short) ease-out;
}
.nav-links a:hover { background: var(--canvas); }
.nav-links a[aria-current="page"] { background: var(--canvas); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--on-gold) !important;
  padding: 10px 18px !important;
}
.nav-cta:hover { background: var(--gold-pressed) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  border-radius: var(--r-sm);
}
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 4.5px 0; transition: transform var(--t-short) ease-in-out, opacity var(--t-short); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: none;
  text-decoration: none;
  transition: background var(--t-short) ease-out, transform var(--t-micro) ease-out, box-shadow var(--t-short) ease-out;
  min-height: 48px;
}
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: var(--on-gold); box-shadow: 0 2px 0 rgba(232,165,12,.5), var(--shadow-soft); }
.btn-gold:hover { background: var(--gold-pressed); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1.5px solid var(--hairline); }
.btn-ghost:hover { border-color: var(--gold); }
.btn-lg { font-size: 19px; padding: 18px 34px; }

/* store badges (official-style, black per store brand rules) */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 9px 18px 9px 14px;
  text-decoration: none;
  transition: transform var(--t-micro) ease-out, opacity var(--t-short);
  min-height: 52px;
}
.store-badge:hover { opacity: 0.86; }
.store-badge:active { transform: scale(0.98); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-text { line-height: 1.15; text-align: left; }
.store-badge .sb-small { display: block; font-size: 10.5px; font-weight: 500; opacity: 0.85; letter-spacing: 0.02em; }
.store-badge .sb-big { display: block; font-family: var(--font-head); font-weight: 700; font-size: 17px; }

/* ---------- chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
}
.chip .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot-gold { background: var(--gold); }
.dot-sage { background: var(--sage); }
.dot-clay { background: var(--clay); }

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 800; letter-spacing: -0.01em; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card h3 { font-size: 21px; font-weight: 700; margin-top: 18px; }
.feature-card p { color: var(--muted); font-size: 16px; margin: 0; }
.feature-emoji {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  font-size: 27px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
}

/* ---------- photo placeholder slots ---------- */
.photo-slot {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(251,191,36,.35), transparent 55%),
    radial-gradient(110% 90% at 85% 80%, rgba(192,86,61,.18), transparent 55%),
    radial-gradient(100% 100% at 70% 20%, rgba(92,138,90,.14), transparent 50%),
    var(--surface);
  border: 1.5px dashed rgba(140, 130, 102, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.photo-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-slot .ph-label { color: var(--muted); font-size: 13.5px; font-weight: 600; max-width: 200px; }
.photo-slot .ph-label strong { display: block; font-size: 22px; margin-bottom: 6px; }
/* when a real photo is present the label hides underneath it */

.photo-caption {
  font-family: var(--font-brand);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}

/* polaroid-ish tilt strip */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.photo-strip > figure { margin: 0; transition: transform var(--t-med) ease-out; }
.photo-strip > figure:nth-child(odd) { transform: rotate(-1.6deg); }
.photo-strip > figure:nth-child(even) { transform: rotate(1.4deg) translateY(14px); }
.photo-strip > figure:hover { transform: rotate(0) translateY(0); }
.photo-strip .photo-slot { aspect-ratio: 4 / 5; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-appicon { display: block; width: 72px; height: auto; margin-bottom: 22px; filter: drop-shadow(0 6px 18px rgba(28, 26, 23, 0.16)); }
.hero h1 {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.hero .lede { font-size: clamp(18px, 2vw, 21px); max-width: 33em; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.hero-note { font-size: 14px; color: var(--muted); }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- phone mockup ---------- */
.phone-scene { position: relative; display: flex; justify-content: center; }
.phone {
  width: 320px;
  border-radius: 44px;
  background: var(--ink);
  padding: 10px;
  box-shadow: var(--shadow-float);
  transform: rotate(2deg);
}
.phone-screen {
  border-radius: 36px;
  overflow: hidden;
  background: #F6EFD8;
  position: relative;
  aspect-ratio: 9 / 19;
}
/* stylised map */
.mini-map { position: absolute; inset: 0; }
.mini-map .street { position: absolute; background: #E9E0C4; }
.mini-map .street.h { height: 7px; left: 0; right: 0; }
.mini-map .street.v { width: 7px; top: 0; bottom: 0; }
.mini-map .park { position: absolute; background: rgba(92,138,90,.18); border-radius: 12px; }
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  box-shadow: 0 2px 6px rgba(28,26,23,.18);
  animation: pin-float 4s ease-in-out infinite;
}
.map-pin.gold { background: var(--gold); color: var(--on-gold); border: 2px solid #fff; }
.map-pin.sage { background: var(--sage); color: #fff; border: 2px solid #fff; }
.map-pin.clay { background: var(--clay); color: #fff; border: 2px solid #fff; }
.map-pin:nth-child(odd) { animation-delay: -2s; }
@keyframes pin-float { 0%, 100% { margin-top: 0; } 50% { margin-top: -5px; } }
.phone-search {
  position: absolute;
  top: 18px; left: 14px; right: 14px;
  background: var(--surface);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-cta {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--on-gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
/* floating review card next to phone */
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-float);
  padding: 14px 16px;
  width: 220px;
  font-size: 13.5px;
}
.float-card .fc-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; display: flex; justify-content: space-between; align-items: center; }
.float-card .fc-meta { color: var(--muted); font-size: 12px; margin-top: 2px; }
.float-card .fc-quote { margin: 8px 0 0; font-style: italic; font-family: var(--font-brand); font-size: 13.5px; }
.badge-pill { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); }
.badge-sage { background: rgba(92,138,90,.15); color: var(--sage); }
.badge-gold { background: rgba(251,191,36,.25); color: #7A5A08; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step-card { position: relative; }
.step-num {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 42px;
  color: var(--gold-pressed);
  line-height: 1;
}
.step-card h3 { font-size: 21px; margin-top: 14px; }
.step-card p { color: var(--muted); font-size: 16px; margin: 0; }

/* ---------- trust / provenance band ---------- */
.band {
  background: var(--ink);
  color: #F3EEE4;
  border-radius: 28px;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.band h2 { color: #FFFDF4; }
.band .lede { color: #B9AF9C; }
.band .review-samples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.band .sample {
  background: rgba(255, 253, 244, 0.06);
  border: 1px solid rgba(255, 253, 244, 0.12);
  border-radius: var(--r-md);
  padding: 22px;
  font-size: 15px;
}
.band .sample .who { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.band .sample .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(251,191,36,.2);
  flex: none;
}
.band .sample .who b { font-family: var(--font-head); font-size: 15px; }
.band .sample .who small { display: block; color: #B9AF9C; font-size: 12.5px; }
.band .sample p { margin: 0; font-family: var(--font-brand); font-style: italic; font-size: 15.5px; line-height: 1.5; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold);
  color: var(--on-gold);
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-family: var(--font-brand); font-weight: 600; font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.01em; }
.cta-banner .lede { color: rgba(36, 26, 6, 0.75); max-width: 32em; margin: 0 auto 32px; }
.cta-banner .store-badges { justify-content: center; }

/* business strip */
.biz-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: 36px 40px;
  flex-wrap: wrap;
}
.biz-strip h3 { font-size: 24px; margin: 0 0 6px; }
.biz-strip p { margin: 0; color: var(--muted); }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 12px; }
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  padding: 22px 56px 22px 24px;
  position: relative;
  min-height: 44px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 26px;
  color: var(--gold-pressed);
  transition: transform var(--t-short) ease-in-out;
}
details.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details.faq-item .faq-body { padding: 0 24px 24px; color: var(--muted); font-size: 16px; }
details.faq-item .faq-body a { color: var(--gold-pressed); }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 7px;
}
.field label small { font-weight: 500; color: var(--muted); font-family: var(--font-body); }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color var(--t-short) ease-out;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.25);
}
.field .err { display: none; color: var(--clay); font-size: 13.5px; margin-top: 6px; }
.field.invalid input, .field.invalid textarea { border-color: var(--clay); }
.field.invalid .err { display: block; }
.form-success {
  display: none;
  background: rgba(92,138,90,.12);
  border: 1.5px solid var(--sage);
  color: #3D6B3B;
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-weight: 600;
}

/* ---------- prose (legal pages, articles) ---------- */
.prose { max-width: 720px; }
.prose h1 { font-size: clamp(32px, 5vw, 44px); font-weight: 800; margin-bottom: 12px; }
.prose h2 { font-size: 26px; font-weight: 700; margin: 44px 0 14px; }
.prose h3 { font-size: 20px; font-weight: 700; margin: 32px 0 10px; }
.prose p, .prose li { color: #3B372F; font-size: 16.5px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--gold-pressed); }
.prose strong { color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--hairline); margin: 40px 0; }
.prose table { border-collapse: collapse; width: 100%; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border: 1px solid var(--hairline); }
.prose th { background: var(--surface); font-family: var(--font-head); }
.doc-meta { color: var(--muted); font-size: 15px; margin-bottom: 40px; }

/* page hero (inner pages) */
.page-hero { padding: 72px 0 20px; }
.page-hero h1 {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 58px);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.page-hero .lede { max-width: 36em; }

/* ---------- footer ---------- */
.site-footer {
  margin-top: 32px;
  background: var(--ink);
  color: #CFC7B6;
  padding: 72px 0 40px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.site-footer .logo { color: #FFFDF4; font-size: 30px; margin-bottom: 14px; }
.site-footer .foot-tag { font-family: var(--font-brand); font-style: italic; color: #9C9384; margin-bottom: 24px; max-width: 22em; }
.site-footer h4 {
  color: #FFFDF4;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: #CFC7B6; text-decoration: none; transition: color var(--t-short); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 253, 244, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #9C9384;
  font-size: 13.5px;
}
.footer-bottom .made-in { font-family: var(--font-brand); font-style: italic; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .feature-grid, .steps, .band .review-samples { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card.fc-left { display: none; }
  .float-card { right: 4px !important; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .feature-grid, .steps, .band .review-samples, .form-row { grid-template-columns: 1fr; }
  .band, .cta-banner { padding: 48px 24px; border-radius: 20px; }
  .phone { width: 270px; }
  .float-card { display: none; }
  .biz-strip { padding: 28px 24px; }
}
/* the horizontal nav needs ~720px; collapse to the menu button below that */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px; right: 16px;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-float);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
  }
  .nav-links a { display: block; text-align: center; padding: 14px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .map-pin { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 1ms !important; animation-duration: 1ms !important; }
}
