/* ==========================================================================
   You've Got to Be Sh*tting Me — styles
   Palette pulled from the cards and logo. White ground, black ink,
   category colours (drip + tint) exactly as printed on the cards.
   ========================================================================== */

:root {
  --white: #ffffff;
  --ink: #000000;
  --ink-soft: #2a1a12;          /* brown-biased near-black for body copy */

  --pink: #e0106f;              /* logo "ME" */
  --pink-drip: #ff56a2;         /* pink card band */
  --pink-tint: #ffa8cd;         /* pink card body */

  --brown: #9f4f04;             /* brown card band / logo "SH*TTING" */
  --tan: #e6c1a3;               /* brown card body */

  --green: #2bd12d;             /* green card band */
  --green-tint: #b1f6b2;        /* green card body */

  --lilac: #d0bbe8;             /* hidden-role tints */
  --sky: #a1cbe9;
  --back-blue: #a6d3db;         /* game card back */
  --yellow: #f6d84b;            /* Pisshead / Minesweeper title yellow */
  --yellow-tint: #fdf0a6;       /* pastel of the card yellow */

  --display: "Chewy", "Arial Black", Impact, sans-serif;
  --body: "Rubik", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter: clamp(16px, 4vw, 64px);
  --max: 1320px;
  --radius: 22px;
  --card-ratio: 41 / 56;
  --drip-tile: clamp(110px, 11vw, 170px);   /* height the card drip tile renders at */
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--ink); color: var(--white); padding: 10px 16px; border-radius: 999px;
}
.skip:focus { top: 16px; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.faq :focus-visible, .btn--white:focus-visible { outline-color: var(--white); }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
.h-big {
  font-family: var(--display); text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 12px 26px;
  border-radius: 999px; border: 3px solid var(--ink);
  font-weight: 700; text-decoration: none; line-height: 1.1; text-align: center;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--pink); border-color: var(--pink); }
.btn--pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn--pink:hover { background: var(--ink); border-color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--white:hover { background: var(--yellow); border-color: var(--yellow); }

/* --------------------------------------------------------------------------
   Drip band — the card's dark dripping top edge, reused on every tinted section.
   The section paints the light tint; ::before paints the darker drip via mask.
   -------------------------------------------------------------------------- */
.drip { position: relative; --drip-h: calc(var(--drip-tile) + var(--drip-extra, 0px)); }
.drip::before {
  content: ""; position: absolute; inset: 0 0 auto 0; z-index: 0;
  height: var(--drip-h);
  /* solid colour on top, then the card drip tile pinned to the bottom edge */
  background: var(--drip-image) repeat-x left bottom / auto var(--drip-tile), var(--drip-solid, transparent);
  pointer-events: none;
}
.drip > * { position: relative; z-index: 1; }
.drip--pink { --drip-image: url("assets/drips/pink.png"); }
.drip--brown { --drip-image: url("assets/drips/brown.png"); --drip-solid: var(--brown); --drip-extra: clamp(22px, 2.5vw, 40px); }
.drip--green { --drip-image: url("assets/drips/green.png"); --drip-solid: var(--green); --drip-extra: clamp(22px, 2.5vw, 40px); }

/* --------------------------------------------------------------------------
   Warning bar + nav
   -------------------------------------------------------------------------- */
.bar {
  background: var(--yellow); color: var(--ink);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 8px var(--gutter); font-size: .875rem; font-weight: 500; text-align: center;
  position: relative;
}
.bar[hidden] { display: none; }
.bar__close {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; font-size: 1.5rem; line-height: 1; border-radius: 50%;
}
.bar__close:hover { background: rgba(0,0,0,.08); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--pink-drip);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.nav__logo img { width: 104px; height: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: 1.0625rem; }
.nav__links > a:not(.btn) { text-decoration: none; padding: 8px 0; border-bottom: 3px solid transparent; }
.nav__links > a:not(.btn):hover { border-bottom-color: var(--ink); }
.nav__cta { min-height: 46px; padding: 8px 22px; }
.nav__burger { display: none; width: 48px; height: 48px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.burger__line { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav__burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger[aria-expanded="true"] .burger__line:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] .burger__line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero — cards spilled across the top, copy centred underneath
   -------------------------------------------------------------------------- */
.hero { background: var(--pink-tint); overflow: hidden; padding-bottom: clamp(56px, 7vw, 96px); }
.hero__copy { text-align: center; display: grid; justify-items: center; margin-top: clamp(20px, 3vw, 40px); }
.hero__tag {
  font-family: var(--display); text-transform: uppercase; font-size: clamp(2.5rem, 6.4vw, 5.2rem); line-height: 0.98; letter-spacing: .01em;
  max-width: 15ch; text-wrap: balance;
}
.hero__sub { max-width: 58ch; margin-top: 22px; font-size: clamp(1.0625rem, 1.5vw, 1.25rem); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.specs { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0; margin-top: 28px; font-weight: 700; font-size: .875rem; text-transform: uppercase; letter-spacing: .06em; }
.specs li + li::before { content: "·"; margin-inline: 12px; }

.spill {
  position: relative; width: min(100%, 980px); aspect-ratio: 980 / 470;
  margin: calc(var(--drip-h) + 12px) auto 0;
}
.spill__card {
  position: absolute; width: 22%; aspect-ratio: var(--card-ratio);
  left: var(--x); top: var(--y); transform: rotate(var(--r)); z-index: var(--z, 1);
  animation: spill .7s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--d);
}
.spill__card:hover, .spill__card:focus-visible, .spill__card.is-flipped { z-index: 9; }
.c1 { --x: 6%;  --y: 30%; --r: -24deg; --d: .05s; --z: 1; }
.c2 { --x: 19%; --y: 6%;  --r: 9deg;   --d: .11s; --z: 2; }
.c3 { --x: 62%; --y: 26%; --r: 14deg;  --d: .17s; --z: 3; }
.c4 { --x: 48%; --y: 2%;  --r: -7deg;  --d: .23s; --z: 4; }
.c5 { --x: 29%; --y: 34%; --r: -11deg; --d: .29s; --z: 5; }
.c6 { --x: 72%; --y: 6%;  --r: 26deg;  --d: .35s; --z: 6; }
.c7 { --x: 46%; --y: 30%; --r: 5deg;   --d: .41s; --z: 7; }
.c8 { --x: 34%; --y: 12%; --r: -3deg;  --d: .47s; --z: 8; }
@keyframes spill {
  from { transform: translateY(-60%) rotate(0deg) scale(.92); opacity: 0; }
  to   { transform: translateY(0) rotate(var(--r)) scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .spill__card { animation: none; } }

/* --------------------------------------------------------------------------
   Flip card — back face up, hover / focus / tap turns it over
   -------------------------------------------------------------------------- */
.flip {
  display: block; aspect-ratio: var(--card-ratio);
  perspective: 1200px; border-radius: 6%;
  -webkit-tap-highlight-color: transparent;
}
.flip__in {
  display: block; position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .55s cubic-bezier(.3,.7,.3,1);
  border-radius: 6%; box-shadow: 0 14px 34px rgba(42, 26, 18, .26);
}
.flip__face {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border-radius: 6%; backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.flip__front { transform: rotateY(180deg); }
.flip:focus-visible .flip__in, .flip.is-flipped .flip__in { transform: rotateY(180deg); }
@media (hover: hover) { .flip:hover .flip__in { transform: rotateY(180deg); } }
@media (prefers-reduced-motion: reduce) { .flip__in { transition: none; } }

/* --------------------------------------------------------------------------
   Intro
   -------------------------------------------------------------------------- */
.intro { background: var(--white); padding-block: clamp(72px, 10vw, 140px); }
.intro__in { max-width: 860px; margin-inline: auto; }
.intro__lede { font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.25; font-weight: 400; text-wrap: pretty; }
.intro__lede strong { font-weight: 900; }
.intro__body { margin-top: 24px; font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.35; max-width: 34ch; }
.intro__chant { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 10px 18px; font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; }
.intro__chant span:nth-child(1) { color: var(--brown); }
.intro__chant span:nth-child(2) { color: var(--pink); }
.intro__chant span:nth-child(3) { color: var(--green); -webkit-text-stroke: 1.5px var(--ink); paint-order: stroke fill; }

/* --------------------------------------------------------------------------
   Horizontal rails (shop + cards)
   -------------------------------------------------------------------------- */
.row__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.row__nav { display: flex; gap: 10px; flex-shrink: 0; padding-bottom: 6px; }
.arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--ink);
  font-size: 1.25rem; font-weight: 700; display: grid; place-items: center;
  transition: background-color .15s ease, color .15s ease;
}
.arrow:hover { background: var(--ink); color: var(--white); }
.arrow[disabled] { opacity: .3; cursor: default; }
.arrow[disabled]:hover { background: none; color: inherit; }

.rail {
  display: flex; gap: 20px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding-inline: max(var(--gutter), calc((100% - var(--max)) / 2));
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; flex-shrink: 0; }

/* Shop */
.shop { background: var(--tan); padding-block: calc(var(--drip-h) + 48px) 90px; }
.shop .rail { margin-top: 40px; }
.tile {
  position: relative; width: min(84vw, 420px); min-height: 560px;
  border-radius: var(--radius); padding: 28px 28px 30px;
  display: flex; flex-direction: column; gap: 12px;
}
.tile--yellow { background: var(--yellow-tint); }
.tile--lilac { background: var(--lilac); }
.tile--green { background: var(--green-tint); }
.tile__art { height: 280px; position: relative; margin-bottom: 8px; }
.tile__art img { aspect-ratio: var(--card-ratio); border-radius: 6%; box-shadow: 0 10px 24px rgba(42,26,18,.22); }
.tile__art--single img { width: 190px; margin: 0 auto; transform: rotate(-4deg); }
.tile__art--fan { display: block; }
.fan { position: absolute; width: 170px; top: 10px; left: 50%; transform-origin: 50% 120%; }
.fan--a { transform: translateX(-50%) rotate(-18deg); }
.fan--b { transform: translateX(-50%) rotate(0deg); z-index: 2; }
.fan--c { transform: translateX(-50%) rotate(18deg); }
.tile h3 { font-family: var(--display); text-transform: uppercase; font-size: 2.2rem; line-height: 1; letter-spacing: .01em; }
.tile p { flex-grow: 1; font-size: 1.0625rem; max-width: 34ch; }
.tile .btn { align-self: flex-start; }

.burst {
  position: absolute; top: -22px; right: -8px; z-index: 3;
  width: 116px; height: 116px; display: grid; place-items: center; text-align: center;
  background: var(--ink); color: var(--white);
  font-weight: 700; font-size: .8125rem; line-height: 1.15; transform: rotate(12deg);
  clip-path: polygon(100.0% 50.0%, 90.2% 58.0%, 96.2% 69.1%, 84.1% 72.8%, 85.4% 85.4%, 72.8% 84.1%, 69.1% 96.2%, 58.0% 90.2%, 50.0% 100.0%, 42.0% 90.2%, 30.9% 96.2%, 27.2% 84.1%, 14.6% 85.4%, 15.9% 72.8%, 3.8% 69.1%, 9.8% 58.0%, 0.0% 50.0%, 9.8% 42.0%, 3.8% 30.9%, 15.9% 27.2%, 14.6% 14.6%, 27.2% 15.9%, 30.9% 3.8%, 42.0% 9.8%, 50.0% 0.0%, 58.0% 9.8%, 69.1% 3.8%, 72.8% 15.9%, 85.4% 14.6%, 84.1% 27.2%, 96.2% 30.9%, 90.2% 42.0%);
}

/* --------------------------------------------------------------------------
   How to play
   -------------------------------------------------------------------------- */
.play { background: var(--white); padding-block: clamp(72px, 9vw, 130px); }
.play__in { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 64px; align-items: center; }
.play__lede { margin-top: 22px; font-size: 1.25rem; max-width: 46ch; }
.steps { margin-top: 36px; counter-reset: step; display: grid; gap: 26px; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 16px; counter-increment: step; }
.steps li::before {
  content: counter(step); grid-row: span 2;
  width: 56px; height: 56px; border-radius: 50%; border: 3px solid var(--ink);
  display: grid; place-items: center; font-family: var(--display); text-transform: uppercase; font-size: 1.6rem; line-height: 1; padding-top: 4px;
}
.steps li:nth-child(1)::before { background: var(--tan); }
.steps li:nth-child(2)::before { background: var(--pink-tint); }
.steps li:nth-child(3)::before { background: var(--green-tint); }
.steps li:nth-child(4)::before { background: var(--sky); }
.steps h3 { font-size: 1.35rem; font-weight: 900; line-height: 1.15; }
.steps p { grid-column: 2; margin-top: 4px; max-width: 52ch; }
.play__note { margin-top: 34px; padding: 16px 20px; border: 3px solid var(--ink); border-radius: 14px; font-weight: 500; max-width: 52ch; }

.play__demo { display: grid; gap: 30px; justify-items: center; }
.pair { position: relative; width: min(100%, 360px); aspect-ratio: 1 / 0.95; }
.pair__card { position: absolute; width: 60%; aspect-ratio: var(--card-ratio); border-radius: 6%; box-shadow: 0 14px 34px rgba(42,26,18,.25); }
.pair__card--a { left: 0; top: 8%; transform: rotate(-9deg); }
.pair__card--b { right: 0; top: 0; transform: rotate(8deg); }
.choice { display: flex; align-items: center; gap: 14px; font-family: var(--display); text-transform: uppercase; font-size: 1.6rem; }
.choice__tag { padding: 10px 20px 6px; border-radius: 999px; border: 3px solid var(--ink); line-height: 1; }
.choice__tag--fold { background: var(--sky); }
.choice__tag--dd { background: var(--pink); color: var(--white); }
.choice__or { font-family: var(--body); text-transform: none; font-size: 1rem; font-weight: 700; }

/* --------------------------------------------------------------------------
   The cards
   -------------------------------------------------------------------------- */
.cards { background: var(--green-tint); padding-block: calc(var(--drip-h) + 48px) 90px; }
.cards__lede { margin-top: 18px; font-size: 1.2rem; max-width: 42ch; }
.legend { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px 26px; font-weight: 700; font-size: .95rem; }
.legend li { display: flex; align-items: center; gap: 10px; }
.swatch { width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--ink); flex-shrink: 0; }
.swatch--brown { background: var(--brown); }
.swatch--pink { background: var(--pink-drip); }
.swatch--green { background: var(--green); }
.rail--cards { margin-top: 40px; gap: 16px; padding-bottom: 12px; }
.rail--cards li { width: min(58vw, 236px); }
.rail--cards img { aspect-ratio: var(--card-ratio); border-radius: 6%; box-shadow: 0 10px 24px rgba(42,26,18,.2); transition: transform .2s ease; }
.rail--cards li:hover img { transform: rotate(-3deg) translateY(-6px); }

/* --------------------------------------------------------------------------
   Hidden roles
   -------------------------------------------------------------------------- */
.roles { background: var(--lilac); padding-block: clamp(72px, 9vw, 120px); }
.roles__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px 48px; align-items: end; }
.roles__head p { font-size: 1.2rem; max-width: 40ch; }
.roles__head > div { display: grid; }
.roles__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 24px; }
.roles__grid li { display: grid; gap: 10px; align-content: start; }
.role-flip { width: 100%; }
.role-flip .flip__in { box-shadow: 0 10px 24px rgba(42,26,18,.2); }
.roles__hint { font-size: .95rem !important; font-weight: 700; margin-top: 8px; }
.roles__grid h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; line-height: 1; margin-top: 6px; }
.roles__grid p { font-size: .95rem; line-height: 1.45; }

/* --------------------------------------------------------------------------
   Email
   -------------------------------------------------------------------------- */
.notify { background: var(--white); padding-block: clamp(72px, 10vw, 140px); }
.notify__in { max-width: 860px; margin-inline: auto; }
.notify .h-big { font-size: clamp(2.2rem, 5.5vw, 4.25rem); }
.email { position: relative; margin-top: 36px; }
.email input {
  width: 100%; min-height: 72px; padding: 0 84px 0 26px;
  border: 3px solid var(--ink); border-radius: 18px; background: var(--white);
  font: inherit; font-size: 1.25rem; color: var(--ink);
}
.email input::placeholder { color: #6b5c53; }
.email button {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--ink);
  font-size: 1.35rem; display: grid; place-items: center; transition: background-color .15s ease, color .15s ease;
}
.email button:hover { background: var(--ink); color: var(--white); }
.email--small input { min-height: 56px; font-size: 1rem; padding-right: 64px; border-radius: 14px; }
.email--small button { width: 38px; height: 38px; right: 8px; font-size: 1.1rem; }
.email__note { margin-top: 12px; font-size: .9rem; font-style: italic; color: var(--ink-soft); min-height: 1.4em; }
.email__note.is-ok { font-style: normal; font-weight: 700; color: var(--pink); }
.email__note.is-err { font-style: normal; font-weight: 700; color: var(--brown); }

/* --------------------------------------------------------------------------
   FAQ — the one dark section, in the card brown rather than black
   -------------------------------------------------------------------------- */
.faq { background: var(--brown); color: var(--white); padding-block: clamp(72px, 9vw, 130px); }
.faq__list { margin-top: 48px; border-top: 2px solid var(--white); }
.faq details { border-bottom: 2px solid var(--white); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 20px 0; font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-weight: 700; line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.8rem; font-weight: 400; line-height: 1; flex-shrink: 0; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 26px; max-width: 64ch; font-size: 1.125rem; }
.faq__foot { display: flex; justify-content: flex-end; margin-top: 32px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.foot { background: var(--pink-drip); padding-block: 64px 32px; }
.foot__in { display: grid; grid-template-columns: 200px 1fr 320px; gap: 48px; align-items: start; }
.foot__logo { text-decoration: none; display: grid; gap: 6px; justify-items: start; }
.foot__logo img { width: 170px; height: auto; }
.foot__logo span { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.foot__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.foot__cols div { display: grid; gap: 10px; justify-items: start; }
.foot h3 { font-size: 1rem; font-weight: 900; margin-bottom: 6px; }
.foot__cols a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
.foot__cols a:hover { color: var(--white); }
.foot__email p { font-size: .95rem; }
.foot__email .email { margin-top: 14px; }
.foot__legal { margin-top: 48px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; font-size: .8125rem; }
.foot__legal a { margin-right: 14px; }
.foot__legal p:first-child { font-weight: 700; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .roles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
  .foot__in { grid-template-columns: 1fr 1fr; }
  .foot__email { grid-column: span 2; max-width: 420px; }
}

@media (max-width: 860px) {
  .nav__links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--pink-drip); padding: 8px var(--gutter) 20px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.btn) { padding: 14px 0; border-bottom: 2px solid rgba(0,0,0,.15); font-size: 1.25rem; }
  .nav__links > a:not(.btn):hover { border-bottom-color: var(--ink); }
  .nav__cta { margin-top: 16px; }
  .nav__burger { display: flex; }

  .spill { aspect-ratio: 375 / 300; margin-top: calc(var(--drip-h) + 8px); }
  .spill__card { width: 36%; }
  .c1 { --x: 2%;  --y: 36%; }
  .c2 { --x: 14%; --y: 4%; }
  .c3 { --x: 58%; --y: 30%; }
  .c4 { --x: 44%; --y: 0%; }
  .c5 { --x: 26%; --y: 32%; }
  .c8 { --x: 30%; --y: 12%; }
  .c6, .c7 { display: none; }

  .play__in { grid-template-columns: 1fr; gap: 48px; }
  .roles__head { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .bar { padding-right: calc(var(--gutter) + 44px); text-align: left; justify-content: flex-start; }
  .row__head { flex-direction: column; align-items: flex-start; }
  .row__nav { padding-bottom: 0; }
  .tile { min-height: 0; padding: 22px 22px 24px; }
  .tile__art { height: 240px; }
  .tile__art--single img { width: 160px; }
  .fan { width: 150px; }
  .tile h3 { font-size: 1.8rem; }
  .steps li { grid-template-columns: 44px 1fr; gap: 12px; }
  .steps li::before { width: 44px; height: 44px; font-size: 1.3rem; }
  .choice { font-size: 1.25rem; gap: 10px; }
  .choice__tag { padding: 8px 14px 5px; }
  .specs { gap: 8px 18px; }
  .specs li + li::before { content: none; margin: 0; }
  .intro__lede, .intro__body { font-size: 1.2rem; line-height: 1.4; max-width: none; }
  .intro__body { margin-top: 18px; }
  .intro__chant { margin-top: 32px; flex-wrap: nowrap; white-space: nowrap; gap: 0 .35em; font-size: 5.6vw; }
  .roles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
  .roles__grid h3 { font-size: 1.25rem; }
  .roles__grid p { font-size: .875rem; }
  .foot__in { grid-template-columns: 1fr; gap: 36px; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__email { grid-column: auto; }
  .foot__legal { flex-direction: column; }
}
