/* ==========================================================================
   Lekker Donuts — Mini Donut Truck, Nashville TN
   Brand palette + type pulled directly from the brand style guide:
   Pink #E8316E (lead) · Turquoise #08AEAE · Orange #F4922B · Yellow #F8C53A
   Navy #0E2150 (text/dark) · soft Teal/Pink/Cream tints · Fraunces + Inter
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colours (from logo / style guide) */
  --navy: #0E2150;
  --ink: #13265B;
  --pink: #E8316E;
  --pink-dark: #C81F58;
  --teal: #08AEAE;
  --teal-dark: #067E7E;
  --orange: #F4922B;
  --orange-dark: #C8741B;
  --yellow: #F8C53A;

  --white: #FFFFFF;
  --teal-tint: #E8F7F7;
  --pink-tint: #FDECF2;
  --cream-tint: #FFF7EC;
  --line: #ECE7F0;

  /* Semantic */
  --bg: var(--white);
  --fg: var(--ink);
  --fg-muted: #5A6488;
  --border: var(--line);
  --primary: var(--pink);
  --accent: var(--teal);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 920px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14,33,80,.05), 0 1px 3px rgba(14,33,80,.07);
  --shadow-md: 0 6px 18px rgba(14,33,80,.07), 0 2px 6px rgba(14,33,80,.05);
  --shadow-lg: 0 22px 50px rgba(14,33,80,.13), 0 8px 18px rgba(14,33,80,.08);
  --shadow-pink: 0 12px 26px rgba(232,49,110,.30);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --z-nav: 100;
  --z-drawer: 200;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.08; letter-spacing: -.5px; font-weight: 600; font-variant-ligatures: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 999;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 16px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 13px 24px; border-radius: var(--radius-full); border: 2px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease-out), box-shadow .2s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--pink); color: #fff; box-shadow: var(--shadow-pink); }
.btn--primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(232,49,110,.36); }
.btn--ghost { background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn--ghost:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 17px; }
.btn--sm { padding: 10px 18px; font-size: 15px; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0) scale(.98); }

/* ---------- Shared section bits ---------- */
.eyebrow {
  display: inline-block; font-weight: 600; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 12px;
}
.eyebrow--center { display: block; }
.eyebrow--light { color: var(--yellow); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 44px); }
.section-head p { margin-top: 14px; color: var(--fg-muted); font-size: 18px; }

section { padding: 96px 0; }

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

/* ======================= NAVBAR ======================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  transition: background-color .3s var(--ease-out), box-shadow .3s var(--ease-out), backdrop-filter .3s;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav.is-scrolled { background: rgba(255,255,255,.88); backdrop-filter: saturate(1.4) blur(12px); box-shadow: 0 1px 0 var(--border), var(--shadow-sm); }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--navy); letter-spacing: -.3px; }
.brand__name b { color: var(--pink); font-weight: 600; }

.nav__links { display: flex; gap: 28px; }
.nav__link { font-weight: 500; font-size: 15.5px; color: var(--navy); opacity: .82; position: relative; padding: 4px 0; transition: opacity .2s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--pink); border-radius: 2px; transition: width .25s var(--ease-out); }
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--teal-dark); }
.nav__phone svg { width: 18px; height: 18px; }
.nav__phone:hover { color: var(--teal); }
.nav__toggle { display: none; background: var(--navy); color: #fff; border: none; width: 44px; height: 44px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle svg { width: 24px; height: 24px; }

/* ======================= DRAWER ======================= */
.drawer { position: fixed; inset: 0; z-index: var(--z-drawer); visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(14,33,80,.5); opacity: 0; transition: opacity .3s var(--ease-out); }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; padding: 22px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .34s var(--ease-out); box-shadow: var(--shadow-lg);
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer__close { background: var(--pink-tint); border: none; width: 42px; height: 42px; border-radius: 12px; cursor: pointer; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__link { padding: 14px 12px; border-radius: 12px; font-weight: 600; font-size: 18px; color: var(--navy); }
.drawer__link:hover { background: var(--pink-tint); color: var(--pink); }
.drawer__cta { margin-top: 16px; }

/* ======================= HERO ======================= */
.hero { position: relative; padding: 150px 0 90px; background: radial-gradient(900px 520px at 88% -8%, rgba(8,174,174,.10), transparent 60%), radial-gradient(760px 480px at 4% 0%, rgba(232,49,110,.08), transparent 60%), var(--white); overflow: hidden; }
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; animation: float 9s ease-in-out infinite; }
.blob--pink { width: 120px; height: 120px; background: radial-gradient(circle at 35% 35%, var(--pink), var(--pink-dark)); top: 22%; left: 6%; opacity: .14; animation-delay: -1s; }
.blob--teal { width: 80px; height: 80px; background: var(--teal); top: 64%; left: 14%; opacity: .12; animation-delay: -4s; }
.blob--yellow { width: 60px; height: 60px; background: var(--yellow); top: 14%; right: 10%; opacity: .2; animation-delay: -2.5s; }
@keyframes float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-22px) translateX(10px); } }

.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__pill { display: inline-flex; align-items: center; gap: 9px; background: var(--teal-tint); color: var(--teal-dark); font-weight: 600; font-size: 14px; padding: 8px 16px; border-radius: var(--radius-full); }
.hero__pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(8,174,174,.2); }
.hero h1 { font-size: clamp(44px, 7vw, 78px); font-weight: 700; margin: 18px 0 18px; letter-spacing: -1.5px; }
.hero h1 .accent { color: var(--pink); }
.hero__say { font-size: 15.5px; color: var(--fg-muted); margin-top: 12px; }
.hero__say b { color: var(--pink); font-weight: 600; }
.hero__say i { font-style: normal; color: var(--teal-dark); font-weight: 600; letter-spacing: .3px; }
.hero__sub { font-size: 19px; color: var(--fg-muted); max-width: 520px; margin-top: 14px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero__trust { display: grid; grid-template-columns: repeat(4, auto); gap: 26px; margin-top: 44px; }
.hero__trust-item .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--navy); }
.hero__trust-item .num .accent { color: var(--pink); }
.hero__trust-item .lbl { font-size: 13.5px; color: var(--fg-muted); margin-top: 2px; }

/* Hero donut visual */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.hero__donut { position: relative; width: min(82%, 380px); animation: bob 5.5s ease-in-out infinite; }
.hero__donut svg { width: 100%; filter: drop-shadow(0 26px 36px rgba(14,33,80,.22)); }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-16px) rotate(3deg); } }
.hero__sprinkles line { transform-box: fill-box; transform-origin: center; }
/* icing shifts from brand pink to brand turquoise now and then */
.hero__icing { animation: icingShift 12s ease-in-out infinite; }
@keyframes icingShift {
  0%, 58% { fill: #E8316E; }   /* pink (most of the time) */
  74%, 86% { fill: #08AEAE; }  /* brand turquoise */
  100% { fill: #E8316E; }
}
.hero__steam { position: absolute; top: -6%; left: 50%; transform: translateX(-50%); display: flex; gap: 14px; }
.hero__steam i { width: 8px; height: 34px; border-radius: 8px; background: linear-gradient(to top, rgba(8,174,174,.0), rgba(8,174,174,.45)); opacity: 0; animation: steam 2.6s ease-in-out infinite; }
.hero__steam i:nth-child(2) { animation-delay: .5s; height: 44px; }
.hero__steam i:nth-child(3) { animation-delay: 1s; }
@keyframes steam { 0% { opacity: 0; transform: translateY(8px) scaleY(.7); } 40% { opacity: .8; } 100% { opacity: 0; transform: translateY(-26px) scaleY(1.2); } }

.hero__chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 12px 16px; border-radius: 16px; font-weight: 600; font-size: 14.5px; color: var(--navy); }
.hero__chip small { display: block; font-weight: 500; font-size: 12.5px; color: var(--fg-muted); }
.hero__chip .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.hero__chip .ic--teal { background: var(--teal); }
.hero__chip .ic svg { width: 20px; height: 20px; }
.hero__chip--tl { top: 6%; left: -4%; animation: bob 6s ease-in-out infinite; }
.hero__chip--br { bottom: 8%; right: -2%; animation: bob 6.5s ease-in-out infinite; animation-delay: -2s; }

/* ======================= SIGNATURE: FLOATING BASKET (scroll toy) ======================= */
/* A small fixed widget that fills with donuts as you scroll the whole page.
   Decorative + pointer-events:none, so it never traps the user or blocks clicks. */
.basket-mini {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 150px;
  pointer-events: none; text-align: center;
  opacity: 0; transform: translateY(14px) scale(.94);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-spring);
}
.basket-mini.is-active { opacity: 1; transform: none; }
.basket-mini__stage { position: relative; height: 126px; }
/* the tub sits BEHIND the donuts so every donut stays visible as it fills from the bottom up */
.basket-mini__art { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 138px; z-index: 0; filter: drop-shadow(0 9px 13px rgba(14,33,80,.22)); }
.basket-mini__donuts { position: absolute; inset: 0; z-index: 1; }
.basket-mini__label {
  display: inline-block; margin-top: 6px; background: #fff; color: var(--navy);
  font-weight: 700; font-size: 12.5px; padding: 4px 11px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-md); font-variant-numeric: tabular-nums;
}
.basket-mini__label span { color: var(--pink); }

/* Individual donuts — positioned via inline left%/bottom set in JS */
.bd { position: absolute; width: 46px; height: 46px; transform: translate(-50%, 18px) scale(.35); opacity: 0; transition: transform .5s var(--ease-spring), opacity .3s var(--ease-out); will-change: transform, opacity; }
.bd.is-in { transform: translate(-50%, 0) scale(1); opacity: 1; }
.bd svg { width: 100%; height: 100%; filter: drop-shadow(0 3px 4px rgba(14,33,80,.20)); }

/* ======================= WHAT'S LEKKER? ======================= */
.lekker { background: var(--pink-tint); }
.lekker__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.lekker__inner h2 { font-size: clamp(30px, 4.4vw, 44px); }
.lekker__inner h2 .accent { color: var(--pink); }
.lekker__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 28px 30px; margin: 26px auto 0; max-width: 560px; }
.lekker__say { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 8px 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.lekker__word { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--navy); }
.lekker__phon { font-size: 20px; color: var(--teal-dark); letter-spacing: .5px; font-variant-numeric: tabular-nums; }
.lekker__phon b { color: var(--pink); font-weight: 700; }
.lekker__def { margin-top: 16px; font-size: 16.5px; color: var(--navy); text-align: left; }
.lekker__def strong { color: var(--pink-dark); font-weight: 700; }
.lekker__def em { font-style: italic; }
.lekker__copy { margin-top: 22px; font-size: 17px; color: var(--fg-muted); }

/* ======================= THE DIFFERENCE ======================= */
.diff { background: var(--teal-tint); }
.diff__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 920px; margin: 0 auto; }
.diff__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-md); }
.diff__card--lekker { background: linear-gradient(180deg, #fff, #fff) padding-box, linear-gradient(160deg, var(--pink), var(--orange)) border-box; border: 2px solid transparent; box-shadow: var(--shadow-lg); position: relative; }
.diff__card--muted { opacity: .96; }
.diff__tag { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pink); background: var(--pink-tint); padding: 6px 12px; border-radius: var(--radius-full); }
.diff__tag--muted { color: var(--fg-muted); background: #F1F0F5; }
.diff__card h3 { font-size: 30px; margin: 16px 0 18px; }
.diff__list li { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 16.5px; color: var(--navy); border-top: 1px solid var(--border); }
.diff__list li:first-child { border-top: none; }
.diff__list svg { width: 22px; height: 22px; flex: none; border-radius: 50%; padding: 3px; }
.diff__list .check { color: #fff; background: var(--teal); stroke: currentColor; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.diff__list .x { color: var(--fg-muted); background: #F1F0F5; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.diff__card--muted .diff__list li { color: var(--fg-muted); }

/* ======================= HOW IT WORKS ======================= */
.how { background: var(--white); }
.how__block { position: relative; max-width: 1060px; margin: 0 auto; }
.how__line { position: absolute; top: 38px; left: 8%; right: 8%; height: 3px; background: repeating-linear-gradient(90deg, var(--orange) 0 14px, transparent 14px 26px); border-radius: 3px; opacity: 0; transform: scaleX(0); transform-origin: left; transition: opacity .5s var(--ease-out), transform 1.1s var(--ease-out); }
.how__block.is-revealed .how__line { opacity: .5; transform: scaleX(1); }
.how__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.how__step { text-align: center; padding: 0 6px; }
.how__num { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--pink); letter-spacing: 1px; }
.how__ic { width: 76px; height: 76px; margin: 10px auto 18px; border-radius: 22px; background: var(--pink-tint); color: var(--pink); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-spring); }
.how__step:nth-child(2) .how__ic { background: var(--teal-tint); color: var(--teal-dark); }
.how__step:nth-child(3) .how__ic { background: var(--cream-tint); color: var(--orange-dark); }
.how__step:nth-child(4) .how__ic { background: #FEF6DC; color: #B8860B; }
.how__step:hover .how__ic { transform: translateY(-6px) rotate(-4deg); }
.how__ic svg { width: 34px; height: 34px; }
.how__step h3 { font-size: 21px; margin-bottom: 8px; }
.how__step p { font-size: 15.5px; color: var(--fg-muted); }

/* ======================= EVENTS ======================= */
.events { background: var(--pink-tint); }
.events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-card__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--teal-tint); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.event-card__ic svg { width: 28px; height: 28px; }
.event-card:nth-child(2n) .event-card__ic { background: var(--cream-tint); color: var(--orange-dark); }
.event-card:nth-child(3n) .event-card__ic { background: var(--pink-tint); color: var(--pink); }
.event-card h3 { font-size: 21px; margin-bottom: 8px; }
.event-card p { font-size: 15.5px; color: var(--fg-muted); }
.event-card--cta { background: linear-gradient(155deg, var(--navy), var(--ink)); color: #fff; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.event-card--cta h3 { color: #fff; }
.event-card--cta p { color: rgba(255,255,255,.78); margin-bottom: 18px; }

/* model tags: "We sell" vs "Flat fee" */
.event-card__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-full); margin-bottom: 12px; }
.event-card__tag--sell { color: var(--teal-dark); background: var(--teal-tint); }
.event-card__tag--flat { color: var(--pink); background: var(--pink-tint); }

/* ======================= TWO WAYS TO BOOK ======================= */
.ways { background: var(--teal-tint); }
.ways__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 920px; margin: 0 auto; }
.ways__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-md); }
.ways__card .event-card__ic { background: var(--teal-tint); color: var(--teal-dark); margin-bottom: 16px; }
.ways__card--flat .event-card__ic { background: var(--pink-tint); color: var(--pink); }
.ways__card h3 { font-size: 24px; margin: 4px 0 10px; }
.ways__card p { font-size: 16px; color: var(--fg-muted); }

/* ======================= ANIMATED TRUCK ======================= */
.truck-scene { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--teal-tint) 0%, #ffffff 72%); }
.truck-scene__stage { position: relative; height: 320px; margin-top: 24px; }

/* road */
.truck-scene__ground { position: absolute; left: 0; right: 0; bottom: 0; height: 56px; background: linear-gradient(180deg, #16306b, #0E2150); z-index: 1; }
.truck-scene__lane { position: absolute; left: 0; right: 0; bottom: 25px; height: 6px; z-index: 1;
  background-image: repeating-linear-gradient(90deg, var(--yellow) 0 30px, transparent 30px 60px);
  background-size: 60px 6px; animation: laneMove .6s linear infinite; }
@keyframes laneMove { to { background-position-x: -60px; } }

/* drifting clouds */
.truck-scene__cloud { position: absolute; right: -140px; width: 92px; height: 30px; background: #fff; border-radius: 30px; opacity: .75; z-index: 0;
  box-shadow: 24px 8px 0 -5px #fff, -24px 9px 0 -7px #fff; }
.truck-scene__cloud--1 { top: 26px; animation: cloudDrift 26s linear infinite; }
.truck-scene__cloud--2 { top: 72px; width: 64px; height: 22px; opacity: .6; animation: cloudDrift 38s linear infinite; animation-delay: -14s; }
@keyframes cloudDrift { from { transform: translateX(0); } to { transform: translateX(calc(-100vw - 300px)); } }

/* the truck itself */
.truck-scene__truckwrap { position: absolute; left: 0; right: 0; bottom: 34px; display: flex; justify-content: center; z-index: 3; }
.truck { width: min(88%, 480px); }
.truck[data-reveal] { opacity: 0; transform: translateX(-160px); transition: opacity .5s var(--ease-out), transform 1.15s var(--ease-out); }
.truck[data-reveal].is-visible { opacity: 1; transform: translateX(0); }
.truck__svg { width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 12px 16px rgba(14,33,80,.18)); animation: truckBob 2.8s ease-in-out infinite; }
@keyframes truckBob { 0%, 100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-7px) rotate(.4deg); } }

.truck__wheel { transform-box: fill-box; transform-origin: center; animation: wheelSpin 1.1s linear infinite; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }

.truck__puff { transform-box: fill-box; transform-origin: center; opacity: 0; animation: truckPuff 2.4s ease-in-out infinite; }
.truck__puff--2 { animation-delay: .8s; }
.truck__puff--3 { animation-delay: 1.6s; }
@keyframes truckPuff { 0% { opacity: 0; transform: translate(0,0) scale(.5); } 30% { opacity: .7; } 100% { opacity: 0; transform: translate(7px,-26px) scale(1.15); } }

/* ======================= MENU ======================= */
.menu { background: var(--cream-tint); }
.menu__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.menu__copy h2 { font-size: clamp(30px, 4.4vw, 44px); }
.menu__copy p { margin: 14px 0 26px; color: var(--fg-muted); font-size: 18px; }
.menu__list { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px 28px; box-shadow: var(--shadow-md); }
.menu__item { display: flex; align-items: baseline; gap: 10px; padding: 17px 0; border-top: 1px solid var(--border); }
.menu__item:first-child { border-top: none; }
.menu__name { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--navy); white-space: nowrap; }
.menu__star { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--pink); background: var(--pink-tint); padding: 3px 8px; border-radius: var(--radius-full); vertical-align: middle; margin-left: 6px; }
.menu__dots { flex: 1; border-bottom: 2px dotted #D9D2E0; transform: translateY(-4px); }
.menu__price { font-size: 14.5px; color: var(--fg-muted); font-style: italic; white-space: nowrap; }
.menu__note { padding: 16px 0 6px; font-size: 14.5px; color: var(--fg-muted); }

/* ======================= BOOK ======================= */
.book { background: linear-gradient(165deg, var(--navy), var(--ink)); color: #fff; }
.book__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.book__copy h2 { color: #fff; font-size: clamp(30px, 4.4vw, 46px); }
.book__copy > p { color: rgba(255,255,255,.78); font-size: 18px; margin: 16px 0 26px; max-width: 460px; }
.book__points { display: grid; gap: 12px; margin-bottom: 30px; }
.book__points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: rgba(255,255,255,.92); }
.book__points svg { width: 22px; height: 22px; color: var(--yellow); flex: none; }
.book__contact { display: grid; gap: 12px; }
.book__contact-row { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; color: #fff; }
.book__contact-row svg { width: 20px; height: 20px; color: var(--teal); }
.book__contact-row:hover { color: var(--yellow); }

.book__formwrap { position: relative; }
.book__form { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.book__form-title { font-size: 24px; margin-bottom: 20px; color: var(--navy); }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 7px; }
.field .req { color: var(--pink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 12px; background: #fff;
  transition: border-color .18s, box-shadow .18s; width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(8,174,174,.16); }
.field__error { display: none; color: var(--pink-dark); font-size: 13px; font-weight: 500; margin-top: 6px; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(232,49,110,.12); }
.field--error .field__error { display: block; }
.book__form-fine { text-align: center; font-size: 13px; color: var(--fg-muted); margin-top: 14px; }

.book__success { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 56px 34px; min-height: 380px; display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.book__success.is-shown { display: flex; animation: pop .4s var(--ease-spring); }
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.book__success-ic { width: 70px; height: 70px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.book__success-ic svg { width: 36px; height: 36px; }
.book__success h3 { font-size: 26px; color: var(--navy); }
.book__success p { color: var(--fg-muted); margin-top: 10px; max-width: 340px; }

/* ======================= FAQ ======================= */
.faq { background: #fff; }
.faq__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.faq__inner .section-head { margin: 0; }
.faq__inner .section-head a { color: var(--pink); font-weight: 600; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq__item[open] { box-shadow: var(--shadow-md); border-color: #DCD4E4; }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 18.5px; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { position: relative; width: 16px; height: 16px; flex: none; }
.faq__chev::before, .faq__chev::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2.4px; background: var(--pink); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .25s var(--ease-out); }
.faq__chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chev::after { transform: translate(-50%, -50%) rotate(0); }
.faq__item p { padding: 0 22px 22px; color: var(--fg-muted); font-size: 16px; }

/* ======================= FOOTER ======================= */
.footer { background: var(--cream-tint); padding: 64px 0 28px; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; }
.footer__tag { margin-top: 16px; color: var(--fg-muted); font-size: 15px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 14px; }
.footer__col a { display: block; padding: 6px 0; color: var(--fg-muted); font-size: 15px; transition: color .18s; }
.footer__col a:hover { color: var(--pink); }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--fg-muted); flex-wrap: wrap; }
.footer__made em { font-style: italic; opacity: .7; }

/* ======================= RESPONSIVE ======================= */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { min-height: 320px; order: -1; }
  .hero__trust { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .menu__inner, .book__inner, .faq__inner, .footer__inner { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .how__line { display: none; }
  .faq__inner .section-head { text-align: left; }
}

@media (max-width: 860px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 680px) {
  section { padding: 72px 0; }
  .hero { padding: 124px 0 64px; }
  /* phones: drop the top-bar Book button (the hamburger menu + hero CTA cover it) so the nav can't overflow */
  .nav__actions .btn--primary { display: none; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero__cta .btn { flex: 1; }
  .diff__grid { grid-template-columns: 1fr; }
  .ways__grid { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  /* menu rows stack on mobile so long names wrap instead of forcing overflow */
  .menu__item { flex-wrap: wrap; gap: 2px 10px; }
  .menu__name { white-space: normal; }
  .menu__dots { display: none; }
  .menu__price { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .book__form, .book__success { padding: 24px 20px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
  /* shrink the floating tub a touch on phones so it stays out of the way */
  .basket-mini { right: 14px; bottom: 14px; width: 120px; }
  .basket-mini__stage { height: 104px; }
  .basket-mini__art { width: 112px; }
  .basket-mini .bd { width: 38px; height: 38px; }
  .truck-scene__stage { height: 220px; }
  .truck { width: 94%; }
}

@media (max-width: 380px) {
  .hero__chip { display: none; }
}

/* ======================= 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; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .blob, .hero__donut, .hero__chip, .hero__steam { animation: none !important; }
  .bd { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
