:root {
      --bg: #0a0d11;
      --bg-elevated: #0f1318;
      --rule: #1f252c;
      --rule-bright: #2a3138;

      --ink: #ffffff;
      --ink-2: #c8cdd4;
      --ink-3: #8e98a3;
      --ink-mute: #5d6c7b;

      --gold: #c89853;
      --gold-bright: #d4a85f;

      --display: 'Archivo', system-ui, sans-serif;
      --mono: 'Source Code Pro', ui-monospace, monospace;

      --width: 1280px;
      --gutter: clamp(1.25rem, 3vw, 2.5rem);
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      background: var(--bg);
      color: var(--ink-3);
      font-family: var(--display);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
    img, svg { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    h1, h2, h3, h4, p { margin: 0; }

    .container {
      max-width: var(--width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    /* ===== Eyebrow / micro labels ===== */
    .eyebrow {
      font-family: var(--mono);
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 500;
    }
    .eyebrow--gold { color: var(--gold); }
    .eyebrow .dot {
      display: inline-block; width: 3px; height: 3px;
      background: currentColor; border-radius: 50%;
      vertical-align: middle; margin: 0 .65em;
      opacity: .7;
    }

    /* ===== Nav ===== */
    .nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      padding: 1.25rem 0;
      transition: background-color .25s ease, backdrop-filter .25s ease, padding .25s ease;
    }
    .nav.is-scrolled {
      background: rgba(10, 13, 17, .85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: .85rem 0;
      border-bottom: 1px solid var(--rule);
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav__brand img {
      height: 28px;
      width: auto;
      filter: brightness(1.05);
    }
    .nav__links {
      display: flex;
      gap: 2.25rem;
      align-items: center;
    }
    .nav__links a {
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .04em;
      color: var(--ink-2);
      transition: color .18s ease;
    }
    .nav__links a:hover { color: var(--gold); }
    .nav__cta {
      font-family: var(--mono);
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink);
      padding: .6rem 1rem;
      border: 1px solid var(--rule-bright);
      border-radius: 999px;
      transition: border-color .2s ease, background-color .2s ease, color .2s ease;
    }
    .nav__cta:hover { border-color: var(--gold); color: var(--gold); }
    .nav__burger { display: none; }

    /* ===== Hero ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 0 4rem;
    }
    .hero__media {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero__media video,
    .hero__media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.6s ease-in-out;
    }
    .hero__media video.is-active,
    .hero__media img.is-active { opacity: .62; }
    .hero__media::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse at center, rgba(10,13,17,0) 0%, rgba(10,13,17,.35) 75%),
        linear-gradient(to bottom, rgba(10,13,17,.15) 0%, rgba(10,13,17,.6) 100%);
    }
    .hero__inner {
      position: relative;
      z-index: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2.5rem;
    }
    .hero__badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .8rem;
      text-align: center;
    }
    .hero__badge img {
      width: clamp(96px, 13vw, 140px);
      height: auto;
      filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .5));
      transition: transform .25s ease;
    }
    .hero__badge:hover img { transform: translateY(-2px) scale(1.02); }
    .hero__badge__label {
      font-family: var(--mono);
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .hero__badge__label span { color: var(--ink-mute); margin: 0 .5em; }
    .hero__quote {
      font-family: var(--display);
      font-weight: 300;
      color: var(--ink);
      font-size: clamp(1.85rem, 4.8vw, 4rem);
      line-height: 1.18;
      letter-spacing: -.012em;
      max-width: 22ch;
      margin: 0 auto;
    }
    .hero__quote .em {
      font-weight: 500;
      font-style: italic;
      color: var(--gold-bright);
    }
    .hero__attrib {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: var(--ink-mute);
      font-family: var(--mono);
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .hero__attrib .forbes {
      height: 18px;
      width: auto;
      filter: brightness(0) invert(1) opacity(.7);
    }
    .hero__attrib .rule {
      width: 28px; height: 1px; background: var(--rule-bright);
    }
    .hero__location {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      color: var(--ink-mute);
      font-family: var(--mono);
      font-size: .7rem;
      letter-spacing: .25em;
      text-transform: uppercase;
    }

    /* ===== Intro ===== */
    .intro {
      padding: 7rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .intro::before {
      content: '';
      position: absolute;
      inset: -30% -10% auto;
      height: 100%;
      background: radial-gradient(ellipse at 70% 30%, rgba(108, 168, 220, .11) 0%, transparent 60%);
      pointer-events: none;
    }
    .intro > .container { position: relative; z-index: 1; }
    /* Merged layout: SELA video nested inside the intro section */
    .intro:has(.intro__feature) { padding-bottom: 8rem; }
    .intro__feature { margin-top: clamp(2.5rem, 5vw, 4rem); }
    .intro__grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: clamp(2rem, 6vw, 6rem);
      align-items: start;
    }
    .intro__label {
      position: sticky; top: 6rem;
    }
    .intro__title {
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      line-height: 1.25;
      color: var(--ink);
      font-weight: 500;
      letter-spacing: -.005em;
    }
    .intro__title .gold { color: var(--gold); }
    .intro__body p {
      font-size: 1.05rem;
      color: var(--ink-2);
      margin-top: 1.4rem;
      line-height: 1.65;
    }
    .intro__body p:first-child { margin-top: 0; }
    .intro__body strong { color: var(--ink); font-weight: 600; }

    /* ===== Featured Work ===== */
    .work {
      padding: 6rem 0 8rem;
      border-top: 1px solid var(--rule);
      position: relative;
      overflow: hidden;
    }

    /* ===== Work List (dedicated work page editorial layout) ===== */
    .work-list {
      padding: 4.5rem 0 6rem;
      border-top: 1px solid var(--rule);
    }
    .work-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
      padding: clamp(3rem, 6vw, 5.5rem) 0;
      border-bottom: 1px solid var(--rule);
    }
    .work-item:last-of-type { border-bottom: none; }
    .wi__text { max-width: 480px; }
    .wi__title {
      margin: 1rem 0 1.25rem;
      font-size: clamp(1.65rem, 3.2vw, 2.6rem);
      font-weight: 500;
      letter-spacing: -.015em;
      line-height: 1.15;
      color: var(--ink);
    }
    .wi__blurb {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--ink-2);
      margin: 0 0 1.5rem;
    }
    .wi__blurb strong { color: var(--ink); font-weight: 500; }
    .wi__credit {
      font-family: var(--mono);
      font-size: .68rem;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-bottom: 1.75rem;
      line-height: 1.7;
    }
    .wi__credit a { color: var(--ink-3); text-decoration: underline; text-decoration-color: rgba(200,152,83,.35); text-underline-offset: 3px; }
    .wi__credit a:hover { color: var(--gold); }
    .wi__award {
      display: flex;
      width: fit-content;
      align-items: center;
      gap: .85rem;
      padding: .25rem 0 .25rem 1rem;
      margin-bottom: 1.75rem;
      border-left: 2px solid var(--gold);
    }
    .wi__award img { width: 42px; height: 42px; display: block; }
    .wi__award-title {
      font-family: var(--mono);
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      line-height: 1.4;
    }
    .wi__award-sub {
      font-family: var(--mono);
      font-size: .65rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-mute);
      line-height: 1.4;
    }
    .wi__link {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: var(--mono);
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      padding-bottom: 4px;
      border-bottom: 1px solid rgba(200,152,83,.4);
      transition: border-color .25s ease, color .25s ease;
    }
    .wi__link:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }
    .wi__link .arr { transition: transform .25s ease; }
    .wi__link:hover .arr { transform: translateX(3px); }
    .wi__media {
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      background: var(--bg-elevated);
      aspect-ratio: 16 / 9;
      border-bottom: 1px solid rgba(200, 152, 83, 0.40);
      box-shadow:
        0 5px 12px -2px rgba(200, 152, 83, 0.17),
        0 12px 24px -10px rgba(200, 152, 83, 0.11);
      transition: box-shadow .35s ease, border-color .35s ease, transform .3s ease;
    }
    .wi__media:hover {
      border-bottom-color: rgba(200, 152, 83, 0.65);
      box-shadow:
        0 7px 16px -2px rgba(200, 152, 83, 0.25),
        0 16px 32px -10px rgba(200, 152, 83, 0.16);
    }
    .wi__media video,
    .wi__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s cubic-bezier(.2,.6,.2,1), filter .4s ease;
      filter: brightness(.88);
    }
    .wi__media:hover video,
    .wi__media:hover img { transform: scale(1.03); filter: brightness(1); }
    @media (max-width: 760px) {
      .work-item {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 3rem 0;
      }
    }
    .work::before {
      content: '';
      position: absolute;
      inset: -10% -10% auto;
      height: 60%;
      background: radial-gradient(ellipse at 50% 0%, rgba(180, 200, 220, .08) 0%, transparent 65%);
      pointer-events: none;
    }
    .work > .container { position: relative; z-index: 1; }
    .work__head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 2rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }
    .work__title {
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      color: var(--ink);
      font-weight: 500;
      letter-spacing: -.005em;
    }
    .work__count {
      color: var(--ink-mute);
    }
    .work__grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1.5rem;
    }
    .tile {
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      background: var(--bg-elevated);
      border-bottom: 1px solid rgba(180, 200, 220, 0.40);
      box-shadow:
        0 5px 12px -2px rgba(180, 200, 220, 0.17),
        0 12px 24px -10px rgba(180, 200, 220, 0.11);
      transition: box-shadow .35s ease, border-color .35s ease, transform .3s ease;
    }
    .tile:hover {
      border-bottom-color: rgba(180, 200, 220, 0.65);
      box-shadow:
        0 7px 16px -2px rgba(180, 200, 220, 0.25),
        0 16px 32px -10px rgba(180, 200, 220, 0.16);
    }
    .tile--feature { grid-column: span 6; }
    .tile--half { grid-column: span 3; }
    .tile--third { grid-column: span 2; }
    .tile__img {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      position: relative;
    }
    .tile--feature .tile__img { aspect-ratio: 21 / 9; }
    .tile__img img,
    .tile__img video {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s cubic-bezier(.2,.6,.2,1), filter .4s ease;
      filter: brightness(.85);
    }
    .tile:hover .tile__img img,
    .tile:hover .tile__img video { transform: scale(1.04); filter: brightness(1); }
    .tile__overlay {
      position: absolute;
      inset: auto 0 0 0;
      padding: 1.5rem 1.25rem;
      background: linear-gradient(to top, rgba(10,13,17,.9) 0%, rgba(10,13,17,0) 100%);
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }
    .tile__name {
      color: var(--ink);
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: -.005em;
    }
    .tile--feature .tile__name { font-size: 1.5rem; }
    .tile__credit {
      font-family: var(--mono);
      font-size: .68rem;
      letter-spacing: .08em;
      color: var(--ink-mute);
      text-transform: uppercase;
    }
    .tile__badge {
      position: absolute;
      top: 1rem; left: 1rem;
      width: 64px;
      height: 64px;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
      transition: transform .25s ease;
    }
    .tile:hover .tile__badge { transform: rotate(-4deg) scale(1.05); }

    /* ===== Disney Spotlight ===== */
    .spotlight {
      padding: 7rem 0 8rem;
      border-top: 1px solid var(--rule);
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .spotlight::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(200,152,83,.14) 0%, transparent 60%);
      pointer-events: none;
    }
    .spotlight__inner { position: relative; z-index: 1; }
    .spotlight__head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 6vw, 5rem);
      align-items: end;
      margin-bottom: 3rem;
    }
    .spotlight__title {
      font-size: clamp(1.75rem, 3.4vw, 2.8rem);
      color: var(--ink);
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -.01em;
      margin-top: 1rem;
    }
    .spotlight__title .gold { color: var(--gold); font-style: italic; font-weight: 400; }
    .spotlight__intro {
      color: var(--ink-2);
      font-size: 1rem;
      line-height: 1.65;
    }
    .spotlight__strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 1rem;
    }
    .stile {
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      background: var(--bg-elevated);
      border-bottom: 1px solid rgba(200, 152, 83, 0.40);
      box-shadow:
        0 4px 10px -2px rgba(200, 152, 83, 0.16),
        0 10px 20px -8px rgba(200, 152, 83, 0.11);
      transition: box-shadow .35s ease, border-color .35s ease;
    }
    .stile:hover {
      border-bottom-color: rgba(200, 152, 83, 0.65);
      box-shadow:
        0 6px 14px -2px rgba(200, 152, 83, 0.24),
        0 14px 28px -8px rgba(200, 152, 83, 0.16);
    }
    .stile--feature {
      display: block;
      margin-bottom: 0;
      border-bottom: 1px solid rgba(200, 152, 83, 0.50);
      box-shadow:
        0 6px 14px -2px rgba(200, 152, 83, 0.19),
        0 14px 28px -10px rgba(200, 152, 83, 0.13);
    }
    .stile--feature:hover {
      border-bottom-color: rgba(200, 152, 83, 0.78);
      box-shadow:
        0 8px 18px -2px rgba(200, 152, 83, 0.27),
        0 18px 36px -10px rgba(200, 152, 83, 0.19);
    }
    .stile--feature .stile__media {
      aspect-ratio: 21 / 9;
    }
    .stile__media {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }
    .stile__media video {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(.92) saturate(1.05);
      transition: filter .35s ease, transform .5s cubic-bezier(.2,.6,.2,1);
    }
    .stile:hover .stile__media video { filter: brightness(1.08) saturate(1.1); transform: scale(1.03); }
    .stile__label {
      position: absolute;
      inset: auto 0 0 0;
      padding: 1.5rem 1.25rem 1.1rem;
      background: linear-gradient(to top, rgba(10,13,17,.92), rgba(10,13,17,0));
      color: var(--ink);
      font-family: var(--display);
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: -.005em;
    }
    .stile__label--feature {
      font-size: clamp(1.4rem, 2.4vw, 2rem);
      padding: 3rem 2rem 1.75rem;
      letter-spacing: -.01em;
    }
    .spotlight__foot {
      margin-top: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      padding-top: 2rem;
      border-top: 1px solid var(--rule);
    }
    .spotlight__foot-left {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    .spotlight__foot img.seal { width: 56px; height: auto; flex-shrink: 0; }
    .spotlight__foot .credit-block {
      font-family: var(--mono);
      font-size: .72rem;
      letter-spacing: .08em;
      line-height: 1.55;
      color: var(--ink-mute);
    }
    .spotlight__foot .credit-block strong { color: var(--gold); font-weight: 600; }
    .spotlight__cta {
      font-family: var(--mono);
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-2);
      padding: .65rem 1.1rem;
      border: 1px solid var(--rule-bright);
      border-radius: 999px;
      transition: border-color .2s ease, color .2s ease;
    }
    .spotlight__cta:hover { border-color: var(--gold); color: var(--gold); }

    /* ===== Feature (contextual SELA reel with caption) ===== */
    .feature {
      padding: 5rem 0 7rem;
      position: relative;
      overflow: hidden;
    }
    .feature__head { margin-bottom: 2.25rem; max-width: 720px; }
    .feature__title {
      margin: 1rem 0 0;
      font-size: clamp(1.4rem, 2.6vw, 2.1rem);
      color: var(--ink);
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: -.005em;
    }
    .feature__title .gold { color: var(--gold); font-style: italic; font-weight: 500; }
    .feature::before {
      content: '';
      position: absolute;
      inset: -10% -10% auto;
      height: 100%;
      background: radial-gradient(ellipse at 50% 50%, rgba(200, 152, 83, .12) 0%, transparent 60%);
      pointer-events: none;
    }
    .feature > .container { position: relative; z-index: 1; }
    .feature__video {
      width: 100%;
      aspect-ratio: 848 / 346;
      background: #000;
      line-height: 0;
      border-radius: 3px;
      overflow: hidden;
      border-bottom: 1px solid rgba(200, 152, 83, 0.50);
      box-shadow:
        0 8px 18px -2px rgba(200, 152, 83, 0.18),
        0 20px 40px -12px rgba(200, 152, 83, 0.13);
    }
    .feature__video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .feature__caption {
      margin-top: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 1rem 2rem;
      flex-wrap: wrap;
      font-family: var(--mono);
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      line-height: 1.7;
    }
    .feature__caption-project {
      color: var(--gold);
      font-weight: 600;
    }
    .feature__caption-credit {
      color: var(--ink-mute);
      text-align: right;
    }
    .feature__caption-sub {
      color: var(--ink-mute);
      opacity: .8;
    }
    @media (max-width: 640px) {
      .feature__caption { flex-direction: column; align-items: flex-start; gap: .4rem; }
      .feature__caption-credit { text-align: left; }
    }

    /* ===== Services ===== */
    .services {
      padding: 7rem 0 8rem;
      border-top: 1px solid var(--rule);
      background: var(--bg-elevated);
      position: relative;
      overflow: hidden;
    }
    .services > .container { position: relative; z-index: 1; }
    .services::before {
      content: '';
      position: absolute;
      inset: -30% -10% auto;
      height: 80%;
      background: radial-gradient(ellipse at 30% 50%, rgba(180, 200, 220, .09) 0%, transparent 60%);
      pointer-events: none;
    }
    .services__head { margin-bottom: 4rem; max-width: 700px; }
    .services__intro {
      font-size: clamp(1.4rem, 2.6vw, 2.1rem);
      color: var(--ink);
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: -.005em;
      margin-top: 1.2rem;
    }
    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .service {
      padding: 2rem 0 0;
      border-top: 1px solid var(--rule-bright);
      position: relative;
    }
    .service::before {
      content: '';
      position: absolute;
      top: -1px; left: 0;
      width: 32px; height: 1px;
      background: var(--gold);
    }
    .service__num {
      font-family: var(--mono);
      font-size: .72rem;
      letter-spacing: .15em;
      color: var(--gold);
      margin-bottom: .8rem;
    }
    .service__name {
      color: var(--ink);
      font-size: 1.35rem;
      font-weight: 600;
      letter-spacing: -.005em;
      margin-bottom: .85rem;
    }
    .service__desc {
      color: var(--ink-3);
      font-size: .98rem;
      line-height: 1.6;
    }

    /* ===== Press ===== */
    .press {
      padding: 2.5rem 0 3rem;
      position: relative;
      overflow: hidden;
    }
    .press::before {
      content: '';
      position: absolute;
      inset: -50% -10%;
      background: radial-gradient(ellipse at center, rgba(190, 200, 215, .09) 0%, transparent 65%);
      pointer-events: none;
    }
    .press > .container { position: relative; z-index: 1; }
    .press__label { text-align: center; margin-bottom: 2.5rem; }
    .press__strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: clamp(.75rem, 1.8vw, 2rem) clamp(1.5rem, 3vw, 3rem);
      opacity: .55;
      filter: grayscale(1) brightness(2.4);
    }
    .press-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .press-logo img {
      display: block;
      width: auto;
      height: 24px; /* default */
    }
    /* Per-logo height tuning — each logo's intrinsic viewBox and visual density
       are different, so they each need their own target height to read as equal weight. */
    .press-logo[data-logo="forbes"]   img { height: 26px; }
    .press-logo[data-logo="time"]     img { height: 60px; }
    .press-logo[data-logo="vogue"]    img { height: 22px; }
    .press-logo[data-logo="bbc"]      img { height: 60px; }
    .press-logo[data-logo="cnn"]      img { height: 26px; }
    .press-logo[data-logo="nbc"]      img { height: 64px; }
    .press-logo[data-logo="cbs"]      img { height: 76px; }
    .press-logo[data-logo="today"]    img { height: 32px; }
    .press-logo[data-logo="timeout"]  img { height: 60px; }
    .press-logo[data-logo="buzzfeed"] img { height: 18px; }
    .press-logo[data-logo="oneshow"]  img { height: 34px; }

    /* ===== CTA ===== */
    .cta {
      padding: 8rem 0 9rem;
      text-align: center;
      border-top: 1px solid var(--rule);
      position: relative;
      overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute;
      inset: -50% -10% auto;
      height: 120%;
      background: radial-gradient(ellipse at center, rgba(200,152,83,.16) 0%, transparent 60%);
      pointer-events: none;
    }
    /* ===== Plexus (per-section background) ===== */
    .plexus {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    /* Slow breathing for section ambient glows. Each section gets its own
       timing so they fall out of sync as you scroll past, creating subtle life. */
    @keyframes breathe {
      0%, 100% { opacity: 0.6; }
      50%      { opacity: 1; }
    }
    .intro::before    { animation: breathe 11s ease-in-out infinite;        }
    .press::before    { animation: breathe  8s ease-in-out infinite -2s;    }
    .feature::before  { animation: breathe  9s ease-in-out infinite -4s;    }
    .work::before     { animation: breathe 12s ease-in-out infinite -1s;    }
    .spotlight::before{ animation: breathe  7s ease-in-out infinite -3s;    }
    .services::before { animation: breathe 10s ease-in-out infinite -5s;    }
    .cta::before      { animation: breathe  9s ease-in-out infinite -1s;    }
    @media (prefers-reduced-motion: reduce) {
      .intro::before, .press::before, .feature::before, .work::before,
      .spotlight::before, .services::before, .cta::before { animation: none; }
    }
    .cta__inner { position: relative; z-index: 1; }
    .cta__title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--ink);
      font-weight: 300;
      line-height: 1.2;
      letter-spacing: -.012em;
      max-width: 22ch;
      margin: 0 auto;
    }
    .cta__title .gold { color: var(--gold); font-weight: 500; font-style: italic; }
    .cta__btn {
      display: inline-flex;
      align-items: center;
      gap: .8rem;
      margin-top: 2.5rem;
      padding: 1rem 1.6rem;
      background: var(--gold);
      color: var(--bg);
      font-family: var(--mono);
      font-size: .78rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 999px;
      transition: background-color .2s ease, transform .2s ease;
    }
    .cta__btn:hover { background: var(--gold-bright); transform: translateY(-1px); }
    .cta__btn svg { width: 14px; height: 14px; }

    /* ===== Footer ===== */
    .foot {
      padding: 3rem 0 2.5rem;
      border-top: 1px solid var(--rule);
    }
    .foot__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .foot__brand img { height: 22px; opacity: .6; }
    .foot__meta {
      color: var(--ink-mute);
      font-family: var(--mono);
      font-size: .7rem;
      letter-spacing: .08em;
    }
    .foot__links {
      display: flex; gap: 1.5rem;
    }
    .foot__links a {
      font-family: var(--mono);
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-mute);
      transition: color .2s ease;
    }
    .foot__links a:hover { color: var(--gold); }

    /* ===== Responsive ===== */
    @media (max-width: 960px) {
      .intro__grid { grid-template-columns: 1fr; gap: 2rem; }
      .intro__label { position: static; }
      .work__grid { grid-template-columns: repeat(4, 1fr); }
      .tile--feature { grid-column: span 4; }
      .tile--half { grid-column: span 2; }
      .tile--third { grid-column: span 2; }
      .services__grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .spotlight__head { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
      .spotlight__strip { grid-template-columns: repeat(2, 1fr); }
      .stile--feature .stile__media { aspect-ratio: 16 / 9; }
      .stile__label--feature { font-size: 1.4rem; padding: 2rem 1.25rem 1.25rem; }
    }
    @media (max-width: 640px) {
      .nav__links { display: none; }
      .nav__cta { display: none; }
      .nav__burger {
        display: block;
        font-family: var(--mono);
        font-size: .72rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--ink-2);
      }
      .hero { padding: 7rem 0 3rem; }
      .work__grid { grid-template-columns: 1fr; gap: 1.25rem; }
      .tile--feature, .tile--half, .tile--third { grid-column: span 1; }
      .tile__img { aspect-ratio: 16 / 10; }
      .tile--feature .tile__img { aspect-ratio: 16 / 10; }
      .foot__inner { flex-direction: column; align-items: flex-start; }
      .spotlight__strip { grid-template-columns: 1fr; }
    }

/* ============================================================
   Page-specific additions for project, work, press, careers, contact
   ============================================================ */

/* --- Sub-page hero (shorter than home hero) --- */
.subhero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 3.5rem;
  background: var(--bg-elevated);
}
.subhero__media { position: absolute; inset: 0; z-index: 0; }
.subhero__media video,
.subhero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.subhero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,13,17,.3) 0%, rgba(10,13,17,.82) 100%);
}
.subhero__inner { position: relative; z-index: 1; }
.subhero__eyebrow { margin-bottom: 1.5rem; }
.subhero__title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.015em;
  max-width: 22ch;
  margin: 0;
}
.subhero__title .em { color: var(--gold); font-weight: 500; font-style: italic; }
.subhero__credit {
  margin-top: 2rem;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 65ch;
}
.subhero__credit b { color: var(--ink-2); font-weight: 600; }

/* --- Article body sections --- */
.article {
  padding: 6rem 0;
  border-top: 1px solid var(--rule);
}
.article + .article { padding-top: 4rem; }
.article__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.article__label { position: sticky; top: 6rem; }
.article__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.005em;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}
.article__body p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1.4rem;
}
.article__body p:first-child { margin-top: 0; }
.article__body strong { color: var(--ink); font-weight: 600; }
.article__body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(200, 152, 83, .35);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.article__body a:hover { color: var(--gold-bright); text-decoration-color: var(--gold-bright); }

/* --- Gallery (for project pages) --- */
.gallery {
  padding: 4rem 0 6rem;
  border-top: 1px solid var(--rule);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
  border-radius: 3px;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.6,.2,1);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 8 / 3; }

/* --- Pager (prev/next project) --- */
.pager {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pager a {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  transition: color .2s ease;
}
.pager a:hover { color: var(--gold); }
.pager .arr { color: var(--gold); }

/* --- Press page --- */
.press-list { padding: 4rem 0 6rem; }
.press-block { padding: 3rem 0; border-top: 1px solid var(--rule); }
.press-block__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.press-block__name {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.005em;
}
.press-block__count {
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.press-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem 2rem;
}
.press-item {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  transition: padding .2s ease;
}
.press-item:hover { padding-left: .6rem; }
.press-item__publisher {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.press-item__title {
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.4;
  transition: color .2s ease;
}
.press-item:hover .press-item__title { color: var(--ink); }
.press-item__arr {
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: .8rem;
  transition: color .2s ease, transform .2s ease;
}
.press-item:hover .press-item__arr { color: var(--gold); transform: translateX(4px); }

/* --- Careers page --- */
.careers-criteria {
  padding: 5rem 0 7rem;
  border-top: 1px solid var(--rule);
}
.careers-criteria__intro {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
  max-width: 60ch;
  margin: 1.5rem 0 4rem;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}
.criterion {
  padding-top: 2rem;
  border-top: 1px solid var(--rule-bright);
  position: relative;
}
.criterion::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 32px; height: 1px;
  background: var(--gold);
}
.criterion__name {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.005em;
  margin-bottom: .7rem;
}
.criterion__body {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.55;
}

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 6rem 0 8rem;
  border-top: 1px solid var(--rule);
}
.contact-block { padding-top: 2rem; border-top: 1px solid var(--rule-bright); position: relative; }
.contact-block::before {
  content: '';
  position: absolute; top: -1px; left: 0;
  width: 32px; height: 1px; background: var(--gold);
}
.contact-block__label {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-block__value {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.contact-block__value a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule-bright);
  transition: color .2s ease, border-color .2s ease;
}
.contact-block__value a:hover { color: var(--gold); border-color: var(--gold); }

/* --- Nav: highlight current page --- */
.nav__links a.is-current { color: var(--gold); }

@media (max-width: 960px) {
  .article__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .article__label { position: static; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; aspect-ratio: 8 / 3; }
  .press-block__grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide { aspect-ratio: 16/10; grid-column: span 1; }
  .press-item { grid-template-columns: 1fr auto; }
  .press-item__publisher { grid-column: 1 / -1; margin-bottom: -.5rem; }
}


/* ===== Contact form (propeller) ===== */
.pl-form {
  max-width: 720px;
  margin: 0 0 4rem;
  display: grid;
  gap: 2.25rem;
}
.pl-form__row {
  display: grid;
  gap: .55rem;
}
.pl-form__label {
  font-family: 'Source Code Pro', monospace;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pl-form__opt {
  font-size: .58rem;
  letter-spacing: .15em;
  color: var(--ink-mute);
  margin-left: .5rem;
  text-transform: lowercase;
}
.pl-form__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 205, 212, 0.18);
  padding: .9rem 0 .8rem;
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.pl-form__input::placeholder { color: var(--ink-mute); opacity: .55; }
.pl-form__input:hover { border-bottom-color: rgba(200, 205, 212, 0.35); }
.pl-form__input:focus {
  border-bottom-color: var(--gold);
  box-shadow: 0 6px 14px -8px rgba(200, 152, 83, 0.5);
}
.pl-form__select {
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
                    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 16px) 22px, calc(100% - 10px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.pl-form__select option { background: var(--bg); color: var(--ink); }
.pl-form__textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.55;
  padding-top: 1rem;
}
.pl-form__row--submit {
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: 1rem;
}
.pl-form__submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  background: transparent;
  border: 1px solid rgba(200, 152, 83, 0.55);
  color: var(--ink);
  font-family: 'Source Code Pro', monospace;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.pl-form__submit:hover {
  background: rgba(200, 152, 83, 0.10);
  border-color: var(--gold-bright);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(200, 152, 83, 0.6);
}
.pl-form__submit .arr { transition: transform .25s ease; }
.pl-form__submit:hover .arr { transform: translateX(4px); }
.pl-form__note {
  font-family: 'Source Code Pro', monospace;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.6;
}
.nav__cta.is-current { background: var(--gold); color: var(--bg); }

    /* Global plexus: fixed full-viewport, sits behind all page content.
       Used on every page except the homepage (which has its own per-section instances). */
    .plexus--global {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      pointer-events: none;
      z-index: 0;
    }
    /* Make sure main content layers above the global plexus.
       Nav already has z-index 10 + foot inherits visual stacking. */
    body > section,
    body > header,
    body > footer.foot {
      position: relative;
      z-index: 1;
    }
