/* Built from src/css/ by build.js — edit the modules, not this file.
   Modules, in order: 01-tokens-and-base.css, 02-animations.css, 03-header.css, 04-buttons.css, 05-marquee.css, 06-hero.css, 07-home.css, 08-about.css, 09-cast.css, 10-footer.css, 11-responsive.css, 12-print.css, 13-doc.css, 14-consent.css, 15-error.css */

/* ==========================================================================
   The Apology Tour — September L. Davis
   Production stylesheet. Design tokens mirror the source design file.
   ========================================================================== */

:root {
  --blue: #0e66c0;
  --gold: #eadb75;
  --peach: #eaab75;
  --ink: #000;
  --paper: #fff;

  --display: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --body: Inter, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --script: 'Great Vibes', 'Snell Roundhand', cursive;

  --header-h: 68px;
  --gutter: clamp(18px, 5vw, 72px);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  background: var(--blue);
  color: var(--ink);
  font-family: var(--body);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; }

a { color: var(--peach); text-decoration: none; }
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: var(--blue); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--blue);
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  padding: 12px 18px;
  border: 3px solid var(--ink);
}
.skip-link:focus { left: 8px; top: 8px; }

.site { background: var(--paper); min-height: 100vh; }

.is-hidden { display: none !important; }

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

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes sldMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sldRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes sldZoom { from { transform: scale(1.02); } to { transform: scale(1.16); } }
@keyframes sldSlam {
  0% { opacity: 0; transform: scale(2.4) rotate(-3deg); filter: blur(14px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes sldSign { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes sldKiss {
  0% { opacity: 0; transform: translate(60px, -70px) scale(2.6) rotate(-38deg); }
  45% { opacity: 1; transform: translate(6px, -6px) scale(1.25) rotate(-16deg); }
  62% { transform: translate(0, 0) scale(0.86, 1.14) rotate(-11deg); }
  76% { transform: scale(1.12, 0.9) rotate(-13deg); }
  100% { opacity: 1; transform: scale(1) rotate(-12deg); }
}
@keyframes sldPulse {
  0%, 100% { transform: none; box-shadow: 8px 8px 0 var(--ink); }
  50% { transform: translate(-2px, -2px); box-shadow: 12px 12px 0 var(--ink); }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--blue);
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(14px, 3vw, 32px);
  min-height: var(--header-h);
}

.header__left {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  flex-wrap: wrap;
  padding: 10px 0;
}

.header__right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  padding: 10px 0;
}

/* Social channels, sitting just left of the Get Tickets button. */
.social {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  line-height: 0;
}
.social__link:hover { color: var(--gold); }

.social__link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.brand {
  font-family: var(--script);
  font-size: 30px;
  color: var(--peach);
  line-height: 1;
  white-space: nowrap;
}
.brand:hover { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  flex-wrap: wrap;
}

.nav__link {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  padding-bottom: 3px;
  border-bottom: 3px solid transparent;
}
.nav__link:hover { border-bottom-color: var(--gold); color: var(--gold); }
.nav__link[aria-current='page'] { border-bottom-color: var(--peach); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--header {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--blue);
  background: var(--gold);
  border: 3px solid var(--ink);
  padding: 11px 20px;
}
.btn--header:hover { background: var(--peach); color: var(--ink); }

.btn--hero {
  letter-spacing: 0.14em;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--blue);
  background: var(--gold);
  border: 4px solid var(--ink);
  padding: 17px 34px;
  box-shadow: 8px 8px 0 var(--ink);
  animation: sldPulse 2.6s ease-in-out infinite;
}
.btn--hero:hover { background: var(--paper); color: var(--blue); }

.btn--statement {
  letter-spacing: 0.14em;
  font-size: 16px;
  color: var(--paper);
  background: var(--blue);
  border: 4px solid var(--ink);
  padding: 16px 30px;
  box-shadow: 8px 8px 0 var(--ink);
}
.btn--statement:hover { background: var(--ink); color: var(--gold); }

.btn--footer {
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--blue);
  background: var(--gold);
  padding: 10px 18px;
  margin-top: 6px;
}
.btn--footer:hover { background: var(--peach); color: var(--blue); }

.link-underline {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 3px solid var(--blue);
  padding-bottom: 4px;
}
.link-underline:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  background: var(--ink);
  color: var(--gold);
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: sldMarquee 26s linear infinite;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 0;
}

.marquee__group { display: flex; gap: 44px; padding-right: 44px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--blue);
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 32%;
  animation: sldZoom 26s ease-in-out infinite alternate;
  transform-origin: 62% 40%;
}

.hero__scrim,
.hero__scrim--side { position: absolute; inset: 0; pointer-events: none; }

.hero__scrim {
  background: linear-gradient(to bottom,
    rgba(14, 102, 192, 0.4) 0%,
    rgba(14, 102, 192, 0) 26%,
    rgba(0, 0, 0, 0.3) 52%,
    rgba(0, 0, 0, 0.72) 100%);
}

.hero__scrim--side {
  background: linear-gradient(105deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 34%,
    rgba(0, 0, 0, 0.12) 58%,
    rgba(0, 0, 0, 0) 74%);
}

.hero__shout {
  position: absolute;
  top: clamp(10px, 3vh, 44px);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(64px, 15.5vw, 260px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  animation: sldSlam 1.1s cubic-bezier(.2, 1.5, .4, 1) both;
  z-index: 2;
}

.hero__body {
  position: relative;
  z-index: 3;
  padding: clamp(24px, 5vw, 64px) var(--gutter) clamp(28px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hero__stack { animation: sldRise 0.9s 0.45s ease both; }
.hero__aside { animation: sldRise 0.9s 0.7s ease both; }

.hero__script {
  font-family: var(--script);
  font-size: clamp(44px, 7vw, 108px);
  color: var(--peach);
  line-height: 0.9;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(24px, 3.6vw, 58px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 2px 0 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero__count {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(15px, 1.7vw, 22px);
  color: var(--gold);
  margin: 0 0 4px;
}

.hero__dates {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(15px, 1.7vw, 22px);
  color: var(--paper);
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__statement-link {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(13px, 1.4vw, 17px);
  color: var(--paper);
  border-bottom: 3px solid var(--peach);
  padding-bottom: 4px;
}
.hero__statement-link:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Home — pull quote, facts, schedule, FAQ
   -------------------------------------------------------------------------- */

.pullquote {
  background: var(--blue);
  padding: clamp(40px, 6vw, 80px) var(--gutter) 0;
  text-align: center;
}

.pullquote__line {
  font-family: var(--script);
  font-size: clamp(34px, 5vw, 76px);
  color: var(--gold);
  margin: 0 auto 14px;
  line-height: 1.15;
  max-width: 22ch;
}

.pullquote__sub {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(14px, 1.5vw, 19px);
  color: var(--paper);
  margin: 0;
}

.facts { background: var(--blue); padding: clamp(40px, 6vw, 90px) var(--gutter); }

.facts__grid {
  background: var(--paper);
  border: 5px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.fact { padding: clamp(24px, 3vw, 40px); border-right: 3px solid var(--ink); }
.fact:last-child { border-right: 0; }

.fact__label {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--blue);
  margin-bottom: 12px;
}

.fact__value {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.fact__note { margin: 0; font-size: 16px; line-height: 1.6; }

.inline-link { color: var(--blue); border-bottom: 2px solid var(--peach); }
.inline-link:hover { color: var(--blue); border-bottom-color: var(--blue); }

.schedule {
  background: var(--paper);
  padding: clamp(46px, 7vw, 100px) var(--gutter);
  border-top: 5px solid var(--ink);
  scroll-margin-top: var(--header-h);
}

.schedule__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 5.5vw, 74px);
  line-height: 0.9;
  margin: 0 0 8px;
  color: var(--blue);
}

.schedule__note {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  margin: 0 0 34px;
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 3px;
  background: var(--ink);
  border: 4px solid var(--ink);
}

.show {
  background: var(--paper);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.show--final { background: var(--gold); }

.show__day {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.show__date {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.05;
}

.show__time { font-size: 15px; color: var(--ink); font-weight: 600; }

.show__tag {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--blue);
}

.show__badge {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--blue);
  background: var(--peach);
  border: 2px solid var(--ink);
  padding: 4px 9px;
  align-self: flex-start;
  margin-top: 2px;
}

.show__buy {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--ink);
  border-bottom: 2px solid var(--peach);
  align-self: flex-start;
  margin-top: 6px;
}
.show__buy:hover { color: var(--blue); border-bottom-color: var(--blue); }
.show--final .show__buy { border-bottom-color: var(--ink); }

.faq {
  background: var(--peach);
  border-top: 5px solid var(--ink);
  padding: clamp(46px, 7vw, 100px) var(--gutter);
}

.faq__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 5.5vw, 74px);
  line-height: 0.9;
  margin: 0 0 32px;
  color: var(--blue);
}

.faq__lede {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  margin: -20px 0 30px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--ink);
  border: 4px solid var(--ink);
  max-width: 980px;
}

.faq__item { background: var(--paper); padding: 20px 24px; }

.faq__q {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(16px, 1.7vw, 20px);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--blue); }

.faq__a { margin: 14px 0 0; font-size: 16px; line-height: 1.7; }

/* --------------------------------------------------------------------------
   About — the statement
   -------------------------------------------------------------------------- */

.statement {
  background: var(--peach);
  padding: clamp(28px, 5vw, 80px) clamp(14px, 4vw, 72px) clamp(48px, 7vw, 110px);
}

.statement__frame {
  max-width: 1060px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  padding: clamp(8px, 1.2vw, 16px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.statement__frame-inner { border: 1px solid var(--ink); padding: clamp(8px, 1.2vw, 16px); }

.statement__sheet {
  background: var(--paper);
  padding: clamp(30px, 6vw, 92px) clamp(22px, 6vw, 96px) clamp(40px, 6vw, 88px);
}

.statement__letterhead {
  text-align: center;
  padding-bottom: clamp(24px, 3vw, 42px);
  margin-bottom: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.statement__eyebrow {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 18px;
}

.statement__name {
  font-family: var(--script);
  font-size: clamp(46px, 7vw, 100px);
  line-height: 1;
  color: var(--blue);
}

.statement__creds {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: clamp(11px, 1.1vw, 15px);
  color: var(--ink);
  margin-top: 12px;
}

.statement__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}
.statement__rule span:first-child,
.statement__rule span:last-child {
  width: clamp(30px, 8vw, 90px);
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}
.statement__rule em {
  font-family: var(--display);
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--ink);
}

.statement__prose {
  max-width: 40em;
  margin: 0 auto;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.8;
}
.statement__prose p { margin: 0 0 1.5em; }
.statement__prose p.lede { font-size: 1.35em; line-height: 1.5; font-weight: 500; }
.statement__prose p.shout {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1.15;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.statement__prose p.signoff { margin-bottom: 1.2em; }

.statement__schedule {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 20px 24px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82em;
  line-height: 1.9;
}
.statement__schedule li + li { border-top: 1px solid rgba(0, 0, 0, 0.12); }

.statement__producer {
  margin: 2.4em 0 0;
  padding-top: 1.2em;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 0.78em;
  font-style: italic;
  line-height: 1.6;
  color: #555;
}

.signblock {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 0.6em;
}

.signblock__sig { width: min(100%, 460px); height: auto; display: block; }

.signblock__initials {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--ink);
}

.kiss {
  position: absolute;
  right: clamp(0px, 6vw, 60px);
  bottom: -18px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  opacity: 0;
  transform-origin: 50% 60%;
  pointer-events: none;
}

.statement__actions {
  max-width: 1060px;
  margin: clamp(30px, 4vw, 54px) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Cast & Creative
   -------------------------------------------------------------------------- */

.cast-hero {
  background: var(--blue);
  padding: clamp(40px, 6vw, 90px) var(--gutter) clamp(30px, 4vw, 60px);
}

.cast-hero__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(44px, 9vw, 128px);
  line-height: 0.85;
  margin: 0 0 14px;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
}

.cast-hero__sub {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--gold);
  margin: 0;
  max-width: 32ch;
}

.section {
  border-top: 5px solid var(--ink);
  padding: clamp(40px, 6vw, 88px) var(--gutter);
}
.section--paper { background: var(--paper); }
.section--gold { background: var(--gold); padding: clamp(36px, 5vw, 72px) var(--gutter); }
.section--blue { background: var(--blue); }

.section__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--blue);
  margin: 0 0 28px;
}
.section__title--center { text-align: center; margin: 0 0 8px; }
.section__title--sm { font-size: clamp(24px, 3vw, 40px); margin: 0 0 22px; }
.section__title--onblue { color: var(--paper); }

.section__lede {
  text-align: center;
  margin: 0 auto clamp(28px, 4vw, 48px);
  max-width: 46ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
}

.star {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.star__photo {
  width: min(100%, 340px);
  /* Beats the width/height attribute presentational hint so aspect-ratio wins. */
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 50%;
  border: 5px solid var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.star__name {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1;
  color: var(--blue);
}

.star__role { font-size: clamp(17px, 1.5vw, 21px); margin-top: 8px; }

.star .kiss {
  right: clamp(-56px, -5vw, -28px);
  top: -14px;
  bottom: auto;
  font-size: clamp(34px, 4vw, 54px);
}

.subhead {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(24px, 3.2vw, 42px);
  color: var(--blue);
  margin: 0 0 clamp(24px, 3vw, 40px);
  text-align: center;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(28px, 3.5vw, 52px);
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.cast-card__placeholder {
  width: min(100%, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--peach);
  border: 3px dashed var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--blue);
}

.cast-card__name {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.05;
  color: var(--blue);
}

.cast-card__role { font-size: 16px; margin-top: 6px; color: var(--ink); }

.featuring {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 32px);
}

.credits { max-width: 820px; display: flex; flex-direction: column; gap: 14px; }

.credit {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(16px, 1.5vw, 20px);
}

.credit__role {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.credit__dots {
  flex: 1;
  border-bottom: 2px dotted var(--blue);
  transform: translateY(-4px);
}

.credit__name { font-weight: 500; white-space: nowrap; }

.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.bio {
  background: var(--paper);
  border: 4px solid var(--ink);
  padding: 26px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
}

.bio__character {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 6px;
}

.bio__name {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.bio__text { margin: 0; font-size: 16px; line-height: 1.7; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(46px, 6vw, 88px) var(--gutter) 40px;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
}

.footer__brand { flex: 1 1 280px; max-width: 340px; }

.footer__mark {
  width: min(100%, 300px);
  aspect-ratio: 3075 / 925;
  margin-bottom: 10px;
  background-color: var(--peach);
  -webkit-mask-image: url('/uploads/signature.png');
  mask-image: url('/uploads/signature.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
}

.footer__tag {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  color: var(--gold);
}

.footer__label {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--paper); }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer__link {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--paper);
}
.footer__link:hover { color: var(--gold); }

.footer__legal {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #888;
}
.footer__legal a { color: #888; margin-left: 8px; }
.footer__legal a:hover { color: var(--gold); }

.footer__prefs {
  background: none;
  border: 0;
  padding: 0;
  margin-left: 8px;
  font: inherit;
  letter-spacing: inherit;
  color: #888;
  text-decoration: underline;
  cursor: pointer;
}
.footer__prefs:hover { color: var(--gold); }

.footer__credit { display: block; margin-top: 8px; }
.footer__credit a { margin-left: 0; }

/* --------------------------------------------------------------------------
   Responsive tweaks
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  .brand { font-size: 24px; }
  .nav { gap: 14px; }
  .nav__link { font-size: 12px; letter-spacing: 0.1em; }
  .btn--header { font-size: 12px; padding: 10px 14px; letter-spacing: 0.12em; }
  .social { gap: 12px; }
  .social__link svg { width: 20px; height: 20px; }
  .fact { border-right: 0; border-bottom: 3px solid var(--ink); }
  .fact:last-child { border-bottom: 0; }
  .featuring { gap: 10px 24px; }
  .credit__name { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .hero__img,
  .hero__shout,
  .hero__stack,
  .hero__aside,
  .btn--hero { animation: none !important; }
  .signblock__sig { clip-path: none !important; }
  .kiss { opacity: 1 !important; transform: rotate(-12deg); }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Print — the statement should print cleanly
   -------------------------------------------------------------------------- */

@media print {
  .header, .marquee, .footer, .statement__actions, .hero { display: none !important; }
  .statement { background: #fff; padding: 0; }
  .statement__frame { border: 0; box-shadow: none; }
  .statement__frame-inner { border: 0; }
}

/* --------------------------------------------------------------------------
   Long-form documents (privacy policy)
   -------------------------------------------------------------------------- */

  .doc { background: var(--paper); padding: clamp(32px, 6vw, 90px) var(--gutter); }
  .doc__inner { max-width: 68ch; margin: 0 auto; }
  .doc h1 {
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 0.92;
    color: var(--blue);
    margin: 0 0 10px;
  }
  .doc__meta {
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    margin: 0;
  }
  .doc__intro { font-size: 18px; line-height: 1.7; margin: 24px 0 0; }
  .doc h2 {
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--blue);
    margin: 40px 0 12px;
    padding-top: 20px;
    border-top: 3px solid var(--ink);
  }
  .doc h3 {
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 15px;
    margin: 26px 0 6px;
  }
  .doc p, .doc li { font-size: 16.5px; line-height: 1.75; }
  .doc ul { padding-left: 1.2em; }
  .doc li { margin-bottom: 8px; }
  .doc table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 15px;
  }
  .doc th, .doc td {
    border: 2px solid var(--ink);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
  }
  .doc th {
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    background: var(--gold);
    color: var(--blue);
  }
  .doc__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .doc__toc {
    background: var(--peach);
    border: 3px solid var(--ink);
    padding: 20px 24px;
    margin: 32px 0 8px;
  }
  .doc__toc ol { margin: 0; padding-left: 1.3em; }
  .doc__toc li { margin-bottom: 4px; font-size: 15px; }
  .doc__toc a { color: var(--blue); border-bottom: 1px solid rgba(14, 102, 192, 0.4); }
  .doc__callout {
    background: var(--gold);
    border: 3px solid var(--ink);
    padding: 18px 22px;
    margin: 24px 0;
  }
  .doc__callout p { margin: 0; font-weight: 500; }
  .doc__prefs {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 700;
    color: var(--blue);
    text-decoration: underline;
    cursor: pointer;
  }
  .doc h2[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* --------------------------------------------------------------------------
   Consent banner — shown only where consent is required (see js/analytics.js)
   -------------------------------------------------------------------------- */

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 4px solid var(--gold);
  padding: 18px clamp(16px, 4vw, 40px);
  animation: sldRise 0.4s ease both;
}

.consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.consent__copy { flex: 1 1 420px; }

.consent__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 6px;
}

.consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
  max-width: 70ch;
}
.consent__text a { color: var(--peach); border-bottom: 1px solid currentColor; }
.consent__text a:hover { color: var(--gold); }

.consent__actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.consent__btn {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  padding: 13px 22px;
  border: 3px solid var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

.consent__btn--yes { background: var(--gold); color: var(--blue); }
.consent__btn--yes:hover { background: var(--peach); color: var(--ink); }

.consent__btn--no {
  background: transparent;
  color: var(--paper);
  border-color: #555;
}
.consent__btn--no:hover { border-color: var(--paper); }

@media (max-width: 520px) {
  .consent__actions { width: 100%; }
  .consent__btn { flex: 1; text-align: center; padding: 13px 12px; }
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

  .oops {
    min-height: 100vh;
    background: var(--blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(28px, 8vw, 96px);
    gap: 18px;
  }
  .oops__code {
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--paper);
    font-size: clamp(72px, 18vw, 240px);
    line-height: 0.82;
    letter-spacing: -0.035em;
    margin: 0;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  }
  .oops__script {
    font-family: var(--script);
    font-size: clamp(34px, 6vw, 76px);
    color: var(--peach);
    line-height: 1;
  }
  .oops__text {
    font-family: var(--display);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--paper);
    font-size: clamp(15px, 1.8vw, 21px);
    max-width: 34ch;
    margin: 0;
  }