:root {
  --bg: #090909;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f7f4f0;
  --muted: #aaa3a7;
  --pink: #ff2f93;
  --pink-soft: #ff74b8;
  --gold: #c9a45a;
  --line: rgba(255,255,255,.13);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 30;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.brand { width: 178px; }
.brand img { filter: drop-shadow(0 8px 24px rgba(0,0,0,.35)); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.nav-links a { opacity: .86; transition: opacity .2s ease, color .2s ease; }
.nav-links a:hover { opacity: 1; color: var(--pink-soft); }
.nav-cta { border: 1px solid rgba(255,255,255,.55); border-radius: 999px; padding: 11px 18px; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 10px; }
.menu-toggle span { width: 25px; height: 1px; background: white; display: block; margin: 6px 0; }

.hero {
  min-height: 900px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 4vw 82px;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transform: scale(1.02); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.7) 43%, rgba(0,0,0,.19) 71%, rgba(0,0,0,.38) 100%),
    linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.08) 46%, rgba(0,0,0,.28) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 940px; }
.eyebrow, .kicker { color: var(--pink-soft); text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 700; }
.hero h1,
.section h2,
.featured-copy h2,
.new-season-strip h3,
.casting-copy h2,
.contact-intro h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(64px, 8vw, 126px); line-height: .82; margin: 20px 0 30px; max-width: 1080px; }
.hero h1 em { color: var(--pink); font-weight: 400; }
.hero-copy { max-width: 760px; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.52; color: rgba(255,255,255,.86); margin: 0 0 10px; }
.hero-copy-secondary { color: rgba(255,255,255,.7); font-size: clamp(15px, 1.1vw, 18px); max-width: 720px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button { border-radius: 999px; padding: 15px 23px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pink); color: #fff; font-weight: 700; }
.button-ghost { border-color: rgba(255,255,255,.45); background: rgba(0,0,0,.15); backdrop-filter: blur(8px); }
.hero-tag { position: absolute; right: 4vw; bottom: 88px; z-index: 3; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 10px; letter-spacing: .16em; color: rgba(255,255,255,.55); }
.hero-tag strong { color: #fff; }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--pink); color: #fff; }
.ticker-track { display: flex; width: max-content; gap: 28px; align-items: center; padding: 13px 0; font-size: 11px; font-weight: 700; letter-spacing: .2em; animation: marquee 34s linear infinite; }
.ticker-track i { font-style: normal; font-size: 9px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { max-width: var(--max); margin: 0 auto; padding: 118px 28px; }
.section-label { color: var(--pink-soft); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 50px; }
.section-heading { display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; align-items: end; margin-bottom: 56px; }
.section-heading h2, .about-copy h2, .contact-intro h2, .casting-copy h2 { font-size: clamp(48px, 6.4vw, 88px); line-height: .9; margin: 0; }
.section-heading h2 span, .about-copy h2 span, .contact-intro h2 span, .casting-copy h2 span, .featured-copy h2 span { color: var(--pink); font-style: italic; }
.section-heading p { color: var(--muted); line-height: 1.65; font-size: 16px; max-width: 490px; }

.about-grid { display: grid; grid-template-columns: .68fr 1.5fr; gap: 78px; align-items: start; }
.about-mark { background: radial-gradient(circle at 50% 38%, #242424 0, #111 50%, #090909 75%); min-height: 540px; display: grid; place-items: center; border: 1px solid var(--line); position: sticky; top: 24px; }
.about-mark img { width: min(76%, 430px); }
.about-copy h2 { margin-bottom: 35px; }
.about-copy p { color: #bdb6ba; line-height: 1.78; font-size: 16.5px; max-width: 760px; }
.about-copy p strong { color: #fff; font-weight: 700; }
.about-copy .statement { font-family: Georgia, 'Times New Roman', serif; color: #fff; font-size: 30px; line-height: 1.2; margin: 34px 0; }

.productions { border-top: 1px solid var(--line); }
.featured-show { display: grid; grid-template-columns: 1.25fr .9fr; min-height: 740px; background: #0e0e0e; border: 1px solid var(--line); }
.featured-image { overflow: hidden; min-height: 640px; }
.featured-image img { height: 100%; object-fit: cover; object-position: center; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.featured-show:hover .featured-image img { transform: scale(1.025); }
.featured-copy { padding: 58px 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-copy h2 { font-size: clamp(50px, 5.5vw, 80px); line-height: .9; margin: 14px 0 26px; }
.featured-copy > p:not(.kicker) { color: var(--muted); line-height: 1.7; margin: 0 0 17px; }
.show-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 11px 0 27px; }
.show-meta span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: #bcb4b8; }
.show-credit { border-top: 1px solid var(--line); padding-top: 22px; }
.show-credit span { display: block; color: var(--pink-soft); text-transform: uppercase; letter-spacing: .15em; font-size: 9px; margin-bottom: 10px; }
.show-credit p { margin: 0; color: #ddd6da; font-family: Georgia, 'Times New Roman', serif; line-height: 1.5; }

.history { border-top: 1px solid var(--line); }
.season-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.season-card { margin: 0; border: 1px solid var(--line); background: #111; overflow: hidden; }
.season-card img { aspect-ratio: 16 / 10; object-fit: cover; transition: transform .45s ease; }
.season-card:hover img { transform: scale(1.025); }
.season-card figcaption { padding: 17px 18px 20px; display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.season-card figcaption span { font-family: Georgia, 'Times New Roman', serif; font-size: 21px; }
.season-card figcaption small { color: #777; text-transform: uppercase; letter-spacing: .11em; font-size: 9px; }
.new-season-strip { margin-top: 20px; border: 1px solid rgba(255,47,147,.38); background: linear-gradient(110deg, rgba(255,47,147,.12), rgba(255,47,147,.025)); padding: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.new-season-strip h3 { font-size: clamp(34px,4vw,54px); margin: 8px 0 0; }
.new-season-strip h3 em { color: var(--pink); }
.new-season-strip > p { color: var(--muted); line-height: 1.6; }

.leadership { border-top: 1px solid var(--line); }
.leaders { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.leader { border: 1px solid var(--line); background: #111; display: grid; grid-template-columns: 180px 1fr; align-items: center; min-height: 220px; }
.leader-placeholder { height: 100%; display: grid; place-items: center; background: radial-gradient(circle at 50% 30%, #292929, #111 60%); border-right: 1px solid var(--line); }
.leader-placeholder span { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 55px; color: var(--pink); }
.leader h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 31px; margin: 0 0 9px; font-weight: 400; }
.leader p { margin: 0; color: #8d878b; text-transform: uppercase; letter-spacing: .11em; font-size: 10px; line-height: 1.5; }
.leader > div:last-child { padding: 25px 32px; }

.casting { border-top: 1px solid var(--line); }
.casting-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; align-items: start; }
.casting-copy h2 { margin: 0 0 34px; }
.casting-copy > p { color: var(--muted); line-height: 1.72; font-size: 16.5px; }
.casting-copy strong { color: #fff; }
.requirements { margin: 34px 0; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.requirements > p:first-child { color: #fff; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 700; }
.requirements ul { padding-left: 20px; color: #d0c9cd; line-height: 1.75; }
.requirements li { margin: 8px 0; }
.requirements .small-copy { color: #777; font-size: 12px; line-height: 1.6; }

.preapply-form, .contact-form { border: 1px solid var(--line); background: #101010; padding: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 18px; }
.form-heading { grid-column: 1 / -1; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.form-heading h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 42px; font-weight: 400; margin: 10px 0 0; }
.preapply-form label, .contact-form label { display: flex; flex-direction: column; gap: 10px; }
.preapply-form label.full, .contact-form label.full { grid-column: 1 / -1; }
.preapply-form label span, .contact-form label span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: #938c90; line-height: 1.45; }
.preapply-form input, .preapply-form select, .preapply-form textarea,
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: #fff; background: transparent; border: 0; border-bottom: 1px solid #393539; border-radius: 0; padding: 9px 2px 12px; outline: 0; }
.preapply-form textarea, .contact-form textarea { border: 1px solid #393539; padding: 13px; resize: vertical; }
.preapply-form input:focus, .preapply-form select:focus,
.contact-form input:focus, .contact-form select:focus { border-bottom-color: var(--pink); }
.preapply-form textarea:focus, .contact-form textarea:focus { border-color: var(--pink); }
.preapply-form select option, .contact-form select option { background: #111; }
.preapply-form .button, .contact-form .button { width: fit-content; }
.form-note { color: #686368; font-size: 10px; align-self: center; margin: 0; line-height: 1.5; }
.hidden { display: none; }

.partnerships { border-top: 1px solid var(--line); }
.partner-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-bottom: 18px; }
.partner-grid div { min-height: 135px; display: flex; align-items: flex-end; padding: 24px; color: #d0c9cd; line-height: 1.4; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #141414, #0d0d0d); }
.reach { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,47,147,.35); background: linear-gradient(110deg, rgba(255,47,147,.12), rgba(255,47,147,.025)); }
.reach div { padding: 34px 25px; border-right: 1px solid rgba(255,255,255,.1); }
.reach div:last-child { border-right: 0; }
.reach strong { display: block; font-family: Georgia, 'Times New Roman', serif; color: #fff; font-size: clamp(36px,4vw,54px); font-weight: 400; }
.reach span { display: block; margin-top: 7px; color: var(--pink-soft); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.partner-cta { margin-top: 40px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.partner-cta p { color: var(--muted); line-height: 1.72; max-width: 790px; margin: 0; }

.contact { border-top: 1px solid var(--line); display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.contact-intro .section-label { margin-bottom: 55px; }
.contact-intro > p:last-child { color: var(--muted); line-height: 1.7; max-width: 460px; margin-top: 30px; }

footer { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); padding: 48px 28px 58px; }
.footer-main { display: flex; justify-content: space-between; gap: 50px; align-items: flex-start; }
.footer-brand img { width: 175px; }
.footer-brand p { color: #777177; font-size: 12px; margin: 13px 0 0; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px 25px; color: #9b9499; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-nav a:hover { color: var(--pink-soft); }
.footer-bottom { margin-top: 36px; padding-top: 25px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #6e696d; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.social-links a:hover { border-color: var(--pink); color: var(--pink-soft); transform: translateY(-2px); }
.social-links svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-links svg .fill { fill: currentColor; stroke: none; }

.social-toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 15px); background: #171717; border: 1px solid var(--line); color: #fff; padding: 12px 16px; border-radius: 999px; font-size: 12px; opacity: 0; pointer-events: none; z-index: 90; transition: opacity .2s ease, transform .2s ease; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.social-toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .nav-links { gap: 18px; font-size: 11px; }
  .featured-show { grid-template-columns: 1fr; }
  .featured-image { min-height: 520px; }
  .partner-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 980px) {
  .site-header { height: 80px; }
  .brand { width: 145px; }
  .menu-toggle { display: block; position: relative; z-index: 50; }
  .nav-links { position: fixed; inset: 0; background: rgba(8,8,8,.98); z-index: 40; flex-direction: column; justify-content: center; gap: 28px; font-size: 18px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .hero { min-height: 780px; padding-bottom: 58px; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.48) 62%, rgba(0,0,0,.22) 100%); }
  .hero-tag { display: none; }
  .section { padding: 90px 22px; }
  .section-heading, .about-grid, .new-season-strip, .casting-grid, .contact { grid-template-columns: 1fr; }
  .about-mark { min-height: 390px; position: static; }
  .season-gallery { grid-template-columns: 1fr; }
  .leaders { grid-template-columns: 1fr; }
  .casting-grid, .contact { gap: 45px; }
  .partner-cta { grid-template-columns: 1fr; }
  .partner-cta .button { width: fit-content; }
}

@media (max-width: 700px) {
  .hero { min-height: 100svh; height: auto; padding: 150px 20px 58px; align-items: flex-end; }
  .hero-media { opacity: .58; }
  .hero-media img { object-position: 50% 30%; transform: scale(1.04); }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 46%, rgba(0,0,0,.52) 72%, rgba(0,0,0,.30) 100%),
      linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,.08));
  }
  .hero-content { max-width: 100%; }
  .eyebrow { font-size: 10px; letter-spacing: .18em; }
  .hero h1 { font-size: clamp(42px, 11.5vw, 48px); line-height: .9; margin: 16px 0 24px; max-width: 360px; }
  .hero-copy { font-size: 15.5px; line-height: 1.55; max-width: 100%; }
  .hero-copy-secondary { font-size: 14.5px; line-height: 1.55; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-top: 28px; gap: 10px; }
  .button { width: 100%; padding: 14px 20px; }
  .section-label { margin-bottom: 36px; }
  .section-heading { gap: 20px; margin-bottom: 38px; }
  .about-grid { gap: 40px; }
  .about-copy .statement { font-size: 26px; }
  .featured-image { min-height: 330px; }
  .featured-copy { padding: 40px 26px; }
  .featured-copy h2 { font-size: 53px; }
  .new-season-strip { padding: 30px 24px; gap: 18px; }
  .leader { grid-template-columns: 108px 1fr; min-height: 150px; }
  .leader h3 { font-size: 25px; }
  .preapply-form, .contact-form { padding: 28px 22px; grid-template-columns: 1fr; }
  .preapply-form label.full, .contact-form label.full, .form-heading { grid-column: auto; }
  .preapply-form .button, .contact-form .button { width: 100%; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-grid div { min-height: 100px; }
  .reach { grid-template-columns: 1fr 1fr; }
  .reach div:nth-child(2) { border-right: 0; }
  .reach div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-main, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .hero { padding-top: 138px; padding-bottom: 50px; }
  .hero h1 { font-size: 43px; max-width: 335px; }
  .hero-copy { font-size: 15px; }
  .hero-copy-secondary { font-size: 14px; }
  .reach { grid-template-columns: 1fr; }
  .reach div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .reach div:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
