:root {
  --ink: #1a120c;
  --dust: #c4a07a;
  --saddle: #8b4518;
  --sunset: #e25a1c;
  --night: #24160f;
  --paper: #f6e8d4;
  --muted: #7a5c45;
  --line: rgba(26, 18, 12, 0.16);
  --venmo: #008cff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Libre Franklin", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 100% 60% at 0% 0%, rgba(226, 90, 28, 0.14), transparent 55%),
    linear-gradient(180deg, #f8ecdc 0%, #edd4b0 50%, #e2c398 100%);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding:
    max(1rem, env(safe-area-inset-top))
    max(1.25rem, env(safe-area-inset-right))
    1rem
    max(1.25rem, env(safe-area-inset-left));
  color: var(--paper);
}

.logo {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  opacity: 0.92;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--paper);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  animation: ken 30s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 10, 6, 0.78) 0%,
    rgba(18, 10, 6, 0.45) 42%,
    rgba(18, 10, 6, 0.25) 100%
  ),
  linear-gradient(
    180deg,
    rgba(18, 10, 6, 0.35) 0%,
    rgba(18, 10, 6, 0.1) 40%,
    rgba(18, 10, 6, 0.72) 100%
  );
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.95fr);
  align-items: end;
  gap: 1rem;
  padding:
    clamp(5rem, 12vh, 7rem)
    clamp(1.25rem, 4vw, 2.5rem)
    clamp(1.75rem, 5vh, 2.75rem);
}

.hero-copy {
  width: 100%;
  max-width: 34rem;
  justify-self: start;
  padding: 0;
  animation: rise 0.85s ease-out both;
}

.hero-stage {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
  aspect-ratio: 3 / 4;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  animation: rise 0.9s ease-out both;
  animation-delay: 0.08s;
  padding-bottom: 0;
}

.hero-mustafa {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.hero-mustafa.is-hungry {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45)) saturate(1.15);
}

.hero-mustafa.is-reacting {
  filter: drop-shadow(0 18px 28px rgba(255, 80, 140, 0.35)) saturate(1.25) brightness(1.05);
}

.hero-mustafa.react-pop {
  animation: react-pop 0.35s ease-out;
}

.hero-mustafa.pose-swap {
  animation: pose-swap 0.32s ease-out;
}

.hero-stage.is-steamy .hero-mustafa {
  animation: steam-pulse 1.2s ease-in-out infinite;
}

.hero-stage.is-melting .hero-mustafa {
  filter: drop-shadow(0 18px 28px rgba(255, 60, 120, 0.55)) saturate(1.35) brightness(1.08);
}

.hero-stage.mouth-hit::after {
  content: "";
  position: absolute;
  inset: 18% 22% 42% 22%;
  border-radius: 50%;
  box-shadow: 0 0 40px 10px rgba(255, 90, 150, 0.28);
  pointer-events: none;
  z-index: 1;
  animation: mouth-glow 0.9s ease-in-out infinite;
}

.toy {
  position: absolute;
  z-index: 3;
  width: clamp(54px, 16%, 78px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: grab;
  touch-action: none;
  transform: translate(-50%, -20%) rotate(calc(-18deg + var(--wiggle, 0deg)));
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.35));
  transition: filter 0.2s ease;
}

.toy.is-gliding {
  transition: left 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), top 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.2s ease;
}

.toy.is-near {
  filter: drop-shadow(0 0 12px rgba(255, 120, 180, 0.65));
}

.toy.is-on-mouth {
  filter: drop-shadow(0 0 16px rgba(255, 70, 140, 0.9));
  animation: suckle 0.45s ease-in-out infinite;
}

.toy:active,
.toy.is-dragging {
  cursor: grabbing;
  z-index: 4;
  transition: none;
  animation: none;
}

.toy svg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.heat-meter {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.35rem;
  align-items: center;
  min-width: 46%;
  padding: 0.35rem 0.45rem;
  background: rgba(12, 7, 5, 0.55);
  color: #fff1df;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  pointer-events: none;
}

.heat-meter__track {
  height: 8px;
  background: rgba(255, 241, 223, 0.2);
  overflow: hidden;
}

.heat-meter__track i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff7eb3, #ff4fa3 60%, #ff6a28);
  transition: width 0.12s linear;
}

.react-bubble {
  position: absolute;
  z-index: 5;
  transform: translate(-50%, -120%);
  margin: 0;
  padding: 0.55rem 0.85rem 0.6rem;
  max-width: min(220px, 70%);
  background: linear-gradient(180deg, #fff8ee 0%, #f3e2cc 100%);
  color: #1a120c;
  border: 1px solid rgba(26, 18, 12, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
  pointer-events: none;
  text-align: center;
  white-space: normal;
}

.react-bubble.is-popping {
  animation: bubble-pop 0.28s ease-out;
}

.react-bubble .qmark {
  font-style: normal;
  font-weight: 700;
  color: var(--sunset, #e25a1c);
  font-size: 1.35em;
  line-height: 0;
  vertical-align: -0.15em;
}

.react-bubble .qmark--l {
  margin-right: 0.12em;
}

.react-bubble .qmark--r {
  margin-left: 0.12em;
}

.react-bubble .q-text {
  font-style: italic;
}

.react-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.react-heart {
  position: absolute;
  color: #ff4fa3;
  font-size: 1.1rem;
  animation: heart-rise 0.9s ease-out forwards;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

@keyframes react-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.045);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pose-swap {
  0% {
    opacity: 0.55;
    transform: translateY(8px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes suckle {
  0%,
  100% {
    transform: translate(-50%, -20%) rotate(calc(-18deg + var(--wiggle, 0deg))) scale(1);
  }
  50% {
    transform: translate(-50%, -26%) rotate(calc(-12deg + var(--wiggle, 0deg))) scale(1.06);
  }
}

@keyframes steam-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
}

@keyframes mouth-glow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes bubble-pop {
  from {
    opacity: 0;
    transform: translate(-50%, -80%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -120%) scale(1);
  }
}

@keyframes heart-rise {
  0% {
    opacity: 1;
    transform: translateY(0) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateY(-42px) scale(1.25);
  }
}

.toy-hint {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 241, 223, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  white-space: nowrap;
}

.pose-dots {
  position: absolute;
  left: 50%;
  bottom: 5.6rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.pose-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 241, 223, 0.7);
  background: transparent;
  cursor: pointer;
}

.pose-dots button.is-active {
  background: #fff1df;
}

.rain-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.rain-drop {
  position: absolute;
  top: -20%;
  width: var(--size, 36px);
  height: auto;
  opacity: 0.95;
  animation-name: dildo-fall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  will-change: transform;
}

.rain-drop svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
}

.rain-controls {
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  width: calc(100% - 0.5rem);
}

@media (max-width: 420px) {
  .rain-controls .btn {
    flex: 1 1 42%;
    min-height: 44px;
    font-size: 0.8rem;
    padding: 0.5rem 0.55rem;
  }

  .third-leg {
    width: 28%;
  }

  .heat-meter {
    min-width: 58%;
    font-size: 0.7rem;
  }
}

.btn-rain,
.btn-clear {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-rain {
  background: #ff4fa3;
  color: #fff;
  border-color: #ff4fa3;
}

.btn-rain:hover {
  background: #ff6bb3;
}

.btn-clear {
  background: rgba(18, 10, 6, 0.55);
  color: #fff1df;
  border-color: rgba(255, 241, 223, 0.45);
}

.btn-mute {
  background: rgba(18, 10, 6, 0.55);
  color: #fff1df;
  border-color: rgba(255, 241, 223, 0.45);
}

.btn-mute:hover {
  border-color: #fff;
}

.btn-mute.is-muted {
  background: #5a3a28;
  border-color: #ffc08a;
  color: #ffc08a;
}

.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(226, 90, 28, 0.28), transparent 60%),
    #120b07;
  color: #f6e8d4;
}

.entry-gate[hidden] {
  display: none !important;
}

.entry-gate__panel {
  width: min(440px, 100%);
  text-align: center;
  animation: rise 0.45s ease-out;
}

.entry-gate__eyebrow {
  margin: 0 0 0.4rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff6a28;
}

.entry-gate__panel h1 {
  margin: 0 0 0.85rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 12vw, 4.5rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  font-weight: 400;
}

.entry-gate__panel p {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  color: rgba(246, 232, 212, 0.9);
}

.entry-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.entry-gate__actions .btn {
  width: 100%;
  text-decoration: none;
}

.entry-gate__actions .btn-clear {
  background: transparent;
  color: #f6e8d4;
  border-color: rgba(246, 232, 212, 0.45);
}

.entry-gate__fine {
  margin-top: 1rem !important;
  font-size: 0.82rem !important;
  color: rgba(246, 232, 212, 0.55) !important;
}

body.gated #site[hidden] {
  display: none !important;
}

.site:not([hidden]) {
  display: contents;
}

.toy-hint {
  bottom: 7.4rem;
}

@keyframes dildo-fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--rot, -20deg));
  }
  100% {
    transform: translate3d(var(--drift, 20px), 130vh, 0) rotate(var(--spin, 220deg));
  }
}

.brand {
  margin: 0 0 0.7rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 11vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff1df;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: Newsreader, Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.2;
  max-width: 18ch;
}

.lede {
  margin: 0 0 1.35rem;
  max-width: 34ch;
  color: rgba(246, 232, 212, 0.92);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.release-chip {
  margin: 1.1rem 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #ffc08a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sunset);
  color: #fff8f0;
  border-color: var(--sunset);
}

.btn-primary:hover {
  background: #ff6a28;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(246, 232, 212, 0.55);
}

.btn-ghost:hover {
  border-color: #fff;
}

.btn-venmo {
  background: var(--venmo);
  color: #fff;
  border-color: var(--venmo);
  width: 100%;
  max-width: 20rem;
  margin-bottom: 0.65rem;
}

.btn-venmo:hover {
  background: #0070d6;
}

.btn-block {
  width: 100%;
}

.cast,
.pitch,
.voices,
.includes,
.preorder {
  width: min(960px, calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: auto;
}

.cast {
  padding: clamp(3.5rem, 9vh, 5.5rem) 0 2rem;
}

.cast h2,
.voices h2,
.includes h2,
.preorder-copy h2 {
  margin: 0 0 0.4rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.section-lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
}

.cast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cast-grid.single {
  align-items: start;
}

.pose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.pose-card {
  margin: 0;
}

.pose-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}

.pose-card figcaption {
  padding: 0.65rem 0 0;
  display: grid;
  gap: 0.15rem;
}

.pose-card strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  font-weight: 400;
}

.pose-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.yuri-cast {
  padding-top: 1rem;
}

.cast-card {
  margin: 0;
}

.cast-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
}

.yuri-frame {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #1a120c;
}

.yuri-frame img {
  border: 0;
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.yuri-bbc {
  display: none;
}

.yuri-bulge {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

/* Soft denim stretch only — no floating dick graphic */
.yuri-bulge--fabric {
  left: 39%;
  bottom: 12%;
  width: 24%;
  height: 16%;
  border-radius: 48% 48% 42% 42%;
  background:
    radial-gradient(
      ellipse 70% 80% at 50% 35%,
      rgba(55, 78, 105, 0.55) 0%,
      rgba(35, 55, 78, 0.35) 45%,
      rgba(25, 40, 58, 0.12) 70%,
      transparent 100%
    );
  box-shadow:
    inset 0 4px 8px rgba(255, 255, 255, 0.12),
    inset 0 -10px 14px rgba(0, 0, 0, 0.28),
    0 3px 6px rgba(0, 0, 0, 0.18);
  mix-blend-mode: multiply;
  transform: rotate(-5deg);
  filter: blur(0.3px);
  animation: bulge-throb 2.8s ease-in-out infinite;
}

.mustafa-cast-frame {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #1a120c;
}

.mustafa-cast-frame .mustafa-photo {
  border: 0;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.mustafa-cast-frame.is-scared .mustafa-photo {
  filter: saturate(1.1) contrast(1.05);
  animation: scared-shake 0.45s ease-in-out;
}

.scared-tag {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 248, 238, 0.94);
  color: #1a120c;
  font-family: Newsreader, Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  white-space: nowrap;
  z-index: 2;
}

.third-leg {
  position: absolute;
  left: 42%;
  bottom: 2%;
  width: 22%;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: 50% 12%;
  animation: third-leg-sway 2.2s ease-in-out infinite;
  touch-action: manipulation;
}

.third-leg svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.4));
}

.third-leg.is-blurred svg {
  filter: blur(14px) drop-shadow(0 8px 10px rgba(0, 0, 0, 0.35));
}

.third-leg:not(.is-blurred) svg {
  filter: blur(0) drop-shadow(0 10px 14px rgba(0, 0, 0, 0.45));
  animation: third-leg-throb 0.9s ease-in-out infinite;
}

.third-leg__label {
  display: block;
  margin-top: 0.25rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #fff1df;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.yuri-reveal.is-revealed .yuri-bulge--fabric {
  opacity: 0.25;
}

@keyframes third-leg-sway {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-4px);
  }
}

@keyframes third-leg-throb {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes scared-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px) rotate(-1deg);
  }
  75% {
    transform: translateX(4px) rotate(1deg);
  }
}

@keyframes bulge-throb {
  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }
  50% {
    transform: rotate(-3deg) scale(1.035);
  }
}

.cast-grid.pair {
  grid-template-columns: 1fr 1fr;
}

.yuri-cast {
  padding-top: clamp(3rem, 8vh, 4.5rem);
}

.mustafa-photo {
  object-position: center 15%;
  background: #1a120c;
}

.cast-card figcaption {
  padding: 0.9rem 0 0;
  display: grid;
  gap: 0.25rem;
}

.cast-card strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.cast-card span {
  color: var(--muted);
  font-size: 0.98rem;
}

.pitch {
  padding: clamp(2.5rem, 7vh, 4rem) 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.pitch-copy {
  min-width: 0;
}

.pitch-pose {
  width: 100%;
  max-width: 280px;
  justify-self: end;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.45rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saddle);
  font-size: 0.95rem;
}

.pitch h2 {
  margin: 0 0 1rem;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.15;
  max-width: 16ch;
}

.pitch p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--night);
  max-width: 58ch;
}

.voices-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.voices-head .section-lede {
  margin-bottom: 0;
}

.voices-pose {
  width: 110px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.preorder-pose {
  width: min(100%, 180px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.voices {
  padding: 0 0 clamp(3rem, 8vh, 4.5rem);
}

.voice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.voice-list li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.voice-meta {
  display: grid;
  gap: 0.15rem;
}

.voice-meta strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  font-weight: 400;
}

.voice-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.voice-list audio {
  width: 100%;
  height: 40px;
}

.includes {
  padding: 0 0 clamp(3rem, 8vh, 4.5rem);
}

.include-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.include-list li {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.include-list span {
  color: var(--muted);
}

.preorder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 3rem) 0 0;
  margin-bottom: clamp(2.5rem, 8vh, 4.5rem);
  border-top: 1px solid var(--line);
}

.preorder-copy p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.price {
  margin-top: 1.25rem !important;
}

.price span {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}

.pay-block {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.pay-label {
  margin: 0 0 0.6rem !important;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink) !important;
  font-size: 0.95rem;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-form label,
.order-form legend {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--night);
}

.order-form input[type="text"],
.order-form input[type="email"] {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.88);
  color: var(--ink);
  appearance: none;
  border-radius: 0;
}

.order-form input:focus {
  outline: 2px solid var(--sunset);
  outline-offset: 1px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.radio,
.check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.65rem !important;
  cursor: pointer;
  min-height: 44px;
  padding: 0.3rem 0;
}

.radio input,
.check input {
  margin-top: 0.2rem;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.confirm {
  grid-column: 1 / -1;
  padding: 1.5rem 0 0.5rem;
  animation: rise 0.5s ease-out;
}

.confirm h2 {
  margin: 0 0 0.7rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 8vw, 2.6rem);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding:
    1.75rem
    max(1.25rem, env(safe-area-inset-right))
    max(2rem, env(safe-area-inset-bottom))
    max(1.25rem, env(safe-area-inset-left));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-foot {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
  text-underline-offset: 0.2em;
}

.site-footer a:hover {
  color: var(--sunset);
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.age-modal[hidden] {
  display: none !important;
}

.age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.78);
}

.age-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  background: #f8ecdc;
  color: var(--ink);
  border: 1px solid rgba(226, 90, 28, 0.45);
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: rise 0.35s ease-out;
}

.age-modal__eyebrow {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sunset);
  font-size: 0.95rem;
}

.age-modal__panel h2 {
  margin: 0 0 0.85rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 7vw, 2.8rem);
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1;
}

.age-modal__body p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
}

.age-modal__body ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
  color: var(--night);
  font-size: 0.95rem;
}

.age-modal__body li {
  margin-bottom: 0.45rem;
}

.age-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.age-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.age-modal__actions .btn {
  flex: 1 1 140px;
}

.age-modal .btn-clear {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 18, 12, 0.35);
}

body.age-lock {
  overflow: hidden;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 780px) {
  .hero-layout {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
  }

  .hero-copy {
    order: 0;
    padding-inline: 0;
  }

  .hero-stage {
    order: -1;
    justify-self: center;
    width: min(78vw, 320px);
    margin-top: 0.5rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }

  .cast,
  .pitch,
  .voices,
  .includes,
  .preorder {
    width: calc(100% - 2 * max(1.15rem, env(safe-area-inset-left)));
  }

  .cast-grid,
  .cast-grid.pair {
    grid-template-columns: 1fr 1fr;
  }

  .pose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pitch {
    grid-template-columns: 1fr;
  }

  .pitch-pose {
    justify-self: start;
    max-width: 220px;
  }

  .voices-pose {
    width: 84px;
  }

  .voice-list li,
  .include-list li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .preorder {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .cast-grid,
  .cast-grid.pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .logo {
    max-width: 58%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand {
    font-size: 2.5rem;
  }

  .hero h1,
  .lede {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-copy,
  .hero-stage,
  .confirm {
    animation: none;
  }
}
