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

    :root {
      --paper: #EEEAE3;
      --paper-2: #E2DED5;
      --ink: #0F0F0F;
      --ink-soft: #2a2a2a;
      --muted: #807C75;
      --line: rgba(15,15,15,0.14);
      --accent: #0F0F0F;
      --dark: #0a0a0a;
      --dark-2: #141414;
      --sans: 'IBM Plex Sans', -apple-system, sans-serif;
      --serif: 'IBM Plex Sans', sans-serif;
      --mono: 'IBM Plex Mono', monospace;
    }

    /* em — same as parent text (clean unified typography) */
    em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 110px;
    }
    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-feature-settings: "ss01", "cv11";
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { border: none; background: none; color: inherit; font: inherit; cursor: pointer; }
    img, video { display: block; max-width: 100%; }
    ::selection { background: var(--ink); color: var(--paper); }

    /* ── TOP BAR ── */
    .topbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      color: var(--ink);
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      transition: background 0.3s, color 0.3s, border-color 0.3s;
    }
    .topbar.dark {
      background: var(--dark);
      color: var(--paper);
      border-color: rgba(255,255,255,0.08);
    }
    .topbar-left, .topbar-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .topbar-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 44px; left: 0; right: 0;
      z-index: 99;
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.3s;
    }
    nav.scrolled {
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      padding: 16px 24px;
    }
    nav.dark.scrolled {
      background: var(--dark);
      border-color: rgba(255,255,255,0.08);
    }
    .logo {
      font-family: var(--sans);
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.025em;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .logo::after {
      content: '®';
      font-family: var(--serif);
      font-style: italic;
      font-weight: 400;
      font-size: 17px;
      color: var(--accent);
    }
    .menu {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .menu a {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: -0.01em;
      position: relative;
      padding: 4px 0;
    }
    .menu a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: currentColor;
      transition: width 0.3s ease;
    }
    .menu a:hover::after { width: 100%; }
    .nav-cta {
      font-size: 14px;
      font-weight: 500;
      padding: 10px 20px;
      border: 1px solid currentColor;
      border-radius: 100px;
      transition: all 0.3s;
    }
    .nav-cta:hover {
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
    }
    nav.dark .nav-cta:hover {
      background: var(--paper);
      color: var(--ink);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      padding: 140px 24px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }
    .hero-tag {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-tag::before {
      content: '';
      width: 32px; height: 1px;
      background: var(--ink);
    }
    .hero-title {
      font-family: var(--sans);
      font-size: clamp(44px, 7.5vw, 128px);
      line-height: 0.95;
      letter-spacing: -0.04em;
      font-weight: 500;
      margin-top: 60px;
      max-width: 1600px;
    }
    .hero-title em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .hero-title span.muted { color: var(--muted); }
    .hero-title strong { color: var(--ink); font-weight: 500; }
    .hero-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      align-items: end;
      padding-top: 80px;
      border-top: 1px solid var(--line);
    }
    .hero-meta {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .hero-meta strong {
      display: block;
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 500;
      letter-spacing: -0.01em;
      text-transform: none;
      margin-top: 4px;
      color: var(--ink);
    }
    .hero-showreel {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 14px;
      font-weight: 500;
      justify-self: end;
    }
    .play-circle {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--paper);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .play-circle svg { width: 14px; fill: currentColor; margin-left: 2px; }
    .hero-showreel:hover .play-circle {
      background: var(--accent);
    }

    /* ── MARQUEE ── */
    .marquee {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
      padding: 18px 0;
      background: var(--paper-2);
    }
    .marquee-track {
      display: flex;
      gap: 56px;
      white-space: nowrap;
      animation: scroll 40s linear infinite;
      width: max-content;
    }
    .marquee-track span {
      font-family: var(--sans);
      font-size: 22px;
      font-weight: 500;
      letter-spacing: -0.015em;
      color: var(--ink);
      white-space: nowrap;
    }
    .marquee-track span em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .marquee-track span::after {
      content: '✦';
      color: var(--accent);
      font-size: 14px;
      margin-left: 24px;
      vertical-align: middle;
    }
    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ── INTRO / MANIFESTO ── */
    .intro {
      padding: 140px 24px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
      border-bottom: 1px solid var(--line);
    }
    .intro-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      position: sticky;
      top: 100px;
    }
    .intro-text {
      font-family: var(--sans);
      font-size: clamp(28px, 3.6vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.025em;
      font-weight: 400;
    }
    .intro-text em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .intro-text span.muted { color: var(--muted); }

    /* ── WORK GRID (Yard style) ── */
    .work {
      padding: 80px 24px 40px;
      border-bottom: 1px solid var(--line);
    }
    .section-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 60px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--line);
    }
    .section-head h2 {
      font-family: var(--sans);
      font-size: clamp(36px, 4.5vw, 72px);
      line-height: 0.95;
      letter-spacing: -0.035em;
      font-weight: 500;
    }
    .section-head h2 em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .section-head .meta {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      text-align: right;
      color: var(--ink);
    }
    .work-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px 24px;
      column-gap: 24px;
      row-gap: 80px;
    }
    .work-item {
      display: block;
      cursor: pointer;
    }
    .work-visual {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      background: var(--paper-2);
      position: relative;
    }
    .work-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(14,14,14,0);
      transition: background 0.4s;
    }
    .work-item:hover .work-visual::after { background: rgba(14,14,14,0.08); }
    .work-img {
      width: 100%; height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .work-item:hover .work-img { transform: scale(1.04); }
    .work-video {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .work-item:hover .work-video { transform: scale(1.04); }
    .work-info {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding-top: 20px;
      gap: 16px;
    }
    .work-info-main h3 {
      font-family: var(--sans);
      font-size: 24px;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 4px;
    }
    .work-info-main .client {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .work-info-cat {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--muted);
      text-align: right;
      line-height: 1.4;
      flex-shrink: 0;
    }
    .work-info-cat strong {
      display: block;
      color: var(--ink);
      font-weight: 500;
    }

    /* ── FEATURED CASE STUDY (Views style — DARK) ── */
    .featured {
      background: var(--dark);
      color: var(--paper);
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .featured-video {
      width: 100%;
      height: 90vh;
      min-height: 600px;
      position: relative;
      overflow: hidden;
    }
    .featured-video video,
    .featured-video .featured-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .featured-img {
      background-size: cover;
      background-position: center;
      filter: contrast(1.1);
    }
    .featured-video::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0) 25%, rgba(10,10,10,0) 60%, rgba(10,10,10,0.95) 100%);
    }
    .featured-content {
      position: absolute;
      bottom: 60px; left: 24px; right: 24px;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
    }
    .featured-tag {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .featured-tag::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--accent);
    }
    .featured-title {
      font-family: var(--sans);
      font-size: clamp(48px, 7vw, 120px);
      line-height: 0.92;
      letter-spacing: -0.04em;
      font-weight: 500;
    }
    .featured-title em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .featured-text p {
      font-size: 16px;
      line-height: 1.55;
      color: rgba(255,255,255,0.7);
      margin-bottom: 16px;
    }
    .featured-text .credits {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.5);
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px 32px;
    }
    .featured-text .credits b {
      color: var(--paper);
      font-weight: 500;
      display: block;
      margin-top: 2px;
    }

    /* ── SERVICES ── */
    .services {
      padding: 100px 24px;
      border-bottom: 1px solid var(--line);
    }
    .service-list {
      list-style: none;
    }
    .service-row {
      border-top: 1px solid var(--line);
      padding: 32px 0;
      display: grid;
      grid-template-columns: 60px minmax(0, 2fr) minmax(0, 3fr) 80px;
      gap: 24px;
      align-items: center;
      transition: padding 0.4s;
      cursor: pointer;
    }
    .service-row:last-child { border-bottom: 1px solid var(--line); }
    .service-row:hover { padding-left: 24px; }
    .service-num {
      font-family: var(--mono);
      font-size: 13px;
      color: var(--accent);
      letter-spacing: 0.5px;
    }
    .service-name {
      font-family: var(--sans);
      font-size: clamp(32px, 4vw, 64px);
      letter-spacing: -0.03em;
      font-weight: 500;
      line-height: 1;
      transition: transform 0.4s;
    }
    .service-row:hover .service-name { transform: translateX(8px); }
    .service-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
      max-width: 460px;
    }
    .service-arrow {
      font-size: 24px;
      color: var(--muted);
      text-align: right;
      transition: all 0.3s;
    }
    .service-row:hover .service-arrow {
      color: var(--accent);
      transform: rotate(-45deg);
    }

    /* ── INITIATIVES (Yard) ── */
    .initiatives {
      padding: 140px 24px;
      background: var(--paper-2);
      border-bottom: 1px solid var(--line);
    }
    .init-tagline {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(28px, 4vw, 56px);
      letter-spacing: -0.02em;
      line-height: 1.05;
      max-width: 1100px;
      margin-bottom: 80px;
    }
    .init-tagline span { color: var(--accent); }
    .init-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .init-item {
      display: block;
    }
    .init-visual {
      width: 100%;
      aspect-ratio: 4/5;
      overflow: hidden;
      background: var(--paper);
      margin-bottom: 16px;
    }
    .init-visual .img {
      width: 100%; height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
    }
    .init-item:hover .img { transform: scale(1.04); }
    .init-name {
      font-family: var(--sans);
      font-size: 20px;
      font-weight: 500;
      letter-spacing: -0.015em;
      margin-bottom: 4px;
    }
    .init-meta {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ── CULTURE — DARK FULL BLEED ── */
    .culture-banner {
      background: var(--dark);
      color: var(--paper);
      padding: 180px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .culture-banner::before {
      content: '';
      position: absolute;
      width: 1000px; height: 1000px;
      background: radial-gradient(circle, rgba(15,15,15,0.18) 0%, transparent 60%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      filter: blur(60px);
    }
    .culture-text {
      font-family: var(--sans);
      font-size: clamp(48px, 9vw, 180px);
      line-height: 0.9;
      letter-spacing: -0.045em;
      font-weight: 500;
      position: relative;
      z-index: 2;
    }
    .culture-text em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .culture-sub {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 32px;
      position: relative;
      z-index: 2;
    }

    /* ── INDEX / CLIENTS ── */
    .clients {
      padding: 100px 24px;
      border-bottom: 1px solid var(--line);
    }
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .client-cell {
      aspect-ratio: 2.4/1;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--sans);
      font-size: 22px;
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--ink);
      transition: background 0.3s, color 0.3s;
      position: relative;
    }
    .client-cell::before {
      content: counter(client, decimal-leading-zero);
      counter-increment: client;
      position: absolute;
      top: 12px; left: 12px;
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.5px;
    }
    .clients-grid { counter-reset: client; }
    .client-cell:hover {
      background: var(--ink);
      color: var(--paper);
    }

    /* ── CONTACT / CTA ── */
    .contact {
      padding: 160px 24px 100px;
      border-bottom: 1px solid var(--line);
    }
    .contact-text {
      font-family: var(--sans);
      font-size: clamp(48px, 8vw, 156px);
      line-height: 0.92;
      letter-spacing: -0.045em;
      font-weight: 500;
      margin-bottom: 80px;
    }
    .contact-text em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .contact-cols {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      padding-top: 40px;
      border-top: 1px solid var(--line);
    }
    .contact-col h4 {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--muted);
      margin-bottom: 12px;
    }
    .contact-col p, .contact-col a {
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.5;
      display: block;
      margin-bottom: 4px;
    }
    .contact-col a:hover { color: var(--accent); }
    .contact-email {
      font-family: var(--sans);
      font-size: clamp(28px, 3vw, 48px) !important;
      font-weight: 500 !important;
      letter-spacing: -0.025em !important;
      margin-bottom: 12px !important;
    }

    /* ── FOOTER ── */
    footer {
      padding: 32px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      align-items: center;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--muted);
    }
    footer .center { text-align: center; }
    footer .right { text-align: right; }
    .footer-big {
      font-family: var(--sans);
      font-size: 22vw;
      line-height: 0.85;
      letter-spacing: -0.06em;
      font-weight: 500;
      text-align: center;
      padding: 60px 0 0;
      color: var(--ink);
    }
    .footer-big em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s ease, transform 1s ease;
    }
    .reveal.in { opacity: 1; transform: none; }

    .stagger > * {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .stagger.in > * { opacity: 1; transform: none; }
    .stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
    .stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
    .stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
    .stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
    .stagger.in > *:nth-child(6) { transition-delay: 0.4s; }

    /* ── IMAGE BANK (real Chromebloom campaigns) ── */
    .img-stockx-hero  { /* media retiré */ }
    .img-stockx-1     { /* media retiré */ }
    .img-stockx-2     { /* media retiré */ }
    .img-stockx-3     { /* media retiré */ }
    .img-travis-hero  { /* media retiré */ }
    .img-travis-1     { /* media retiré */ }
    .img-travis-2     { /* media retiré */ }
    .img-travis-3     { /* media retiré */ }
    .img-psg-hero     { /* media retiré */ }
    .img-psg-1        { /* media retiré */ }
    .img-psg-2        { /* media retiré */ }
    .img-psg-3        { /* media retiré */ }

    /* ── STATEMENT (Sauvage positioning) ── */
    .statement {
      padding: 180px 32px 160px;
      text-align: center;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .statement-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 32px;
    }
    .statement-text {
      font-family: var(--sans);
      font-size: clamp(56px, 11vw, 200px);
      line-height: 0.88;
      letter-spacing: -0.045em;
      font-weight: 500;
    }
    .statement-text em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .statement-sub {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(20px, 2vw, 28px);
      color: var(--muted);
      margin: 40px auto 0;
      max-width: 760px;
      line-height: 1.4;
    }
    .statement-sub em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }

    /* ── DUAL EXPERTISE (Sauvage 2-col) ── */
    .duo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      padding: 100px 32px;
      border-bottom: 1px solid var(--line);
    }
    .duo-pole {
      display: flex;
      flex-direction: column;
    }
    .duo-visual {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(180deg, var(--paper-2) 0%, var(--ink-soft) 200%);
      overflow: hidden;
      margin-bottom: 32px;
      position: relative;
    }
    .duo-pole:nth-child(2) .duo-visual {
      background: linear-gradient(180deg, var(--ink-soft) 0%, var(--dark) 100%);
    }
    .duo-visual > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      z-index: 1;
    }
    .duo-num, .duo-label { z-index: 3; }
    .duo-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
    }
    .duo-num {
      position: absolute;
      top: 24px; left: 24px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 1px;
      color: var(--paper);
      z-index: 2;
    }
    .duo-label {
      position: absolute;
      bottom: 24px; right: 24px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 1.5px;
      color: var(--paper);
      text-transform: uppercase;
      z-index: 2;
    }
    .duo-name {
      font-family: var(--sans);
      font-size: clamp(40px, 5.5vw, 88px);
      line-height: 0.95;
      letter-spacing: -0.04em;
      font-weight: 500;
      margin-bottom: 20px;
    }
    .duo-name em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .duo-tagline {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(18px, 1.6vw, 24px);
      line-height: 1.4;
      color: var(--muted);
      margin-bottom: 32px;
      max-width: 480px;
    }
    .duo-services {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 40px;
    }
    .duo-services span {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--ink);
      padding: 8px 14px;
      border: 1px solid var(--line);
      border-radius: 100px;
      transition: all 0.2s;
    }
    .duo-services span:hover {
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
    }
    .duo-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      border-bottom: 1px solid currentColor;
      padding-bottom: 4px;
      align-self: flex-start;
      transition: color 0.3s;
    }
    .duo-cta:hover { color: var(--accent); }

    /* ── CULTURE WALL (Black Rainbow grid) ── */
    .culture-wall {
      background: var(--dark);
      padding: 0;
    }
    .culture-wall-head {
      padding: 100px 32px 60px;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
    }
    .culture-wall-head h2 {
      font-family: var(--sans);
      font-size: clamp(36px, 4.5vw, 72px);
      line-height: 0.95;
      letter-spacing: -0.035em;
      font-weight: 500;
      color: var(--paper);
    }
    .culture-wall-head h2 em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .culture-wall-head .meta {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      text-align: right;
    }
    .culture-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
      padding: 0 4px 100px;
    }
    .culture-cell {
      background: var(--dark-2);
      aspect-ratio: 1;
      position: relative;
      overflow: hidden;
    }
    .culture-cell.tall { aspect-ratio: 1/2; grid-row: span 2; }
    .culture-cell.wide { aspect-ratio: 2/1; grid-column: span 2; }
    .culture-cell::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at var(--gx, 30%) var(--gy, 30%), rgba(15,15,15,0.05), transparent 70%);
    }
    .culture-cell.has-photo {
      background-size: cover;
      background-position: center;
    }
    .culture-cell.has-photo::after {
      background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.65) 100%);
    }
    .culture-cell.has-photo::before {
      content: attr(data-caption);
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 12px;
      z-index: 2;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.5px;
      color: var(--paper);
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.35s, transform 0.35s;
      pointer-events: none;
    }
    .culture-cell.has-photo:hover::before {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── WORK INDEX (Yard typographic) ── */
    .work-index {
      padding: 100px 32px;
      border-bottom: 1px solid var(--line);
    }
    .work-index-list {
      list-style: none;
    }
    .work-index-list li {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr) 130px 30px;
      gap: 24px;
      align-items: center;
      padding: 30px 0;
      border-top: 1px solid var(--line);
      transition: padding 0.35s, background 0.35s;
      cursor: pointer;
      position: relative;
    }
    .work-preview {
      position: absolute;
      right: 8%;
      top: 50%;
      width: 220px;
      aspect-ratio: 4/5;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: translateY(-50%) scale(0.94) rotate(-2deg);
      transition: opacity 0.45s cubic-bezier(.2,.7,.2,1), transform 0.55s cubic-bezier(.2,.7,.2,1);
      pointer-events: none;
      z-index: 5;
      box-shadow: 0 24px 60px rgba(15,15,15,0.18);
    }
    .work-index-list li:hover .work-preview {
      opacity: 1;
      transform: translateY(-50%) scale(1) rotate(0deg);
    }
    @media (max-width: 900px) {
      .work-preview { display: none; }
    }
    .work-index-list li:last-child { border-bottom: 1px solid var(--line); }
    .work-index-list li:hover {
      padding-left: 16px;
      background: linear-gradient(90deg, rgba(15,15,15,0.04), transparent 70%);
    }
    .work-index-list .year {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.5px;
    }
    .work-index-list .project {
      font-family: var(--sans);
      font-size: clamp(22px, 2.4vw, 40px);
      font-weight: 500;
      letter-spacing: -0.025em;
      line-height: 1.05;
    }
    .work-index-list .project em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .work-index-list .client-name {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--muted);
    }
    .work-index-list .type {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--ink);
      text-align: right;
    }
    .work-index-list .arr {
      font-size: 18px;
      color: var(--muted);
      text-align: right;
      transition: all 0.35s;
    }
    .work-index-list li:hover .arr {
      color: var(--accent);
      transform: rotate(-45deg);
    }

    /* ── BRAND INDEX (Black Rainbow long list) ── */
    .brand-index {
      padding: 140px 32px;
      background: var(--paper-2);
      border-bottom: 1px solid var(--line);
    }
    .brand-index-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 60px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--line);
    }
    .brand-index-head h2 {
      font-family: var(--sans);
      font-size: clamp(36px, 4.5vw, 72px);
      font-weight: 500;
      letter-spacing: -0.035em;
    }
    .brand-index-head h2 em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .brand-index-head .meta {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .brand-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0 24px;
      list-style: none;
      counter-reset: brand;
    }
    .brand-list li {
      font-family: var(--sans);
      font-size: clamp(16px, 1.5vw, 22px);
      font-weight: 500;
      letter-spacing: -0.02em;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      position: relative;
      transition: color 0.2s, padding 0.3s;
      cursor: default;
    }
    .brand-list li::before {
      content: counter(brand, decimal-leading-zero);
      counter-increment: brand;
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.5px;
      margin-right: 14px;
      position: relative;
      top: -2px;
    }
    .brand-list li:hover {
      color: var(--accent);
      padding-left: 12px;
    }

    /* ── CITIES (Sauvage) ── */
    .cities {
      padding: 140px 32px;
      border-bottom: 1px solid var(--line);
      text-align: center;
    }
    .cities-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 40px;
    }
    .cities-list {
      font-family: var(--sans);
      font-size: clamp(32px, 5.5vw, 80px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1.1;
    }
    .cities-list em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .cities-list .sep {
      color: var(--muted);
      font-weight: 300;
      margin: 0 14px;
    }

    /* ── FEATURED — Cinematic typographic block ── */
    .featured-typo {
      background: var(--dark);
      color: var(--paper);
      padding: 180px 32px 140px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .featured-typo::before {
      content: '';
      position: absolute;
      width: 900px; height: 900px;
      background: radial-gradient(circle, rgba(15,15,15,0.22) 0%, transparent 60%);
      top: 50%; left: 70%;
      transform: translate(-50%, -50%);
      filter: blur(80px);
      pointer-events: none;
    }
    .featured-typo-tag {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .featured-typo-tag::before {
      content: '';
      width: 32px; height: 1px;
      background: var(--accent);
    }
    .featured-typo-title {
      font-family: var(--sans);
      font-size: clamp(60px, 11vw, 220px);
      line-height: 0.88;
      letter-spacing: -0.045em;
      font-weight: 500;
      position: relative;
      z-index: 2;
    }
    .featured-typo-title em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .featured-typo-credits {
      margin-top: 80px;
      display: grid;
      grid-template-columns: repeat(4, max-content);
      gap: 16px 60px;
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: rgba(255,255,255,0.5);
      position: relative;
      z-index: 2;
    }
    .featured-typo-credits b {
      color: var(--paper);
      font-weight: 500;
      display: block;
      margin-top: 4px;
    }

    /* deprecated — kept to avoid breakage */
    .studios {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .studio {
      padding: 100px 48px 80px;
      display: flex;
      flex-direction: column;
      min-height: 720px;
      position: relative;
    }
    .studio.brand {
      background: var(--paper);
      color: var(--ink);
    }
    .studio.music {
      background: var(--dark);
      color: var(--paper);
    }
    .studio-head {
      display: flex;
      align-items: baseline;
      gap: 20px;
      margin-bottom: 48px;
    }
    .studio-num {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 1px;
      opacity: 0.6;
    }
    .studio.brand .studio-num { color: var(--ink); }
    .studio.music .studio-num { color: var(--accent); opacity: 1; }
    .studio-name {
      font-family: var(--sans);
      font-size: clamp(48px, 6vw, 96px);
      letter-spacing: -0.04em;
      line-height: 0.95;
      font-weight: 500;
    }
    .studio-name em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      text-transform: none;
      vertical-align: baseline;
      color: inherit;
    }
    .studio-tag {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(18px, 1.6vw, 24px);
      line-height: 1.35;
      margin-bottom: 56px;
      max-width: 480px;
      opacity: 0.85;
    }
    .studio-services {
      list-style: none;
      margin-bottom: 48px;
    }
    .studio-services li {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      gap: 20px;
      padding: 18px 0;
      align-items: center;
      border-top: 1px solid;
      font-family: var(--sans);
      font-size: clamp(18px, 1.5vw, 22px);
      font-weight: 500;
      letter-spacing: -0.015em;
      transition: padding 0.3s;
    }
    .studio.brand .studio-services li { border-color: var(--line); }
    .studio.music .studio-services li { border-color: rgba(255,255,255,0.1); }
    .studio-services li:last-child {
      border-bottom: 1px solid;
    }
    .studio.brand .studio-services li:last-child { border-bottom-color: var(--line); }
    .studio.music .studio-services li:last-child { border-bottom-color: rgba(255,255,255,0.1); }
    .studio-services li:hover { padding-left: 12px; }
    .studio-services .num {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      opacity: 0.5;
    }
    .studio-services .arrow {
      font-size: 18px;
      opacity: 0.4;
      transition: all 0.3s;
    }
    .studio-services li:hover .arrow {
      opacity: 1;
      transform: rotate(-45deg);
      color: var(--accent);
    }
    .studio-cta {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      padding: 14px 24px;
      border-radius: 100px;
      border: 1px solid currentColor;
      align-self: flex-start;
      transition: all 0.3s;
    }
    .studio.brand .studio-cta:hover {
      background: var(--ink);
      color: var(--paper);
    }
    .studio.music .studio-cta:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--paper);
    }
    .studio-clients {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      opacity: 0.55;
      margin-top: 32px;
    }
    .studio-clients strong {
      display: block;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: -0.01em;
      text-transform: none;
      margin-top: 6px;
      opacity: 1.5;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .topbar { padding: 12px 16px; font-size: 10px; }
      .topbar-left, .topbar-right { gap: 12px; }
      .topbar-right .hide-mobile { display: none; }
      nav { padding: 16px; top: 36px; }
      .menu { display: none; }
      .nav-cta { font-size: 12px; padding: 8px 14px; }
      .hero { padding: 100px 16px 24px; }
      .hero-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 40px;
      }
      .hero-showreel { justify-self: start; }
      .intro {
        grid-template-columns: 1fr;
        padding: 80px 16px;
        gap: 24px;
      }
      .intro-label { position: static; }
      .work, .services, .clients, .contact { padding: 60px 16px; }
      .studios { grid-template-columns: 1fr; }
      .studio { padding: 60px 20px; min-height: auto; }
      .studio-services li { padding: 14px 0; }
      .studio-clients { margin-top: 24px; }
      .statement { padding: 100px 20px; }
      .duo { grid-template-columns: 1fr; padding: 60px 20px; gap: 60px; }
      .culture-wall-head { padding: 60px 20px 32px; flex-direction: column; align-items: flex-start; gap: 16px; }
      .culture-grid { grid-template-columns: repeat(3, 1fr); padding: 0 4px 60px; }
      .culture-cell.wide { grid-column: span 2; }
      .featured-typo { padding: 100px 20px 80px; }
      .featured-typo-credits { grid-template-columns: 1fr 1fr; gap: 16px 24px; }
      .work-index { padding: 60px 20px; }
      .work-index-list li {
        grid-template-columns: 60px 1fr 30px;
        gap: 12px;
        padding: 20px 0;
      }
      .work-index-list .client-name, .work-index-list .type { display: none; }
      .brand-index { padding: 60px 20px; }
      .brand-list { grid-template-columns: 1fr 1fr; }
      .cities { padding: 80px 20px; }
      .cities-list .sep { margin: 0 6px; }
      .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
      .work-grid {
        grid-template-columns: 1fr;
        row-gap: 60px;
      }
      .featured-video { height: 70vh; min-height: 500px; }
      .featured-content {
        grid-template-columns: 1fr;
        bottom: 32px;
        left: 16px; right: 16px;
        gap: 32px;
      }
      .service-row {
        grid-template-columns: 32px 1fr 32px;
        gap: 12px;
        padding: 20px 0;
      }
      .service-row:hover { padding-left: 16px; }
      .service-desc { display: none; }
      .initiatives { padding: 80px 16px; }
      .init-grid { grid-template-columns: 1fr; gap: 32px; }
      .culture-banner { padding: 100px 16px; }
      .clients-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-cols {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
      }
      footer .center, footer .right { text-align: center; }
    }

    /* ── EXPLORE (Home page entry points) ── */
    .explore {
      padding: 100px 32px;
      border-bottom: 1px solid var(--line);
    }
    .explore-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .explore-card {
      display: flex;
      flex-direction: column;
      padding: 40px 32px 48px;
      background: var(--paper);
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      position: relative;
      transition: background 0.4s, padding 0.4s;
      min-height: 540px;
    }
    .explore-card:hover {
      background: var(--paper-2);
      padding-top: 32px;
    }
    .explore-num {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.8px;
      color: var(--muted);
      margin-bottom: 32px;
    }
    .explore-visual {
      width: 100%;
      aspect-ratio: 16/9;
      background: linear-gradient(180deg, var(--paper-2) 0%, var(--ink-soft) 220%);
      margin-bottom: 32px;
      transition: aspect-ratio 0.4s;
      position: relative;
      overflow: hidden;
    }
    .explore-visual > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 25%;
      display: block;
      transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
    }
    .explore-card:hover .explore-visual > img {
      transform: scale(1.04);
    }
    .explore-card:nth-child(2) .explore-visual {
      background: linear-gradient(180deg, var(--ink-soft) 0%, var(--dark) 100%);
    }
    .explore-card:nth-child(3) .explore-visual {
      background: linear-gradient(180deg, var(--paper-2) 0%, var(--muted) 100%);
    }
    .explore-meta {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 12px;
    }
    .explore-title {
      font-family: var(--sans);
      font-size: clamp(28px, 3vw, 44px);
      line-height: 0.95;
      letter-spacing: -0.03em;
      font-weight: 500;
      margin-bottom: 16px;
    }
    .explore-desc {
      font-family: var(--sans);
      font-size: 14px;
      line-height: 1.5;
      color: var(--muted);
      margin-bottom: 32px;
      max-width: 360px;
      flex-grow: 1;
    }
    .explore-cta {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      border-bottom: 1px solid currentColor;
      padding-bottom: 4px;
      align-self: flex-start;
      transition: gap 0.3s;
    }
    .explore-card:hover .explore-cta {
      color: var(--ink);
    }

    @media (max-width: 900px) {
      .explore { padding: 60px 20px; }
      .explore-grid { grid-template-columns: 1fr; }
      .explore-card { min-height: 420px; padding: 32px 20px; }
    }

    /* ── NETWORK GRID (3 columns: Brands / Labels / Artists) ── */
    .network-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 48px;
    }
    .network-col {
      display: flex;
      flex-direction: column;
    }
    .network-title {
      font-family: var(--sans);
      font-size: clamp(22px, 2vw, 32px);
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      color: var(--ink);
    }
    .network-meta {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 32px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .network-col .brand-list {
      display: block;
      grid-template-columns: none;
    }
    .network-col .brand-list li {
      padding: 14px 0;
      font-size: clamp(15px, 1.3vw, 19px);
    }

    @media (max-width: 900px) {
      .network-grid {
        grid-template-columns: 1fr;
        gap: 60px;
      }
    }

    /* ── LOGO GRID (Brand partners & Labels) ── */
    .network-block {
      margin-bottom: 80px;
      padding-top: 32px;
      border-top: 1px solid var(--line);
    }
    .network-block:last-child { margin-bottom: 0; }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      list-style: none;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      margin-top: 16px;
    }
    .logo-grid li {
      aspect-ratio: 2.4/1;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 24px;
      background: var(--paper);
      overflow: hidden;
      transition: background 0.3s;
      isolation: isolate;
    }
    .logo-grid li:hover {
      background: var(--paper-2);
    }
    /* Default — normalized sizing for all logos */
    .logo-grid img {
      max-height: 100px;
      max-width: 82%;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(1) contrast(1.6);
      mix-blend-mode: multiply;
      transition: transform 0.4s;
    }
    .logo-grid li:hover img {
      transform: scale(1.06);
    }
    /* Special cases only */
    /* Compact/padded logos — scale up to match visual mass */
    .logo-grid img[alt="Salomon"],
    .logo-grid img[alt="Levi's"],
    .logo-grid img[alt="The North Face"],
    .logo-grid img[alt="Carhartt"],
    .logo-grid img[alt="Hoka"],
    .logo-grid img[alt="Vans"],
    .logo-grid img[alt="The Ordinary"],
    .logo-grid img[alt="Jack Daniel's"],
    .logo-grid img[alt="Desperados"] {
      max-height: 140px;
      max-width: 90%;
      transform: scale(1.2);
    }
    .logo-grid li:hover img[alt="Salomon"],
    .logo-grid li:hover img[alt="Levi's"],
    .logo-grid li:hover img[alt="The North Face"],
    .logo-grid li:hover img[alt="Carhartt"],
    .logo-grid li:hover img[alt="Hoka"],
    .logo-grid li:hover img[alt="Vans"],
    .logo-grid li:hover img[alt="The Ordinary"],
    .logo-grid li:hover img[alt="Jack Daniel's"],
    .logo-grid li:hover img[alt="Desperados"] {
      transform: scale(1.28);
    }
    /* Very padded logos (huge internal whitespace) — bigger scale */
    .logo-grid img[alt="Citadium"],
    .logo-grid img[alt="Sergio Tacchini"] {
      max-height: 160px;
      max-width: 95%;
      transform: scale(1.5);
    }
    .logo-grid li:hover img[alt="Citadium"],
    .logo-grid li:hover img[alt="Sergio Tacchini"] {
      transform: scale(1.58);
    }
    /* Hall Access: tiny white logo lost in huge black canvas — invert + zoom */
    .logo-grid img[alt="Hall Access"] {
      max-height: 90px;
      filter: invert(1) grayscale(1) contrast(1.4);
      mix-blend-mode: multiply;
      transform: scale(1.8);
    }
    .logo-grid li:hover img[alt="Hall Access"] {
      transform: scale(1.9);
    }
    /* BSB — SVG (red) → neutralize color */
    .logo-grid img[alt="BSB"] {
      filter: grayscale(1) brightness(0.6) contrast(2.5);
    }
    .logo-grid .logo-fb {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: var(--ink);
      text-align: center;
    }

    /* Labels block — 4 items in 4 columns */
    .network-block:nth-child(3) .logo-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    /* ARTIST LIST (text wordmarks) */
    .artist-list {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      list-style: none;
      margin-top: 16px;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .artist-list li {
      aspect-ratio: 2/1;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      font-family: var(--sans);
      font-size: clamp(22px, 2.5vw, 36px);
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--ink);
      transition: background 0.3s, color 0.3s;
    }
    .artist-list li::before { content: none; }
    .artist-list li:hover {
      background: var(--ink);
      color: var(--paper);
    }

    @media (max-width: 900px) {
      .logo-grid { grid-template-columns: repeat(2, 1fr); }
      .network-block:nth-child(3) .logo-grid { grid-template-columns: repeat(2, 1fr); }
      .artist-list { grid-template-columns: repeat(2, 1fr); }
      .network-block { margin-bottom: 48px; }
    }

    /* ── MUSIC SECTION — logos bigger to match Brand visual size (cells are wider) ── */
    .network-block:nth-child(3) .logo-grid img {
      height: 80px;
    }
    .network-block:nth-child(3) .logo-grid img[alt="Because Music"] {
      height: 95px;
      max-width: 75%;
    }
    .network-block:nth-child(3) .logo-grid img[alt="BSB"] {
      height: 110px;
      max-width: 70%;
      filter: grayscale(1) brightness(0.6) contrast(2.5);
    }
    .network-block:nth-child(3) .logo-grid img[alt="Sony Music"] {
      height: 130px;
      max-width: 70%;
    }
    .network-block:nth-child(3) .logo-grid img[alt="Hall Access"] {
      height: 130px;
      max-width: 80%;
      transform: scale(2);
      filter: invert(1) grayscale(1) contrast(1.4);
      mix-blend-mode: multiply;
    }
    .network-block:nth-child(3) .logo-grid li:hover img[alt="Hall Access"] {
      transform: scale(2.1);
    }

    /* ── CASE STUDY PAGES ── */
    .case-header {
      padding: 140px 24px 60px;
      border-bottom: 1px solid var(--line);
    }
    .case-back {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 40px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .case-back:hover { color: var(--ink); }
    .case-meta {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--muted);
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }
    .case-meta span {
      position: relative;
    }
    .case-meta span:not(:last-child)::after {
      content: '·';
      position: absolute;
      right: -12px;
      color: var(--muted);
    }
    .case-title {
      font-family: var(--sans);
      font-size: clamp(48px, 8vw, 140px);
      line-height: 0.95;
      letter-spacing: -0.045em;
      font-weight: 500;
      margin-bottom: 32px;
      max-width: 1400px;
    }
    .case-tagline {
      font-family: var(--sans);
      font-size: clamp(20px, 2.2vw, 32px);
      line-height: 1.3;
      letter-spacing: -0.02em;
      color: var(--muted);
      max-width: 900px;
      font-weight: 300;
    }

    .case-cover {
      width: 100%;
      height: 70vh;
      min-height: 500px;
      background-size: cover;
      background-position: center;
      background-color: var(--paper-2);
    }

    .case-info {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 60px;
      padding: 100px 24px;
      border-bottom: 1px solid var(--line);
    }
    .case-desc {
      font-size: 18px;
      line-height: 1.6;
      color: var(--ink);
    }
    .case-desc p {
      margin-bottom: 20px;
    }
    .case-desc p:first-child {
      font-size: 22px;
      color: var(--ink);
      font-weight: 500;
      letter-spacing: -0.015em;
    }
    .case-credits {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-self: start;
    }
    .case-credit {
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }
    .case-credit h4 {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .case-credit p {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 500;
      letter-spacing: -0.015em;
    }

    /* Photo gallery */
    .case-gallery {
      padding: 60px 4px 100px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 4px;
    }
    .case-gallery figure {
      overflow: hidden;
      background: var(--paper-2);
      aspect-ratio: 1;
    }
    .case-gallery figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .case-gallery figure:hover img { transform: scale(1.04); }
    .case-gallery .wide { grid-column: span 2; aspect-ratio: 2/1; }
    .case-gallery .tall { grid-row: span 2; aspect-ratio: 1/2; }
    .case-gallery .big  { grid-column: span 3; grid-row: span 2; aspect-ratio: 1; }

    /* Next project CTA */
    .case-next {
      padding: 120px 24px;
      border-top: 1px solid var(--line);
      text-align: center;
    }
    .case-next-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .case-next-title {
      font-family: var(--sans);
      font-size: clamp(40px, 6vw, 88px);
      line-height: 0.95;
      letter-spacing: -0.04em;
      font-weight: 500;
      margin-bottom: 40px;
    }
    .case-next a {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding-bottom: 4px;
      border-bottom: 1px solid currentColor;
    }

    /* Make work-index-list <li> behave like links */
    .work-index-list li a {
      display: contents;
    }

    @media (max-width: 900px) {
      .case-header { padding: calc(140px + env(safe-area-inset-top, 0px)) 16px 40px; }
      .case-back { margin-bottom: 24px; font-size: 10px; }
      .case-meta { font-size: 10px; gap: 12px; }
      .case-meta span:not(:last-child)::after { right: -10px; }
      .case-title { font-size: clamp(40px, 12vw, 64px); margin-bottom: 20px; }
      .case-tagline { font-size: 18px; }
      .case-cover { height: 50vh; min-height: 260px; }
      .case-info {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 16px;
      }
      .case-desc p:first-child { font-size: 20px; }
      .case-credit { padding: 16px 0; }
      .case-credits { gap: 0; }
      .case-gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 4px 60px;
      }
      .case-gallery .wide, .case-gallery .tall, .case-gallery .big {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 4/3;
      }
      .case-next { padding: 80px 16px; }
      .case-next-title { font-size: clamp(28px, 8vw, 44px); }
    }

    /* ── CAPABILITIES (studios.html full services) ── */
    .capabilities {
      padding: 100px 24px 40px;
      border-top: 1px solid var(--line);
    }
    .cap-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      padding-bottom: 40px;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--line);
    }
    .cap-header h2 {
      font-family: var(--sans);
      font-size: clamp(36px, 5vw, 72px);
      line-height: 0.95;
      letter-spacing: -0.035em;
      font-weight: 500;
    }
    .cap-header .meta {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--muted);
      text-align: right;
    }

    .cap-block {
      padding: 60px 0 80px;
      border-bottom: 1px solid var(--line);
    }
    .cap-block:last-child { border-bottom: none; padding-bottom: 40px; }

    .cap-block-head {
      display: grid;
      grid-template-columns: 60px auto 1fr;
      gap: 24px;
      align-items: baseline;
      margin-bottom: 48px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--line);
    }
    .cap-num {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.8px;
      color: var(--muted);
    }
    .cap-title {
      font-family: var(--sans);
      font-size: clamp(32px, 4.5vw, 64px);
      letter-spacing: -0.035em;
      line-height: 0.95;
      font-weight: 500;
    }
    .cap-tagline {
      font-family: var(--serif);
      font-size: clamp(16px, 1.4vw, 20px);
      line-height: 1.4;
      color: var(--muted);
      max-width: 520px;
      justify-self: end;
      text-align: right;
    }

    .cap-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px 32px;
    }
    /* When 4 categories, use 4 cols; else 3 */
    .cap-block:has(> .cap-grid > .cap-cat:nth-child(4)) .cap-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 32px 24px;
    }

    .cap-cat h4 {
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .cap-tag {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--muted);
      padding: 3px 8px;
      border: 1px solid var(--line);
      border-radius: 100px;
      font-weight: 400;
    }
    .cap-cat ul {
      list-style: none;
    }
    .cap-cat li {
      font-family: var(--sans);
      font-size: 13px;
      line-height: 1.5;
      color: var(--ink);
      padding: 6px 0;
      position: relative;
      padding-left: 14px;
    }
    .cap-cat li::before {
      content: '·';
      position: absolute;
      left: 2px;
      color: var(--muted);
      font-weight: 700;
    }

    @media (max-width: 900px) {
      .capabilities { padding: 60px 16px 20px; }
      .cap-header { flex-direction: column; gap: 16px; align-items: flex-start; }
      .cap-header .meta { text-align: left; }
      .cap-block-head {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
      }
      .cap-tagline { text-align: left; justify-self: start; }
      .cap-grid, .cap-block:has(> .cap-grid > .cap-cat:nth-child(4)) .cap-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* ── MUSIC PR & ROSTER (grouped by major) ── */
    .pr-block {
      padding: 40px 0 48px;
      border-top: 1px solid var(--line);
    }
    .pr-block:first-of-type { padding-top: 24px; }
    .pr-block-head {
      display: grid;
      grid-template-columns: 40px 1fr auto;
      gap: 24px;
      align-items: baseline;
      margin-bottom: 24px;
      padding-bottom: 16px;
    }
    .pr-num {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.8px;
      color: var(--muted);
    }
    .pr-title {
      font-family: var(--sans);
      font-size: clamp(20px, 2.2vw, 32px);
      font-weight: 500;
      letter-spacing: -0.025em;
    }
    .pr-count {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .pr-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      list-style: none;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .pr-grid li {
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      transition: background 0.2s;
    }
    .pr-grid li:hover { background: var(--paper-2); }
    .pr-grid .name {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 500;
      letter-spacing: -0.015em;
      color: var(--ink);
    }
    .pr-grid .sub {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.5px;
      color: var(--muted);
      text-transform: uppercase;
    }

    @media (max-width: 900px) {
      .pr-block-head {
        grid-template-columns: 32px 1fr auto;
        gap: 12px;
        margin-bottom: 16px;
      }
      .pr-grid { grid-template-columns: repeat(2, 1fr); }
      .pr-grid li { padding: 14px 16px; }
    }

    /* ── BRAND CATEGORIES (sub-blocks within brand-partners) ── */
    .brand-cat {
      margin-bottom: 48px;
    }
    .brand-cat:last-child { margin-bottom: 0; }
    .brand-cat-head {
      display: grid;
      grid-template-columns: 40px 1fr auto;
      gap: 20px;
      align-items: baseline;
      padding-bottom: 12px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .brand-cat-num {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.8px;
      color: var(--muted);
    }
    .brand-cat-title {
      font-family: var(--sans);
      font-size: clamp(18px, 2vw, 26px);
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    .brand-cat-count {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--muted);
    }
    @media (max-width: 900px) {
      .brand-cat-head {
        grid-template-columns: 32px 1fr auto;
        gap: 12px;
      }
    }

    /* ── ARTIST PHOTO GRID (background image + name overlay) ── */
    .artist-photo-grid li {
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-color: var(--dark);
      position: relative;
      overflow: hidden;
      transition: none;
      padding: 0;
      aspect-ratio: 3/4;
    }
    .artist-photo-grid li::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,15,15,0) 40%, rgba(15,15,15,0.85) 100%);
      transition: background 0.3s;
      z-index: 1;
    }
    .artist-photo-grid li::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: inherit;
      background-size: cover;
      background-position: center top;
      transition: transform 0.6s ease;
      z-index: 0;
    }
    .artist-photo-grid li:hover::after {
      transform: scale(1.06);
    }
    .artist-photo-grid li:hover::before {
      background: linear-gradient(180deg, rgba(15,15,15,0.1) 20%, rgba(15,15,15,0.9) 100%);
    }
    .artist-photo-grid li:hover {
      background: var(--dark);
      color: var(--paper);
    }
    .artist-photo-grid li span {
      position: absolute;
      bottom: 18px;
      left: 20px;
      right: 20px;
      z-index: 2;
      font-family: var(--sans);
      font-size: clamp(18px, 2vw, 26px);
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--paper);
      line-height: 1.1;
    }
    /* Cells without background photo: subtle gradient placeholder */
    .artist-photo-grid li:not([style*="background-image"]) {
      background: linear-gradient(160deg, var(--paper-2) 0%, var(--ink-soft) 200%);
    }
    .artist-photo-grid li:not([style*="background-image"])::after {
      display: none;
    }

    @media (max-width: 900px) {
      .artist-photo-grid { grid-template-columns: repeat(2, 1fr); }
      .artist-photo-grid li { aspect-ratio: 3/4; }
      .artist-photo-grid li span { font-size: 18px; bottom: 14px; left: 16px; }
    }

    /* ── PR FLAT LIST (unified roster — no majors, no counts) ── */
    .pr-flat {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      list-style: none;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      margin-top: 16px;
    }
    .pr-flat li {
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 22px 24px;
      font-family: var(--sans);
      font-size: clamp(16px, 1.4vw, 20px);
      font-weight: 500;
      letter-spacing: -0.015em;
      color: var(--ink);
      transition: background 0.2s, padding-left 0.3s;
    }
    .pr-flat li:hover {
      background: var(--paper-2);
      padding-left: 32px;
    }
    .pr-flat li.more {
      font-style: italic;
      color: var(--muted);
      font-weight: 400;
    }
    .pr-flat li.more:hover {
      background: transparent;
      color: var(--ink);
    }
    @media (max-width: 900px) {
      .pr-flat { grid-template-columns: repeat(2, 1fr); }
      .pr-flat li { padding: 16px 18px; font-size: 16px; }
    }
