  
    :root {
      --ink:        #0a0a11;
      --parchment:  #f4ede0;
      --gold:       #c9a84c;
      --gold-dim:   #7a6230;
      --rust:       #8b3a2a;
      --fog:        #2a2620;
      --muted:      #7a7060;
    }
 
    *, *::before, *::after { box-sizing: border-box; }
 
    html { scroll-behavior: smooth; }
 
    body {
      background-color: var(--ink);
      color: var(--parchment);
      font-family: 'Averia Sans Libre', Georgia, serif;
      font-size: 1.15rem;
      line-height: 1.7;
      overflow-x: hidden;
    }
 
    /* ── GRAIN OVERLAY ─────────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: .045;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
    }
 
    /* ── CURTAIN HEADER ─────────────────────────────────────────── */
    .curtain-header {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 5rem 1.5rem 4rem;
      overflow: hidden;
    }
 
    .curtain-header::before,
    .curtain-header::after {
      content: '';
      position: absolute;
      top: 0;
      width: 18vw;
      height: 100%;
      background: linear-gradient(to bottom, #1a0a06 0%, #2d1408 40%, #1a0808 100%);
      z-index: 0;
    }
    .curtain-header::before { left: 0; border-right: 3px solid var(--gold-dim); }
    .curtain-header::after  { right: 0; border-left:  3px solid var(--gold-dim); }
 
    .curtain-inner { position: relative; z-index: 1; max-width: 760px; }
 
    .title-pre {
      font-family: 'Averia Sans Libre', serif;
      font-size: clamp(.65rem, 1.4vw, .85rem);
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp .8s ease .2s forwards;
    }
 
    .title-main {
      font-family: 'Coiny', serif;
      font-size: clamp(2.6rem, 7vw, 5.2rem);
      line-height: 1.08;
      font-weight: 400;
      color: var(--parchment);
      margin-bottom: .5rem;
      opacity: 0;
      animation: fadeUp .9s ease .5s forwards;
    }
 
    .title-amp {
      color: var(--gold);
      font-style: italic;
    }
 
    .title-sub {
      font-family: 'Coiny', serif;
      font-size: clamp(1.5rem, 4vw, 2.8rem);
      font-style: italic;
      color: var(--parchment);
      opacity: .75;
      margin-bottom: 2.2rem;
      opacity: 0;
      animation: fadeUp .9s ease .75s forwards;
    }
 
    .gold-rule {
      border: none;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 1.8rem auto;
      width: 60%;
      opacity: 0;
      animation: fadeIn .8s ease 1s forwards;
    }
 
    .byline {
      font-family: 'Averia Sans Libre', serif;
      font-size: clamp(.6rem, 1.2vw, .78rem);
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--muted);
      opacity: 0;
      animation: fadeUp .8s ease 1.2s forwards;
    }
 
    /* ── SCROLL ARROW ───────────────────────────────────────────── */
    .scroll-cue {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      opacity: 0;
      animation: fadeIn 1s ease 1.8s forwards;
    }
    .scroll-cue span {
      display: block;
      width: 20px;
      height: 20px;
      border-right: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
      transform: rotate(45deg);
      margin: -10px auto 0;
      animation: bounce 1.6s infinite;
    }
 
    /* ── SECTIONS ───────────────────────────────────────────────── */
    .section {
      padding: 5rem 0;
      border-top: 1px solid rgba(201,168,76,.15);
    }
 
    .section-label {
      font-family: 'Averia Sans Libre', serif;
      font-size: .7rem;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2.5rem;
    }
 
    h2.section-title {
      font-family: 'Coiny', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 400;
      color: var(--parchment);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
 
    p {
      color: rgba(244,237,224,.82);
      font-size: 1.1rem;
      line-height: 1.4;
    }
 
    a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    a:hover { color: var(--parchment); }
 
    /* ── AUDITION CARDS ─────────────────────────────────────────── */
    .audition-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(201,168,76,.2);
      border-top: 3px solid var(--gold);
      padding: 2rem 1.8rem;
      height: 100%;
      transition: background .25s, border-color .25s;
    }
    .audition-card:hover {
      background: rgba(255,255,255,.055);
      border-color: rgba(201,168,76,.5);
    }
    .audition-card h3 {
      font-family: 'Averia Sans Libre', serif;
      font-size: .95rem;
      letter-spacing: .12em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
 
    /* ── DATES TABLE ────────────────────────────────────────────── */
    .dates-block { margin-bottom: 2.5rem; }
    .dates-block .date-group-label {
      font-family: 'Averia Sans Libre', serif;
      font-size: .75rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .8rem;
      padding-bottom: .4rem;
      border-bottom: 1px solid rgba(201,168,76,.25);
    }
    .date-row {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      padding: .45rem 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .date-row .day {
      font-family: 'Coiny', serif;
      font-size: 1rem;
      color: var(--parchment);
      min-width: 3.5rem;
    }
    .date-row .date-detail {
      font-size: 1.0rem;
      color: rgba(244,237,224,.7);
    }
    .date-row .time {
      margin-left: auto;
      font-family: 'Averia Sans Libre', serif;
      font-size: .75rem;
      letter-spacing: .08em;
      color: var(--gold);
    }
    .date-row.single .date-detail { flex: 1; }
 
    /* ── NOTES ──────────────────────────────────────────────────── */
    .note-item {
      display: flex;
      gap: 1.2rem;
      padding: 1.2rem 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .note-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
    .note-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border: 1px solid var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: .15rem;
    }
    .note-icon svg { width: 13px; height: 13px; fill: var(--gold); }
    .note-text { font-size: 1.05rem; color: rgba(244,237,224,.8); }
 
    /* ── CTA BAND ───────────────────────────────────────────────── */
    .cta-band {
      background: linear-gradient(135deg, #1c1208 0%, #0d0b08 60%);
      border-top: 1px solid rgba(201,168,76,.2);
      border-bottom: 1px solid rgba(201,168,76,.2);
      padding: 4rem 1.5rem;
      text-align: center;
    }
    .cta-band h2 {
      font-family: 'Coiny', serif;
      font-size: clamp(1.4rem, 3vw, 2.1rem);
      color: var(--parchment);
      margin-bottom: 1rem;
    }
    .cta-band p { max-width: 580px; margin: 0 auto 2rem; }
    .btn-audition {
      display: inline-block;
      font-family: 'Averia Sans Libre', serif;
      font-size: .8rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--ink);
      background: var(--gold);
      padding: .85rem 2.4rem;
      border: 2px solid var(--gold);
      transition: background .2s, color .2s;
    }
    .btn-audition:hover {
      background: transparent;
      color: var(--gold);
    }
 
    /* ── FOOTER ─────────────────────────────────────────────────── */
    footer {
      padding: 2.5rem 1.5rem;
      text-align: center;
      font-family: 'Averia Sans Libre', serif;
      font-size: .65rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--muted);
    }
 
    /* ── ANIMATIONS ─────────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes bounce {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50%       { transform: rotate(45deg) translateY(6px); }
    }
 
    /* ── REVEAL-ON-SCROLL ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    /* ── DIRECTOR'S NOTE / IN MEMORIAM ─────────────────────────── */
    .director-memoriam {
      border: 1px solid rgba(201,168,76,.25);
      border-top: 3px solid var(--gold-dim);
      padding: 1.5rem 2rem;
      margin: 1.5rem 0 2rem;
      text-align: center;
    }
    .memoriam-label {
      font-family: 'Averia Sans Libre', serif;
      font-size: .7rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .5rem;
    }
    .memoriam-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-style: italic;
      color: var(--parchment);
      margin-bottom: .25rem;
    }
    .memoriam-dates {
      font-family: 'Averia Sans Libre', serif;
      font-size: .85rem;
      letter-spacing: .15em;
      color: var(--muted);
      margin-bottom: 0;
    }

    /* ── TABS ───────────────────────────────────────────────────── */
    .nav-tabs {
      border-bottom: 1px solid rgba(201,168,76,.25);
      gap: .25rem;
    }
    .nav-tabs .nav-link {
      font-family: 'Averia Sans Libre', serif;
      font-size: 1rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--muted);
      background: transparent;
      border: 1px solid transparent;
      border-bottom: none;
      padding: .6rem 1.4rem;
      border-radius: 0;
      transition: color .2s, background .2s;
    }
    .nav-tabs .nav-link:hover {
      color: var(--parchment);
      background: rgba(255,255,255,.04);
      border-color: rgba(201,168,76,.15);
    }
    .nav-tabs .nav-link.active {
      color: var(--gold);
      background: var(--fog);
      border-color: rgba(201,168,76,.25);
      border-bottom-color: var(--ink);
    }

    /* ── RESPONSIVE TWEAKS ──────────────────────────────────────── */
    @media (max-width: 768px) {
      .curtain-header::before,
      .curtain-header::after { width: 8vw; }
    }
  