/* =========================================================================
   Foodr — public marketing + support site
   Dark-locked brand theme. One accent (teal). Orange = decorative warmth only.
   Hand-authored CSS, no framework. Fonts via Fontshare (not Google).
   ========================================================================= */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@600,700&f[]=general-sans@400,500,600&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* surfaces (light theme) */
  --bg: #F5F5F7;
  --bg-elev: #FFFFFF;
  --bg-elev-2: #ECECEF;
  --bg-glass: rgba(255, 255, 255, 0.72);

  /* text */
  --text: #18181B;
  --text-muted: #55555F;
  --text-faint: #8A8A93;

  /* brand */
  --teal: #2EC4B6;          /* single interactive accent (fills) */
  --teal-bright: #43DCCC;   /* pops on dark photos */
  --teal-text: #0B7064;     /* deep teal for text/links on light surfaces */
  --teal-ink: #06302C;      /* text on a teal fill */
  --orange: #FF6B35;        /* decorative warmth only, never a CTA */

  /* over-photo glass + text (stay dark for legibility on any theme) */
  --glass-dark: rgba(15, 15, 20, 0.62);
  --surface-hover: rgba(20, 20, 28, 0.05);

  /* lines */
  --border: rgba(20, 20, 28, 0.10);
  --border-strong: rgba(20, 20, 28, 0.17);

  /* radius (documented system) */
  --r-pill: 999px;          /* buttons, chips */
  --r-card: 20px;           /* cards, panels */
  --r-input: 12px;          /* inputs */

  /* spacing / layout */
  --container: 1180px;
  --section-y: clamp(4.5rem, 9vw, 8rem);

  /* shadows, tinted */
  --shadow-card: 0 20px 50px -26px rgba(24, 24, 40, 0.20);
  --shadow-teal: 0 16px 40px -16px rgba(46, 196, 182, 0.40);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'General Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle ambient brand glow fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 50vh at 78% -8%, rgba(46, 196, 182, 0.12), transparent 60%),
    radial-gradient(48vw 42vh at 8% 6%, rgba(255, 107, 53, 0.07), transparent 60%);
  pointer-events: none;
}
/* fine grain on a fixed, non-scrolling layer only */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Type ---------- */
.display {
  font-family: 'Clash Display', 'General Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h1, h2, h3 { font-family: 'Clash Display', 'General Sans', system-ui, sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 1.4rem; height: 1px;
  background: var(--teal);
  opacity: 0.7;
}

.lead { color: var(--text-muted); font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 46ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: var(--section-y); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-head p { color: var(--text-muted); margin-top: 1rem; max-width: 52ch; }

/* ---------- Buttons (one accent, pill radius) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
  padding: 0.9rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn-primary {
  background: var(--teal);
  color: var(--teal-ink);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-bright); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 0.62rem 1.05rem; font-size: 0.9rem; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: var(--bg-glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; transition: color 0.16s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 0.4rem; cursor: pointer; }

/* brand mark */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand .mark { width: 30px; height: 30px; }
.brand .word {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--teal);
}
.brand .word b { color: var(--text); font-weight: 700; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: min(78vh, 720px);
}
.hero-copy { max-width: 34rem; }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  margin-top: 1.25rem;
}
.hero h1 .pop { color: var(--teal); }
.hero .lead { margin-top: 1.4rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero-note { margin-top: 1.25rem; font-size: 0.86rem; color: var(--text-faint); display: flex; align-items: center; gap: 0.5rem; }
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(46,196,182,0.18); }

/* phone mockup */
.phone {
  position: relative;
  width: min(300px, 78%);
  margin-inline: auto;
  aspect-ratio: 300 / 620;
  border-radius: 42px;
  padding: 11px;
  background: linear-gradient(160deg, #2A2A33, #0E0E13);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.06);
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0E0E13 center/cover no-repeat;
}
.phone-screen .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone-screen .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,15,0.05) 30%, rgba(11,11,15,0.85) 100%); }
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 34%; height: 22px; border-radius: var(--r-pill); background: #050507; z-index: 3; }

/* floating UI chips on the mockups (real, minimal — not a fake full UI) */
.chip-card {
  position: absolute;
  z-index: 4;
  background: var(--bg-glass);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 0.7rem 0.85rem;
  box-shadow: var(--shadow-card);
}
.chip-rating { left: 16px; bottom: 92px; display: flex; align-items: center; gap: 0.55rem; }
.chip-rating .score { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--teal); }
.chip-rating .meta { font-size: 0.74rem; line-height: 1.3; color: var(--text-muted); }
.chip-rating .meta b { color: var(--text); display: block; font-weight: 600; font-size: 0.82rem; }
.chip-pin {
  right: 14px; top: 70px; padding: 0.5rem 0.8rem;
  display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600;
}
.chip-pin .pin { width: 10px; height: 10px; border-radius: 50% 50% 50% 0; background: var(--orange); transform: rotate(-45deg); }

/* ---------- Cuisine marquee (the one allowed marquee) ---------- */
.marquee { border-block: 1px solid var(--border); overflow: hidden; padding-block: 1.1rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee-track span { color: var(--text-faint); font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.7rem); letter-spacing: -0.01em; }
.marquee-track .dot { color: var(--teal); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(170px, auto);
  gap: 1.1rem;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.tile h3 { font-size: 1.25rem; }
.tile p { color: var(--text-muted); font-size: 0.94rem; }
.tile .ic { width: 30px; height: 30px; color: var(--teal); margin-bottom: 0.4rem; }
/* spans */
.tile.col-3 { grid-column: span 3; }
.tile.col-2 { grid-column: span 2; }
.tile.col-4 { grid-column: span 4; }
.tile.row-2 { grid-row: span 2; }
/* media + gradient variants for visual diversity */
.tile.media { justify-content: flex-end; min-height: 300px; }
.tile.media .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.tile.media .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11,11,15,0.1) 25%, rgba(11,11,15,0.92) 100%); }
.tile.media > * { position: relative; z-index: 2; }
.tile.grad-teal { background: linear-gradient(150deg, rgba(46,196,182,0.20), rgba(46,196,182,0.04) 60%), var(--bg-elev); }
.tile.grad-warm { background: linear-gradient(150deg, rgba(255,107,53,0.18), rgba(255,107,53,0.03) 60%), var(--bg-elev); }
.tile .ic.warm { color: var(--orange); }

/* ---------- Zigzag split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split + .split { margin-top: clamp(3.5rem, 7vw, 6rem); }
.split.reverse .split-media { order: -1; }
.split-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.split-copy p { color: var(--text-muted); margin-top: 1rem; max-width: 44ch; }
.split-list { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: 0.85rem; }
.split-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--text); font-size: 0.98rem; }
.split-list .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(46,196,182,0.16); color: var(--teal); display: grid; place-items: center; margin-top: 1px; }
.split-list .tick svg { width: 13px; height: 13px; }

.split-media { position: relative; }
.media-card {
  position: relative;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elev);
  aspect-ratio: 4 / 3.2;
}
.media-card .photo { width: 100%; height: 100%; object-fit: cover; }
.media-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,11,15,0.7)); }

/* mini map panel */
.map-panel { position: relative; height: 100%; background:
    radial-gradient(circle at 30% 30%, rgba(46,196,182,0.12), transparent 40%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 46px),
    var(--bg-elev-2);
}
.map-pin { position: absolute; width: 16px; height: 16px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.map-pin.t { background: var(--teal); }
.map-pin.o { background: var(--orange); }
.map-pin::after { content: ""; position: absolute; inset: 4px; background: rgba(11,11,15,0.6); border-radius: 50%; }

/* review card mock */
.review-mock { position: absolute; inset: auto 1.2rem 1.2rem; background: var(--bg-glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-strong); border-radius: var(--r-card); padding: 1rem 1.1rem; box-shadow: var(--shadow-card); }
.review-mock .row { display: flex; align-items: center; gap: 0.6rem; }
.review-mock .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--orange)); flex: none; }
.review-mock .name { font-weight: 600; font-size: 0.9rem; }
.review-mock .sub { font-size: 0.76rem; color: var(--text-faint); }
.review-mock .stars { margin-left: auto; color: var(--teal); font-size: 0.82rem; font-weight: 600; }
.review-mock .body { margin-top: 0.6rem; font-size: 0.86rem; color: var(--text-muted); }

/* ---------- Horizontal scroll cards (recipes/discover) ---------- */
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.rail-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.rail-head p { color: var(--text-muted); margin-top: 0.6rem; max-width: 40ch; }
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 30vw, 290px);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-inline: calc(-1 * 1.5rem);
  padding-inline: 1.5rem;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.food-card {
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  background: var(--bg-elev);
}
.food-card .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.food-card:hover .photo { transform: scale(1.05); }
.food-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(11,11,15,0.9)); }
.food-card .cap { position: absolute; inset: auto 0 0; padding: 1.1rem; }
.food-card .cap .k { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.food-card .cap h3 { font-size: 1.1rem; margin-top: 0.2rem; }
.food-card .cap .meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  position: relative;
  border-radius: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(70% 120% at 50% -20%, rgba(46,196,182,0.30), transparent 60%),
    radial-gradient(60% 120% at 90% 120%, rgba(255,107,53,0.18), transparent 60%),
    var(--bg-elev);
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem;
  text-align: center;
}
.cta-inner h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.cta-inner p { color: var(--text-muted); margin: 1.1rem auto 0; max-width: 44ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 2rem; }

/* App Store badge (honest "coming soon") */
.store-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.78rem 1.3rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.store-badge svg { width: 22px; height: 22px; }
.store-badge .t1 { font-size: 0.68rem; color: var(--text-muted); line-height: 1; }
.store-badge .t2 { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 1.02rem; line-height: 1.2; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding-block: 3rem; }
.footer .container { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 22rem; }
.footer-brand p { color: var(--text-faint); font-size: 0.9rem; margin-top: 0.9rem; }
.footer-cols { display: flex; gap: clamp(2.5rem, 6vw, 5rem); flex-wrap: wrap; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); font-weight: 600; margin-bottom: 0.9rem; font-family: 'General Sans', sans-serif; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.95rem; padding-block: 0.3rem; transition: color 0.16s var(--ease); }
.footer-col a:hover { color: var(--teal); }
.footer-base { border-top: 1px solid var(--border); margin-top: 2.5rem; padding-top: 1.5rem; color: var(--text-faint); font-size: 0.85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

/* =========================================================================
   Support page
   ========================================================================= */
.page-hero { padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: clamp(1.5rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); max-width: 16ch; }
.page-hero p { color: var(--text-muted); margin-top: 1.1rem; max-width: 52ch; font-size: 1.1rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--bg-elev);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-card .ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 0.6rem; background: rgba(46,196,182,0.14); color: var(--teal); }
.contact-card.warm .ic { background: rgba(255,107,53,0.14); color: var(--orange); }
.contact-card h3 { font-size: 1.2rem; }
.contact-card p { color: var(--text-muted); font-size: 0.93rem; }
.contact-card a.mail { margin-top: 0.6rem; font-weight: 600; color: var(--teal); font-size: 1.02rem; word-break: break-all; }
.contact-card.warm a.mail { color: var(--orange); }

/* FAQ accordion (categorized, not a long ul) */
.faq-cats { display: grid; gap: 2.5rem; }
.faq-cat h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 500;
  text-align: left;
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-q .plus { flex: none; width: 20px; height: 20px; position: relative; transition: transform 0.25s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--teal); }
.faq-q .plus::before { width: 100%; height: 2px; }
.faq-q .plus::after { width: 2px; height: 100%; transition: transform 0.25s var(--ease); }
.faq-item[open] .faq-q .plus::after { transform: scaleY(0); }
.faq-a { overflow: hidden; }
.faq-a p { color: var(--text-muted); font-size: 0.96rem; padding: 0 0 1.25rem; max-width: 70ch; }
.faq-a p + p { padding-top: 0; margin-top: -0.4rem; }
/* native details fallback styling */
details.faq-item > summary { list-style: none; }
details.faq-item > summary::-webkit-details-marker { display: none; }

/* =========================================================================
   Legal pages (privacy / terms)
   ========================================================================= */
.legal { padding-block: clamp(2.5rem, 5vw, 4rem) var(--section-y); }
.legal-wrap { max-width: 72ch; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.legal .updated { color: var(--text-faint); font-size: 0.9rem; margin-top: 0.8rem; }
.legal-toc { margin: 2rem 0 3rem; padding: 1.3rem 1.5rem; border: 1px solid var(--border); border-radius: var(--r-card); background: var(--bg-elev); }
.legal-toc h2 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); font-family: 'General Sans', sans-serif; font-weight: 600; margin-bottom: 0.8rem; }
.legal-toc ol { margin: 0; padding-left: 1.2rem; columns: 2; gap: 1.5rem; }
.legal-toc a { color: var(--text-muted); font-size: 0.9rem; line-height: 1.9; }
.legal-toc a:hover { color: var(--teal); }
.legal-section { margin-bottom: 2.4rem; scroll-margin-top: 90px; }
.legal-section h2 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.legal-section p { color: var(--text-muted); }
.legal-section a { color: var(--teal); }

/* =========================================================================
   Reveal animation (IntersectionObserver toggles .in)
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; }
  .phone { width: min(260px, 70%); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile.col-3, .tile.col-2, .tile.col-4 { grid-column: span 1; }
  .tile.col-4.lead-tile { grid-column: span 2; }
  .tile.row-2 { grid-row: span 1; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-toc ol { columns: 1; }
}

@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-links a { padding-block: 0.6rem; font-size: 1.05rem; }
  .bento { grid-template-columns: 1fr; }
  .tile.col-4.lead-tile { grid-column: span 1; }
  .hero-cta .btn, .cta-actions .btn, .cta-actions .store-badge { width: 100%; }
  .footer .container { flex-direction: column; }
}

/* =========================================================================
   Light theme refinements
   Deep teal for text/links (brand teal is too light on white), and over-photo
   elements kept on dark glass / light text for legibility.
   ========================================================================= */
.eyebrow { color: var(--teal-text); }
.eyebrow::before { background: var(--teal-text); }
.hero h1 .pop { color: var(--teal-text); }
.brand .word { color: var(--text); }
.brand .word b { color: var(--teal-text); }
.contact-card a.mail { color: var(--teal-text); }
.legal-section a, .faq-a p a { color: var(--teal-text); font-weight: 600; }
.footer-col a:hover { color: var(--teal-text); }
.split-list .tick { color: var(--teal-text); }
.marquee-track .dot { color: var(--teal-text); }

/* ghost button + store badge */
.btn-ghost { background: var(--surface-hover); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(20, 20, 28, 0.09); }
.store-badge { background: var(--surface-hover); }

/* faux map: dark grid lines on a light map tone */
.map-panel {
  background:
    radial-gradient(circle at 30% 30%, rgba(46, 196, 182, 0.16), transparent 42%),
    repeating-linear-gradient(0deg, rgba(20, 20, 28, 0.06) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(20, 20, 28, 0.06) 0 1px, transparent 1px 46px),
    #EAEAEE;
}

/* over-photo content: dark glass, light text */
.chip-card { background: var(--glass-dark); border-color: rgba(255, 255, 255, 0.18); }
.chip-rating .meta { color: rgba(255, 255, 255, 0.72); }
.chip-rating .meta b { color: #fff; }
.chip-rating .score { color: var(--teal-bright); }
.chip-pin { color: #fff; }

.review-mock { background: var(--glass-dark); border-color: rgba(255, 255, 255, 0.18); }
.review-mock .name { color: #fff; }
.review-mock .sub { color: rgba(255, 255, 255, 0.62); }
.review-mock .body { color: rgba(255, 255, 255, 0.82); }
.review-mock .stars { color: var(--teal-bright); }

.tile.media h3 { color: #fff; }
.tile.media p { color: rgba(255, 255, 255, 0.82); }
.tile.media .ic { color: var(--teal-bright); }
.tile.media .ic.warm { color: var(--orange); }

.food-card .cap h3 { color: #fff; }
.food-card .cap .meta { color: rgba(255, 255, 255, 0.8); }
.food-card .cap .k { color: var(--teal-bright); }
