:root {
  --ink: #07070a;
  --ink-soft: #111116;
  --paper: #f4f1e8;
  --paper-dim: #d9d4c6;
  --white: #fffdf7;
  --yellow: #ffd400;
  --amber: #ff9f1a;
  --violet: #8457ff;
  --magenta: #ec3ea9;
  --cyan: #38d9ff;
  --line: rgba(255, 255, 255, 0.18);
  --display: Impact, "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Courier New", Courier, monospace;
  --serif: Impact, "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --max: 1440px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--yellow); }

.entry-page { min-height: 100vh; background: #050507; }
.entry { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.entry__media { position: absolute; inset: 0; z-index: -3; }
.entry__media img { height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.08); transform: scale(1.03); animation: entry-drift 12s var(--ease) both; }
.entry__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 42%, rgba(7,7,10,.35), rgba(7,7,10,.96) 75%), linear-gradient(90deg, rgba(7,7,10,.74), rgba(7,7,10,.3), rgba(7,7,10,.74)); }
.entry__lights { position: absolute; inset: 0; z-index: -2; display: flex; justify-content: space-around; pointer-events: none; opacity: .6; }
.entry__lights span { position: relative; width: 1px; height: 44%; background: linear-gradient(transparent, rgba(255,212,0,.65)); transform-origin: top; animation: entry-light 3.4s var(--ease) infinite alternate; }
.entry__lights span::after { content: ""; position: absolute; left: 50%; bottom: -8px; width: 14px; aspect-ratio: 1; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 24px 8px rgba(255,212,0,.3); transform: translateX(-50%); }
.entry__lights span:nth-child(2) { height: 58%; animation-delay: -.9s; }
.entry__lights span:nth-child(3) { height: 36%; animation-delay: -1.7s; }
.entry__content { width: min(100% - 2.5rem, 920px); display: flex; flex-direction: column; align-items: center; padding: 4rem 1.5rem; text-align: center; }
.entry__logo { width: clamp(78px, 9vw, 118px); height: auto; margin-bottom: 1.8rem; filter: drop-shadow(0 10px 30px rgba(0,0,0,.45)); }
.entry__title { margin: 0 0 2.5rem; font-family: var(--display); font-size: clamp(5rem, 15vw, 13rem); font-weight: 950; line-height: .76; letter-spacing: -.055em; text-transform: uppercase; }
.entry__title span { color: var(--yellow); }
.entry__button { min-width: 210px; }
.entry__note { margin: 1.3rem 0 0; color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .08em; }
.entry__progress { position: absolute; inset: auto 0 0; height: 4px; background: rgba(255,255,255,.12); }
.entry__progress span { display: block; width: 100%; height: 100%; background: var(--yellow); transform-origin: left; animation: entry-progress 2.2s var(--ease) both; }
@keyframes entry-drift { from { transform: scale(1.1); } to { transform: scale(1.03); } }
@keyframes entry-light { from { transform: scaleY(.82); opacity: .35; } to { transform: scaleY(1.08); opacity: .9; } }
@keyframes entry-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Scene-change transition: inactive on direct loads and fixed to the viewport. */
.page-transition { position: fixed; inset: 0; z-index: 999; visibility: hidden; pointer-events: none; overflow: hidden; }
.page-transition__panel { position: absolute; top: 0; bottom: 0; width: 54%; background-color: var(--ink); background-image: linear-gradient(120deg, rgba(255,212,0,.07), transparent 38%), url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E"); transition: transform 1.2s cubic-bezier(.76, 0, .24, 1); will-change: transform; }
.page-transition__panel--left { left: 0; transform: translateX(-108%); clip-path: polygon(0 0,96% 0,100% 5%,97% 11%,100% 18%,96% 25%,99% 32%,96% 40%,100% 48%,97% 56%,100% 64%,96% 72%,99% 80%,96% 88%,100% 95%,96% 100%,0 100%); }
.page-transition__panel--right { right: 0; left: auto; transform: translateX(108%); background-color: var(--yellow); background-image: linear-gradient(120deg, rgba(7,7,10,.12), transparent 44%), url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E"); clip-path: polygon(4% 0,100% 0,100% 100%,4% 100%,0 95%,3% 88%,0 80%,4% 72%,1% 64%,4% 56%,0 48%,4% 40%,1% 32%,4% 25%,0 18%,3% 11%,0 5%); }
.page-transition__mark { position: absolute; z-index: 2; left: 50%; top: 50%; width: clamp(190px, 22vw, 255px); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; border: 1px solid rgba(7,7,10,.35); border-radius: 50%; color: var(--ink); background: var(--yellow); box-shadow: 0 20px 70px rgba(0,0,0,.32); opacity: 0; transform: translate(-50%,-50%) scale(.84) rotate(-2deg); transition: opacity .42s ease, transform .8s var(--ease); }
.page-transition__mark::before { content: none; }
.page-transition__mark img { width: clamp(62px, 7vw, 88px); aspect-ratio: 1; object-fit: contain; border-radius: 50%; }
.page-transition__mark span { margin-top: .72rem; font-family: var(--display); font-size: clamp(1.45rem, 2.5vw, 2.5rem); line-height: .82; letter-spacing: -.03em; text-align: center; text-transform: uppercase; }
.page-transition__mark small { margin-top: .65rem; font-size: .5rem; font-weight: 900; letter-spacing: .17em; text-align: center; text-transform: uppercase; }
.transition-closing,
.transition-arriving,
.transition-opening { overflow: hidden; }
.transition-closing .page-transition,
.transition-arriving .page-transition,
.transition-opening .page-transition { visibility: visible; pointer-events: auto; }
.transition-closing .page-transition__panel,
.transition-arriving .page-transition__panel { transform: translateX(0); }
.transition-closing .page-transition__mark,
.transition-arriving .page-transition__mark { opacity: 1; transform: translate(-50%,-50%) scale(1) rotate(0); }
.transition-closing .page-transition__mark { transition-delay: .36s; }
.transition-opening .page-transition__panel--left { transform: translateX(-108%); }
.transition-opening .page-transition__panel--right { transform: translateX(108%); }
.transition-opening .page-transition__mark { opacity: 0; transform: translate(-50%,-50%) scale(.88) rotate(2deg); transition-delay: 0s; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 1000;
  padding: .8rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
  color: var(--yellow);
  font-size: .74rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.8rem; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--ink); }
.title-xl, .title-lg, .title-md {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  line-height: .88;
  letter-spacing: -.065em;
  word-spacing: .1em;
  text-transform: uppercase;
}
.title-xl { font-size: clamp(4rem, 12.2vw, 11rem); }
.title-lg { font-size: clamp(3rem, 7.6vw, 7.5rem); }
.title-md { font-size: clamp(2.5rem, 5vw, 5rem); }
.serif-accent { font-family: var(--serif); font-style: normal; font-weight: 900; text-transform: uppercase; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: .11em; text-underline-offset: .08em; }
.lede { max-width: 42rem; color: rgba(255,255,255,.74); font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.lede--dark { color: rgba(7,7,10,.7); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 82px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(7,7,10,.92), rgba(7,7,10,.58));
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; position: relative; z-index: 2; }
.brand-logo { width: 58px; height: 58px; flex: 0 0 auto; object-fit: contain; border-radius: 50%; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong { font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; }
.brand-type span { margin-top: .35rem; color: rgba(255,255,255,.5); font-size: .52rem; letter-spacing: .14em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
.nav-menu > a:not(.button) { position: relative; color: rgba(255,255,255,.68); font-size: .76rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.nav-menu > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.55rem; height: 2px; background: var(--yellow); transition: right .25s var(--ease); }
.nav-menu > a:hover, .nav-menu > a[aria-current="page"] { color: var(--white); }
.nav-menu > a:hover::after, .nav-menu > a[aria-current="page"]::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .8rem 1.2rem;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), color .25s, background .25s;
}
.button::after { content: "↗"; font-size: 1rem; }
.button:hover { transform: translateY(-3px); color: var(--yellow); background: transparent; }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.45); background: transparent; }
.button--ghost:hover { border-color: var(--yellow); }
.button--dark { color: var(--white); border-color: var(--ink); background: var(--ink); }
.button--dark:hover { color: var(--ink); background: transparent; }
.button--small { min-height: 40px; padding: .65rem 1rem; }
.placeholder-badge { display: inline-flex; align-items: center; padding: .28rem .42rem; border: 1px solid currentColor; border-radius: 999px; font-family: var(--body); font-size: .48rem; font-weight: 900; line-height: 1; letter-spacing: .08em; white-space: nowrap; text-transform: uppercase; opacity: .78; }
.text-link .placeholder-badge { margin-left: .25rem; color: var(--yellow); }
.team-card .placeholder-badge { color: var(--ink); font-size: .43rem; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media, .page-hero-media { position: absolute; inset: 0; }
.hero-media img, .page-hero-media img { height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,10,.95) 0%, rgba(7,7,10,.7) 44%, rgba(7,7,10,.12) 76%), linear-gradient(0deg, rgba(7,7,10,.92), transparent 60%);
}
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(380px circle at var(--spot-x, 75%) var(--spot-y, 40%), rgba(255,212,0,.12), transparent 68%); }
.hero-content { position: relative; z-index: 1; width: 100%; padding-top: 9rem; padding-bottom: clamp(3rem, 8vh, 6rem); }
.hero-title { max-width: 1050px; }
.hero-title .line { display: block; }
.hero-title .line:last-child { color: var(--yellow); padding-left: clamp(0rem, 10vw, 8rem); }
.hero-bottom { margin-top: clamp(2rem, 6vh, 5rem); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-note { max-width: 15rem; color: rgba(255,255,255,.55); font-size: .74rem; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.hero-note strong { display: block; margin-bottom: .25rem; color: var(--white); font-size: 1rem; }
.scroll-cue { position: absolute; right: var(--gutter); bottom: 1rem; z-index: 2; writing-mode: vertical-rl; color: rgba(255,255,255,.48); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; }

.ticker { overflow: hidden; color: var(--ink); background: var(--yellow); border-block: 1px solid var(--ink); }
.ticker-track { display: flex; width: max-content; animation: marquee 25s linear infinite; }
.ticker-track span { padding: .8rem 1.6rem; font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.ticker-track span::after { content: "✦"; margin-left: 3.2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { position: relative; padding-block: clamp(5rem, 10vw, 9rem); }
.section--paper { color: var(--ink); background-color: var(--paper); background-image: linear-gradient(rgba(244,241,232,.88), rgba(244,241,232,.88)), url("images/home-faq-bg.png"); background-size: cover; background-position: center; }
.section--ink-soft { background: var(--ink-soft); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 3rem; align-items: end; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-head .lede { margin: 0 0 .5rem; justify-self: end; }
.section-number { position: absolute; top: 3rem; right: var(--gutter); color: rgba(255,255,255,.12); font-size: clamp(4rem, 10vw, 9rem); font-weight: 900; line-height: 1; }
.section--paper .section-number { color: rgba(7,7,10,.08); }

.season-grid { display: grid; grid-template-columns: 1.1fr .95fr .95fr; gap: 1rem; }
.show-card { position: relative; min-height: 560px; overflow: hidden; border: 1px solid rgba(7,7,10,.18); background: #ddd; }
.show-card img { height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.show-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,7,10,.92), transparent 58%); }
.show-card:hover img { transform: scale(1.045); filter: saturate(1.1); }
.show-card__content { position: absolute; inset: auto 0 0; z-index: 2; padding: 1.5rem; color: var(--white); }
.show-card__tag { display: inline-flex; margin-bottom: .7rem; padding: .35rem .5rem; color: var(--ink); background: var(--yellow); font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.show-card h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3.6rem); line-height: .9; letter-spacing: -.05em; text-transform: uppercase; }
.show-card p { margin: .7rem 0 0; color: rgba(255,255,255,.68); font-size: .83rem; }
.show-card:first-child { transform: translateY(-2rem); }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.mission-photo { position: relative; overflow: hidden; clip-path: polygon(0 0, 95% 2%, 100% 8%, 96% 16%, 100% 23%, 97% 31%, 100% 38%, 96% 47%, 100% 55%, 97% 63%, 100% 72%, 96% 80%, 100% 90%, 97% 100%, 0 100%); }
.mission-photo img { height: 100%; object-fit: cover; }
.mission-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,212,0,.2), rgba(132,87,255,.08)); mix-blend-mode: color; }
.mission-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 8vw, 8rem); background: var(--yellow); color: var(--ink); }
.mission-copy--about { background-image: linear-gradient(rgba(255,212,0,.87), rgba(255,212,0,.87)), url("images/about-bg.png"); background-size: cover; background-position: center; }
.mission-copy blockquote { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.035em; }
.mission-copy p { max-width: 35rem; margin: 2rem 0; font-size: 1.02rem; }

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.program-card { position: relative; min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.program-card:last-child { border-right: 0; }
.program-card::before { content: ""; position: absolute; width: 260px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -110px; top: -100px; box-shadow: 0 0 0 35px rgba(255,255,255,.025), 0 0 0 70px rgba(255,255,255,.015); }
.program-card__index { color: var(--yellow); font-size: .72rem; font-weight: 850; letter-spacing: .14em; }
.program-card h3 { margin: auto 0 1rem; max-width: 9ch; font-family: var(--display); font-size: clamp(2.6rem, 4vw, 4.6rem); line-height: .87; letter-spacing: -.055em; text-transform: uppercase; }
.program-card p { max-width: 28rem; margin: 0; color: rgba(255,255,255,.58); }

.team-section { background-color: #77709c; background-image: linear-gradient(rgba(72,65,111,.18), rgba(72,65,111,.18)), url("images/team-bg.png"); background-size: cover; background-attachment: fixed; }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.team-card { position: relative; padding: 1rem; color: var(--ink); background: rgba(244,241,232,.94); border: 2px solid var(--ink); transform: rotate(var(--tilt, -1deg)); box-shadow: 8px 8px 0 rgba(7,7,10,.28); }
.team-card:nth-child(even) { --tilt: 1deg; }
.team-card img { aspect-ratio: 1; object-fit: contain; background: var(--yellow); }
.team-card h3 { margin: 1rem 0 .2rem; font-family: var(--display); font-size: 1.45rem; line-height: .95; letter-spacing: -.03em; text-transform: uppercase; }
.team-card p { min-height: 2.8em; margin: 0 0 .8rem; font-size: .72rem; font-weight: 700; }
.team-card .text-link { color: var(--ink); }

.torn-top, .torn-bottom { position: relative; }
.torn-top::before, .torn-bottom::after { content: ""; position: absolute; z-index: 3; left: 0; width: 100%; height: 26px; background: var(--paper); clip-path: polygon(0 48%, 3% 18%, 7% 54%, 11% 28%, 16% 62%, 21% 20%, 27% 56%, 33% 26%, 39% 64%, 45% 22%, 52% 58%, 59% 18%, 66% 60%, 73% 27%, 80% 62%, 87% 22%, 94% 56%, 100% 31%, 100% 100%, 0 100%); }
.torn-top::before { top: -25px; }
.torn-bottom::after { bottom: -25px; transform: rotate(180deg); }

.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 340px 260px; gap: .8rem; }
.gallery-item { position: relative; overflow: hidden; background: #15151b; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 2 / 4; }
.gallery-item img { height: 100%; object-fit: cover; filter: saturate(.92); transition: transform .8s var(--ease), filter .5s; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.18); }
.gallery-item span { position: absolute; inset: auto auto 1rem 1rem; padding: .45rem .65rem; color: var(--ink); background: var(--yellow); font-size: .61rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.cta-band { position: relative; min-height: 70vh; display: grid; place-items: center; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(7,7,10,.68), rgba(7,7,10,.82)), url("images/home-faq-bg.png") center / cover no-repeat; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0 49.8%, rgba(255,212,0,.24) 50%, transparent 50.2%); }
.cta-band__content { position: relative; z-index: 2; padding: 4rem var(--gutter); }
.cta-band .title-lg { margin-bottom: 2rem; }

.site-footer { color: rgba(255,255,255,.62); background: #020203; border-top: 1px solid rgba(255,255,255,.12); }
.footer-main { display: grid; grid-template-columns: 1.2fr repeat(4, .7fr); gap: 2rem; padding-block: 4rem; }
.footer-brand p { max-width: 28rem; margin: 1.5rem 0 0; }
.footer-column h3 { margin: 0 0 1rem; color: var(--white); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a, .footer-column address { display: block; margin: .55rem 0; font-style: normal; }
.footer-column a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { position: relative; min-height: 72svh; display: flex; align-items: end; overflow: hidden; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,10,.92), rgba(7,7,10,.35)), linear-gradient(0deg, rgba(7,7,10,.95), transparent 65%); }
.page-hero-media--gallery img { object-position: center; }
.page-hero-media--gallery::after { background: linear-gradient(90deg, rgba(7,7,10,.78), rgba(7,7,10,.12)), linear-gradient(0deg, rgba(7,7,10,.78), transparent 60%); }
.page-hero-content { position: relative; z-index: 1; width: 100%; padding-top: 10rem; padding-bottom: 4rem; }
.page-hero-content .title-xl { max-width: 11ch; }
.page-hero-content .lede { margin: 2rem 0 0; }
.page-intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 9vw, 9rem); }
.page-intro__big { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.04em; word-spacing: .1em; }
.rich-copy p { margin-top: 0; color: rgba(255,255,255,.66); font-size: 1.08rem; }
.section--paper .rich-copy p { color: rgba(7,7,10,.7); }
.rich-copy p + p { margin-top: 1.4rem; }

.filter-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 3rem; }
.filter-button { padding: .72rem 1rem; border: 1px solid rgba(7,7,10,.28); color: rgba(7,7,10,.66); background: transparent; cursor: pointer; font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.filter-button.is-active, .filter-button:hover { color: var(--paper); background: var(--ink); }
.production-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.production-card { display: flex; flex-direction: column; color: var(--white); background: var(--ink); }
.production-card[hidden] { display: none; }
.production-card__image { aspect-ratio: 4 / 4.4; overflow: hidden; }
.production-card__image img { height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.production-card:hover img { transform: scale(1.04); }
.production-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.4rem; }
.production-card__meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.3rem; color: var(--yellow); font-size: .66rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.production-card h3 { margin: 0; font-family: var(--display); font-size: 2.3rem; line-height: .9; letter-spacing: -.045em; text-transform: uppercase; }
.production-card p { margin: 1rem 0 1.5rem; color: rgba(255,255,255,.58); }
.production-card .text-link { margin-top: auto; }
.text-link { display: inline-flex; max-width: 100%; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.text-link::after { content: "→"; color: var(--yellow); transition: transform .25s; }
.text-link:hover::after { transform: translateX(.35rem); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: step; border-top: 1px solid var(--line); }
.step { counter-increment: step; min-height: 300px; padding: 2rem; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step::before { content: "0" counter(step); display: block; margin-bottom: 5rem; color: var(--yellow); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.step h3 { margin: 0 0 .7rem; font-size: 1.2rem; text-transform: uppercase; }
.step p { color: rgba(255,255,255,.58); }

.info-band { display: grid; grid-template-columns: 1fr 1fr; }
.info-band__image img { height: 100%; min-height: 580px; object-fit: cover; }
.info-band__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); color: var(--ink); background: var(--yellow); }
.info-band__copy h2 { margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); line-height: .88; letter-spacing: -.055em; text-transform: uppercase; }
.info-band__copy address { margin: 1.5rem 0; font-style: normal; font-size: 1.15rem; font-weight: 750; }

.policy-grid, .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.policy-card, .value-card { padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.policy-card__icon, .value-card__icon { width: 54px; aspect-ratio: 1; display: grid; place-items: center; margin-bottom: 3rem; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--yellow); font-size: 1.25rem; }
.policy-card h3, .value-card h3 { margin: 0 0 .7rem; font-family: var(--display); font-size: 1.8rem; letter-spacing: -.03em; text-transform: uppercase; }
.policy-card p, .value-card p { margin: 0; color: rgba(255,255,255,.58); }

.quote-wall { padding: clamp(4rem, 10vw, 9rem) var(--gutter); color: var(--ink); background: var(--yellow); }
.quote-wall blockquote { max-width: 1200px; margin: 0 auto; font-family: var(--serif); font-size: clamp(2.4rem, 5.3vw, 5.8rem); line-height: 1; letter-spacing: -.045em; }
.quote-wall cite { display: block; max-width: 1200px; margin: 2rem auto 0; font-family: var(--body); font-size: .72rem; font-style: normal; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }

.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.split-content img { min-height: 600px; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.check-list li { position: relative; padding: 1.2rem 0 1.2rem 2rem; border-top: 1px solid var(--line); }
.check-list li::before { content: "✦"; position: absolute; left: 0; color: var(--yellow); }
.check-list li:last-child { border-bottom: 1px solid var(--line); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.6rem 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-button span:first-child { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2.5rem); font-weight: 850; line-height: 1; letter-spacing: -.03em; text-transform: uppercase; }
.faq-button span:last-child { color: var(--yellow); font-size: 1.5rem; transition: transform .25s; }
.faq-item.is-open .faq-button span:last-child { transform: rotate(45deg); }
.faq-answer { max-width: 52rem; padding: 0 0 1.8rem; color: rgba(255,255,255,.62); }
.faq-answer p { margin: 0; }
.faq-answer p + p, .faq-answer ul { margin-top: 1rem; }
.faq-answer li + li { margin-top: .55rem; }

.content-stack { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.content-panel { display: grid; grid-template-columns: .45fr 1.55fr; gap: clamp(2rem, 8vw, 8rem); padding: clamp(3rem, 7vw, 6rem) 0; background: var(--ink); }
.content-panel__label { color: var(--yellow); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.content-panel h2 { margin: 0 0 1.4rem; font-family: var(--display); font-size: clamp(2.6rem, 5vw, 5rem); line-height: .88; letter-spacing: -.04em; word-spacing: .1em; text-transform: uppercase; }
.content-panel p { max-width: 58rem; color: rgba(255,255,255,.66); }
.content-panel p + p { margin-top: 1.2rem; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.resource-card { min-height: 320px; display: flex; flex-direction: column; padding: 2rem; color: var(--ink); background: var(--paper); border: 2px solid var(--ink); box-shadow: 8px 8px 0 rgba(255,212,0,.5); }
.resource-card__kicker { margin-bottom: auto; font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.resource-card h2, .resource-card h3 { margin: 3rem 0 1rem; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: .86; letter-spacing: -.04em; text-transform: uppercase; }
.resource-card p { margin: 0 0 1.5rem; color: rgba(7,7,10,.68); }

.placeholder-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 920px; }
.placeholder-form__field { display: grid; gap: .55rem; }
.placeholder-form__field--wide { grid-column: 1 / -1; }
.placeholder-form label { color: var(--yellow); font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.placeholder-form input, .placeholder-form textarea { width: 100%; padding: 1rem; border: 1px solid rgba(255,255,255,.28); border-radius: 0; color: var(--white); background: rgba(255,255,255,.04); outline: 0; }
.placeholder-form textarea { min-height: 180px; resize: vertical; }
.placeholder-form input:focus, .placeholder-form textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,212,0,.12); }
.placeholder-form__note { grid-column: 1 / -1; margin: .25rem 0 0; color: rgba(255,255,255,.54); font-size: .68rem; }
.placeholder-form .button { justify-self: start; }

.price-table { width: 100%; border-collapse: collapse; color: var(--ink); background: var(--paper); }
.price-table th, .price-table td { padding: 1rem 1.2rem; border: 1px solid rgba(7,7,10,.22); text-align: left; }
.price-table th { color: var(--paper); background: var(--ink); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.price-table td:first-child { font-weight: 900; }

[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { background: rgba(7,7,10,.96); backdrop-filter: none; }
  .menu-toggle { position: relative; z-index: 3; display: block; flex: 0 0 auto; border-color: rgba(255,212,0,.55); border-radius: 50%; background: rgba(255,255,255,.035); touch-action: manipulation; }
  .menu-toggle:hover { border-color: var(--yellow); background: rgba(255,212,0,.1); }
  .nav-menu { position: fixed; z-index: 1; inset: 0 0 auto; width: 100%; height: 100vh; height: 100dvh; min-height: 100%; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: calc(6.75rem + env(safe-area-inset-top)) max(var(--gutter), env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left)); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; background: linear-gradient(145deg, rgba(255,212,0,.055), transparent 35%), rgba(7,7,10,.995); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-1rem); transition: transform .45s var(--ease), opacity .3s, visibility .3s; counter-reset: mobile-nav; }
  .nav-menu::before { content: "Ghostlight / Navigate"; display: block; margin: 0 0 .8rem; padding: 0 0 .75rem 3.3rem; border-bottom: 1px solid rgba(255,255,255,.16); color: var(--yellow); font-size: .62rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
  .nav-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-menu > a:not(.button) { display: grid; grid-template-columns: 2.5rem minmax(0,1fr); align-items: center; min-height: 64px; padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.14); color: var(--white); font-family: var(--display); font-size: clamp(2.25rem, 8vw, 4.2rem); font-weight: 900; line-height: .88; letter-spacing: -.035em; touch-action: manipulation; }
  .nav-menu > a:not(.button)::before { counter-increment: mobile-nav; content: "0" counter(mobile-nav); color: var(--yellow); font-family: var(--body); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
  .nav-menu > a:not(.button)::after { display: none; }
  .nav-menu > a[aria-current="page"]:not(.button) { color: var(--yellow); }
  .nav-menu .button { width: 100%; min-height: 56px; margin-top: 1.25rem; align-self: stretch; touch-action: manipulation; }
  body.menu-open { overflow: hidden; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .show-card:first-child { grid-column: 1 / 3; transform: none; }
  .show-card { min-height: 500px; }
  .mission-grid, .info-band { grid-template-columns: 1fr; }
  .mission-photo { min-height: 650px; clip-path: none; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 320px; border-right: 0; }
  .program-card h3 { margin-top: 5rem; }
  .production-list { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--line); }
  .policy-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  :root { --gutter: 1.15rem; }
  .site-header { height: 72px; }
  .nav-wrap { gap: .75rem; }
  .brand { min-width: 0; gap: .6rem; }
  .brand-type { min-width: 0; }
  .brand-type strong { font-size: .8rem; letter-spacing: .1em; }
  .brand-type span { display: none; }
  .brand-logo { width: 44px; height: 44px; }
  .menu-toggle { width: 46px; height: 46px; }
  .nav-menu { padding-top: calc(5.9rem + env(safe-area-inset-top)); }
  .title-xl { font-size: clamp(3.75rem, 18vw, 6.2rem); }
  .hero { min-height: 820px; }
  .hero-media img { object-position: 67% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(7,7,10,.92), rgba(7,7,10,.38)), linear-gradient(0deg, rgba(7,7,10,.96), transparent 78%); }
  .hero-title .line:last-child { padding-left: 0; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .hero-actions .button { flex: 1 1 100%; }
  .scroll-cue { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-head .lede { justify-self: start; }
  .season-grid { grid-template-columns: 1fr; }
  .show-card:first-child { grid-column: auto; }
  .show-card { min-height: 460px; }
  .mission-photo { min-height: 460px; }
  .mission-copy { padding: 3rem 1.4rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 220px 220px; }
  .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1 / 3; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 680px; }
  .page-intro { grid-template-columns: 1fr; gap: 2rem; }
  .production-list, .policy-grid, .value-grid { grid-template-columns: 1fr; }
  .resource-grid, .content-panel { grid-template-columns: 1fr; }
  .content-panel { gap: 1rem; }
  .placeholder-form { grid-template-columns: 1fr; }
  .placeholder-form__field--wide, .placeholder-form__note { grid-column: auto; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; border-right: 0; }
  .step::before { margin-bottom: 2rem; }
  .info-band__image img { min-height: 420px; }
  .split-content { grid-template-columns: 1fr; }
  .split-content img { min-height: 420px; }
}

@media (max-width: 360px) {
  :root { --gutter: 1rem; }
  .brand { gap: .5rem; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-type strong { font-size: .7rem; letter-spacing: .08em; }
  .menu-toggle { width: 44px; height: 44px; }
  .nav-menu { padding-top: calc(5.4rem + env(safe-area-inset-top)); }
  .nav-menu::before { padding-left: 2.85rem; }
  .nav-menu > a:not(.button) { grid-template-columns: 2.15rem minmax(0,1fr); min-height: 58px; font-size: 2rem; }
}

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