 /* brand colors & typography */
    :root {
      --story-amber: #D97706;
      --midnight-black: #111111;
      --ember-red: #D73A31;
      --ivory: #F4F1EA;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      background-color: var(--midnight-black);
      color: var(--ivory);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      letter-spacing: 0.02em;
    }
    h1, h2, h3, .font-league {
      font-family: 'League Gothic', sans-serif;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .text-amber { color: var(--story-amber); }
    .text-ember { color: var(--ember-red); }
    .bg-ivory { background-color: var(--ivory); }
    .border-amber { border-color: var(--story-amber); }
    .border-ember { border-color: var(--ember-red); }
    .hover-glow-amber:hover { box-shadow: 0 0 24px rgba(217,119,6,0.25); }
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--story-amber), var(--ember-red), transparent);
      opacity: 0.4;
      margin: 2.5rem 0;
    }
    .cinema-strip {
      background: repeating-linear-gradient(90deg, 
        var(--midnight-black) 0px, 
        var(--midnight-black) 20px, 
        rgba(217,119,6,0.08) 20px, 
        rgba(217,119,6,0.08) 24px,
        var(--midnight-black) 24px,
        var(--midnight-black) 44px);
      height: 8px;
      width: 100%;
    }
    /* logo accent (é) */
    .logo-accent {
      font-family: 'League Gothic', sans-serif;
      font-size: inherit;
      color: var(--story-amber);
      position: relative;
      display: inline-block;
    }
    .logo-accent::after {
      content: 'é';
      color: var(--ember-red);
      position: absolute;
      left: 0.1em;
      top: 0;
      opacity: 0.7;
    }
    /* non-home pages need top padding since header is now transparent/overlay */
    .page-section:not(#page-home) {
      padding-top: 6rem;
    }

    /* nav links */
    .nav-link {
      position: relative;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.8rem;
      padding: 0.5rem 0;
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--story-amber);
      transition: width 0.3s ease;
    }
    .nav-link:hover::after { width: 100%; }
    .nav-link:hover { color: var(--story-amber); }
    .btn-outline-amber {
      border: 1px solid var(--story-amber);
      color: var(--ivory);
      padding: 0.6rem 1.8rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.75rem;
      transition: all 0.3s;
      background: transparent;
      cursor: pointer;
    }
    .btn-outline-amber:hover {
      background: var(--story-amber);
      color: var(--midnight-black);
      box-shadow: 0 0 28px rgba(217,119,6,0.3);
    }
    .btn-amber-solid {
      background: var(--story-amber);
      color: var(--midnight-black);
      padding: 0.7rem 2.2rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.8rem;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }
    .btn-amber-solid:hover {
      background: #b85e00;
      box-shadow: 0 0 32px rgba(217,119,6,0.4);
    }
    .premium-card {
      background: rgba(17,17,17,0.7);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(217,119,6,0.15);
      transition: all 0.25s;
    }
    .premium-card:hover {
      border-color: rgba(217,119,6,0.5);
      box-shadow: 0 12px 48px -8px rgba(0,0,0,0.8);
    }
    /* gallery grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }
    .gallery-item {
      aspect-ratio: 4/3;
      background: #1a1a1a;
      border: 1px solid rgba(217,119,6,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.08);
    }
    .gallery-item:hover {
      border-color: var(--story-amber);
      box-shadow: 0 0 40px rgba(217,119,6,0.15);
    }
    .gallery-item .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 1rem;
    }
    .gallery-item:hover .overlay {
      opacity: 1;
    }
    .gallery-item .overlay .label {
      font-size: 0.65rem;
      color: var(--ivory);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 400;
    }
    /* lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .lightbox.open {
      display: flex;
    }
    .lightbox img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border: 1px solid rgba(217,119,6,0.2);
      box-shadow: 0 0 80px rgba(217,119,6,0.06);
      animation: lbFadeIn 0.3s ease;
    }
    @keyframes lbFadeIn {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }
    .lightbox .lb-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      font-size: 2rem;
      color: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: color 0.2s;
      background: none;
      border: none;
      font-family: inherit;
    }
    .lightbox .lb-close:hover {
      color: var(--story-amber);
    }
    .lightbox .lb-counter {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.3);
      font-family: 'Montserrat', sans-serif;
    }
    .lightbox .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255,255,255,0.25);
      font-size: 2.5rem;
      cursor: pointer;
      transition: color 0.2s, transform 0.2s;
      background: none;
      border: none;
      font-family: inherit;
      padding: 1rem;
    }
    .lightbox .lb-nav:hover {
      color: var(--story-amber);
    }
    .lightbox .lb-nav.lb-prev { left: 0.5rem; }
    .lightbox .lb-nav.lb-next { right: 0.5rem; }
    .lightbox .lb-nav:hover.lb-prev { transform: translateY(-50%) translateX(-2px); }
    .lightbox .lb-nav:hover.lb-next { transform: translateY(-50%) translateX(2px); }
    .page-section {
      display: none;
    }
    .page-section.active {
      display: block;
    }
    /* talent cards */
    .talent-card {
      background: rgba(17,17,17,0.5);
      border: 1px solid rgba(217,119,6,0.08);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s;
    }
    .talent-card:hover {
      border-color: rgba(217,119,6,0.4);
      background: rgba(217,119,6,0.04);
    }
    .talent-card .icon {
      font-size: 2.8rem;
      margin-bottom: 0.5rem;
    }

    /* redesigned home landing */
    .landing-shell {
      min-height: 100vh;
      padding-top: clamp(5.8rem, 10vw, 7.8rem);
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background: #030303;
    }
    .landing-bg-video-wrap {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 100vw;
      transform: translateX(-50%);
      z-index: -2;
    }
    .landing-bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: auto;
      min-height: 100%;
      transform: translate(-50%, -50%);
      filter: brightness(0.52) contrast(1.06) saturate(0.92);
    }
    .landing-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 50% 78%, rgba(217, 119, 6, 0.12) 0%, rgba(0, 0, 0, 0) 42%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.64) 0%, rgba(6, 6, 6, 0.58) 55%, rgba(4, 4, 4, 0.78) 100%);
    }
    .landing-max {
      max-width: 1280px;
      position: relative;
      z-index: 1;
    }
    .landing-meta {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      color: rgba(244, 241, 234, 0.82);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .landing-meta .meta-line {
      width: 2.1rem;
      height: 1px;
      background: rgba(217, 119, 6, 0.95);
    }
    .landing-brand {
      margin-top: 0.8rem;
      margin-bottom: 1.75rem;
    }
    .landing-brand img {
      width: min(21rem, 62vw);
      height: auto;
      filter: saturate(1.08) drop-shadow(0 20px 44px rgba(0, 0, 0, 0.5));
    }
    .landing-frame {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr);
      gap: 0;
      border-radius: 0.75rem;
      overflow: hidden;
    }
    .landing-ghost,
    .landing-video-card {
      min-height: clamp(280px, 37vw, 520px);
      border: 1px solid rgba(244, 241, 234, 0.16);
      background: linear-gradient(150deg, rgba(12, 12, 12, 0.96), rgba(4, 4, 4, 0.98));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }
    .landing-video-card {
      position: relative;
      border-left: none;
      border-right: none;
      overflow: hidden;
    }
    .landing-video-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(0.72) contrast(1.06) saturate(0.96);
      transform: scale(1.01);
    }
    .landing-video-iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 56.25vw;
      min-height: 100%;
      min-width: 100%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      filter: brightness(0.72) contrast(1.06) saturate(0.96);
      border: none;
    }

    .landing-title-wrap {
      text-align: center;
      margin-top: 2.4rem;
      margin-bottom: 1.45rem;
    }
    .landing-title {
      display: inline-flex;
      align-items: baseline;
      gap: 0.55rem;
      line-height: 1;
      font-size: clamp(2rem, 4.2vw, 4.15rem);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: #f8f8f8;
    }
    .landing-title span:last-child {
      color: var(--story-amber);
    }
    .landing-journey {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      gap: 0.5rem;
      align-items: start;
      margin-top: 0.7rem;
    }
    .journey-step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.95rem;
      align-items: start;
      min-height: 130px;
      padding: 0.85rem 0.25rem;
      transition: transform 0.25s ease;
    }
    .journey-step:hover {
      transform: translateY(-3px);
    }
    .journey-icon {
      width: 4.4rem;
      height: 4.4rem;
      border-radius: 999px;
      border: 1px solid rgba(217, 119, 6, 0.62);
      display: grid;
      place-items: center;
      color: var(--story-amber);
      flex-shrink: 0;
    }
    .journey-icon svg {
      width: 2.05rem;
      height: 2.05rem;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.45;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .journey-step h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.75rem;
      line-height: 1.05;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #f4f4f4;
      margin-top: 0.1rem;
    }
    .journey-step p {
      margin-top: 0.55rem;
      color: rgba(244, 241, 234, 0.72);
      font-size: 1.24rem;
      line-height: 1.45;
      max-width: 17ch;
    }
    .journey-arrow {
      color: rgba(217, 119, 6, 0.84);
      font-size: 2.3rem;
      line-height: 1;
      margin-top: 1.45rem;
      padding: 0 0.2rem;
    }

    @media (max-width: 1100px) {
      .landing-journey {
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.4rem;
      }
      .journey-arrow {
        display: none;
      }
      .journey-step p {
        font-size: 1.05rem;
      }
    }

    @media (max-width: 860px) {
      .landing-frame {
        grid-template-columns: 1fr;
      }
      .landing-ghost {
        display: none;
      }
      .landing-video-card {
        border-left: 1px solid rgba(244, 241, 234, 0.16);
        border-right: 1px solid rgba(244, 241, 234, 0.16);
      }
      .landing-title {
        flex-direction: column;
        gap: 0.25rem;
      }
    }

    @media (max-width: 640px) {
      .hero-title { font-size: 3.8rem; line-height: 1; }
      .landing-meta {
        font-size: 0.58rem;
        gap: 0.5rem;
      }
      .landing-meta .meta-line {
        width: 1.2rem;
      }
      .landing-brand {
        margin-bottom: 1.2rem;
      }
      .landing-video-card {
        min-height: 228px;
      }

      .landing-title-wrap {
        margin-top: 1.5rem;
      }
      .landing-title {
        font-size: clamp(1.75rem, 8.8vw, 2.2rem);
      }
      .landing-journey {
        grid-template-columns: 1fr;
        margin-top: 0.3rem;
      }
      .journey-step {
        padding: 0.75rem 0;
      }
      .journey-icon {
        width: 3.6rem;
        height: 3.6rem;
      }
      .journey-icon svg {
        width: 1.65rem;
        height: 1.65rem;
      }
      .journey-step h3 {
        font-size: 1.22rem;
      }
      .journey-step p {
        font-size: 0.95rem;
        max-width: none;
      }
    }