/* ── Wego palette: warm and food-first, not cool and product-first ───── */
:root {
  --orange: #FF6B35;
  --orange-deep: #E14E18;
  --tomato: #E8442E;
  --herb: #3F9D4F;
  --yolk: #FFB627;
  --ink: #2B1A12;
  --ink-2: #5A4436;
  --body: #7A6558;
  --line: #EFE2D8;
  --surface: #FFFFFF;
  --cream: #FFF6EF;
  --ground: #FFFBF7;
  --char: #201410;
  --radius: 24px;
  --shadow: 0 2px 4px rgba(70,38,20,.05), 0 14px 34px -14px rgba(70,38,20,.16);
  --shadow-lg: 0 3px 6px rgba(70,38,20,.06), 0 36px 68px -26px rgba(70,38,20,.30);
  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --orange: #FF8552;
    --orange-deep: #FF6B35;
    --tomato: #FF6A55;
    --herb: #5CC46D;
    --yolk: #FFC65A;
    --ink: #FBF0E8;
    --ink-2: #D9C6B8;
    --body: #A99385;
    --line: #33241C;
    --surface: #1B120E;
    --cream: #170F0C;
    --ground: #120C09;
    --char: #0C0705;
    --shadow: 0 2px 4px rgba(0,0,0,.5), 0 14px 34px -14px rgba(0,0,0,.7);
    --shadow-lg: 0 3px 6px rgba(0,0,0,.5), 0 36px 68px -26px rgba(0,0,0,.8);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.03em; margin: 0; }
.wrap { width: min(1140px, 100% - 40px); margin-inline: auto; }
.wrap.narrow { width: min(780px, 100% - 40px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip { position: absolute; left: -999px; z-index: 100; background: var(--orange); color: #fff; padding: 12px 20px; }
.skip:focus { left: 0; }


/* ── icons ───────────────────────────────────────────────────────────── */
/* The sprite only carries <symbol> defs, it never renders itself. Icons are
   sized in em so a container's font-size still controls them, and stroked in
   currentColor so they take the colour of whatever they sit in. */
.sprite { display: none; }
.ico {
  width: 1em; height: 1em; display: block;
  fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  overflow: visible;
}

/* ── buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border: 0; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 15.5px; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s;
}
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 26px -10px rgba(255,107,53,.75); }
.btn-vendor  { background: var(--herb);   color: #fff; box-shadow: 0 12px 26px -10px rgba(63,157,79,.7); }
.btn-rider   { background: #2E5BEC;       color: #fff; box-shadow: 0 12px 26px -10px rgba(46,91,236,.65); }
.btn-ghost   { background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn:active { transform: translateY(0) scale(.98); }
.btn[aria-disabled="true"] { opacity: .5; pointer-events: none; box-shadow: none; }

/* ── header ──────────────────────────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease);
}
#site-header.is-stuck { border-bottom-color: var(--line); }
.bar { display: flex; align-items: center; gap: 16px; height: 76px; transition: height .3s var(--ease); }
#site-header.is-stuck .bar { height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; letter-spacing: -.04em; }
.brand img { width: 36px; height: 36px; border-radius: 11px; transition: transform .3s var(--ease); }
.brand:hover img { transform: rotate(-8deg) scale(1.07); }
#site-header nav { margin-left: auto; display: flex; gap: 28px; font-size: 15px; font-weight: 600; }
#site-header nav a { color: var(--body); position: relative; padding: 4px 0; }
#site-header nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2.5px;
  background: var(--orange); border-radius: 2px; transition: right .28s var(--ease);
}
#site-header nav a:hover, #site-header nav a.is-active { color: var(--ink); }
#site-header nav a:hover::after, #site-header nav a.is-active::after { right: 0; }
.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; }
.scroll-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--yolk), var(--orange), var(--tomato)); }

.menu-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.menu-toggle span + span { margin-top: 5px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column; position: sticky; top: 76px; z-index: 49;
  background: var(--surface); max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
}
.mobile-nav a { padding: 15px 24px; font-weight: 600; color: var(--body); border-top: 1px solid var(--line); }
.mobile-nav.is-open { max-height: 340px; }
@media (max-width: 940px) {
  #site-header nav, .nav-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-nav { display: flex; }
}

/* ── reveal ──────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ── hero ────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 64px 0 0; overflow: hidden; }
.hero-wash {
  position: absolute; inset: 0 0 auto; height: 118%;
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(255,182,39,.30), transparent 62%),
    radial-gradient(760px 460px at 6% 22%, rgba(255,107,53,.24), transparent 62%),
    linear-gradient(180deg, var(--cream), var(--ground) 78%);
}
.hero-grid {
  position: relative; display: grid; gap: 44px; align-items: center;
  grid-template-columns: 1.06fr .94fr; padding-bottom: 60px;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }

.badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 17px; border-radius: 999px;
  background: var(--surface); box-shadow: var(--shadow); font-size: 13.5px; font-weight: 700; color: var(--ink-2);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--herb); animation: beat 2s infinite; }
@keyframes beat { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.7); opacity: .5; } }

.hero h1 { margin: 22px 0 0; font-size: clamp(42px, 6.6vw, 74px); font-weight: 900; letter-spacing: -.045em; }
.hl { position: relative; display: inline-block; color: var(--orange-deep); }
.hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .30em;
  background: var(--yolk); opacity: .42; border-radius: 999px; z-index: -1;
  transform: scaleX(0); transform-origin: left; animation: swipe .8s var(--ease) .5s forwards;
}
@keyframes swipe { to { transform: scaleX(1); } }

.hero .lede { margin: 20px 0 0; max-width: 46ch; font-size: clamp(16.5px, 2vw, 19px); color: var(--body); }
@media (max-width: 940px) { .hero .lede { margin-inline: auto; } }

/* address bar: the signature ordering control */
.addr {
  display: flex; align-items: center; gap: 8px; margin-top: 30px; padding: 8px 8px 8px 18px;
  background: var(--surface); border-radius: 999px; box-shadow: var(--shadow-lg);
  max-width: 540px;
}
@media (max-width: 940px) { .addr { margin-inline: auto; } }
.addr-pin { font-size: 20px; color: var(--orange); flex-shrink: 0; }
.addr input {
  flex: 1; min-width: 0; border: 0; outline: none; background: none;
  font-family: inherit; font-size: 15.5px; color: var(--ink); padding: 12px 4px;
}
.addr input::placeholder { color: var(--body); opacity: .8; }
.addr .btn { flex-shrink: 0; }
.addr-note { margin: 12px 0 0; font-size: 13.5px; color: var(--body); }

.trust { list-style: none; margin: 30px 0 0; padding: 0; display: flex; gap: 34px; flex-wrap: wrap; }
@media (max-width: 940px) { .trust { justify-content: center; } }
.trust b { display: block; font-size: 18px; font-weight: 800; color: var(--ink); }
.trust span { font-size: 13px; color: var(--body); }

/* phone product shot */
.hero-art { position: relative; display: grid; place-items: center; min-height: 520px; }
@media (max-width: 940px) { .hero-art { min-height: 460px; margin-top: 20px; } }
.phone {
  position: relative; width: 290px; height: 580px; border-radius: 44px; padding: 11px;
  background: linear-gradient(160deg, #33231b, #140d0a);
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.06) inset;
  animation: hover 6s ease-in-out infinite;
}
@keyframes hover { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-16px) rotate(1.5deg); } }
.phone-notch { position: absolute; top: 17px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; border-radius: 999px; background: #0d0806; z-index: 3; }
.phone-screen { height: 100%; border-radius: 34px; background: var(--cream); overflow: hidden; display: flex; flex-direction: column; }
.ps-head { padding: 44px 18px 12px; display: flex; align-items: center; gap: 10px; background: var(--surface); }
.ps-back { color: var(--body); font-size: 22px; line-height: 1; }
.ps-title { font-weight: 800; font-size: 15px; }
.ps-map { position: relative; height: 190px; background:
    linear-gradient(135deg, #ffe9d6, #ffd9c0);
  overflow: hidden; }
@media (prefers-color-scheme: dark) { .ps-map { background: linear-gradient(135deg, #3a2418, #24160f); } }
.ps-route {
  position: absolute; left: 16%; top: 26%; width: 68%; height: 46%;
  border-left: 3px dashed var(--orange); border-bottom: 3px dashed var(--orange);
  border-radius: 0 0 0 26px; opacity: .75;
}
.ps-pin, .ps-rider { position: absolute; font-size: 20px; }
.ps-pin-shop { color: var(--orange-deep); }
.ps-pin-home { color: var(--herb); }
.ps-rider { color: var(--ink); }
.ps-pin-shop { left: 9%; top: 17%; }
.ps-pin-home { right: 8%; bottom: 16%; }
.ps-rider { left: 44%; bottom: 22%; animation: ride 3.4s ease-in-out infinite; }
@keyframes ride { 0%,100% { transform: translateX(-14px); } 50% { transform: translateX(16px); } }
.ps-card { flex: 1; background: var(--surface); margin: -20px 10px 10px; border-radius: 22px; padding: 16px; box-shadow: var(--shadow); }
.ps-eta strong { display: block; font-size: 17px; font-weight: 800; }
.ps-eta span { font-size: 12px; color: var(--body); }
.ps-steps { display: flex; gap: 5px; margin: 13px 0; }
.ps-steps i { flex: 1; height: 5px; border-radius: 999px; background: var(--line); }
.ps-steps i.done { background: var(--herb); }
.ps-steps i.live { background: var(--orange); animation: beat 1.6s infinite; }
.ps-row { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-top: 1px solid var(--line); font-size: 12.5px; }
.ps-thumb { width: 30px; height: 30px; border-radius: 9px; background: var(--cream); display: grid; place-items: center; font-size: 16px; color: var(--orange-deep); }
.ps-item { flex: 1; font-weight: 600; }
.ps-qty { color: var(--body); }
.ps-total { display: flex; justify-content: space-between; padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--line); font-size: 13px; }
.ps-total b { font-size: 15px; color: var(--orange-deep); }

.orbit {
  position: absolute; font-size: 44px; color: var(--orange-deep);
  filter: drop-shadow(0 12px 18px rgba(70,38,20,.24));
  animation: bob 7s ease-in-out infinite;
}
.orbit-1 { top: 8%; left: 2%; }
.orbit-2 { bottom: 12%; left: 6%; animation-delay: 1.1s; }
.orbit-3 { top: 20%; right: 2%; animation-delay: 2.2s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-20px) rotate(8deg); } }
@media (max-width: 620px) { .orbit { display: none; } }

/* scrolling dish ticker */
.ticker { position: relative; border-block: 1.5px solid var(--line); background: var(--surface); padding: 15px 0; overflow: hidden; }
.ticker-row { display: flex; gap: 22px; width: max-content; animation: slide 46s linear infinite; font-weight: 700; color: var(--ink-2); font-size: 15.5px; white-space: nowrap; }
.ticker-row i { color: var(--orange); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ── sections ────────────────────────────────────────────────────────── */
section { padding: 92px 0; }
.cream { background: var(--cream); }
.head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.head h2 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 900; }
.head p { margin: 14px 0 0; color: var(--body); font-size: 17px; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }

/* ── dishes ──────────────────────────────────────────────────────────── */
.dishes { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.dish {
  position: relative; padding: 30px 26px 26px; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); box-shadow: none; border: 1px solid var(--line);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.dish::before {
  content: ""; position: absolute; inset: 0; opacity: .17;
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.dish[data-tone="jollof"]::before { background: radial-gradient(circle at 78% 12%, #FF7A2F, transparent 62%); }
.dish[data-tone="suya"]::before   { background: radial-gradient(circle at 78% 12%, #D93B1E, transparent 62%); }
.dish[data-tone="soup"]::before   { background: radial-gradient(circle at 78% 12%, #C8811F, transparent 62%); }
.dish[data-tone="fast"]::before   { background: radial-gradient(circle at 78% 12%, #FFB627, transparent 62%); }
.dish[data-tone="pepper"]::before { background: radial-gradient(circle at 78% 12%, #E8442E, transparent 62%); }
.dish[data-tone="sweet"]::before  { background: radial-gradient(circle at 78% 12%, #E86FA8, transparent 62%); }
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.dish:hover::before { opacity: .3; transform: scale(1.14); }
.dish > * { position: relative; }
.dish-art { display: block; font-size: 44px; line-height: 1; margin-bottom: 18px; transition: transform .32s var(--ease); }
.dish[data-tone="jollof"] .dish-art { color: #E8621F; }
.dish[data-tone="suya"]   .dish-art { color: #C7361A; }
.dish[data-tone="soup"]   .dish-art { color: #B4731A; }
.dish[data-tone="fast"]   .dish-art { color: #D9930F; }
.dish[data-tone="pepper"] .dish-art { color: #D93B24; }
.dish[data-tone="sweet"]  .dish-art { color: #D45B93; }
.dish:hover .dish-art { transform: scale(1.14) rotate(-8deg); }
.dish-name { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.dish-meta { display: block; margin-top: 6px; font-size: 13.5px; color: var(--body); }

/* ── runs ────────────────────────────────────────────────────────────── */
.runs { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.run { background: var(--surface); border-radius: var(--radius); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.run:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.run-ico { width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center; font-size: 29px; margin-bottom: 18px; }
.run[data-run="grocery"]  .run-ico { color: var(--herb); }
.run[data-run="pharmacy"] .run-ico { color: #2E5BEC; }
.run[data-run="parcel"]   .run-ico { color: #C88A0F; }
.run[data-run="grocery"]  .run-ico { background: rgba(63,157,79,.14); }
.run[data-run="pharmacy"] .run-ico { background: rgba(46,91,236,.13); }
.run[data-run="parcel"]   .run-ico { background: rgba(255,182,39,.20); }
.run h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.run p { margin: 0 0 16px; color: var(--body); font-size: 15px; }
.run-tag { display: inline-block; padding: 8px 14px; border-radius: 999px; background: var(--cream); font-size: 12.5px; font-weight: 600; color: var(--ink-2); }

/* ── tracking (dark) ─────────────────────────────────────────────────── */
.dark { background: var(--char); color: #FFF3EA; }
.dark .head h2, .dark h2 { color: #FFF3EA; }
.dark p { color: #C6AF9F; }
.track-grid { display: grid; gap: 52px; grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 940px) { .track-grid { grid-template-columns: 1fr; } }
.track-grid h2 { font-size: clamp(28px, 4.2vw, 42px); font-weight: 900; margin-bottom: 16px; }
.track-list { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 14px; }
.track-list li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; color: #C6AF9F; }
.track-list li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.track-list b { color: #FFF3EA; font-weight: 700; }
.track-note { font-size: 14px; opacity: .8; }
.track-art { display: grid; gap: 16px; }
.tcard { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; overflow: hidden; }
.tcard-2 { margin-left: 34px; }
.tcard-top { display: flex; align-items: center; gap: 9px; padding: 12px 18px; font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #C6AF9F; border-bottom: 1px solid rgba(255,255,255,.08); }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: beat 1.8s infinite; }
.tdot.green { background: var(--herb); animation: none; }
.tcard-body { padding: 18px; }
.trow { display: flex; align-items: center; gap: 13px; }
.tav { width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,.09); display: grid; place-items: center; font-size: 21px; color: var(--yolk); }
.trow b { display: block; font-size: 15px; color: #FFF3EA; }
.trow small { font-size: 12px; color: #A98F7E; }
.tcall { margin-left: auto; width: 38px; height: 38px; border-radius: 50%; background: rgba(63,157,79,.22); display: grid; place-items: center; font-size: 17px; color: #7BD98C; }
.tbar { height: 6px; border-radius: 999px; background: rgba(255,255,255,.1); margin: 16px 0 10px; overflow: hidden; }
.tbar i { display: block; height: 100%; width: 68%; border-radius: 999px; background: linear-gradient(90deg, var(--yolk), var(--orange)); }
.tmeta { display: flex; justify-content: space-between; font-size: 12.5px; color: #A98F7E; }
.tmeta b { color: var(--yolk); }

/* ── steps ───────────────────────────────────────────────────────────── */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.step { position: relative; padding: 8px 26px 8px 0; }
.step + .step::before {
  content: ""; position: absolute; left: -13px; top: 22px; bottom: 22px; width: 1px; background: var(--line);
}
.step-n {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 16px;
  background: linear-gradient(140deg, var(--yolk), var(--orange)); color: #fff;
  font-weight: 900; font-size: 19px; margin-bottom: 18px;
  box-shadow: 0 10px 20px -8px rgba(255,107,53,.8);
}
.step h4 { font-size: 19px; font-weight: 800; margin-bottom: 9px; }
.step p { margin: 0; font-size: 14.5px; color: var(--body); }

/* ── join ────────────────────────────────────────────────────────────── */
.joins { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.join { background: var(--surface); border-radius: var(--radius); padding: 34px; position: relative; overflow: hidden; }
.join::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; }
.join[data-join="vendor"]::before { background: linear-gradient(90deg, var(--herb), rgba(63,157,79,.3)); }
.join[data-join="rider"]::before  { background: linear-gradient(90deg, #2E5BEC, rgba(46,91,236,.3)); }
.join-ico { font-size: 40px; margin-bottom: 16px; }
.join[data-join="vendor"] .join-ico { color: var(--herb); }
.join[data-join="rider"]  .join-ico { color: #2E5BEC; }
.join h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.join > p { margin: 0 0 20px; color: var(--body); font-size: 15px; }
.join ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; font-size: 14.5px; color: var(--body); }
.join ul li { display: flex; gap: 10px; }
.join ul li::before { content: "✓"; font-weight: 800; }
.join[data-join="vendor"] ul li::before { color: var(--herb); }
.join[data-join="rider"] ul li::before { color: #2E5BEC; }

/* ── coverage ────────────────────────────────────────────────────────── */
.cover-grid { display: grid; gap: 48px; grid-template-columns: 1.05fr .95fr; align-items: center; }
@media (max-width: 880px) { .cover-grid { grid-template-columns: 1fr; gap: 30px; } }
.cover-grid h2 { font-size: clamp(28px, 4.2vw, 42px); font-weight: 900; margin-bottom: 16px; }
.cover-grid p { color: var(--body); margin: 0 0 14px; }
.cover-grid .btn { margin-top: 10px; }
.areas { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 11px; }
.areas li {
  padding: 12px 21px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line);
  font-size: 15px; font-weight: 700; transition: transform .25s var(--ease), color .25s;
}
.areas li:hover { transform: translateY(-4px) rotate(-2deg); color: var(--orange-deep); }

/* ── faq ─────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 0; }
.faq details { border-top: 1px solid var(--line); padding: 2px 4px; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 16.5px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--orange); transition: transform .3s var(--ease); line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 22px; color: var(--body); font-size: 15px; }

/* ── get the app ─────────────────────────────────────────────────────── */
.get { padding: 96px 0; }
.get-inner {
  text-align: center; padding: 64px 34px; border-radius: 34px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--yolk), var(--orange) 46%, var(--tomato));
}
.get-inner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 10%, rgba(255,255,255,.3), transparent 58%); }
.get-inner > * { position: relative; z-index: 1; }
.get-inner h2 { font-size: clamp(32px, 5vw, 50px); font-weight: 900; }
.get-inner > p { margin: 12px auto 36px; font-size: 17px; opacity: .95; }
.get-apps { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.get-app {
  display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 176px;
  padding: 26px 28px; border-radius: 24px; background: rgba(255,255,255,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
  transition: transform .28s var(--ease), background .28s var(--ease);
}
.get-app:hover { transform: translateY(-7px); background: rgba(255,255,255,.26); }
.get-app img { width: 56px; height: 56px; border-radius: 17px; margin-bottom: 8px; }
.get-app b { font-size: 16px; font-weight: 800; }
.get-app span { font-size: 13.5px; opacity: .9; }
.get-app small { font-size: 11.5px; opacity: .75; margin-top: 3px; }
.get-app[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* ── footer ──────────────────────────────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--line); padding: 58px 0 28px; }
.foot { display: grid; gap: 36px; grid-template-columns: 1.7fr repeat(3, 1fr); }
.foot-brand p { margin: 14px 0 0; color: var(--body); font-size: 14.5px; max-width: 32ch; }
.foot-col h5 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2); margin: 0 0 14px; }
.foot-col a { display: block; padding: 5px 0; color: var(--body); font-size: 14.5px; transition: color .2s, transform .2s var(--ease); }
.foot-col a:hover { color: var(--orange); transform: translateX(3px); }
.foot-base { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--body); }
.foot-links { display: flex; gap: 18px; }
.foot-links a:hover { color: var(--orange); }
@media (max-width: 780px) { .foot { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot { grid-template-columns: 1fr; } section { padding: 68px 0; } }


/* ── mobile ──────────────────────────────────────────────────────────────
   Phones do not need card chrome. A box around every item just adds borders
   and shadows between the reader and the content, and it stops the page
   flowing. Below 760px the cards dissolve into plain stacked sections
   separated by hairlines, and the dish grid becomes a swipeable row. */
@media (max-width: 760px) {
  section { padding: 56px 0; }
  .wrap { width: min(1140px, 100% - 32px); }
  .head { margin-bottom: 32px; text-align: left; }
  .head h2 { font-size: clamp(26px, 7.4vw, 34px); }
  .head p { font-size: 15.5px; }

  /* hero */
  .hero { padding-top: 34px; }
  .hero-grid { gap: 30px; padding-bottom: 40px; text-align: left; }
  .hero h1 { font-size: clamp(34px, 10vw, 46px); }
  .hero .lede { margin-inline: 0; font-size: 16px; }

  /* the address bar stacks so the field is not squeezed to nothing */
  .addr {
    flex-wrap: wrap; border-radius: 22px; padding: 6px 6px 6px 16px;
    margin-inline: 0; box-shadow: var(--shadow);
  }
  .addr input { flex: 1 1 100%; order: 1; padding: 12px 2px; }
  .addr-pin { order: 0; }
  .addr .btn { order: 2; flex: 1 1 100%; margin-top: 2px; }
  .addr-note { text-align: left; }

  .trust { gap: 0; justify-content: flex-start; flex-direction: column; margin-top: 24px; }
  .trust li { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; border-top: 1px solid var(--line); width: 100%; }
  .trust b { font-size: 15.5px; }

  .hero-art { min-height: 0; margin-top: 8px; }
  .phone { width: 236px; height: 470px; border-radius: 36px; padding: 9px; }
  .phone-screen { border-radius: 28px; }
  .ps-map { height: 150px; }

  /* dishes: a swipeable row, the way a food app does it */
  .dishes {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: -16px; padding: 4px 16px 14px; scrollbar-width: none;
  }
  .dishes::-webkit-scrollbar { display: none; }
  .dish {
    flex: 0 0 63%; scroll-snap-align: start;
    background: var(--surface); box-shadow: none; border: 1px solid var(--line);
    border-radius: 18px; padding: 20px 18px;
  }
  .dish:hover { transform: none; box-shadow: none; }
  .dish-art { font-size: 34px; margin-bottom: 12px; }
  .dish-name { font-size: 16.5px; }
  .dish-meta { font-size: 12.5px; }

  /* runs, steps and partner blocks: no boxes, just stacked content */
  .runs, .steps, .joins { display: block; }
  .run, .step, .join {
    background: none; box-shadow: none; border: 0; border-radius: 0;
    padding: 26px 0; border-top: 1px solid var(--line);
  }
  .run:hover, .step:hover, .join:hover { transform: none; box-shadow: none; }
  .join::before { display: none; }
  .runs > :first-child, .steps > :first-child, .joins > :first-child { border-top: 0; padding-top: 4px; }

  .run-ico, .join-ico { width: 46px; height: 46px; border-radius: 14px; font-size: 23px; margin-bottom: 12px; }
  .join-ico { width: auto; height: auto; font-size: 32px; }
  .run h3, .join h3 { font-size: 19px; }
  .step-n { width: 38px; height: 38px; font-size: 16px; border-radius: 13px; margin-bottom: 12px; }
  .step h4 { font-size: 17px; }
  .join ul { margin-bottom: 20px; }

  /* tracking */
  .track-grid { gap: 30px; }
  .tcard-2 { margin-left: 16px; }
  .track-list li { font-size: 14.5px; }

  /* areas */
  .areas li { padding: 10px 17px; font-size: 14px; box-shadow: none; border: 1px solid var(--line); }
  .areas li:hover { transform: none; }

  /* faq: one flat list, hairlines instead of a card per question */
  .faq { gap: 0; }
  .faq details {
    background: none; box-shadow: none; border-radius: 0; padding: 0;
    border-top: 1px solid var(--line);
  }
  .faq details:last-child { border-bottom: 1px solid var(--line); }
  .faq summary { padding: 18px 0; font-size: 15.5px; }
  .faq details p { font-size: 14.5px; margin-bottom: 18px; }

  /* closing block */
  .get { padding: 56px 0; }
  .get-inner { padding: 40px 22px; border-radius: 26px; }
  .get-inner h2 { font-size: clamp(28px, 8.6vw, 38px); }
  .get-inner > p { font-size: 15.5px; margin-bottom: 26px; }
  .get-apps { flex-direction: column; gap: 10px; }
  .get-app {
    flex-direction: row; align-items: center; gap: 14px; width: 100%;
    min-width: 0; padding: 14px 18px; border-radius: 18px; text-align: left;
  }
  .get-app img { width: 42px; height: 42px; margin-bottom: 0; }
  .get-app b { font-size: 15px; }
  .get-app span { font-size: 12.5px; margin-right: auto; }
  .get-app small { margin-top: 0; }

  footer { padding: 44px 0 22px; }
  .foot { gap: 26px; }
  .foot-base { margin-top: 32px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .wrap { width: min(1140px, 100% - 24px); }
  .dish { flex-basis: 72%; }
  .phone { width: 208px; height: 418px; }
}

/* ── reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hl::after { transform: scaleX(1); }
  .ticker-row { animation: none; }
}
