:root {
  --black: #050407;
  --black-2: #0d0710;
  --paper: #f6eee1;
  --hot: #f2388f;
  --hot-2: #ff64aa;
  --lime: #c9ef35;
  --cyan: #24c7e8;
  --orange: #ff6b22;
  --yellow: #ffd81a;
  --muted: #d7d0c8;
  --line: rgba(255, 255, 255, 0.2);
  --max: 1180px;
  --font-script: "Brush Script MT", "Segoe Script", cursive;
  --font-title: "Bangers", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-marker: "Knewave", "Brush Script MT", "Segoe Script", cursive;
  --font-utility: "Bangers", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  overflow-x: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 4%, rgba(242, 56, 143, 0.3), transparent 24rem),
    radial-gradient(circle at 10% 18%, rgba(36, 199, 232, 0.24), transparent 22rem),
    radial-gradient(circle at 18% 78%, rgba(201, 239, 53, 0.12), transparent 24rem),
    linear-gradient(180deg, #080509 0%, #1b0713 34%, #071416 72%, #050407 100%);
  font-family: Arial, Helvetica, sans-serif;
  font-kerning: normal;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 20% 85%, rgba(197, 244, 0, 0.18), transparent 18rem);
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  left: max(12px, env(safe-area-inset-left));
  z-index: 100;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: #101400;
  background: var(--lime);
  font-family: var(--font-utility);
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  box-shadow: 5px 5px 0 #000;
  clip-path: polygon(3% 7%, 100% 0, 96% 92%, 0 100%);
  transform: translateY(calc(-100% - 24px));
  transition: opacity 160ms ease, transform 160ms ease;
}

.skip-link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(116px, 1fr);
  align-items: center;
  gap: 22px;
  padding:
    max(16px, env(safe-area-inset-top))
    clamp(18px, 4vw, 52px)
    16px;
  background: rgba(5, 4, 7, 0.84);
  border-bottom: 1px solid rgba(255, 22, 127, 0.24);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  color: var(--hot);
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 0.66;
  text-shadow: 0 0 18px rgba(255, 22, 127, 0.5);
  transform: rotate(-5deg);
}

.brand strong,
.footer-brand strong {
  font: inherit;
  margin-left: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  color: #f3efe8;
  font-family: var(--font-utility);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 12px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--hot);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
  transform: scaleX(1);
}

.neon-sign {
  justify-self: end;
  width: 112px;
  padding: 10px 12px;
  color: var(--hot);
  border: 2px solid var(--hot);
  border-radius: 8px;
  box-shadow: 0 0 8px var(--hot), inset 0 0 10px rgba(255, 22, 127, 0.45);
  font-family: var(--font-utility);
  font-size: 1.18rem;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.hero,
.home-hero,
.bio-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  max-width: 1360px;
  min-height: min(820px, calc(92vh - 82px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 86px) clamp(18px, 5vw, 74px) clamp(44px, 7vw, 92px);
  overflow: hidden;
}

.home-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
}

.bio-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.68fr);
}

.books-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1440px;
  min-height: min(820px, calc(92vh - 82px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 84px) clamp(18px, 5vw, 74px) clamp(46px, 7vw, 92px);
  overflow: hidden;
}

.books-hero::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 68%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 4, 7, 0.74), rgba(5, 4, 7, 0.08)),
    url("./assets/site-neon-background.webp") center / cover;
  opacity: 0.62;
  filter: saturate(1.08) contrast(1.02);
}

.books-hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.books-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: 0.88;
}

.home-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.6rem, 7.2vw, 6rem);
  line-height: 0.86;
}

.bio-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: 0.88;
}

.home-hero .scribble,
.bio-hero .scribble {
  margin-bottom: 14px;
  font-size: clamp(2.55rem, 5vw, 4.6rem);
}

.cover-sheet {
  width: min(100%, 720px);
  min-width: 0;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1792 / 1024;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.78), 0 0 42px rgba(255, 22, 127, 0.22);
  clip-path: polygon(1% 1%, 100% 4%, 98% 96%, 0 100%);
  transform: rotate(1deg);
}

.cover-sheet img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #060606;
}

.hero > *,
.home-hero > *,
.bio-hero > *,
.books-hero > * {
  min-width: 0;
}

.hero::before,
.home-hero::before,
.bio-hero::before {
  content: "";
  position: absolute;
  inset: 7% 0 auto;
  height: 62%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 4, 7, 0.72), rgba(5, 4, 7, 0.06)),
    url("./assets/site-neon-background.webp") center / cover;
  opacity: 0.58;
  filter: saturate(1.08) contrast(1.02);
}

.home-hero::before {
  opacity: 0.64;
}

.home-hero .sticker-left,
.home-hero .sticker-right {
  z-index: 1;
}

.home-hero .sticker-left {
  display: none;
}

.bio-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 4, 7, 0.7), rgba(5, 4, 7, 0.06)),
    url("./assets/site-neon-background.webp") center / cover;
  opacity: 0.55;
}

.hero-copy,
.home-copy,
.bio-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}

.scribble {
  margin: 0 0 -0.22em;
  font-family: var(--font-marker);
  font-size: clamp(3.1rem, 8vw, 5.8rem);
  font-weight: 700;
  line-height: 0.82;
  text-shadow: 0 0 20px rgba(197, 244, 0, 0.35);
  transform: rotate(-4deg);
}

.scribble.lime {
  color: var(--lime);
}

.scribble.hot {
  color: var(--hot);
}

.hero .scribble {
  margin-bottom: 0.26em;
  font-size: clamp(2.6rem, 5.6vw, 4.7rem);
  line-height: 0.86;
}

.hero h1 {
  margin-top: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  color: var(--paper);
  font-family: var(--font-title);
  font-size: clamp(3.6rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 5px 0 rgba(242, 56, 143, 0.82), 0 0 24px rgba(36, 199, 232, 0.22);
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: var(--hot-2);
}

h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.ripped-line {
  display: inline-block;
  margin: 0 0 28px;
  padding: 10px 18px 12px;
  color: #111;
  background: var(--paper);
  font-family: var(--font-marker);
  font-size: clamp(1.75rem, 3.6vw, 3.6rem);
  line-height: 1;
  text-shadow: none;
  transform: rotate(-2deg);
  clip-path: polygon(1% 13%, 99% 0, 98% 88%, 4% 100%, 0 55%);
}

.ripped-line.small {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.stephanie-copy .ripped-line.small {
  color: #050407;
  background: var(--paper);
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.05;
  text-shadow: none;
}

.intro {
  max-width: 42rem;
  margin-bottom: 28px;
  color: #f5efe9;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 2px solid currentColor;
  font-family: var(--font-utility);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 #000;
  transform: rotate(-1deg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button::after {
  content: "->";
  margin-left: 16px;
}

.button:hover {
  transform: translate(3px, 3px) rotate(-1deg);
  box-shadow: 2px 2px 0 #000;
}

.button:focus-visible {
  transform: translate(3px, 3px) rotate(-1deg);
  box-shadow: 2px 2px 0 #000, 0 0 0 5px rgba(19, 201, 255, 0.28);
}

.button.hot {
  color: #12030a;
  background: var(--hot);
}

.button.acid {
  color: #081000;
  background: var(--lime);
}

.poster-frame {
  position: relative;
  margin: 0;
  align-self: end;
  justify-self: center;
  width: min(100%, 560px);
  aspect-ratio: 951 / 1654;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.78), 0 0 36px rgba(255, 22, 127, 0.25);
  transform: rotate(1.4deg);
}

.author-frame {
  position: relative;
  margin: 0;
  align-self: end;
  justify-self: center;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.78), 0 0 40px rgba(255, 22, 127, 0.28);
  clip-path: polygon(2% 0, 100% 4%, 96% 100%, 0 94%);
  transform: rotate(1.5deg);
}

.author-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.bio-author-frame {
  width: min(100%, 460px);
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticker {
  position: absolute;
  z-index: 3;
  max-width: 190px;
  padding: 18px;
  color: #111;
  background: var(--lime);
  font-family: var(--font-utility);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.02;
  text-transform: uppercase;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.75);
  clip-path: polygon(6% 0, 100% 8%, 94% 94%, 7% 100%, 0 47%);
}

.sticker-left {
  left: clamp(14px, 3vw, 46px);
  bottom: 14%;
  transform: rotate(-8deg);
}

.sticker-right {
  right: clamp(14px, 4vw, 72px);
  top: 22%;
  background: #79ebff;
  transform: rotate(7deg);
}

.ticker {
  display: flex;
  gap: 34px;
  overflow: hidden;
  padding: 18px clamp(18px, 5vw, 72px);
  color: #080808;
  background: var(--hot);
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  font-family: var(--font-utility);
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span {
  animation: drift 14s linear infinite;
}

.ticker-subtle {
  width: min(100% - clamp(36px, 8vw, 96px), var(--max));
  margin: clamp(28px, 5vw, 54px) auto 0;
  padding: 12px 0;
  gap: clamp(14px, 4vw, 34px);
  justify-content: center;
  color: var(--lime);
  background:
    linear-gradient(90deg, transparent, rgba(19, 201, 255, 0.38), rgba(197, 244, 0, 0.46), rgba(19, 201, 255, 0.38), transparent);
  background-size: 100% 2px;
  background-position: center bottom;
  background-repeat: no-repeat;
  border: 0;
  font-size: clamp(0.92rem, 1.6vw, 1.22rem);
  letter-spacing: 0.04em;
  white-space: normal;
}

.ticker-subtle span {
  animation: none;
}

.books-divider {
  width: min(100% - clamp(36px, 8vw, 96px), var(--max));
  height: 3px;
  margin: clamp(34px, 6vw, 64px) auto;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(19, 201, 255, 0.44);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-210px);
  }
}

.cast-section,
.catalogue-section,
.coming-section,
.home-books-section,
.bio-content-section,
.qa-section,
.houseboys-books-link,
.stephanie-section,
.book-section,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 44px);
}

.cast-section,
.interview-section,
.bio-next-section {
  scroll-margin-top: clamp(118px, 14vw, 158px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading .scribble {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  color: #111;
  background: var(--lime);
  font-family: var(--font-utility);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
  transform: rotate(-2deg);
  clip-path: polygon(2% 8%, 98% 0, 100% 86%, 5% 100%, 0 48%);
}

.section-heading .scribble.hot {
  color: #111;
  background: var(--hot);
}

.section-heading h2,
.stephanie-copy h2,
.book-copy h2,
.houseboys-books-link h2 {
  margin: 0 0 18px;
  color: var(--hot);
  font-family: var(--font-title);
  font-size: clamp(3rem, 6.4vw, 5.7rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.72), 0 0 22px rgba(255, 22, 127, 0.34);
}

.dossier-heading,
.interview-heading {
  position: relative;
}

.dossier-heading::after,
.interview-heading::after {
  content: "";
  display: block;
  width: min(360px, 100%);
  height: 3px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), transparent);
  box-shadow: 0 0 18px rgba(19, 201, 255, 0.34);
}

.dossier-heading::before {
  content: "Confidential-ish";
  position: absolute;
  right: 0;
  bottom: 4px;
  padding: 8px 12px;
  color: #071017;
  background: var(--cyan);
  font-family: var(--font-utility);
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 #000;
  clip-path: polygon(4% 0, 100% 8%, 96% 100%, 0 90%);
  transform: rotate(2deg);
}

.home-book-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
}

.home-cover-sheet {
  justify-self: start;
  width: min(100%, 760px);
}

.series-list {
  display: grid;
  gap: 16px;
}

.series-list article,
.fact-grid article,
.qa-grid article {
  padding: 20px;
  background: rgba(6, 6, 7, 0.76);
  border: 2px dashed rgba(255, 255, 255, 0.32);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
}

.series-list article {
  position: relative;
  display: grid;
  gap: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 22, 127, 0.18), rgba(19, 201, 255, 0.08)),
    rgba(6, 6, 7, 0.82);
  clip-path: polygon(1% 0, 100% 5%, 97% 100%, 0 94%);
  transform: rotate(-0.5deg);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.series-list article:nth-child(2) {
  transform: rotate(0.7deg);
}

.series-list article:nth-child(3) {
  transform: rotate(-0.2deg);
}

.series-list article::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(197, 244, 0, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(197, 244, 0, 0.28);
  opacity: 0.62;
  pointer-events: none;
}

.series-list article:hover {
  border-color: rgba(197, 244, 0, 0.66);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.62), 0 0 20px rgba(255, 22, 127, 0.16);
  transform: translate(3px, 3px) rotate(0deg);
}

.series-list span,
.fact-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-family: var(--font-utility);
  text-transform: uppercase;
}

.series-list .case-label {
  width: max-content;
  max-width: calc(100% - 50px);
  margin: 0 0 2px;
  padding: 7px 12px;
  color: #111;
  background: var(--lime);
  line-height: 1;
  clip-path: polygon(2% 12%, 96% 0, 100% 86%, 6% 100%, 0 48%);
  transform: rotate(-2deg);
}

.series-list h3,
.qa-grid h3 {
  margin: 0 0 8px;
  color: var(--hot);
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.series-list p,
.bio-story p,
.qa-grid p,
.houseboys-books-link p {
  max-width: 68ch;
  color: #f0e8df;
  line-height: 1.55;
}

.series-list .case-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
  padding: 8px 10px;
  margin-top: 4px;
  color: var(--cyan);
  font-family: var(--font-utility);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transform: rotate(-1deg);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.series-list .case-link::after {
  content: " ->";
}

.series-list .case-link:hover {
  color: var(--lime);
  border-color: currentColor;
  transform: translate(2px, 2px) rotate(-1deg);
}

.series-list .case-link:focus-visible {
  color: var(--lime);
  border-color: currentColor;
  transform: translate(2px, 2px) rotate(-1deg);
}

.bio-content-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.bio-story {
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid rgba(255, 22, 127, 0.38);
  background: rgba(8, 6, 10, 0.8);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.55);
  clip-path: polygon(1% 0, 100% 3%, 97% 97%, 0 100%);
}

.fact-grid,
.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fact-grid strong {
  display: block;
  color: var(--cyan);
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.interview-section .qa-grid {
  position: relative;
}

.interview-note {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 9px 13px;
  color: #071017;
  background: var(--cyan);
  font-family: var(--font-utility);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 #000;
  clip-path: polygon(3% 7%, 100% 0, 97% 90%, 0 100%);
  transform: rotate(1.5deg);
}

.interview-section .qa-grid article {
  position: relative;
  padding-left: clamp(68px, 8vw, 86px);
}

.interview-section .qa-grid article::before {
  content: "Q";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--lime);
  font-family: var(--font-title);
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 4px 4px 0 #000;
  transform: rotate(-6deg);
}

.interview-section .qa-grid article:nth-child(odd) {
  transform: rotate(-0.7deg);
}

.interview-section .qa-grid article:nth-child(even) {
  transform: rotate(0.7deg);
}

.interview-section .qa-grid article:nth-child(even)::before {
  background: var(--cyan);
  transform: rotate(5deg);
}

.houseboys-books-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 5vw, 56px);
  border-top: 2px solid rgba(255, 22, 127, 0.34);
  border-bottom: 2px solid rgba(197, 244, 0, 0.34);
}

.bio-next-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 5vw, 56px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 8vw, 86px) clamp(18px, 4vw, 44px);
  border-top: 2px solid rgba(255, 22, 127, 0.34);
  border-bottom: 2px solid rgba(197, 244, 0, 0.34);
}

.bio-next-section .scribble {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  color: #111;
  background: var(--hot);
  font-family: var(--font-utility);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
  transform: rotate(-2deg);
  clip-path: polygon(2% 8%, 98% 0, 100% 86%, 5% 100%, 0 48%);
}

.bio-next-section h2 {
  margin: 0 0 18px;
  color: var(--hot);
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.72), 0 0 22px rgba(255, 22, 127, 0.34);
}

.bio-next-section p:not(.scribble) {
  max-width: 62ch;
  color: #f0e8df;
  line-height: 1.55;
}

.bio-next-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
  min-width: min(280px, 100%);
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--cyan);
  font-family: var(--font-utility);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transform: rotate(-1deg);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.quiet-link::after {
  content: " ->";
  margin-left: 10px;
}

.quiet-link:hover,
.quiet-link:focus-visible {
  color: var(--lime);
  border-color: currentColor;
  transform: translate(2px, 2px) rotate(-1deg);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.book-list {
  display: grid;
  gap: 18px;
}

.book-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  scroll-margin-top: clamp(118px, 14vw, 158px);
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(90deg, rgba(255, 22, 127, 0.16), rgba(19, 201, 255, 0.08)),
    rgba(7, 7, 8, 0.78);
  border: 2px dashed rgba(255, 255, 255, 0.32);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.5);
  transform: rotate(-0.4deg);
}

.featured-book {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 16% 18%, rgba(36, 199, 232, 0.2), transparent 28%),
    linear-gradient(120deg, rgba(242, 56, 143, 0.2), rgba(7, 20, 22, 0.82)),
    rgba(7, 7, 8, 0.88);
  border-color: rgba(201, 239, 53, 0.42);
}

.book-cover-detail {
  width: min(100%, 360px);
  margin: 0;
  justify-self: center;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #060606;
  border: 2px solid rgba(255, 255, 255, 0.24);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.62), 0 0 34px rgba(242, 56, 143, 0.22);
  clip-path: polygon(1% 0, 100% 2%, 97% 100%, 0 97%);
  transform: rotate(-1.5deg);
}

.book-cover-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-detail-copy {
  min-width: 0;
}

.featured-book .book-number {
  margin-bottom: 18px;
}

.featured-book .book-actions {
  justify-items: start;
  margin-top: 22px;
}

.book-row:nth-child(even) {
  transform: rotate(0.5deg);
}

.book-number {
  width: max-content;
  max-width: 9rem;
  margin: 0;
  padding: 9px 13px;
  color: #101400;
  background: var(--lime);
  font-family: var(--font-utility);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 0.92;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 #000;
  clip-path: polygon(0 9%, 97% 0, 100% 88%, 6% 100%);
  transform: rotate(-2deg);
}

.book-row h3,
.coming-card h3 {
  margin: 0 0 10px;
  color: var(--hot);
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.book-row p:not(.book-number),
.coming-card p:not(.label-strip) {
  max-width: 640px;
  margin-bottom: 0;
  color: #f0e8df;
  font-size: 1rem;
  line-height: 1.55;
}

.book-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
  min-width: min(260px, 100%);
}

.availability-note {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: #121004;
  background: var(--lime);
  font-family: var(--font-utility);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 #000;
  clip-path: polygon(3% 7%, 100% 0, 96% 92%, 0 100%);
  transform: rotate(1.6deg);
}

.coming-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
  margin-top: 18px;
  padding: 9px 12px;
  color: var(--cyan);
  font-family: var(--font-utility);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  box-shadow: 5px 5px 0 #000;
  transform: rotate(-1deg);
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.coming-link::after {
  content: " ->";
}

.coming-link:hover {
  color: var(--lime);
  transform: translate(2px, 2px) rotate(-1deg);
  box-shadow: 2px 2px 0 #000;
}

.coming-link:focus-visible {
  color: var(--lime);
  outline-offset: 7px;
  transform: translate(2px, 2px) rotate(-1deg);
  box-shadow: 2px 2px 0 #000, 0 0 0 5px rgba(19, 201, 255, 0.28);
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.coming-card {
  min-height: 310px;
  padding: clamp(22px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 62%),
    radial-gradient(circle at 18% 18%, rgba(255, 22, 127, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(19, 201, 255, 0.16), rgba(197, 244, 0, 0.08));
  border: 2px solid rgba(255, 22, 127, 0.46);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.62);
  clip-path: polygon(2% 0, 100% 4%, 97% 100%, 0 94%);
}

.cast-card {
  position: relative;
  min-height: 310px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #f8f1e9;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92) 68%),
    radial-gradient(circle at 24% 22%, rgba(255, 22, 127, 0.46), transparent 32%),
    #0d0810;
  border: 2px dashed rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.45);
  transform: rotate(-1deg);
}

.cast-card::before {
  content: attr(data-file);
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  color: #101400;
  background: var(--lime);
  font-family: var(--font-utility);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
  clip-path: polygon(2% 10%, 98% 0, 100% 88%, 6% 100%, 0 46%);
  transform: rotate(-2deg);
}

.cast-card::after {
  content: attr(data-risk);
  position: absolute;
  top: 58px;
  left: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 7px 10px;
  color: #111;
  background: var(--paper);
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.82);
  clip-path: polygon(0 10%, 98% 0, 100% 84%, 5% 100%);
  transform: rotate(1deg);
}

.cast-portrait {
  margin: 72px 0 16px;
  overflow: hidden;
  background: #060606;
  border: 2px solid rgba(255, 255, 255, 0.42);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.56);
  clip-path: polygon(3% 0, 100% 4%, 96% 100%, 0 95%);
}

.cast-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 35%;
}

.cast-card:nth-child(even) {
  transform: rotate(1deg);
}

.cast-card.ethan {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.93) 68%),
    radial-gradient(circle at 72% 14%, rgba(19, 201, 255, 0.4), transparent 30%),
    #071017;
}

.cast-card.camillo {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92) 68%),
    radial-gradient(circle at 25% 16%, rgba(255, 107, 34, 0.52), transparent 33%),
    #170806;
}

.cast-card.jasper {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92) 68%),
    radial-gradient(circle at 72% 18%, rgba(197, 244, 0, 0.35), transparent 30%),
    #0d1007;
}

.name-tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 12px 16px;
  color: #111;
  background: var(--paper);
  clip-path: polygon(2% 10%, 96% 0, 100% 92%, 7% 100%, 0 44%);
}

.name-tag h3 {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  line-height: 0.8;
}

.name-tag span {
  display: block;
  margin-top: 6px;
  color: var(--hot);
  font-family: var(--font-utility);
  font-size: 1rem;
  text-transform: uppercase;
}

.cast-card p,
.stephanie-copy p,
.book-copy p,
.site-footer p {
  max-width: 68ch;
  color: #f0e8df;
  font-size: 1rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.stephanie-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.7fr;
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
  border-top: 2px solid rgba(255, 22, 127, 0.34);
  border-bottom: 2px solid rgba(255, 22, 127, 0.34);
}

.torn-photo {
  min-height: 360px;
  overflow: hidden;
  background: #111;
  clip-path: polygon(4% 0, 100% 5%, 94% 100%, 0 94%);
  box-shadow: 16px 18px 0 #000;
}

.torn-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 72%;
  filter: saturate(1.12) contrast(1.04);
}

.neon-note {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: var(--lime);
  border: 2px solid var(--lime);
  box-shadow: 0 0 16px rgba(197, 244, 0, 0.5), inset 0 0 18px rgba(197, 244, 0, 0.16);
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 2.5vw, 2.4rem);
  line-height: 1;
  transform: rotate(2deg);
}

.book-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}

.book-art {
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 18px 18px 0 #000;
  clip-path: polygon(3% 0, 100% 2%, 96% 98%, 0 93%);
}

.book-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 58%;
}

.label-strip {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  color: #111;
  background: var(--orange);
  font-family: var(--font-utility);
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 28px;
  border-top: 2px solid rgba(255, 255, 255, 0.16);
  padding-bottom: max(clamp(70px, 10vw, 130px), env(safe-area-inset-bottom));
}

.contact-form {
  min-width: 0;
}

.contact-label {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-family: var(--font-utility);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form iframe {
  display: block;
  width: 100%;
  min-height: clamp(620px, 72vh, 760px);
  background: rgba(5, 4, 7, 0.72);
  border: 2px solid rgba(197, 244, 0, 0.55);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.52);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-hero,
  .bio-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .books-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .poster-frame {
    width: min(100%, 500px);
  }

  .sticker {
    display: none;
  }

  .cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stephanie-section,
  .home-book-showcase,
  .bio-content-section,
  .bio-next-section,
  .houseboys-books-link,
  .book-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .book-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .featured-book {
    grid-template-columns: 1fr;
  }

  .book-cover-detail {
    width: min(340px, 100%);
    justify-self: start;
  }

  .book-actions {
    width: 100%;
    justify-items: start;
  }

  .book-actions .button {
    width: 100%;
  }

  .bio-next-actions {
    width: 100%;
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: relative;
    padding:
      max(14px, env(safe-area-inset-top))
      16px
      14px;
  }

  .nav-links {
    gap: 8px;
    justify-content: space-between;
    font-size: 0.82rem;
  }

  .nav-links a {
    min-width: 44px;
    padding-inline: 2px;
  }

  .neon-sign {
    width: 92px;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 32px;
    max-width: 100vw;
  }

  .books-hero {
    padding-top: 32px;
    max-width: 100vw;
  }

  .books-hero-copy {
    width: calc(100vw - 52px);
    max-width: calc(100vw - 52px);
    overflow: hidden;
  }

  .books-hero h1 {
    font-size: clamp(3rem, 14vw, 3.45rem);
    line-height: 0.88;
  }

  .books-hero .scribble {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 3.35rem);
  }

  .hero .scribble {
    max-width: 100%;
    margin-bottom: 0.34em;
    font-size: clamp(2.55rem, 11vw, 3.3rem);
    line-height: 0.9;
    text-shadow: 0 0 14px rgba(197, 244, 0, 0.28);
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.05rem);
    line-height: 0.9;
  }

  .home-hero h1,
  .bio-hero h1 {
    font-size: clamp(3.4rem, 15vw, 4.1rem);
    line-height: 0.84;
  }

  .home-hero .scribble,
  .bio-hero .scribble {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 3.2rem);
  }

  .home-copy,
  .bio-copy {
    width: calc(100vw - 52px);
    max-width: calc(100vw - 52px);
    overflow: hidden;
  }

  .home-hero .ripped-line,
  .bio-hero .ripped-line {
    max-width: calc(100vw - 52px);
    font-size: clamp(1.2rem, 6vw, 1.65rem);
    line-height: 1.08;
  }

  .books-hero .ripped-line {
    max-width: calc(100vw - 52px);
    font-size: clamp(1.25rem, 7vw, 1.85rem);
    line-height: 1.05;
  }

  .cover-sheet {
    width: min(300px, calc(100vw - 52px));
    max-width: none;
    justify-self: start;
    clip-path: none;
    transform: none;
  }

  .cover-sheet img {
    object-fit: contain;
    background: #060606;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.65rem, 17vw, 4.35rem);
    line-height: 0.82;
  }

  .intro {
    width: calc(100vw - 52px);
    max-width: calc(100vw - 52px);
  }

  .poster-frame {
    width: calc(100vw - 52px);
    max-width: none;
    justify-self: start;
  }

  .author-frame {
    width: calc(100vw - 52px);
    max-width: none;
    justify-self: start;
  }

  .scribble {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cast-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cast-section {
    width: 100vw;
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .section-heading {
    max-width: 100%;
    overflow: hidden;
  }

  .section-heading h2,
  .stephanie-copy h2,
  .book-copy h2,
  .bio-next-section h2,
  .houseboys-books-link h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 0.95;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .bio-next-actions .button {
    width: 100%;
  }

  .coming-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid,
  .qa-grid {
    grid-template-columns: 1fr;
  }

  .cast-card {
    min-height: 250px;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .cast-portrait {
    margin-top: 72px;
  }

  .cast-card p {
    max-width: calc(100vw - 76px);
    overflow-wrap: anywhere;
  }

  .cast-card:nth-child(even) {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
