/* ============================================================
   Part of Me. — an industry night from Pardon Me! + Jubyr LLC
   Direction pulled from the pardon me! brand book and the
   Part of Me vol.1 launch collateral: warm paper, cobalt ink,
   sticker yellow, torn-note collage, giant cut-paper display
   words, handwritten asides. Tickets look like tickets.
   Type: Archivo Black (cutout display) · Hubballi (body) ·
   PT Mono (utility/meta) · Shantell Sans (handwriting).
   ============================================================ */

:root {
  --paper: #f4f2eb;
  --card: #fcfbf6;
  --ink: #17171b;
  --cobalt: #2b2fa6;
  --cobalt-deep: #22267f;
  --yellow: #f6df4b;
  --gray: #5b5b64;
  --line: rgba(43, 47, 166, 0.18);
  --line-soft: rgba(23, 23, 27, 0.12);

  --font-body: "Hubballi", "Gill Sans", "Trebuchet MS", sans-serif;
  --font-mono: "PT Mono", "Courier New", monospace;
  --font-hand: "Shantell Sans", "Comic Sans MS", cursive;
  --font-cut: "Archivo Black", "Arial Black", sans-serif;

  --container: 1160px;
  --pad-x: 24px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  font: 400 18px/1.65 var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }

a { color: var(--cobalt); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* the brand marks are blue-on-white pngs; multiply melts the
   white into the paper */
.blend { mix-blend-mode: multiply; }

/* ---------- shared text roles ---------- */

.eyebrow {
  font: 400 13px/1.5 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cobalt);
  margin: 0 0 18px;
}

.hand {
  font-family: var(--font-hand);
  font-weight: 500;
  color: var(--cobalt);
}

.mono { font-family: var(--font-mono); }

/* the cut-paper display word — the deck's "eat / drink" collage
   type. each letter gets its own scissor tilt. */
.cutout {
  font-family: var(--font-cut);
  font-weight: 400;
  text-transform: lowercase;
  color: var(--ink);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.cutout span { display: inline-block; }
.cutout span:nth-child(2n)   { transform: rotate(2.2deg)  translateY(0.045em); }
.cutout span:nth-child(2n+1) { transform: rotate(-2.4deg) translateY(-0.02em); }
.cutout span:nth-child(3n)   { transform: rotate(-1.2deg) translateY(0.06em); }
.cutout span:nth-child(5n)   { transform: rotate(3.1deg)  translateY(-0.045em); }

h1.cutout { font-size: clamp(58px, 11vw, 138px); }
h2.cutout { font-size: clamp(48px, 8.5vw, 104px); }

.section { padding: 104px 0; }
.section-sub {
  max-width: 560px;
  font-size: 19px;
  color: var(--gray);
  margin: 0 0 48px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 400 15px/1 var(--font-mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s var(--ease), background-color 0.15s var(--ease),
    color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.btn:active { transform: translate(1px, 2px); }

.btn-cobalt {
  background: var(--cobalt);
  border-color: var(--cobalt-deep);
  color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-cobalt:hover { background: var(--cobalt-deep); box-shadow: 1px 1px 0 var(--ink); }

.btn-yellow {
  background: var(--yellow);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55);
}
.btn-yellow:hover { box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.55); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-soft); }
.btn-ghost:hover { border-color: var(--ink); }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav .container {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img.mark { height: 44px; width: auto; }
.nav-logo img.face { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}
.nav-links a {
  white-space: nowrap;
  font: 400 14px/1 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--cobalt); }
.nav-links a[aria-current="page"] { color: var(--cobalt); border-bottom-color: var(--cobalt); }

.bag {
  white-space: nowrap;
  font: 400 14px/1 var(--font-mono);
  letter-spacing: 0.08em;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s var(--ease);
}
.bag:hover { transform: rotate(-1.5deg); }
.bag .bag-count {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--cobalt);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 8px 9px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); display: block; }

/* ---------- hero (tickets page) ---------- */

.hero { padding: 72px 0 96px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
}
.hero-wordmark { width: min(420px, 88%); height: auto; }
.hero-tagline {
  font-family: var(--font-hand);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--cobalt);
  margin: 10px 0 30px;
}

.event-meta {
  background: var(--card);
  border: 1.5px solid var(--line-soft);
  box-shadow: 4px 5px 0 rgba(23, 23, 27, 0.08);
  transform: rotate(-1deg);
  padding: 22px 24px 20px;
  max-width: 420px;
  margin: 0 0 34px;
  position: relative;
}
.event-meta::before {
  /* masking-tape corner */
  content: "";
  position: absolute;
  top: -12px;
  left: 34px;
  width: 92px;
  height: 24px;
  background: rgba(214, 205, 173, 0.75);
  transform: rotate(-3deg);
}
.event-meta dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; }
.event-meta dt {
  font: 400 12px/1.7 var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.event-meta dd { margin: 0; font: 400 15px/1.7 var(--font-mono); color: var(--ink); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* taped photo collage — the stack shuffles: auto every few
   seconds, or tap to send the front photo to the back */
.hero-collage { position: relative; aspect-ratio: 1 / 1.08; cursor: pointer; }
.hero-collage:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 6px; border-radius: 8px; }
.hero-collage figure {
  position: absolute;
  margin: 0;
  background: var(--card);
  padding: 10px 10px 14px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 24px rgba(23, 23, 27, 0.16);
  transition: top 0.55s var(--ease), bottom 0.55s var(--ease), left 0.55s var(--ease),
    right 0.55s var(--ease), width 0.55s var(--ease), transform 0.55s var(--ease);
}
.collage-hint {
  position: absolute;
  bottom: -34px;
  right: 4px;
  z-index: 5;
  font-size: 14px;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-collage figure { transition: none; }
}
.hero-collage figure::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 96px;
  height: 26px;
  margin-left: -48px;
  background: rgba(214, 205, 173, 0.8);
  transform: rotate(-2deg);
}
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage figcaption {
  font: 400 12px/1.4 var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--gray);
  padding-top: 9px;
}
.hero-collage img { aspect-ratio: 4 / 3.2; }
.collage-a { width: 54%; top: 2%; left: 0; transform: rotate(-2.6deg); z-index: 2; }
.collage-b { width: 56%; top: 22%; left: 44%; transform: rotate(2.2deg); z-index: 3; }
.collage-c { width: 58%; top: 48%; left: 12%; transform: rotate(1.4deg); z-index: 4; }

.sticker {
  position: absolute;
  z-index: 4;
  right: -8px;
  top: -22px;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  transform: rotate(8deg);
  font-family: var(--font-hand);
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.35);
}

/* ---------- ticket stubs ---------- */

.stub-list { display: grid; gap: 22px; max-width: 940px; }

.stub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 10px;
  position: relative;
  box-shadow: 5px 6px 0 rgba(43, 47, 166, 0.22);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.stub:hover { transform: translateY(-3px) rotate(-0.35deg); box-shadow: 7px 9px 0 rgba(43, 47, 166, 0.28); }

.stub-body { padding: 26px 28px 24px; min-width: 0; }
.stub-serial {
  font: 400 11px/1 var(--font-mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 12px;
}
.stub h3 {
  font: 400 24px/1.2 var(--font-body);
  letter-spacing: 0.01em;
  margin: 0 0 8px;
}
.stub-includes {
  font-family: var(--font-hand);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--cobalt);
  margin: 0;
  max-width: 46ch;
}

/* perforation between body and payside */
.stub-pay {
  border-left: 2px dashed rgba(23, 23, 27, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 20px;
  position: relative;
}
.stub-pay::before, .stub-pay::after {
  /* punch holes on the perforation */
  content: "";
  position: absolute;
  left: -12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--paper);
  border: 2px solid var(--ink);
}
.stub-pay::before { top: -13px; }
.stub-pay::after { bottom: -13px; }

.stub-price { font: 400 30px/1 var(--font-mono); letter-spacing: -0.02em; }

.stepper { display: inline-flex; align-items: center; border: 2px solid var(--ink); border-radius: 6px; background: #fff; }
.stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  background: none;
  font: 400 19px/1 var(--font-mono);
  cursor: pointer;
  color: var(--ink);
}
.stepper button:hover { background: var(--yellow); }
.stepper output {
  width: 36px;
  text-align: center;
  font: 400 16px/1 var(--font-mono);
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stub--donate { max-width: 720px; background: var(--yellow); box-shadow: 5px 6px 0 rgba(23, 23, 27, 0.3); }
.stub--donate .stub-includes { color: var(--ink); }

.ticket-note {
  margin-top: 30px;
  max-width: 620px;
  font-size: 16.5px;
  color: var(--gray);
}
.ticket-note .hand { font-size: 17px; }

/* ---------- how it works ---------- */

.how { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--card); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.how-step .step-no {
  font: 400 13px/1 var(--font-mono);
  letter-spacing: 0.22em;
  color: var(--cobalt);
  display: block;
  margin-bottom: 12px;
}
.how-step h3 { font: 400 22px/1.3 var(--font-body); margin: 0 0 8px; }
.how-step p { font-size: 16.5px; color: var(--gray); }

/* ---------- gallery marquee ---------- */

.gallery { overflow: hidden; }
.gallery .container { margin-bottom: 40px; }
.marquee { display: flex; overflow: hidden; gap: 18px; }
.marquee-track {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee img {
  height: 300px;
  width: auto;
  border: 2px solid var(--ink);
  border-radius: 6px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 18px)); }
}

/* ---------- letter ---------- */

.letter-panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1.5px solid var(--line-soft);
  box-shadow: 0 16px 40px rgba(23, 23, 27, 0.12);
  padding: clamp(30px, 5vw, 60px);
  transform: rotate(-0.5deg);
  position: relative;
}
.letter-panel::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 120px;
  height: 28px;
  margin-left: -60px;
  background: rgba(214, 205, 173, 0.8);
  transform: rotate(-1.5deg);
}
.letter-panel p { font: 400 15.5px/2 var(--font-mono); margin-bottom: 1.4em; }
.letter-sig { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 34px; }
.letter-sig .sig-name { font-family: var(--font-hand); font-size: 21px; font-weight: 600; color: var(--cobalt); }
.letter-sig .sig-org { font: 400 12px/1.6 var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }

/* ---------- big cta ---------- */

.cta-panel {
  background: var(--cobalt);
  color: #fff;
  border-radius: 12px;
  border: 2px solid var(--ink);
  box-shadow: 7px 8px 0 var(--ink);
  padding: clamp(40px, 6vw, 76px);
  text-align: center;
}
.cta-panel .cutout { color: #fff; font-size: clamp(40px, 6.5vw, 84px); }
.cta-panel p { color: rgba(255, 255, 255, 0.85); max-width: 46ch; margin: 0 auto 30px; }

/* ---------- menu page ---------- */

.menu-hero { padding: 80px 0 30px; }
.menu-hero .lede {
  max-width: 660px;
  font-size: 20px;
  color: var(--ink);
}
.menu-hero .hand-note {
  font-family: var(--font-hand);
  color: var(--cobalt);
  font-size: 19px;
  margin-top: 14px;
}

.menu-section { padding: 64px 0 90px; }
.menu-section + .menu-section { border-top: 2px solid var(--ink); }

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 64px;
  align-items: start;
}

.dish-list { display: grid; gap: 8px; }

.dish {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 28px;
  padding: 22px 4px;
  border-bottom: 1.5px dashed rgba(23, 23, 27, 0.28);
  align-items: start;
}
.dish:last-child { border-bottom: 0; }

.dish h3 {
  font: 400 17px/1.4 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--ink);
}
.dish h3 .slashes { color: var(--cobalt); }
.dish-desc { font-size: 16.5px; color: var(--gray); margin: 0; max-width: 52ch; }
.dish-quip {
  font-family: var(--font-hand);
  font-size: 15px;
  color: var(--cobalt);
  margin: 6px 0 0;
}

.dish-buy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 128px;
}
.dish-price { font: 400 17px/1 var(--font-mono); }
.dish-price .or-pick {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 6px;
  text-align: right;
}

/* photo rail beside menu */
.menu-rail { position: sticky; top: 104px; display: grid; gap: 34px; }
.menu-rail figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 10px 10px 12px;
  box-shadow: 0 10px 22px rgba(23, 23, 27, 0.15);
  position: relative;
}
.menu-rail figure::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 88px;
  height: 24px;
  margin-left: -44px;
  background: rgba(214, 205, 173, 0.8);
  transform: rotate(-2deg);
}
.menu-rail figure:nth-child(odd) { transform: rotate(-1.8deg); }
.menu-rail figure:nth-child(even) { transform: rotate(1.6deg); }
.menu-rail img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.menu-rail figcaption { font: 400 12px/1.5 var(--font-mono); letter-spacing: 0.06em; color: var(--gray); padding-top: 8px; }

.pick-callout {
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.4);
  transform: rotate(-1deg);
  padding: 20px 22px;
  font-family: var(--font-hand);
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 500;
}
.pick-callout strong { font-weight: 700; }

.bread-callout {
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--card);
  box-shadow: 5px 6px 0 rgba(43, 47, 166, 0.22);
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 860px;
}
.bread-callout .cutout { font-size: clamp(40px, 6vw, 72px); margin: 0; }
.bread-callout h4 { font: 400 15px/1.5 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 4px; }
.bread-callout p { font-size: 16px; color: var(--gray); margin-bottom: 14px; }
.bread-callout .hand { font-size: 15.5px; }

.age-note { font: 400 13px/1.7 var(--font-mono); letter-spacing: 0.1em; color: var(--gray); margin-top: 26px; }

/* ---------- cart drawer ---------- */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 23, 27, 0.45);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(430px, 100vw);
  background: var(--paper);
  border-left: 2px solid var(--ink);
  z-index: 100;
  transform: translateX(102%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 2px solid var(--ink);
}
.drawer-head h2 { font: 400 22px/1 var(--font-body); margin: 0; }
.drawer-close {
  background: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  font: 400 16px/1 var(--font-mono);
  cursor: pointer;
}
.drawer-close:hover { background: var(--yellow); }

.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }

.drawer-empty { color: var(--gray); font-size: 16px; padding: 28px 0; text-align: center; }
.drawer-empty .hand { display: block; font-size: 18px; margin-bottom: 6px; }

.cart-group-label {
  font: 400 11.5px/1 var(--font-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 20px 0 10px;
}
.cart-group-label:first-child { margin-top: 0; }

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(23, 23, 27, 0.25);
  align-items: center;
}
.cart-row .cart-name { font-size: 16px; line-height: 1.35; }
.cart-row .cart-covered {
  font-family: var(--font-hand);
  font-size: 13px;
  color: var(--cobalt);
}
.cart-row .cart-price { font: 400 15px/1 var(--font-mono); text-align: right; }
.cart-row .stepper { transform: scale(0.82); transform-origin: left center; }
.cart-row-controls { display: flex; align-items: center; gap: 4px; }

.credit-status {
  background: var(--card);
  border: 1.5px dashed var(--cobalt);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-hand);
  font-size: 14px;
  color: var(--cobalt);
  margin: 18px 0 4px;
}

.drawer-foot { border-top: 2px solid var(--ink); padding: 18px 24px 22px; background: var(--card); }
.drawer-total {
  display: flex;
  justify-content: space-between;
  font: 400 18px/1 var(--font-mono);
  margin-bottom: 14px;
}
.drawer-foot .btn { width: 100%; }
.checkout-note {
  font: 400 12.5px/1.6 var(--font-mono);
  color: var(--gray);
  margin: 12px 0 0;
  display: none;
}
.checkout-note.show { display: block; }

/* ---------- sales closed ---------- */

.sales-note {
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
  padding: 12px var(--pad-x);
  text-align: center;
  font-family: var(--font-hand);
  font-size: 15.5px;
}
.sales-note a { color: var(--ink); }

.sales-closed .stepper button,
.sales-closed [data-add],
.sales-closed [data-checkout],
.sales-closed .pick-cta {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

/* ---------- pick chooser ---------- */

.pick-cta {
  display: inline-block;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 5px 12px;
  margin-top: 8px;
  font: 600 13px/1 var(--font-hand);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s var(--ease);
}
.pick-cta:hover { transform: rotate(-1.5deg); }

.picker { position: fixed; inset: 0; z-index: 120; display: none; }
.picker.open { display: block; }

.picker-backdrop { position: absolute; inset: 0; background: rgba(23, 23, 27, 0.5); }

.picker-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-0.4deg);
  width: min(620px, calc(100vw - 32px));
  max-height: 86dvh;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 8px 10px 0 rgba(43, 47, 166, 0.3);
  display: flex;
  flex-direction: column;
}

.picker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 16px;
  border-bottom: 2px solid var(--ink);
}
.picker-head h2 { font: 400 24px/1.2 var(--font-body); margin: 0 0 2px; }
.picker-sub { font-size: 14.5px; margin: 0; }
.picker-close {
  background: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  font: 400 16px/1 var(--font-mono);
  cursor: pointer;
}
.picker-close:hover { background: var(--yellow); }

.picker-body { overflow-y: auto; padding: 6px 24px 12px; }

.picker-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 4px;
}
.picker-group-head .cart-group-label { margin: 0; }

.picks-chip {
  font: 400 12px/1 var(--font-mono);
  letter-spacing: 0.08em;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
}
.picks-chip--done { background: var(--card); color: var(--gray); }

.pick-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 16px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1.5px dashed rgba(23, 23, 27, 0.22);
}
.pick-row:last-child { border-bottom: 0; }
.pick-row h4 {
  font: 400 14px/1.4 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 2px;
}
.pick-desc { font-size: 13.5px; color: var(--gray); margin: 0; max-width: 44ch; }
.pick-row .stepper { transform: scale(0.85); transform-origin: right center; }

.picker-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 24px 16px;
  border-top: 2px solid var(--ink);
  background: var(--card);
  border-radius: 0 0 10px 10px;
}
.picker-note { font: 400 12.5px/1.5 var(--font-mono); color: var(--gray); margin: 0; }

@media (max-width: 560px) {
  .picker-panel { max-height: 92dvh; }
  .picker-foot .btn { width: 100%; }
}

/* ---------- footer ---------- */

.footer { border-top: 2px solid var(--ink); background: var(--paper); padding: 72px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.footer-thanks {
  font-family: var(--font-hand);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 500;
  color: var(--cobalt);
  max-width: 15em;
  line-height: 1.3;
  margin: 0;
}
.footer-mascot { width: 130px; height: auto; }

.footer-bar {
  border-top: 1.5px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: center;
  justify-content: space-between;
  font: 400 13px/1.6 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--gray);
}
.footer-bar a { color: var(--ink); text-decoration: none; border-bottom: 1.5px solid var(--line-soft); }
.footer-bar a:hover { border-bottom-color: var(--cobalt); color: var(--cobalt); }
.footer-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
  .drawer, .drawer-backdrop { transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-collage { max-width: 560px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-rail { position: static; grid-template-columns: repeat(2, 1fr); }
  .pick-callout { grid-column: 1 / -1; }
  .how-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .nav .container { gap: 12px; }
  .nav-logo img.face { display: none; }
  .nav-logo img.mark { height: 32px; }
  .bag { padding: 8px 13px; font-size: 13px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px var(--pad-x) 24px;
    gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav .bag { margin-left: 0; }

  .stub { grid-template-columns: 1fr; }
  .stub-pay {
    border-left: 0;
    border-top: 2px dashed rgba(23, 23, 27, 0.4);
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .stub-pay::before, .stub-pay::after { left: auto; top: -13px; }
  .stub-pay::before { left: -12px; }
  .stub-pay::after { right: -12px; bottom: auto; }

  .dish { grid-template-columns: 1fr; }
  .dish-buy { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .dish-price .or-pick { text-align: left; }

  .bread-callout { grid-template-columns: 1fr; gap: 16px; }
  .menu-rail { grid-template-columns: 1fr; }
  .marquee img { height: 210px; }

  .hero { padding-top: 48px; }
  .hero-collage { aspect-ratio: 1 / 1.2; }
  .sticker { width: 120px; height: 120px; font-size: 12px; right: 0; }
}
