/*
  Ember Sauce Co. — styles
  Dark theme, big type, hand-drawn energy.
*/

:root {
  --bg: #100b06;
  --cream: #f5e4c7;
  --amber: #be8d3f;
  --orange: #f15726;
  --red: #da1f27;
  --tan-1: #b3a488;
  --tan-2: #71685a;
  --tan-3: #322c23;
  --card-dark: #1a140c;
  --radius: 14px;
  --container: clamp(1rem, 3vw, 2.5rem);
  --flame-inner: var(--bg);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: thin; scrollbar-color: var(--cream) var(--bg); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red); color: var(--cream); }

.font-display {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.015em;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
}
.outline-ink { color: transparent; -webkit-text-stroke: 2px var(--bg); }

svg { display: block; }
img { user-select: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ── grain ─────────────────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 9999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.6s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ── loading dots ──────────────────────────────────────────── */
.loading-dots { display: inline-flex; gap: 4px; margin-left: 7px; align-items: center; }
.loading-dots i {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
  animation: dot-bounce 0.8s ease-in-out infinite;
}
.loading-dots i:nth-child(2) { animation-delay: 0.12s; }
.loading-dots i:nth-child(3) { animation-delay: 0.24s; }
@keyframes dot-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-5px); opacity: 1; }
}

/* ══════════════ PRELOADER (circle waves) ══════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  overflow: hidden;
  display: grid; place-items: center;
}
.preloader__circle {
  position: absolute; left: 50%; top: 50%;
  width: 150vmax; height: 150vmax;
  margin: -75vmax 0 0 -75vmax;
  border-radius: 50%;
  background: var(--c);
  transform: scale(0);
  will-change: transform;
}
.preloader__brand {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0;
}
.preloader__flame { width: 64px; height: 77px; color: var(--amber); }
.preloader__word { font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--cream); }
.preloader__sub {
  text-transform: uppercase; letter-spacing: 0.34em;
  font-size: 0.78rem; font-weight: 600;
  color: color-mix(in srgb, var(--cream) 60%, transparent);
}
.preloader__foods { position: absolute; inset: 0; pointer-events: none; }
.preloader__foods img {
  position: absolute;
  left: var(--px); bottom: -140px;
  width: clamp(70px, 9vw, 130px);
  opacity: 0;
}

/* ══════════════ HEADER ══════════════ */
.header {
  position: fixed; top: 14px; left: clamp(1rem, 2.5vw, 2rem); right: clamp(1rem, 2.5vw, 2rem);
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-120px);
}
.header > * { pointer-events: auto; }
.logo-mark { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.logo-mark__flame { width: 26px; height: 31px; color: var(--amber); }
.logo-mark__word { font-size: 1.5rem; transform: translateY(3px); }
.header__right { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  position: relative;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid color-mix(in srgb, var(--cream) 35%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  color: var(--cream);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
}
.icon-btn svg { width: 22px; height: 22px; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.icon-btn:hover {
  background: var(--red); border-color: var(--red);
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 0 10px 22px rgba(218, 31, 39, 0.35);
}
.icon-btn:hover svg { transform: scale(1.15); }
.icon-btn__count {
  position: absolute; top: -6px; right: -6px;
  min-width: 19px; height: 19px;
  border-radius: 999px;
  background: var(--orange); color: var(--bg);
  font-size: 0.68rem; font-weight: 800;
  display: grid; place-items: center;
  padding: 0 4px;
}

/* ══════════════ BUTTONS ══════════════ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  padding: 1em 2em;
  font-weight: 700; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}
.btn--cream:hover { box-shadow: 0 12px 30px color-mix(in srgb, var(--orange) 35%, transparent); }
.btn:active { transform: translateY(-1px) scale(0.97); transition-duration: 0.15s; }
.btn--lg { padding: 1.15em 2.6em; font-size: 1.05rem; }
.btn--wide { width: 100%; }
.btn--cream { background: var(--cream); color: var(--bg); }
.btn--ink { background: var(--bg); color: var(--cream); }
.btn__flip { position: relative; display: block; overflow: hidden; height: 1.25em; z-index: 1; }
.btn__line {
  display: flex; align-items: center; justify-content: center;
  height: 1.25em; padding-top: 0.18em; white-space: nowrap;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
.btn__line + .btn__line { position: absolute; inset: 0; transform: translateY(110%); }
/* hover roll only for plain flip buttons — cart/state buttons keep their text */
.btn:not(.btn--cart):hover .btn__line:first-child { transform: translateY(-110%); }
.btn:not(.btn--cart):hover .btn__line:nth-child(2) { transform: translateY(0); }
.btn::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}
.btn--cream:hover { color: var(--cream); }
.btn--cream:hover::after { transform: scaleX(1); }
.btn--ink:hover { color: var(--bg); }
.btn--ink:hover::after { transform: scaleX(1); background: var(--cream); }
.btn__check { width: 1em; height: 1em; margin-left: 6px; }

/* add-to-cart state machine */
.btn--cart .btn__line { transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1); }
.btn--cart[data-cart-state] .btn__line { transform: translateY(110%); }
.btn--cart[data-cart-state="idle"] .btn__line[data-state="idle"],
.btn--cart[data-cart-state="adding"] .btn__line[data-state="adding"],
.btn--cart[data-cart-state="added"] .btn__line[data-state="added"] { transform: translateY(0); }

/* ══════════════ PANELS (menu + cart) — cream on dark ══════════════ */
.panel {
  position: fixed; top: 10px; right: 10px;
  width: min(540px, calc(100vw - 20px));
  height: calc(100dvh - 20px);
  background: var(--cream); color: var(--bg);
  border-radius: var(--radius);
  z-index: 950;
  display: flex; flex-direction: column;
  padding: clamp(1.2rem, 3vw, 2rem);
  opacity: 0; pointer-events: none;
  will-change: transform, opacity;
}
.panel__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6vh;
}
.panel__label {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.8rem; font-weight: 700;
  color: color-mix(in srgb, var(--bg) 60%, transparent);
}
.panel__close {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1.5px solid color-mix(in srgb, var(--bg) 30%, transparent);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.panel__close svg { width: 20px; height: 20px; }
.panel__close:hover { background: var(--red); border-color: var(--red); color: var(--cream); transform: rotate(90deg); }
.panel__foot {
  display: flex; justify-content: space-between;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.72rem; font-weight: 600;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
}
.menu__items { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.menu__item {
  display: flex; align-items: center;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  padding: 0.55rem 0 0.35rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--bg) 25%, transparent);
  color: var(--bg);
}
.menu__item span {
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateX(-2.4rem);
}
.menu__arrow {
  width: 1.8rem; height: 1.8rem;
  margin-right: 0.6rem;
  color: var(--red);
  opacity: 0; transform: translateX(-12px) scale(0.6);
  transition: opacity 0.35s, transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.menu__item:hover span { transform: translateX(0.2rem); }
.menu__item:hover .menu__arrow { opacity: 1; transform: translateX(0) scale(1); }

.cart__empty {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem; text-align: center;
}
.cart__line { font-size: clamp(1.4rem, 3vw, 2rem); }
.cart__big { font-size: clamp(4rem, 12vw, 7rem); line-height: 0.9; }
.cart__items { flex: 1; display: flex; flex-direction: column; gap: 0.7rem; overflow-y: auto; }
.cart__item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.8rem;
  border: 1px dashed color-mix(in srgb, var(--bg) 32%, transparent);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-weight: 600;
}
.cart__item-qty { font-size: 0.8rem; color: color-mix(in srgb, var(--bg) 60%, transparent); }
.cart__foot { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.9rem; }
.cart__total {
  display: flex; justify-content: space-between; align-items: center;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
  padding-top: 0.9rem;
  border-top: 1.5px solid color-mix(in srgb, var(--bg) 35%, transparent);
}
.scrim {
  position: fixed; inset: 0; z-index: 940;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.scrim.is-on { opacity: 1; pointer-events: auto; }

/* ══════════════ HERO ══════════════ */
.hero {
  /* block layout: ScrollTrigger pin-spacing breaks inside flex parents */
  padding: clamp(6.5rem, 12vh, 9rem) var(--container) 0;
}
.hero__title {
  max-width: 16ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(2.7rem, 7.6vw, 7.2rem);
  line-height: 0.98;
  color: var(--cream);
}
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-top: 0.12em; }
.hero__title .char { display: inline-block; will-change: transform; }

.hero__stage {
  width: 100%;
  margin-top: clamp(2rem, 5vh, 4rem);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.hero__bar {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(0.5rem, 6vw, 6rem);
  opacity: 0;
  min-height: 3rem;
}
.hero__bar::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0;
  border-top: 1px dashed color-mix(in srgb, var(--cream) 30%, transparent);
  z-index: 0;
}
.hero__bar .btn { position: relative; z-index: 1; }
.hero__meta {
  position: relative; z-index: 1;
  background: var(--bg);
  padding: 0 0.55em;
  text-transform: uppercase; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-flex; align-items: center;
  height: 1.3em; line-height: 1.3em;
  white-space: nowrap;
}
.hero__meta--name { font-weight: 800; }
.hero__meta sup { font-size: 0.6em; margin-right: 0.1em; }

.roller {
  position: relative; display: inline-flex; flex-direction: column;
  height: 1.3em; overflow: hidden; vertical-align: top;
}
.roller > span {
  display: inline-flex; align-items: center; justify-content: center;
  height: 1.3em; flex-shrink: 0;
  will-change: transform;
}

.hero__carousel {
  position: relative;
  min-height: clamp(480px, 78vh, 760px);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 6vw, 7rem);
}

/* ── the Ember Gazette (wanted poster) ─────────────────────── */
.paper {
  position: relative;
  width: min(660px, 92vw);
  z-index: 3;
}

/* heat shimmer rising off the top edge */
.paper__steam {
  position: absolute;
  top: -74px; left: 50%;
  transform: translateX(-50%);
  width: min(420px, 60%);
  height: 80px;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}
.steam-line {
  fill: none;
  stroke: color-mix(in srgb, var(--cream) 65%, transparent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 26 100;
  animation: steam-flow 2.6s linear infinite;
  opacity: 0;
}
.steam-line--1 { animation-delay: 0s; }
.steam-line--2 { animation-delay: 0.9s; animation-duration: 3.1s; }
.steam-line--3 { animation-delay: 1.7s; animation-duration: 2.3s; }
@keyframes steam-flow {
  0% { stroke-dashoffset: 126; opacity: 0; }
  15% { opacity: 0.9; }
  70% { opacity: 0.5; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* comic speed lines at the corners */
.paper__burst-lines {
  position: absolute;
  width: clamp(44px, 5vw, 64px);
  height: clamp(44px, 5vw, 64px);
  pointer-events: none;
  z-index: 2;
}
.paper__burst-lines path {
  fill: none;
  stroke: color-mix(in srgb, var(--cream) 80%, transparent);
  stroke-width: 3;
  stroke-linecap: round;
  animation: burst-pulse 1.8s ease-in-out infinite;
  transform-origin: center;
}
.paper__burst-lines--tl { top: -18px; left: -26px; }
.paper__burst-lines--br { bottom: -14px; right: -26px; animation-delay: 0.9s; }
.paper__burst-lines--br path { animation-delay: 0.9s; }
@keyframes burst-pulse {
  0%, 100% { opacity: 0; transform: scale(0.7); }
  35% { opacity: 1; transform: scale(1); }
  65% { opacity: 0.6; transform: scale(1.06); }
}

/* heat shimmer rising along the section sides, tinted per product */
.hero__side-fx {
  position: absolute;
  top: 8%; bottom: 2%;
  width: clamp(60px, 7vw, 110px);
  color: var(--amber);
  pointer-events: none;
  z-index: 1;
  will-change: color;
}
.hero__side-fx--left { left: clamp(12px, 3vw, 48px); }
.hero__side-fx--right { right: clamp(12px, 3vw, 48px); }
.hero__side-fx svg { width: 100%; height: 100%; overflow: visible; }
.hero__side-fx .hv {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 30 92;
  opacity: 0.5;
  animation: heat-rise 3.4s linear infinite;
  filter: drop-shadow(0 0 6px color-mix(in srgb, currentColor 40%, transparent));
}
.hero__side-fx .hv-1 { animation-duration: 4.3s; opacity: 0.32; }
.hero__side-fx .hv-3 { animation-duration: 2.8s; animation-delay: 1.1s; opacity: 0.42; }
@keyframes heat-rise {
  from { stroke-dashoffset: 244; }
  to { stroke-dashoffset: 0; }
}
.hero__side-fx .ember-spark { animation-name: spark-rise-hero; }
@keyframes spark-rise-hero {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.9; }
  60% { opacity: 0.5; transform: translateY(-34vh) translateX(var(--sx, 20px)); }
  100% { transform: translateY(-62vh) translateX(calc(var(--sx, 20px) * -0.6)); opacity: 0; }
}
.paper__sheet { z-index: 2; }

/* the pin drives the pages on desktop — no arrows needed */
@media (min-width: 961px) {
  .hero__carousel .arrow-btn { display: none; }
}

.paper__sheet {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 250, 235, 0.5), transparent 60%),
    linear-gradient(160deg, #eddcba, #e2cda2 55%, #d8c093);
  color: #2a2118;
  border: 1.5px solid rgba(42, 33, 24, 0.55);
  box-shadow:
    0 2px 0 rgba(42, 33, 24, 0.35),
    0 30px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 60px rgba(120, 90, 40, 0.18);
  padding: clamp(1.2rem, 2.4vw, 2.2rem) clamp(1.2rem, 2.6vw, 2.4rem) 1.1rem;
  transform: rotate(-1.2deg);
  will-change: transform;
}
.paper__sheet::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.14;
}
.paper__masthead {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.15rem;
  border-bottom: 3px double rgba(42, 33, 24, 0.7);
  padding-bottom: 0.55rem;
}
.paper__title {
  font-family: "Pirata One", serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.paper__mast-line {
  font-family: "Old Standard TT", serif;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.75;
}
.paper__stamp {
  position: absolute;
  top: clamp(4.2rem, 8vw, 6rem); right: clamp(0.6rem, 2vw, 1.6rem);
  font-family: "Pirata One", serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a3201f;
  border: 3px double #a3201f;
  border-radius: 6px;
  padding: 0.2em 0.5em;
  transform: rotate(12deg);
  opacity: 0.85;
  mix-blend-mode: multiply;
  z-index: 4;
  will-change: transform, opacity;
}
.paper__headline {
  text-align: center;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  margin-top: 0.8rem;
  color: #2a2118;
}
.paper__sub {
  text-align: center;
  font-family: "Old Standard TT", serif;
  font-style: italic;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  margin-top: 0.2rem;
  opacity: 0.85;
}
.paper__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  align-items: stretch;
  margin-top: 0.9rem;
}
.paper__col {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 5px,
    rgba(42, 33, 24, 0.28) 5px 7px
  );
  border-top: 1.5px solid rgba(42, 33, 24, 0.5);
  min-height: 100%;
}
.paper__mug {
  position: relative;
  display: grid; place-items: center;
  padding: 0.6rem 0.4rem;
}
.paper__disc {
  position: absolute; left: 50%; top: 50%;
  width: clamp(180px, 24vh, 250px); height: clamp(180px, 24vh, 250px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.9;
  will-change: transform, background;
}
.hero__bottles {
  position: relative;
  height: clamp(230px, 33vh, 330px);
  aspect-ratio: 848 / 1264;
}
.paper__crime {
  text-align: center;
  font-family: "Old Standard TT", serif;
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  max-width: 46ch;
  margin: 0.8rem auto 0;
}
.paper__reward-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem;
  margin-top: 0.7rem;
  border-top: 1.5px solid rgba(42, 33, 24, 0.5);
  padding-top: 0.65rem;
}
.paper__reward { font-size: clamp(1.1rem, 2vw, 1.6rem); color: #a3201f; }
.paper__heat {
  font-family: "Old Standard TT", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}
.paper__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  border-top: 3px double rgba(42, 33, 24, 0.7);
  padding-top: 0.5rem;
  font-family: "Old Standard TT", serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.8;
}
.bottle-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  will-change: transform, opacity;
}
.bottle-slide.is-active { opacity: 1; pointer-events: auto; }
.bottle-slide img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.5));
}

.arrow-btn {
  position: relative; z-index: 5;
  width: clamp(56px, 5vw, 72px); height: clamp(56px, 5vw, 72px);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--bg);
  overflow: hidden;
  flex-shrink: 0;
}
.arrow-btn__bg {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--cream);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.arrow-btn:hover .arrow-btn__bg { transform: scale(1.12); background: var(--orange); }
.arrow-btn__icon {
  position: absolute; width: 40%; height: 40%;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.arrow-btn__icon.flip-x { scale: -1 1; }
.arrow-btn__icon--b { transform: translateX(-220%); }
.arrow-btn:hover .arrow-btn__icon--a { transform: translateX(220%); }
.arrow-btn:hover .arrow-btn__icon--b { transform: translateX(0); }
.arrow-btn .flip-x.arrow-btn__icon--b { transform: translateX(220%); }
.arrow-btn:hover .flip-x.arrow-btn__icon--a { transform: translateX(-220%); }
.arrow-btn:hover .flip-x.arrow-btn__icon--b { transform: translateX(0); }

.float {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  z-index: 2;
}
.float img {
  width: 100%; height: 100%; object-fit: contain;
  transform: rotate(var(--r, 0deg));
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.45));
}

/* ══════════════ INTRO ══════════════ */
.intro {
  position: relative;
  padding: clamp(8rem, 20vh, 14rem) var(--container) 0;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(2rem, 5vh, 3.4rem);
  text-align: center;
}
.intro__foods, .badges__foods { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.intro__food {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s);
  will-change: transform;
  filter: blur(var(--blur, 0px));
}
.intro__food img {
  width: 100%; height: auto;
  transform: rotate(var(--r, 0deg));
  opacity: 0.92;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.4));
}
.intro__line {
  position: relative; z-index: 1;
  max-width: 22ch;
  font-size: clamp(1.9rem, 4.6vw, 4.2rem);
  line-height: 1.06;
  color: var(--cream);
}
.intro__line .sw { display: inline-block; will-change: transform, opacity; }
.intro__icon {
  display: inline-block; vertical-align: -0.08em;
  width: 0.9em; height: 0.9em;
  margin: 0 0.08em;
}

/* ══════════════ BADGES (pill stack accordion) ══════════════ */
.badges {
  /* block layout: ScrollTrigger pin-spacing breaks inside flex parents */
  position: relative;
  padding: clamp(7rem, 16vh, 11rem) var(--container) clamp(2rem, 6vh, 4rem);
  background: var(--bg);
}
.badges__stack {
  position: relative; z-index: 1;
  width: min(560px, 94vw);
  margin-inline: auto;
  display: flex; flex-direction: column;
  gap: 10px;
}
.badge { display: flex; flex-direction: column; }
.badge__pill {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  background: var(--tan-2);
  color: var(--bg);
  border-radius: 12px;
  padding: 1.05rem 1.6rem 0.85rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  transition: background 0.4s ease, transform 0.3s ease;
  will-change: transform;
}
.badge__pill:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.badge:nth-child(1) .badge__pill { background: var(--tan-2); }
.badge:nth-child(2) .badge__pill { background: var(--tan-1); }
.badge.is-open .badge__pill { background: var(--cream); }
.badge__dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.badge__panel {
  overflow: hidden;
  height: 0;
}
.badge__panel-inner {
  margin-top: 10px;
  border: 1px solid color-mix(in srgb, var(--cream) 40%, transparent);
  border-radius: 12px;
  padding: 2.2rem 2rem 2.4rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.4rem;
  text-align: center;
  color: var(--cream);
}
.badge__icon { width: 74px; height: 74px; color: var(--cream); }
.badge__panel-inner p { max-width: 40ch; font-size: 1.02rem; }

/* ══════════════ LINEUP ══════════════ */
.lineup { padding: clamp(7rem, 16vh, 12rem) 0 0; overflow: hidden; }
.lineup__marquee {
  white-space: nowrap;
  margin-bottom: clamp(-1rem, -2vw, -2rem);
}
.lineup__giant {
  display: inline-block;
  font-size: clamp(6rem, 26vw, 24rem);
  line-height: 0.9;
  -webkit-text-stroke-width: 1.5px;
  will-change: transform;
}
.lineup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.7rem, 1.2vw, 1.2rem);
  padding: 0 var(--container);
}
.pcard {
  position: relative;
  background: var(--pc);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.4rem) clamp(1.2rem, 2vw, 2rem);
  display: flex; flex-direction: column; align-items: center;
  gap: 1.2rem;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.pcard__name { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.pcard {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.pcard:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.5);
}
.pcard__img {
  width: 46%;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pcard:hover .pcard__img { transform: scale(1.07) rotate(-3deg) translateY(-8px); }
.pcard__name { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.pcard:hover .pcard__name { transform: scale(1.04) rotate(-1deg); }
.pcard__tag { font-size: 0.92rem; font-weight: 500; opacity: 0.92; }
.pcard__foot {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; flex-wrap: wrap;
  margin-top: auto;
}
.pcard__price { font-size: 1.6rem; transform: translateY(2px); }

/* ══════════════ WHY ══════════════ */
.why {
  /* block layout: ScrollTrigger pin-spacing breaks inside flex parents */
  position: relative;
  padding: clamp(7rem, 16vh, 12rem) var(--container) 0;
  overflow: hidden;
}
.why__arc {
  position: relative;
  width: min(1000px, 94vw);
  aspect-ratio: 1000 / 300;
  margin-inline: auto;
}
.why__arc .arc-letter {
  position: absolute; left: 0; top: 0;
  font-family: "Luckiest Guy", cursive;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 1;
  color: var(--cream);
  transform-origin: 50% 100%;
  backface-visibility: hidden;
}
.why__arc .arc-letter .arc-inner {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.why__arc .arc-letter.outline { color: transparent; }
.why__stage {
  position: relative;
  width: 100vw;
  margin-left: calc(-1 * var(--container));
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}
.why__stage-inner {
  position: relative;
  width: 100%; height: 100%;
  will-change: transform, opacity;
}
.why__wheel {
  position: absolute;
  left: 50%; top: 0;
  width: 0; height: 0;
  will-change: transform;
  color: color-mix(in srgb, var(--cream) 45%, transparent);
}
.why__rope-circle { position: absolute; pointer-events: none; }
.reason { text-align: center; }
.reason__core {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.1rem;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reason__digit { transition: color 0.5s ease; }
.reason.is-active .reason__core { transform: scale(1.07); }
.reason:not(.is-active) .reason__core { transform: scale(0.93); }
.reason.is-active .reason__digit { color: var(--cream); }
.reason.is-active .reason__sticker { transform: rotate(3deg) scale(1.06); }
.reason.is-active:nth-child(even) .reason__sticker { transform: rotate(-4deg) scale(1.06); }

/* progress dots */
.why__dots {
  position: absolute;
  left: 50%; bottom: 6%;
  transform: translateX(-50%);
  display: flex; gap: 12px;
  z-index: 3;
}
.why__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--cream) 55%, transparent);
  transition: background 0.4s, transform 0.4s, border-color 0.4s;
}
.why__dot.is-active {
  background: var(--cream);
  border-color: var(--cream);
  transform: scale(1.3);
}

/* fiery rope + theatre spotlight from above */
.why__rope-circle {
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--orange) 55%, transparent));
}
.why__beam {
  position: absolute;
  left: 50%; top: 0;
  width: min(660px, 52vw);
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0% 100%);
  background: linear-gradient(to bottom,
    rgba(245, 228, 199, 0.03),
    rgba(245, 228, 199, 0.13) 55%,
    rgba(245, 228, 199, 0.2));
  filter: blur(10px);
  opacity: 0.05; /* JS raises this as a card reaches center stage */
  pointer-events: none;
  will-change: transform, opacity;
}
.why__pool {
  position: absolute;
  left: 50%;
  width: min(660px, 52vw); height: 190px;
  background: radial-gradient(ellipse at center, rgba(245, 228, 199, 0.28), transparent 70%);
  filter: blur(8px);
  opacity: 0.04;
  pointer-events: none;
  will-change: opacity;
}
.why__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}


/* rising ember sparks */
.ember-spark {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sc, #f15726) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: spark-rise var(--sd, 7s) linear infinite;
  animation-delay: var(--sdelay, 0s);
  will-change: transform, opacity;
}
@keyframes spark-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 0.85; }
  60% { opacity: 0.5; transform: translateY(-55vh) translateX(var(--sx, 20px)); }
  100% { transform: translateY(-105vh) translateX(calc(var(--sx, 20px) * -0.6)); opacity: 0; }
}

@media (min-width: 961px) {
  .why__stage .why__arc {
    position: absolute;
    top: 4%; left: 50%;
    transform: translateX(-50%);
    width: min(900px, 76vw);
    z-index: 3; /* stays crisp above the vignette */
    margin: 0;
  }
  .why__stage .why__arc .arc-letter {
    font-size: clamp(2rem, 4.9vw, 4.1rem);
  }
  .why__stage .reason {
    position: absolute; left: 0; top: 0;
    width: min(400px, 34vw);
    margin-left: calc(min(400px, 34vw) / -2);
  }
}
.reason__digit {
  font-size: clamp(4.4rem, 8vw, 7rem);
  -webkit-text-stroke-width: 1.5px;
}
.reason__sticker {
  display: inline-flex; align-items: center; gap: 0.7em;
  background: var(--cream); color: var(--bg);
  border-radius: 8px;
  padding: 0.75em 1.3em 0.55em;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: rotate(-5deg);
}
.reason:nth-child(even) .reason__sticker { transform: rotate(4deg); }
.reason__img {
  width: 116px; height: 116px; object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}
/* the award ribbon is a tall portrait shape — give it vertical room */
.reason:nth-child(3) .reason__img { width: auto; height: 148px; }
.reason__text {
  max-width: 34ch;
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--cream) 82%, transparent);
}

/* ══════════════ PACKS ══════════════ */
.packs {
  padding: clamp(7rem, 16vh, 12rem) var(--container) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 1.4vw, 1.4rem);
  align-items: stretch;
}
@media (min-width: 961px) {
  /* slides over the fading wheel stage like a sheet */
  .packs {
    position: relative; z-index: 2;
    background: var(--bg);
    margin-top: -3.5rem;
    border-top: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -34px 70px rgba(0, 0, 0, 0.55);
  }
}
.packs__photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}
.packs__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.packs__photo:hover img { transform: scale(1.05); }
.packs__info {
  border: 1px solid color-mix(in srgb, var(--cream) 25%, transparent);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex; flex-direction: column; align-items: center;
  gap: 1.3rem;
  text-align: center;
}
.packs__title { font-size: clamp(2.6rem, 5.4vw, 4.6rem); color: var(--cream); }
.packs__kicker { font-size: clamp(1.2rem, 2vw, 1.7rem); color: var(--amber); margin-top: -0.8rem; }
.packs__switch { display: flex; gap: 0.4rem; align-items: center; }
.packs__tab {
  padding: 0.55em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 1.05rem; font-weight: 600;
  color: color-mix(in srgb, var(--cream) 55%, transparent);
  transition: color 0.3s, border-color 0.3s;
}
.packs__tab.is-active { border-color: var(--cream); color: var(--cream); }
.packs__card {
  width: 100%;
  background: var(--tan-1);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  color: var(--bg);
}
.packs__imgwrap { position: relative; width: 100%; aspect-ratio: 3 / 1.8; }
.packs__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transform: scale(0.92) rotate(-2deg);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.3));
}
.packs__img.is-active { opacity: 1; transform: scale(1) rotate(0deg); }
.packs__price-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.4rem; flex-wrap: wrap;
}
.packs__price { font-size: clamp(1.7rem, 2.6vw, 2.3rem); transform: translateY(2px); }

/* ══════════════ REVIEWS ══════════════ */
.reviews { padding: clamp(7rem, 18vh, 12rem) var(--container) 0; }
.reviews__title-wrap { display: flex; justify-content: center; overflow: hidden; }
.reviews__title {
  font-size: clamp(4.5rem, 21vw, 19rem);
  -webkit-text-stroke-width: 2px;
  line-height: 0.95;
  will-change: transform;
  transform-origin: bottom center;
  user-select: none;
}
.reviews__slider { margin-top: 1.6rem; overflow: hidden; cursor: grab; }
.reviews__slider:active { cursor: grabbing; }
.reviews__track { display: flex; gap: 1rem; will-change: transform; }
.review {
  flex-shrink: 0;
  width: calc((100% - 2rem) / 3);
  display: flex; flex-direction: column; gap: 8px;
  user-select: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.review:hover { transform: translateY(-6px) rotate(-0.6deg); }
.review:nth-child(even):hover { transform: translateY(-6px) rotate(0.6deg); }
.review__quote-mark { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.review:hover .review__quote-mark { transform: scale(1.2) rotate(-6deg); }
.review__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  background: var(--cream); color: var(--bg);
  border-radius: 10px;
  padding: 0.95rem 1.4rem 0.75rem;
  font-size: 1.35rem;
}
.review__head .badge__dot { background: var(--bg); }
.review__body {
  position: relative;
  background: var(--card-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 40 48'%3E%3Cpath d='M20 12c1 4-3 5.5-3 9 0-1.5-1.5-2-1.5-4-2.5 2.5-3.5 5-3.5 8 0 5 3.5 9 8 9s8-4 8-9c0-4.5-4-6-4.5-11-1.5 1-2.5 2.5-2 4.5-1-1.5-2-3.5-1.5-6.5z' fill='%23f5e4c7' fill-opacity='0.045'/%3E%3C/svg%3E");
  background-size: 56px 56px;
  border-radius: 10px;
  padding: 1.8rem 1.6rem 2rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.1rem;
  text-align: center;
  min-height: 300px;
}
.review__quote-mark { width: 42px; height: 32px; color: var(--cream); }
.review__quote {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  -webkit-text-stroke-width: 1px;
  line-height: 1.08;
}
.review__text { font-size: 0.98rem; color: color-mix(in srgb, var(--cream) 85%, transparent); }
.review__text strong { color: var(--cream); }
.reviews__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem;
  margin-top: 1.8rem;
}
.reviews__hint {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--cream) 55%, transparent);
}

/* ══════════════ FOOTER ══════════════ */
.footer { padding: clamp(6rem, 12vh, 8rem) var(--container) 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 15fr 30fr 35fr 20fr;
  gap: clamp(1rem, 2vw, 2rem);
  padding-bottom: 3rem;
}
.footer__logo-panel {
  border: 1px solid color-mix(in srgb, var(--cream) 25%, transparent);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
}
.footer__flame { width: 46px; height: 55px; color: var(--amber); }
.footer__logo-panel .font-display { font-size: 1.7rem; color: var(--cream); }
.footer__est {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--cream) 55%, transparent);
}
.footer__links { display: flex; flex-direction: column; }
.footer__links a {
  font-family: "Luckiest Guy", cursive;
  text-transform: uppercase;
  font-size: 1.15rem;
  padding: 0.95rem 0.2rem 0.7rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--cream) 25%, transparent);
  color: var(--cream);
}
.footer__links a:first-child { border-top: 1px dashed color-mix(in srgb, var(--cream) 25%, transparent); }
[data-roll] {
  position: relative; display: inline-flex; overflow: hidden;
  line-height: 1.25; height: 1.25em;
}
[data-roll] .roll-a, [data-roll] .roll-b {
  display: block; white-space: nowrap;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
[data-roll] .roll-b { position: absolute; inset: 0; transform: translateY(110%); }
a:hover > [data-roll] .roll-a { transform: translateY(-110%); }
a:hover > [data-roll] .roll-b { transform: translateY(0); }
.footer__club { display: flex; flex-direction: column; gap: 0.8rem; padding-top: 0.4rem; }
.footer__club h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--cream); }
.footer__club p { font-size: 0.92rem; color: color-mix(in srgb, var(--cream) 65%, transparent); }
.footer__form {
  display: flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--cream) 35%, transparent);
  padding-bottom: 0.6rem;
  margin-top: 0.6rem;
}
.footer__form input {
  flex: 1;
  background: transparent; border: 0; outline: none;
  color: var(--cream);
  font: inherit; font-size: 1.05rem;
  padding: 0.4rem 0.2rem;
}
.footer__form input::placeholder { color: color-mix(in srgb, var(--cream) 45%, transparent); }
.footer__submit {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--cream) 35%, transparent);
  display: grid; place-items: center;
  color: var(--cream);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.footer__submit svg { width: 20px; height: 20px; }
.footer__submit:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }
.footer__socials { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__social {
  flex: 1;
  border: 1px solid color-mix(in srgb, var(--cream) 25%, transparent);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--cream);
  min-height: 90px;
  transition: background 0.3s, color 0.3s;
}
.footer__social svg { width: 26px; height: 26px; }
.footer__social:hover { background: var(--cream); color: var(--bg); }
.footer__word-wrap {
  display: flex; justify-content: center;
  overflow: hidden;
  padding-top: 1rem;
}
.footer__word {
  font-size: clamp(6rem, 27vw, 25rem);
  line-height: 0.95;
  -webkit-text-stroke-width: 2px;
  transition: color 0.5s ease, -webkit-text-stroke-color 0.5s ease;
  will-change: transform;
  user-select: none;
}
.footer__word:hover { color: var(--red); -webkit-text-stroke-color: var(--red); }
.footer__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1.1rem 0 1.3rem;
  border-top: 1px solid color-mix(in srgb, var(--cream) 30%, transparent);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--cream) 70%, transparent);
}

/* ══════════════ REVEALS ══════════════ */
[data-reveal] { opacity: 0; transform: translateY(48px); will-change: transform, opacity; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 960px) {
  .lineup__grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .why__stage { height: auto; overflow: visible; width: 100%; margin-left: 0; }
  .why__stage-inner { height: auto; }
  .why__arc { margin-bottom: 2rem; }
  .why__wheel {
    position: static; width: auto; height: auto;
    display: grid; gap: 3.5rem;
    max-width: 540px; margin-inline: auto;
  }
  .why__rope-circle { display: none; }
  .why__dots, .ember-spark, .why__beam, .why__pool { display: none; }
  .paper__steam, .paper__burst-lines, .hero__side-fx { display: none; }
  .packs { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__socials { flex-direction: row; }
  .review { width: calc((100% - 1rem) / 2); }
  .hero__meta--right { display: none; }
  .why__grid { gap: 3.5rem; }
}
@media (max-width: 600px) {
  .review { width: 100%; }
  .hero__carousel { gap: 0.6rem; }
  .hero__meta:first-child { display: none; }
  .float { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .header .btn { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
