/* ============================================================
   CAFE BETTY'S — styles
   Palette from the truck: enamel cream · dusty rose · burgundy · espresso
   Type: Young Serif (display) · Karla (text/UI) · Yesteryear (script accents)
   Signature: the trailer's two-tone body — corrugated cream panels + rose beltline
   ============================================================ */
:root {
  --cream: #FBF3E8;
  --cream-2: #F5EADB;
  --cream-3: #EFE1CF;
  --oat: #E8DCCF;
  --rose: #BB8688;
  --rose-2: #C99B9C;
  --rose-deep: #9C6467;
  --burg: #78121A;
  --burg-2: #8E2B33;
  --esp: #3B241C;
  --esp-2: #2B1813;
  --ink: #3B241C;
  --muted: #7A5B51;
  --line: rgba(120, 60, 50, .16);
  --navy: #1F2A44;

  --display: 'Young Serif', 'Iowan Old Style', Georgia, serif;
  --sans: 'Karla', 'Helvetica Neue', Arial, sans-serif;
  --script: 'Yesteryear', 'Snell Roundhand', cursive;

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --shadow: 0 24px 60px -30px rgba(59, 36, 28, .35);
  --corrugation: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0 26px, rgba(120, 60, 50, .045) 26px 28px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--burg); outline-offset: 3px; border-radius: 4px; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }

/* Type */
h1, h2, h3, .display { font-family: var(--display); font-weight: 400; letter-spacing: -.012em; line-height: .98; margin: 0; color: var(--burg); }
h1 { font-size: clamp(46px, 7.2vw, 112px); }
h2 { font-size: clamp(34px, 4.6vw, 64px); }
h3 { font-size: clamp(26px, 3vw, 38px); }
.display { font-size: clamp(34px, 4.3vw, 66px); }
.lead { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.5; color: var(--ink); max-width: 56ch; }
.eyebrow { font: 600 12.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--rose-deep); margin: 0 0 16px; }
.script { font-family: var(--script); font-weight: 400; color: var(--burg); font-size: clamp(38px, 5vw, 76px); line-height: 1; margin: 0; }
.script.light { color: var(--cream); }
p { margin: 0 0 1em; }
em { font-style: italic; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font: 600 14px/1 var(--sans); letter-spacing: .04em; border: 1.5px solid transparent; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-burg { background: var(--burg); color: var(--cream); }
.btn-burg:hover { background: var(--burg-2); }
.btn-cream { background: var(--cream); color: var(--burg); }
.btn-cream:hover { background: #fff; }
.btn-ghost { background: rgba(251, 243, 232, .35); color: var(--esp); border-color: rgba(59, 36, 28, .35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(251, 243, 232, .7); }
.btn-ghost-dark { background: transparent; color: var(--burg); border-color: rgba(120, 18, 26, .45); }
.btn-ghost-dark:hover { background: rgba(120, 18, 26, .06); }
.btn-nav { padding: 11px 18px; font-size: 13px; background: var(--burg); color: var(--cream); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 100; background: var(--cream); display: grid; place-items: center; transition: opacity .7s ease, visibility .7s; --p: 0; }
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; width: min(280px, 70vw); }
.loader-logo { width: 220px; margin: 0 auto 26px; }
.loader-bar { height: 2px; background: rgba(120, 60, 50, .15); border-radius: 2px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: calc(var(--p) * 100%); background: var(--rose-deep); transition: width .3s ease; }
.loader-note { margin: 14px 0 0; font: 500 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; gap: 28px; padding: 16px var(--gutter); transition: background .35s ease, box-shadow .35s ease, padding .35s ease; }
.nav.scrolled { background: rgba(251, 243, 232, .86); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 rgba(120, 60, 50, .12); padding-block: 10px; }
.brand img { width: 150px; height: auto; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font: 500 14px/1 var(--sans); letter-spacing: .02em; color: var(--esp); position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--rose-deep); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(59, 36, 28, .35); background: rgba(251, 243, 232, .6); cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--esp); transition: transform .3s ease, top .3s ease; top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 45; background: var(--cream); background-image: var(--corrugation); display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 96px var(--gutter) 40px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .35s ease, visibility .35s, transform .35s ease; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu > a:not(.btn) { font-family: var(--display); font-size: clamp(34px, 9vw, 52px); color: var(--burg); padding: 8px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { align-self: flex-start; margin-top: 22px; background: var(--burg); color: var(--cream); }
.mm-foot { margin-top: auto; color: var(--muted); font-size: 14px; }
.mm-foot a { color: var(--burg); }

/* ---------- Scrub sections ---------- */
.scrub { position: relative; height: 520vh; }
.scrub.pbj { height: 480vh; }
.scrub.roll { height: 460vh; }
.stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: var(--cream-3); }
.stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.stage .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity .4s ease; }
.scrub.has-frame .poster { opacity: 0; }
.stage-shade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(251, 243, 232, .78) 0%, rgba(251, 243, 232, .5) 24%, rgba(251, 243, 232, 0) 52%),
              linear-gradient(0deg, rgba(251, 243, 232, .5) 0%, rgba(251, 243, 232, 0) 28%); }
.stage-shade.shade-warm { background: linear-gradient(90deg, rgba(43, 24, 19, .55) 0%, rgba(43, 24, 19, .28) 26%, rgba(43, 24, 19, 0) 50%),
              linear-gradient(270deg, rgba(43, 24, 19, .5) 0%, rgba(43, 24, 19, .22) 22%, rgba(43, 24, 19, 0) 46%),
              linear-gradient(0deg, rgba(43, 24, 19, .55) 0%, rgba(43, 24, 19, 0) 34%); }
.reveal-line { position: absolute; opacity: 0; will-change: opacity, transform; max-width: min(520px, 36vw); }
.reveal-line.ml { left: var(--gutter); top: 50%; transform: translateY(-50%); }
.reveal-line.mr { right: var(--gutter); top: 50%; transform: translateY(-50%); text-align: right; }
.reveal-line.mr .cta-row { justify-content: flex-end; }
.reveal-line.center { left: 50%; top: 50%; transform: translate(-50%, -50%) !important; text-align: center; max-width: min(760px, 86vw); margin-left: 0; }
.reveal-line.center.low { top: auto; bottom: 10vh; transform: translateX(-50%) !important; }
.reveal-line.center { transform: translateX(-50%) translateY(-50%); }
/* Hero layout = film poster: title in the sky (top-left), lead + CTAs over the grass (bottom-left),
   so the trailer in the middle band of the frame stays clear of copy. */
.hero .stage-shade { background: linear-gradient(180deg, rgba(251, 243, 232, .55) 0%, rgba(251, 243, 232, .18) 22%, rgba(251, 243, 232, 0) 40%),
                                 linear-gradient(0deg, rgba(251, 243, 232, .74) 0%, rgba(251, 243, 232, .36) 18%, rgba(251, 243, 232, 0) 38%); }
.hero-title { left: var(--gutter); top: clamp(84px, 12vh, 132px); max-width: min(760px, 62vw); }
.hero-title h1 { font-size: clamp(36px, 4.5vw, 78px); text-shadow: 0 1px 0 rgba(251, 243, 232, .5); }
.hero-ctas { left: var(--gutter); bottom: 6vh; max-width: 600px; }
.hero-ctas .lead { max-width: 60ch; margin: 0 0 18px; font-size: 16.5px; text-shadow: 0 0 18px rgba(251, 243, 232, .95), 0 1px 2px rgba(251, 243, 232, .7); }
.hero-mid { left: 0; right: 0; top: clamp(96px, 14vh, 150px); text-align: center; max-width: none; padding: 0 var(--gutter); }
.hero-mid .mid-note, .hero-end .mid-note { font-size: 17px; color: var(--esp); max-width: 44ch; margin: 14px auto 0; text-shadow: 0 0 18px rgba(251, 243, 232, .95), 0 1px 2px rgba(251, 243, 232, .7); }
.hero-end { left: var(--gutter); bottom: 9vh; max-width: 560px; }
.hero-end .mid-note { margin: 10px 0 18px; }
.hero-end .areas { font-family: var(--display); font-size: clamp(22px, 2.4vw, 32px); color: var(--burg); line-height: 1.15; margin: 0 0 4px; }
.pbj .reveal-line, .roll .reveal-line { color: var(--cream); }
.pbj .display, .roll .display { color: var(--cream); }
.pbj .lead, .roll .lead { color: rgba(251, 243, 232, .92); margin-top: 20px; }
.pbj .eyebrow, .roll .eyebrow { color: rgba(251, 243, 232, .82); }
.pill { display: inline-block; background: var(--rose); color: var(--esp-2); border-radius: 999px; padding: 6px 10px 5px; margin-right: 8px; letter-spacing: .12em; }
.board-list { font-family: var(--display); font-size: clamp(16px, 1.6vw, 22px); line-height: 1.35; color: var(--cream); margin: 0 auto 18px; max-width: 34em; }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); font: 600 11px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--esp); display: flex; flex-direction: column; align-items: center; gap: 10px; transition: opacity .4s; }
.scroll-hint span { width: 1.5px; height: 44px; background: linear-gradient(var(--esp), transparent); animation: hint 1.8s ease-in-out infinite; }
@keyframes hint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(59, 36, 28, .12); }
.progress-fill { height: 100%; width: 0; background: var(--rose-deep); }
.pbj .progress, .roll .progress { background: rgba(251, 243, 232, .18); }
.pbj .progress-fill, .roll .progress-fill { background: var(--rose-2); }

/* QA mode (?static=…): un-stick stages so full-page screenshots render every clip */
.static-preview .scrub, .static-preview .scrub.pbj, .static-preview .scrub.roll { height: 100vh; }
.static-preview .stage { position: relative; height: 100vh; }
.static-preview .scroll-hint { display: none; }

/* ---------- Beltline (rose band with serif ticker) ---------- */
.beltline { background: var(--rose); color: var(--cream); overflow: hidden; border-top: 3px solid var(--rose-deep); border-bottom: 3px solid var(--rose-deep); position: relative; }
.beltline::before, .beltline::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: rgba(251, 243, 232, .35); }
.beltline::before { top: 6px; } .beltline::after { bottom: 6px; }
.belt-track { display: flex; align-items: center; gap: 34px; padding: 18px 0; width: max-content; animation: belt 42s linear infinite; font-family: var(--display); font-size: 15px; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; }
.belt-track i { font-style: normal; font-size: 11px; opacity: .8; }
@keyframes belt { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .belt-track { animation: none; } }

/* ---------- Story ---------- */
.story { background: var(--cream); background-image: var(--corrugation); padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.story-grid, .owners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.owners-grid { margin-top: clamp(90px, 11vw, 160px); }
.story-photo, .owners-photo, .request-photo { margin: 0; position: relative; }
.story-photo img:not(.stamp) { border-radius: var(--radius); box-shadow: var(--shadow); filter: sepia(.12) contrast(1.02); }
.story-photo .stamp { position: absolute; right: -28px; bottom: 44px; width: clamp(120px, 14vw, 200px); height: auto; border-radius: 50%; box-shadow: 0 16px 40px -18px rgba(59, 36, 28, .5); transform: rotate(-6deg); }
.story-photo figcaption { margin-top: 14px; font: 500 13px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.story-text h2, .owners-text h2 { margin-bottom: 26px; }
.story-text p, .owners-text p { font-size: 17.5px; color: var(--ink); max-width: 56ch; }
.story-text blockquote { margin: 30px 0 0; padding: 0 0 0 22px; border-left: 3px solid var(--rose); }
.story-text blockquote p { font-family: var(--display); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; color: var(--burg); margin: 0 0 10px; }
.story-text cite { font-style: normal; font: 500 13px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.owners-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.facts { list-style: none; margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.facts li { border-top: 1px solid var(--line); padding-top: 12px; font-size: 15px; color: var(--ink); }
.facts strong { display: block; font: 600 11.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 6px; }

/* ---------- Menu ---------- */
.menu { background: var(--rose); color: var(--cream); padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.menu::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0 26px, rgba(59, 36, 28, .08) 26px 28px); pointer-events: none; }
.menu .wrap { position: relative; }
.menu-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.menu-head .eyebrow { color: var(--cream-2); }
.menu-head h2 { color: var(--cream); }
.menu-head .lead { color: rgba(251, 243, 232, .92); margin-top: 20px; }
.boards { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.board { background: var(--cream); color: var(--ink); border-radius: 12px; padding: clamp(26px, 3vw, 44px); box-shadow: 0 30px 70px -36px rgba(43, 24, 19, .6), inset 0 0 0 1px rgba(120, 60, 50, .12); position: relative; }
.board::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(120, 18, 26, .18); border-radius: 8px; pointer-events: none; }
.board header { text-align: center; margin-bottom: 22px; }
.board-script { font-family: var(--script); font-size: clamp(40px, 4vw, 56px); color: var(--burg); line-height: 1; margin: 0; }
.board h3 { font-size: 15px; font-family: var(--sans); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep); margin-top: 8px; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px dashed rgba(120, 60, 50, .28); font-family: var(--display); font-size: clamp(19px, 1.7vw, 24px); color: var(--burg); }
.menu-list li > span { flex: 1; }
.menu-list li b { font-weight: 400; color: var(--rose-deep); }
.menu-list li b::before { content: "$"; font-size: .7em; vertical-align: .18em; margin-right: 1px; }
.menu-list.specialty li { display: block; padding: 14px 0; }
.menu-list.specialty span { display: block; }
.menu-list.specialty small { font-family: var(--sans); font-size: 13px; color: var(--muted); letter-spacing: .04em; margin-left: 6px; }
.menu-list.specialty p { font-family: var(--sans); font-size: 15px; line-height: 1.5; color: var(--ink); margin: 6px 0 0; max-width: 60ch; }
.tag { display: inline-block; font: 600 10.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--cream); background: var(--rose-deep); border-radius: 999px; padding: 5px 9px 4px; vertical-align: middle; margin-left: 8px; font-style: normal; }
.board-notes { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 24px; }
.board-notes h4 { margin: 0 0 6px; font-family: var(--script); font-weight: 400; font-size: 24px; color: var(--burg); line-height: 1; }
.board-notes h4 small { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.board-notes p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink); }
.board-fine { margin: 18px 0 0; font-size: 12.5px; color: var(--muted); text-align: center; }

/* ---------- Find the truck ---------- */
.find { background: var(--cream-2); background-image: var(--corrugation); padding: clamp(80px, 10vw, 140px) 0; }
.find-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.find-text .lead { margin: 22px 0 26px; }
.areas-list { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.areas-list li { font: 500 13px/1 var(--sans); letter-spacing: .06em; color: var(--burg); border: 1px solid rgba(120, 18, 26, .35); border-radius: 999px; padding: 9px 14px; }
.week-card { background: var(--rose); border-radius: 22px; padding: clamp(18px, 2.4vw, 30px); box-shadow: var(--shadow); transform: rotate(-1.2deg); }
.week-inner { background: var(--cream); border-radius: 12px; padding: clamp(22px, 2.6vw, 34px); box-shadow: inset 0 0 0 1px rgba(120, 60, 50, .12), 0 10px 30px -18px rgba(59, 36, 28, .35); }
.week-title { font-family: var(--script); font-size: clamp(34px, 3.4vw, 46px); color: var(--burg); text-align: center; margin: 0 0 18px; line-height: 1; }
.week-copy { font-size: 16px; line-height: 1.55; color: var(--ink); margin: 0 0 20px; text-align: center; }
.week-btn { display: flex; justify-content: center; width: 100%; }
.week-facts { list-style: none; margin: 22px 0 0; padding: 18px 0 0; border-top: 1px dashed rgba(120, 60, 50, .28); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; text-align: center; }
.week-facts li { font-family: var(--display); font-size: 17px; color: var(--burg); line-height: 1.2; }
.week-facts strong { display: block; font: 600 10.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 7px; }
.week-badge { width: 72px; height: 72px; border-radius: 50%; margin: 22px auto 0; box-shadow: 0 10px 24px -14px rgba(59, 36, 28, .5); }

/* ---------- Request ---------- */
.request { background: var(--esp); color: var(--cream); padding: clamp(80px, 10vw, 140px) 0; }
.request-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.request-photo img { border-radius: var(--radius); box-shadow: 0 30px 80px -30px rgba(0,0,0,.6); }
.request .eyebrow { color: var(--rose-2); }
.request h2 { color: var(--cream); }
.request .lead { color: rgba(251, 243, 232, .9); margin: 22px 0 18px; }
.notice { font-size: 14.5px; color: var(--cream); background: rgba(187, 134, 136, .18); border: 1px solid rgba(187, 134, 136, .45); border-radius: 12px; padding: 12px 14px; display: inline-block; margin-bottom: 26px; }
.notice strong { color: var(--rose-2); }
#request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { font: 600 11.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--rose-2); }
.field input, .field textarea { font: 400 16px/1.4 var(--sans); color: var(--cream); background: rgba(251, 243, 232, .06); border: 1px solid rgba(251, 243, 232, .22); border-radius: 10px; padding: 13px 14px; transition: border-color .25s ease, background .25s ease; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(251, 243, 232, .38); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose-2); background: rgba(251, 243, 232, .1); }
.form-actions { flex-direction: row; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-alt { font-size: 14px; color: rgba(251, 243, 232, .7); }
.form-alt a { color: var(--rose-2); text-decoration: underline; text-underline-offset: 3px; }
.form-done { grid-column: 1 / -1; margin: 0; padding: 14px 16px; border-radius: 12px; background: rgba(187, 134, 136, .18); border: 1px solid rgba(187, 134, 136, .45); font-size: 15px; }
.form-done strong { color: var(--rose-2); }
#request-form.sent .field { opacity: .45; pointer-events: none; }

/* ---------- Shop ---------- */
.shop { background: var(--cream); background-image: var(--corrugation); padding: clamp(80px, 10vw, 140px) 0; }
.shop-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.shop-head .lead { margin-top: 20px; }
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.product { display: block; }
.product-img { aspect-ratio: 3 / 4; overflow: hidden; border-radius: 14px; background: var(--oat); box-shadow: var(--shadow); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.product:hover .product-img img { transform: scale(1.04); }
.product-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 14px; font-size: 15px; }
.product-meta span { color: var(--ink); font-weight: 500; }
.product-meta b { font-family: var(--display); font-weight: 400; color: var(--burg); white-space: nowrap; }
.shop-more { margin-top: clamp(28px, 3vw, 44px); }

/* ---------- Instagram strip ---------- */
.ig { background: var(--cream-2); padding: clamp(60px, 7vw, 100px) 0 clamp(60px, 7vw, 100px); }
.ig-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.ig-head .eyebrow { margin: 0; }
.ig-handle { font-family: var(--display); font-size: clamp(24px, 3vw, 40px); color: var(--burg); }
.ig-strip { display: flex; gap: 14px; padding: 0 var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.ig-strip::-webkit-scrollbar { display: none; }
.ig-strip a { flex: 0 0 auto; width: clamp(200px, 22vw, 300px); aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; scroll-snap-align: start; box-shadow: var(--shadow); }
.ig-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.ig-strip a:hover img { transform: scale(1.04); }

/* ---------- Footer ---------- */
.footer { background: var(--esp-2); color: var(--cream); }
.beltline-foot { border-top-color: var(--rose-deep); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 80px); padding: clamp(56px, 7vw, 90px) 0 40px; }
.foot-brand img:first-child { width: 220px; }
.foot-brand p { margin: 20px 0 0; max-width: 40ch; color: rgba(251, 243, 232, .78); font-size: 15px; }
.foot-badge { width: 92px; margin-top: 26px; border-radius: 50%; opacity: .95; }
.foot-col h4 { margin: 0 0 16px; font: 600 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--rose-2); }
.foot-col a { display: block; padding: 6px 0; color: var(--cream); font-size: 16px; }
.foot-col a:hover { color: var(--rose-2); }
.foot-legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 34px; border-top: 1px solid rgba(251, 243, 232, .12); font-size: 13px; color: rgba(251, 243, 232, .6); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .boards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav { gap: 14px; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
  .story-grid, .owners-grid, .find-grid, .request-grid { grid-template-columns: 1fr; }
  .owners-grid { direction: ltr; }
  .owners-photo { order: -1; }
  .story-photo { max-width: 520px; }
  .story-photo .stamp { right: 8px; bottom: 60px; }
  .week-card { transform: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  #request-form { grid-template-columns: 1fr; }
  .board-notes { grid-template-columns: 1fr 1fr; }

  /* Scrub overlays: pin copy to the bottom over a bottom shade so the subject stays visible */
  .reveal-line { max-width: none; left: var(--gutter); right: var(--gutter); }
  .reveal-line.ml, .reveal-line.mr { top: auto; bottom: 8vh; transform: none; text-align: left; }
  .reveal-line.mr .cta-row { justify-content: flex-start; }
  .reveal-line.center, .reveal-line.center.low { left: var(--gutter); right: var(--gutter); transform: none !important; top: auto; bottom: 8vh; text-align: left; max-width: none; }
  .hero-title { top: 13vh; max-width: none; }
  .hero-title h1 { font-size: clamp(38px, 10.5vw, 60px); }
  .hero-title h1 br { display: none; }
  .hero-ctas, .hero-end { bottom: 7vh; max-width: none; }
  .hero-ctas .lead { margin: 0 0 16px; font-size: 15.5px; }
  .hero-mid { top: 13vh; text-align: left; }
  .hero-mid .mid-note, .hero-end .mid-note { margin-left: 0; }
  .hero .stage-shade { background: linear-gradient(180deg, rgba(251, 243, 232, .8) 0%, rgba(251, 243, 232, .35) 26%, rgba(251, 243, 232, 0) 44%),
                                   linear-gradient(0deg, rgba(251, 243, 232, .92) 0%, rgba(251, 243, 232, .6) 24%, rgba(251, 243, 232, 0) 46%); }
  .stage-shade { background: linear-gradient(0deg, rgba(251, 243, 232, .92) 0%, rgba(251, 243, 232, .7) 26%, rgba(251, 243, 232, 0) 52%); }
  .stage-shade.shade-warm { background: linear-gradient(0deg, rgba(43, 24, 19, .82) 0%, rgba(43, 24, 19, .5) 26%, rgba(43, 24, 19, 0) 52%); }
  .display { font-size: clamp(34px, 9.5vw, 56px); }
  .script { font-size: clamp(34px, 10vw, 56px); }
  .board-list { margin-left: 0; font-size: 15px; }
  .scroll-hint { display: none; }
  .scrub { height: 420vh; }
  .scrub.pbj { height: 400vh; }
  .scrub.roll { height: 380vh; }
}
@media (max-width: 560px) {
  .products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-meta { flex-direction: column; gap: 4px; }
  .facts { grid-template-columns: 1fr; }
  .week-facts { grid-template-columns: 1fr; gap: 14px; }
  .foot-grid { grid-template-columns: 1fr; }
  .brand img { width: 128px; }
  .ig-strip a { width: 72vw; }
}
