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

    :root {
      --black: #0d0d0d;
      --charcoal: #161616;
      --card: #1e1e1e;
      --border: #2e2e2e;
      --amber: #e8a020;
      --amber-dim: #a06e10;
      --white: #f0ede6;
      --gray: #888884;
      --gray-light: #b0ada6;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 3rem;
      background: rgba(13,13,13,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--white);
    }

    .nav-logo span { color: var(--amber); }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-light);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--amber); }

    .nav-cta {
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid var(--amber);
      color: var(--amber);
      padding: 0.5rem 1.2rem;
      transition: background 0.2s, color 0.2s;
    }

    .nav-cta:hover {
      background: var(--amber);
      color: var(--black);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 3rem 5rem;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(13,13,13,0.78) 0%, rgba(13,13,13,0.88) 55%, rgba(13,13,13,0.97) 100%), url('assets/arena-light-burst.jpg');
      background-size: cover;
      background-position: center 30%;
    }

    .hero-signal {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: flex-end;
      gap: 10px;
      opacity: 0.07;
    }

    .signal-bar {
      background: var(--amber);
      width: 28px;
      border-radius: 3px 3px 0 0;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
    }

    .hero-headline {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(3.5rem, 8vw, 7.5rem);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: var(--white);
      max-width: 800px;
      margin-bottom: 2rem;
    }

    .hero-headline em {
      font-style: normal;
      color: var(--amber);
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--gray-light);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 3rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-primary {
      background: var(--amber);
      color: var(--black);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      transition: opacity 0.2s;
    }

    .btn-primary:hover { opacity: 0.85; }

    .btn-ghost {
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-light);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.2s;
    }

    .btn-ghost:hover { color: var(--white); }

    .hero-logo-mark {
      position: absolute;
      top: 2rem;
      right: 3rem;
      width: 130px;
      height: auto;
      z-index: 5;
    }

    /* PHOTO DIVIDER — single full-width accent photo used to break up long text/list sections */
    .photo-divider {
      margin: 3.5rem 0;
    }

    .photo-divider img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
      border: 1px solid var(--border);
      filter: contrast(1.05) saturate(1.05);
    }

    .photo-divider figcaption {
      margin-top: 0.65rem;
      font-size: 0.78rem;
      color: var(--gray);
      font-style: italic;
    }

    .photo-divider.small img { height: 220px; }

    /* EASTER EGG PHOTO — tiny tucked-away accent, full reveal on hover */
    .easter-egg-photo {
      position: absolute;
      bottom: 1.5rem;
      right: 1.75rem;
      width: 60px;
      height: 60px;
      object-fit: cover;
      border: 2px solid var(--card);
      border-radius: 4px;
      opacity: 0.45;
      transform: rotate(-7deg);
      transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease, height 0.35s ease;
      cursor: help;
      z-index: 4;
    }

    .easter-egg-photo:hover {
      opacity: 1;
      transform: rotate(0deg);
      width: 150px;
      height: 150px;
    }

    .hero-callout {
      margin-top: 5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 4rem;
    }

    .callout-stat strong {
      display: block;
      font-family: Georgia, serif;
      font-size: 2.5rem;
      color: var(--amber);
      line-height: 1;
    }

    .callout-stat span {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
    }

    /* DIVIDER */
    .section-divider {
      height: 1px;
      background: var(--border);
      margin: 0 3rem;
    }

    /* SERVICES */
    .services {
      padding: 6rem 3rem;
    }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 3rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .section-label::after {
      content: '';
      flex: 1;
      max-width: 80px;
      height: 1px;
      background: var(--amber-dim);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .service-card {
      background: var(--charcoal);
      padding: 2.5rem 2rem;
      transition: background 0.2s;
    }

    .service-card:hover { background: var(--card); }

    .service-icon {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
    }

    .service-title {
      font-family: Georgia, serif;
      font-size: 1.4rem;
      color: var(--white);
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }

    .service-desc {
      font-size: 0.88rem;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

    .service-tag {
      display: inline-block;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--amber);
      border: 1px solid var(--amber-dim);
      padding: 0.25rem 0.6rem;
      margin: 0.2rem 0.2rem 0 0;
    }

    /* APPROACH */
    .approach {
      padding: 6rem 3rem;
      background: var(--charcoal);
    }

    .approach-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .approach-heading {
      font-family: Georgia, serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .approach-heading em {
      font-style: normal;
      color: var(--amber);
    }

    .approach-body {
      font-size: 0.95rem;
      color: var(--gray-light);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .approach-steps {
      counter-reset: step;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .approach-steps li {
      counter-increment: step;
      display: grid;
      grid-template-columns: 2.5rem 1fr;
      gap: 1rem;
      align-items: start;
    }

    .approach-steps li::before {
      content: counter(step, decimal-leading-zero);
      font-size: 0.72rem;
      color: var(--amber);
      letter-spacing: 0.1em;
      padding-top: 0.2rem;
    }

    .step-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .step-body {
      font-size: 0.84rem;
      color: var(--gray);
      line-height: 1.6;
    }

    /* SHOWS */
    .shows {
      padding: 6rem 3rem;
    }

    .shows-intro {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
      gap: 2rem;
    }

    .shows-heading {
      font-family: Georgia, serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      line-height: 1.1;
    }

    .shows-sub {
      font-size: 0.88rem;
      color: var(--gray);
      max-width: 360px;
      text-align: right;
    }

    .shows-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-bottom: 2rem;
    }

    .show-item {
      background: var(--charcoal);
      padding: 1.75rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      transition: background 0.2s;
    }

    .show-item:hover { background: var(--card); }

    .show-category {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--amber);
    }

    .show-name {
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
    }

    .show-network {
      font-size: 0.8rem;
      color: var(--gray);
    }

    .shows-note {
      font-size: 0.8rem;
      color: var(--gray);
      font-style: italic;
    }

    /* PRESS */
    .press {
      padding: 6rem 3rem;
      background: var(--charcoal);
    }

    .press-intro {
      margin-bottom: 3rem;
    }

    .press-heading {
      font-family: Georgia, serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }

    .press-sub {
      font-size: 0.95rem;
      color: var(--gray-light);
      max-width: 560px;
      line-height: 1.7;
    }

    .press-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .press-card {
      background: var(--card);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      transition: background 0.2s;
      text-decoration: none;
    }

    .press-card:hover { background: #252525; }

    .press-card-outlet {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--amber);
    }

    .press-card-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.4;
    }

    .press-card-date {
      font-size: 0.78rem;
      color: var(--gray);
    }

    .press-card-arrow {
      margin-top: auto;
      font-size: 0.78rem;
      color: var(--amber);
      letter-spacing: 0.08em;
    }

    .press-placeholder {
      background: var(--card);
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      grid-column: 1 / -1;
    }

    .press-placeholder-icon { font-size: 2rem; opacity: 0.4; }

    .press-placeholder-text {
      font-size: 0.88rem;
      color: var(--gray);
      font-style: italic;
    }

    /* FOUNDER */
    .founder {
      padding: 6rem 3rem;
      background: linear-gradient(180deg, rgba(22,22,22,0.93) 0%, rgba(22,22,22,0.97) 100%), url('assets/theater-blue-lights.jpg');
      background-size: cover;
      background-position: center 20%;
      position: relative;
      overflow: hidden;
    }

    .founder-inner {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 860px;
    }

    .founder-avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: var(--card);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Georgia, serif;
      font-size: 2.5rem;
      color: var(--amber);
      flex-shrink: 0;
    }

    .founder-quote {
      font-family: Georgia, serif;
      font-size: 1.3rem;
      line-height: 1.55;
      color: var(--white);
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    .founder-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
    }

    .founder-title {
      font-size: 0.8rem;
      color: var(--gray);
    }

    /* CONTACT */
    .contact {
      padding: 6rem 3rem;
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .contact-heading {
      font-family: Georgia, serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .contact-heading em {
      color: var(--amber);
      font-style: normal;
    }

    .contact-sub {
      font-size: 0.95rem;
      color: var(--gray-light);
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.9rem;
    }

    .contact-row-label {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gray);
      min-width: 60px;
    }

    .contact-row-val {
      color: var(--white);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-field label {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray);
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      background: var(--charcoal);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
      resize: vertical;
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--amber);
    }

    .form-field select option { background: var(--charcoal); }

    .form-submit {
      background: var(--amber);
      color: var(--black);
      border: none;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      cursor: pointer;
      align-self: flex-start;
      transition: opacity 0.2s;
    }

    .form-submit:hover { opacity: 0.85; }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--charcoal);
    }

    .footer-logo {
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .footer-logo span { color: var(--amber); }

    .footer-legal {
      font-size: 0.75rem;
      color: var(--gray);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.75rem;
      color: var(--gray);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--amber); }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero { padding: 7rem 1.5rem 4rem; }
      .hero-callout { gap: 2rem; flex-wrap: wrap; }
      .hero-signal { display: none; }
      .hero-logo-mark { display: none; }
      .section-divider { margin: 0 1.5rem; }
      .services, .shows, .contact, .founder { padding: 4rem 1.5rem; }
      .approach { padding: 4rem 1.5rem; }
      .approach-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .founder-inner { grid-template-columns: 1fr; }
      .founder-avatar { margin: 0 auto; }
      .shows-intro { flex-direction: column; align-items: flex-start; }
      .shows-sub { text-align: left; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
      .photo-gallery { grid-template-columns: repeat(2, 1fr) !important; }
      .page-banner { height: 140px !important; }
      .photo-divider img { height: 220px !important; }
      .easter-egg-photo { width: 46px; height: 46px; bottom: 1rem; right: 1rem; }
      .easter-egg-photo:hover { width: 110px; height: 110px; }
    }
