/* ============ SELF-HOSTED FONTS ============ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Alte Haas Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/alte-haas-grotesk-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Alte Haas Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/alte-haas-grotesk-bold.woff2') format('woff2');
}

:root {
      --cream: #faf6ed;
      --cream-2: #f0e7d9;
      --ink: #20201d;
      --ink-70: rgba(32, 32, 29, .72);
      --ink-45: rgba(32, 32, 29, .46);
      --rust: #802818;
      --rust-dark: #591c11;
      --brown: #5c4033;
      --brown-dark: #3d291f;
      --taupe: #88756d;
      --terracotta: #ac532f;
      --cool: #b6c9e4;
      --dark-bg: #3a2c22;
      --line: rgba(32, 32, 29, .14);
      --line-onDark: rgba(250, 246, 237, .18);
      --ease: cubic-bezier(.16, 1, .3, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    ul {
      list-style: none;
    }

    .eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--ink-45);
    }

    .eyebrow.on-dark {
      color: rgba(250, 246, 237, .55);
    }

    .eyebrow.on-rust {
      color: rgba(32, 32, 29, .55);
    }

    .wrap {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 64px);
    }

    /* reveal animation */
    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .9s var(--ease), transform .9s var(--ease);
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal="stagger"]>* {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    [data-reveal="stagger"].is-visible>* {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal="stagger"].is-visible>*:nth-child(1) {
      transition-delay: .02s;
    }

    [data-reveal="stagger"].is-visible>*:nth-child(2) {
      transition-delay: .09s;
    }

    [data-reveal="stagger"].is-visible>*:nth-child(3) {
      transition-delay: .16s;
    }

    [data-reveal="stagger"].is-visible>*:nth-child(4) {
      transition-delay: .23s;
    }

    [data-reveal="stagger"].is-visible>*:nth-child(5) {
      transition-delay: .30s;
    }

    [data-reveal="stagger"].is-visible>*:nth-child(6) {
      transition-delay: .37s;
    }

    /* ============ NAV ============ */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 300;
      padding: 22px 0;
      transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
      border-bottom: 1px solid transparent;
    }

    header.scrolled {
      padding: 14px 0;
      background: rgba(250, 246, 237, .86);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

    header .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      position: relative;
      display: block;
      width: 150px;
    }

    .logo img {
      display: block;
      width: 100%;
      height: auto;
    }

    .logo .logo-dark {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      transition: opacity .5s var(--ease);
    }

    .logo .logo-light {
      transition: opacity .5s var(--ease);
    }

    header.scrolled .logo .logo-light {
      opacity: 0;
    }

    header.scrolled .logo .logo-dark {
      opacity: 1;
    }

    body.menu-open .logo .logo-light {
      opacity: 0;
    }

    body.menu-open .logo .logo-dark {
      opacity: 1;
    }

    nav.primary-nav {
      display: flex;
      align-items: center;
      gap: 38px;
    }

    nav.primary-nav a {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--cream);
      position: relative;
      padding-bottom: 4px;
      transition: color .5s var(--ease);
    }

    header.scrolled nav.primary-nav a {
      color: var(--ink-70);
    }

    nav.primary-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: currentColor;
      transition: width .35s var(--ease);
    }

    nav.primary-nav a:hover::after {
      width: 100%;
    }

    nav.primary-nav a:hover {
      color: var(--brown) !important;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--cream);
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--cream) !important;
      transition: opacity .3s var(--ease) !important;
    }

    .nav-cta span {
      margin-right: -0.14em;
    }

    nav.primary-nav a.nav-cta {
      padding-bottom: 10px;
    }

    header.scrolled .nav-cta {
      border-color: var(--ink);
      color: var(--ink) !important;
    }

    .nav-cta:hover {
      opacity: .7;
    }

    nav.primary-nav a.nav-cta:hover {
      color: var(--cream) !important;
    }

    header.scrolled nav.primary-nav a.nav-cta:hover {
      color: var(--ink) !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .burger {
      display: none;
      width: 30px;
      height: 22px;
      position: relative;
      cursor: pointer;
      z-index: 200;
    }

    .burger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      background: var(--cream);
      transition: all .4s var(--ease);
    }

    header.scrolled .burger span {
      background: var(--ink);
    }

    .burger span:nth-child(1) {
      top: 0;
    }

    .burger span:nth-child(2) {
      top: 10px;
    }

    .burger span:nth-child(3) {
      top: 20px;
    }

    body.menu-open .burger span {
      background: var(--ink) !important;
    }

    body.menu-open header {
      background: var(--cream);
      border-bottom: 1px solid var(--line);
    }

    body.menu-open .burger span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

    body.menu-open .burger span:nth-child(2) {
      opacity: 0;
    }

    body.menu-open .burger span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--cream);
      z-index: 150;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 32px;
      transform: translateY(-100%);
      transition: transform .55s var(--ease);
      pointer-events: none;
    }

    body.menu-open .mobile-menu {
      transform: translateY(0);
      pointer-events: auto;
    }

    .mobile-menu a {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: clamp(22px, 6vw, 32px);
      font-weight: 400;
      letter-spacing: -.01em;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      display: block;
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background:
        linear-gradient(180deg, rgba(32, 32, 29, .35) 0%, rgba(32, 32, 29, .15) 30%, rgba(32, 32, 29, .75) 100%),
        url('../images/hero-bg.webp') center 85% / 115% auto no-repeat;
    }

    .hero-inner {
      position: relative;
      padding: 160px clamp(20px, 4vw, 64px) 56px;
      color: var(--cream);
    }

    @media(max-width:900px) {
      .hero {
        background:
          linear-gradient(180deg, rgba(32, 32, 29, .35) 0%, rgba(32, 32, 29, .15) 30%, rgba(32, 32, 29, .75) 100%),
          url('../images/hero-bg-mobile.webp') center 38% / cover no-repeat !important;
      }
    }

    .hero-eyebrow {
      color: rgba(250, 246, 237, .75);
      margin-bottom: 22px;
    }

    h1.hero-title {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      font-size: clamp(24px, 3.6vw, 54px);
      line-height: 1.15;
      letter-spacing: .01em;
      max-width: 23ch;
    }

    h1.hero-title .hl {
      background: var(--rust);
      color: var(--cream);
      padding: 0.14em 0.28em;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }

    .hero-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-top: 44px;
      padding-top: 26px;
      border-top: 1px solid var(--line-onDark);
      flex-wrap: wrap;
    }

    .hero-sub {
      font-size: 15px;
      line-height: 1.6;
      max-width: 34ch;
      color: rgba(250, 246, 237, .82);
    }

    .scroll-cue {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(250, 246, 237, .6);
    }

    .scroll-cue .line {
      width: 1px;
      height: 34px;
      background: rgba(250, 246, 237, .5);
      position: relative;
      overflow: hidden;
    }

    .scroll-cue .line::after {
      content: "";
      position: absolute;
      left: 0;
      top: -100%;
      width: 100%;
      height: 100%;
      background: var(--cream);
      animation: scrollcue 2.2s ease-in-out infinite;
    }

    @keyframes scrollcue {
      0% {
        top: -100%;
      }

      50% {
        top: 0;
      }

      100% {
        top: 100%;
      }
    }

    /* ============ TICKER ============ */
    .ticker-band {
      position: relative;
      background: var(--rust);
      color: var(--cream);
      padding: 16px 0;
      border-top: 1px solid rgba(250, 246, 237, .25);
      border-bottom: 1px solid rgba(250, 246, 237, .25);
    }

    .ticker-clip {
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-track {
      display: inline-flex;
      animation: ticker 32s linear infinite;
    }

    .ticker-hover-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 128px;
      height: 162px;
      box-sizing: border-box;
      border-radius: 2px;
      overflow: hidden;
      pointer-events: none;
      opacity: 0;
      transform: translate(-50%, -50%) scale(.8) rotate(var(--rot, -4deg));
      transition: opacity .35s var(--ease), transform .5s var(--ease);
      z-index: 6;
    }

    .ticker-hover-img.is-visible {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1) rotate(var(--rot, -2deg));
    }

    .ticker-hover-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 1px;
    }

    @media(hover:none), (max-width:760px) {
      .ticker-hover-img {
        display: none !important;
      }
    }

    .ticker-track span {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: .02em;
      font-size: clamp(17px, 2.6vw, 26px);
      padding: 0 28px;
      display: inline-flex;
      align-items: center;
      gap: 28px;
    }

    .ticker-track span::after {
      content: "✦";
      font-style: normal;
      font-size: 14px;
      opacity: .7;
    }

    @keyframes ticker {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ============ SECTION helpers ============ */
    section {
      position: relative;
    }

    .section-pad {
      padding: clamp(80px, 12vw, 160px) 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: clamp(40px, 6vw, 84px);
      flex-wrap: wrap;
    }

    .section-title {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      font-size: clamp(28px, 4.2vw, 50px);
      line-height: 1.05;
      letter-spacing: 0;
      max-width: 15ch;
    }

    .section-title em {
      font-style: normal;
      font-weight: 400;
      color: var(--rust);
    }

    .section-title.on-dark em {
      color: var(--cool);
    }

    .index-num {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: var(--ink-45);
    }

    /* ============ MISSION ============ */
    .mission-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: clamp(32px, 6vw, 90px);
      align-items: start;
    }

    .mission-quote {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      letter-spacing: -.01em;
      font-size: clamp(26px, 3.6vw, 44px);
      line-height: 1.24;
      color: var(--ink);
    }

    .mission-quote .accent {
      color: var(--rust);
    }

    .mission-side {
      display: flex;
      flex-direction: column;
      gap: 26px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
    }

    .mission-side p {
      font-size: 15.5px;
      line-height: 1.7;
      color: var(--ink-70);
    }

    .diff-band {
      background: var(--cream-2);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .diff-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: clamp(20px, 3vw, 32px);
      padding-top: clamp(28px, 4vw, 44px);
      padding-bottom: clamp(28px, 4vw, 44px);
    }

    @media(max-width:900px) {
      .diff-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .diff-item {
      border-top: 1px solid var(--line);
      padding-top: 14px;
    }

    .diff-item .diff-label {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 14px;
      letter-spacing: .01em;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .diff-item p {
      font-size: 13px;
      line-height: 1.55;
      color: var(--ink-70);
    }

    .stat-row {
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat .num {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 400;
      color: var(--rust);
    }

    .stat .lbl {
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-45);
    }

    .stat-row-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      row-gap: 20px;
      column-gap: 24px;
    }

    /* ============ FEATURED CASE STUDY ============ */
    .featured-case {
      background: var(--cream-2);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding-top: clamp(56px, 8vw, 96px);
      padding-bottom: clamp(56px, 8vw, 96px);
    }

    .fc-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 56px;
      align-items: center;
    }

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

    .fc-image {
      border-radius: 4px;
      overflow: hidden;
      max-width: 440px;
      margin: 0 auto;
    }

    .fc-image img {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      display: block;
    }

    @media(min-width:900px) {
      .fc-image {
        margin: 0;
      }
    }

    .fc-csr {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .fc-csr-item {
      border-top: 1px solid var(--line);
      padding-top: 14px;
    }

    .fc-csr-label {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--rust);
      display: block;
      margin-bottom: 4px;
    }

    .fc-csr-item p {
      font-size: 14px;
      line-height: 1.55;
      color: var(--ink-70);
    }

    .fc-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 32px;
      background: var(--rust);
      color: var(--cream) !important;
      padding: 16px 26px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    }

    .fc-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    }

    .view-all-cs {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid var(--line);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--rust);
    }

    .view-all-cs:hover {
      color: var(--brown);
    }

    .section-divider-mark {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 36px 0;
    }

    .section-divider-mark img {
      width: 44px;
      height: 44px;
      opacity: .85;
    }

    /* ============ FOUNDERS ============ */
    .founders-section {
      background: var(--cream-2);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .founders-intro {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      font-size: clamp(19px, 2.4vw, 26px);
      line-height: 1.42;
      color: var(--ink);
      max-width: 68ch;
      margin-bottom: clamp(48px, 7vw, 84px);
    }

    .founders-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 4vw, 56px);
      margin-bottom: clamp(40px, 6vw, 64px);
    }

    .founder-card img {
      width: 100%;
      max-width: 360px;
      aspect-ratio: 4/5;
      object-fit: cover;
      object-position: center 15%;
      border-radius: 2px;
      display: block;
      margin-bottom: 24px;
    }

    .founder-card h3 {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      font-size: clamp(19px, 2.2vw, 24px);
      letter-spacing: .01em;
      margin-bottom: 12px;
    }

    .founder-pillar {
      display: inline-block;
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 12px;
    }

    .founder-card p {
      font-size: 15px;
      line-height: 1.65;
      color: var(--ink-70);
      max-width: 42ch;
    }

    .founder-expertise {
      margin-top: 14px;
      font-size: 12.5px;
      line-height: 1.6;
      color: var(--ink-45);
      max-width: 44ch;
    }

    .founder-expertise span {
      color: var(--ink);
      font-weight: 600;
    }

    @media(max-width:760px) {
      .founders-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============ COLLECTIVE (talent index) ============ */
    .collective {
      background: var(--cream-2);
      position: relative;
      overflow: hidden;
    }

    .collective .wrap {
      position: relative;
      z-index: 1;
    }

    .sunburst-collective-bg {
      position: absolute;
      top: auto;
      bottom: -70px;
      right: -50px;
      width: 440px;
      height: 440px;
      background-image: url('../images/sunburst.webp');
      background-size: contain;
      background-repeat: no-repeat;
      opacity: .08;
      z-index: 0;
      pointer-events: none;
    }

    .talent-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 16px;
      padding-bottom: 18px;
      margin-bottom: 8px;
      border-bottom: 1px solid var(--line);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-45);
    }

    .pillar-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
    }

    .pillar-filter {
      background: none;
      border: 0;
      padding: 0;
      cursor: pointer;
      font-family: inherit;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-45);
      transition: color .25s var(--ease);
    }

    .pillar-filter:hover {
      color: var(--brown);
    }

    .pillar-filter.is-active {
      color: var(--rust);
    }

    .talent-grid {
      display: grid;
      grid-auto-flow: dense;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 34vw;
      gap: 12px;
    }

    .talent-card.is-hidden {
      display: none;
    }

    @media(min-width:640px) {
      .talent-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
        gap: 14px;
      }
    }

    @media(min-width:1020px) {
      .talent-grid {
        grid-template-columns: repeat(5, 1fr);
        grid-auto-rows: 150px;
        gap: 16px;
      }
    }

    .talent-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      cursor: pointer;
      background: var(--ink);
      grid-column: span 1;
      grid-row: span 2;
    }

    .talent-card.tc-large {
      grid-column: span 2;
      grid-row: span 4;
    }

    .talent-card.tc-wide {
      grid-column: span 2;
      grid-row: span 2;
    }

    .talent-card.tc-tall {
      grid-column: span 1;
      grid-row: span 3;
    }

    .talent-card.tc-square {
      grid-column: span 2;
      grid-row: span 3;
    }

    .talent-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      transform: scale(1.03);
      transition: transform .8s var(--ease), filter .5s var(--ease);
      z-index: 0;
      filter: saturate(.9) contrast(.96) brightness(1.01) sepia(.035);
    }

    .talent-card:hover img {
      transform: scale(1.07);
    }

    .talent-card[data-slug="chloe-wheatland"] img {
      object-position: center 4%;
    }

    .talent-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: url('../images/card-texture.webp') repeat, var(--cream);
      background-size: 100px 100px, auto;
      background-blend-mode: soft-light;
      mix-blend-mode: soft-light;
      opacity: .4;
      transition: opacity .4s var(--ease);
    }

    .talent-card:hover::before {
      opacity: .55;
    }

    .talent-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(180deg, rgba(32, 32, 29, 0) 40%, rgba(32, 32, 29, .88) 100%);
      opacity: .8;
      transition: opacity .4s var(--ease);
    }

    .talent-card:hover::after {
      opacity: .94;
      background: linear-gradient(180deg, rgba(92, 64, 51, 0) 35%, rgba(92, 64, 51, .82) 100%);
    }

    .talent-card-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 12px 14px 14px;
      color: var(--cream);
      z-index: 3;
    }

    .talent-card-name {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: clamp(14px, 1.6vw, 19px);
      line-height: 1.15;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }

    .talent-card-name .tc-arrow {
      opacity: 0;
      transform: translate(-4px, 4px);
      transition: all .35s var(--ease);
      font-size: 14px;
      color: var(--cool);
      flex-shrink: 0;
    }

    .talent-card-desc {
      font-size: 11px;
      letter-spacing: .03em;
      color: rgba(250, 246, 237, .72);
      margin-top: 3px;
    }

    .talent-card:hover .tc-arrow {
      opacity: 1;
      transform: translate(0, 0);
    }

    /* Talent profile - in-page "subpage" opened from the roster grid */
    .talent-profile {
      position: fixed;
      inset: 0;
      z-index: 500;
      background: var(--cream);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      opacity: 0;
      visibility: hidden;
      transform: translateY(24px);
      transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s linear .45s;
    }

    .talent-profile.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s;
    }

    body.profile-open {
      overflow: hidden;
    }

    .tp-top {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px clamp(20px, 5vw, 56px);
      background: var(--cream);
      border-bottom: 1px solid var(--line);
    }

    .tp-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 13px;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
      background: none;
      border: 0;
      cursor: pointer;
      padding: 0;
    }

    .tp-back:hover {
      color: var(--brown);
    }

    .tp-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: none;
      cursor: pointer;
      position: relative;
      flex-shrink: 0;
    }

    .tp-close::before,
    .tp-close::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 14px;
      height: 1.5px;
      background: var(--ink);
      transform-origin: center;
    }

    .tp-close::before {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .tp-close::after {
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    .tp-close:hover::before,
    .tp-close:hover::after {
      background: var(--brown);
    }

    .tp-body {
      max-width: 1100px;
      margin: 0 auto;
      padding: clamp(30px, 6vw, 64px) clamp(20px, 5vw, 56px) 100px;
      display: grid;
      gap: clamp(30px, 5vw, 64px);
    }

    @media(min-width:800px) {
      .tp-body {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
    }

    .tp-photo-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }

    .tp-photo-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: url('../images/card-texture.webp') repeat, var(--cream);
      background-size: 100px 100px, auto;
      background-blend-mode: soft-light;
      mix-blend-mode: soft-light;
      opacity: .4;
    }

    .tp-photo {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 2px;
      display: block;
      filter: saturate(.9) contrast(.96) brightness(1.01) sepia(.035);
    }

    .tp-gallery {
      display: flex;
      gap: 10px;
      margin-top: 12px;
    }

    .tp-gallery img {
      width: 64px;
      height: 80px;
      object-fit: cover;
      border-radius: 2px;
      cursor: pointer;
      opacity: .55;
      border: 1.5px solid transparent;
      filter: saturate(.9) contrast(.96) brightness(1.01) sepia(.035);
      transition: opacity .2s var(--ease), border-color .2s var(--ease);
    }

    .tp-gallery img:hover {
      opacity: .85;
    }

    .tp-gallery img.is-active {
      opacity: 1;
      border-color: var(--rust);
    }

    .tp-eyebrow {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 14px;
    }

    .tp-name {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      font-size: clamp(30px, 4.4vw, 48px);
      line-height: 1.06;
      color: var(--ink);
      margin-bottom: 10px;
    }

    .tp-role {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: clamp(13.5px, 1.5vw, 15.5px);
      color: var(--terracotta);
      line-height: 1.5;
      max-width: 46ch;
      margin-bottom: 22px;
    }

    .tp-pillars {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 26px;
    }

    .tp-pillar {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 12px;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--rust);
      border: 1px solid var(--rust);
      border-radius: 20px;
      padding: 6px 14px;
      text-decoration: none;
      cursor: pointer;
      transition: background .25s var(--ease), color .25s var(--ease);
    }

    .tp-pillar:hover {
      background: var(--rust);
      color: #fff;
    }

    .tp-bio {
      font-size: 16.5px;
      line-height: 1.7;
      color: var(--ink-70);
      max-width: 52ch;
      margin-bottom: 14px;
    }

    .tp-location {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 13px;
      letter-spacing: .03em;
      color: var(--ink-45);
      margin-bottom: 32px;
    }

    .tp-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
    }

    .tp-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--rust);
      color: var(--cream);
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 14px;
      letter-spacing: .03em;
      padding: 15px 26px;
      border-radius: 40px;
      text-decoration: none;
      transition: background .3s var(--ease);
    }

    .tp-cta:hover {
      background: var(--brown-dark);
    }

    .tp-cta-ghost {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--ink-45);
    }

    .tp-cta-ghost:hover {
      background: transparent;
      color: var(--brown);
      border-color: var(--brown);
    }

    .tp-highlight {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 14.5px;
      letter-spacing: .02em;
      font-style: italic;
      color: var(--rust);
      border-left: 2px solid var(--rust);
      padding-left: 12px;
      margin: 2px 0 18px;
      max-width: 46ch;
    }

    .tp-website {
      display: inline-block;
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 13.5px;
      color: var(--ink-70);
      text-decoration: none;
      border-bottom: 1px solid var(--line);
      padding-bottom: 1px;
      margin-top: 22px;
      transition: color .3s var(--ease), border-color .3s var(--ease);
    }

    .tp-website:hover {
      color: var(--brown);
      border-color: var(--brown);
    }

    .tp-social {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 14px;
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--ink-45);
      padding-bottom: 2px;
      transition: color .3s var(--ease), border-color .3s var(--ease);
    }

    .tp-social:hover {
      color: var(--brown);
      border-color: var(--brown);
    }

    .tp-socials {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
    }

    .tp-secondary {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .tp-secondary-label {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-45);
      margin-bottom: 10px;
    }

    .tp-followers {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 14px;
      color: var(--taupe);
    }

    .tp-followers strong {
      color: var(--rust);
      font-weight: 400;
    }

    /* ============ STUDIO (dark, production) ============ */
    .studio {
      background: var(--dark-bg);
      color: var(--cream);
    }

    .studio .eyebrow {
      color: rgba(250, 246, 237, .5);
    }

    .studio-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 6vw, 80px);
      margin-bottom: clamp(48px, 7vw, 90px);
    }

    .studio-intro p {
      font-size: 15.5px;
      line-height: 1.75;
      color: rgba(250, 246, 237, .72);
    }

    .studio-intro .lead {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 500;
      font-size: clamp(24px, 3vw, 34px);
      letter-spacing: -.01em;
      line-height: 1.3;
      color: var(--cream);
    }

    .studio-tagline {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      font-size: clamp(22px, 3vw, 32px);
      margin-top: 18px;
      color: var(--cool);
    }

    .masonry {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .masonry figure {
      margin: 0;
      overflow: hidden;
      border-radius: 2px;
      position: relative;
    }

    .m-row {
      display: grid;
      gap: 16px;
    }

    .m-row-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .m-row-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    @media(max-width:600px) {

      .m-row-2,
      .m-row-3 {
        grid-template-columns: 1fr;
      }
    }

    .masonry img,
    .masonry video {
      width: 100%;
      height: auto;
      display: block;
      filter: grayscale(45%) contrast(1.02);
      transition: filter .6s var(--ease), transform .8s var(--ease);
    }

    .masonry figure:hover img,
    .masonry figure:hover video {
      filter: grayscale(0%);
      transform: scale(1.03);
    }

    .masonry .video-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 4px 10px 4px 8px;
      background: rgba(20, 15, 10, .55);
      backdrop-filter: blur(3px);
      border-radius: 20px;
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 10.5px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--cream);
      pointer-events: none;
      z-index: 2;
    }

    .masonry .video-badge svg {
      width: 9px;
      height: 9px;
      fill: var(--cream);
    }

    .brand-section {
      background: var(--rust);
      padding: clamp(50px, 7vw, 80px) 0 clamp(70px, 9vw, 100px);
    }

    .brand-section .eyebrow {
      color: rgba(250, 246, 237, .6);
    }

    .brand-section .section-title {
      color: var(--cream);
    }

    .brand-wall {
      margin-top: clamp(32px, 5vw, 48px);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid rgba(250, 246, 237, .22);
      border-left: 1px solid rgba(250, 246, 237, .22);
    }

    @media(min-width:640px) {
      .brand-wall {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media(min-width:1100px) {
      .brand-wall {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    .brand-cell {
      border-right: 1px solid rgba(250, 246, 237, .22);
      border-bottom: 1px solid rgba(250, 246, 237, .22);
      min-height: clamp(100px, 10vw, 132px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 14px;
      text-align: center;
    }

    .brand-cell span {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: .02em;
      font-size: clamp(15px, 1.7vw, 22px);
      color: var(--cream);
    }

    .brand-cell.bc-lg span {
      font-weight: 500;
      font-size: clamp(19px, 2.4vw, 30px);
      letter-spacing: .01em;
    }

    /* ============ SERVICES ============ */
    .service-row {
      display: grid;
      grid-template-columns: 70px 1fr 1.1fr 26px;
      align-items: center;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--line);
      text-decoration: none;
      color: inherit;
    }

    .service-num {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      font-size: 18px;
      color: var(--ink-45);
    }

    .service-name {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      text-transform: uppercase;
      font-size: clamp(18px, 2.2vw, 26px);
      font-weight: 400;
      transition: color .3s var(--ease);
    }

    .service-desc {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--ink-70);
      max-width: 46ch;
    }

    .service-arrow {
      font-size: 20px;
      color: var(--rust);
      display: inline-block;
      transition: transform .3s var(--ease);
    }

    a.service-row:hover .service-name {
      color: var(--rust);
    }

    a.service-row:hover .service-arrow {
      transform: translate(3px, -3px);
    }

    @media(max-width:720px) {
      .service-row {
        grid-template-columns: 40px 1fr 22px;
      }

      .service-desc {
        grid-column: 2/4;
        max-width: 100%;
        margin-top: 6px;
      }
    }

    /* ============ CONTACT ============ */
    .contact {
      background: linear-gradient(160deg, rgba(128, 40, 24, .95), rgba(89, 28, 17, .97));
      color: var(--cream);
    }

    .contact-title {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      font-size: clamp(28px, 5vw, 58px);
      line-height: 1.1;
      max-width: 17ch;
      margin-bottom: clamp(40px, 6vw, 70px);
    }

    .contact-title em {
      font-style: normal;
      font-weight: 400;
      color: var(--cool);
    }

    .contact-grid {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 30px;
      flex-wrap: wrap;
      padding-top: 30px;
      border-top: 1px solid rgba(250, 246, 237, .35);
    }

    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .contact-links a {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 500;
      border-bottom: 1px solid transparent;
      width: fit-content;
      transition: border-color .3s var(--ease), opacity .3s;
    }

    .contact-links a:hover {
      border-color: var(--cream);
    }

    .contact-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--cream);
      color: var(--ink) !important;
      padding: 16px 26px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    }

    .contact-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
    }

    /* ============ INSTAGRAM ============ */
    .ig-section {
      border-top: 1px solid var(--line);
    }

    .section-link {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 13.5px;
      color: var(--brown);
      text-decoration: none;
      border-bottom: 1px solid var(--brown);
      padding-bottom: 2px;
      white-space: nowrap;
      transition: color .3s var(--ease), border-color .3s var(--ease);
    }

    .section-link:hover {
      color: var(--rust-dark);
      border-color: var(--rust-dark);
    }

    .ig-scroller {
      display: flex;
      gap: 16px;
      margin-top: clamp(28px, 4vw, 44px);
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 10px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .ig-scroller::-webkit-scrollbar {
      display: none;
    }

    .ig-tile {
      position: relative;
      flex: 0 0 auto;
      width: clamp(200px, 24vw, 280px);
      aspect-ratio: 4/5;
      border-radius: 2px;
      overflow: hidden;
      scroll-snap-align: start;
      text-decoration: none;
      display: block;
      background: var(--cream-2);
    }

    .ig-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s var(--ease);
    }

    .ig-tile:hover img {
      transform: scale(1.05);
    }

    .ig-tile-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 16px 14px;
      background: linear-gradient(0deg, rgba(20, 15, 10, .78), transparent);
      color: var(--cream);
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-size: 14.5px;
      line-height: 1.4;
    }

    .ig-tile-caption small {
      display: block;
      margin-top: 3px;
      font-size: 11px;
      letter-spacing: .06em;
      text-transform: uppercase;
      opacity: .8;
    }

    .ig-tile-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 30px;
      background: var(--rust);
      color: var(--cream);
    }

    .ig-tile-text.ig-tile-dark {
      background: var(--dark-bg);
    }

    .ig-tile-text p {
      font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.45;
    }

    .ig-tile-icon svg {
      width: 26px;
      height: 26px;
      fill: var(--cream);
      margin-bottom: 16px;
      opacity: .9;
    }

    .ig-dots {
      display: flex;
      gap: 8px;
      margin-top: 22px;
      justify-content: center;
    }

    .ig-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      border: 1px solid var(--ink-45);
      background: transparent;
      padding: 0;
      cursor: pointer;
      transition: background .3s var(--ease), border-color .3s var(--ease);
    }

    .ig-dot.is-active {
      background: var(--rust);
      border-color: var(--rust);
    }

    .ig-scroller-wrap {
      position: relative;
    }

    .ig-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--cream);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
      transition: background .3s var(--ease), border-color .3s var(--ease);
    }

    .ig-arrow svg {
      width: 18px;
      height: 18px;
      fill: var(--ink);
      transition: fill .3s var(--ease);
    }

    .ig-arrow:hover {
      background: var(--rust);
      border-color: var(--rust);
    }

    .ig-arrow:hover svg {
      fill: var(--cream);
    }

    .ig-arrow-prev {
      left: -4px;
    }

    .ig-arrow-next {
      right: -4px;
    }

    @media(max-width:900px) {
      .ig-arrow {
        display: none;
      }
    }

    @media(max-width:600px) {
      .ig-section .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
      }
    }

    /* ============ FOOTER ============ */
    footer {
      background: var(--dark-bg);
      color: rgba(250, 246, 237, .6);
      padding: 56px 0 28px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
      flex-wrap: wrap;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--line-onDark);
      margin-bottom: 26px;
    }

    .footer-logo {
      width: 160px;
    }

    .footer-logo img {
      display: block;
      width: 100%;
      height: auto;
    }

    .footer-nav {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }

    .footer-nav a {
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(250, 246, 237, .65);
    }

    .footer-nav a:hover {
      color: var(--cool);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 12px;
      line-height: 1.6;
    }

    .footer-ack {
      max-width: 52ch;
      color: rgba(250, 246, 237, .45);
    }

    @media(max-width:900px) {
      nav.primary-nav {
        display: none;
      }

      .burger {
        display: block;
      }

      .mission-grid {
        grid-template-columns: 1fr;
      }

      .studio-intro {
        grid-template-columns: 1fr;
      }
    }

    ::selection {
      background: var(--rust);
      color: var(--cream);
    }

/* ============ CASE STUDIES ============ */
.cs-dek{
    font-family:'Alte Haas Grotesk','Inter',sans-serif;
    font-weight:500;
    font-size:clamp(18px,2vw,22px);
    color:var(--ink-70);
    margin-top:14px;
    max-width:52ch;
  }
  .cs-meta-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:clamp(36px,5vw,56px);
    padding-top:24px;
    border-top:1px solid var(--line);
  }
  @media(max-width:900px){.cs-meta-grid{grid-template-columns:repeat(2,1fr);}}
  @media(max-width:520px){.cs-meta-grid{grid-template-columns:1fr;}}
  .cs-meta-item{display:flex;flex-direction:column;gap:6px;}
  .cs-meta-label{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-45);}
  .cs-meta-value{font-size:14px;color:var(--ink);line-height:1.5;}
  .cs-hero-media{
    margin-top:clamp(32px,5vw,48px);
    border-radius:2px;overflow:hidden;
  }
  .cs-hero-media video{width:100%;display:block;}
  .cs-copy p{font-size:15.5px;line-height:1.75;color:var(--ink-70);margin-top:12px;}
  .cs-role-list{
    margin-top:20px;
    display:grid;grid-template-columns:1fr 1fr;gap:8px 24px;
  }
  @media(max-width:600px){.cs-role-list{grid-template-columns:1fr;}}
  .cs-role-list li{
    font-size:14px;color:var(--ink-70);
    padding-left:18px;position:relative;
  }
  .cs-role-list li::before{
    content:'';position:absolute;left:0;top:9px;
    width:6px;height:6px;border-radius:50%;background:var(--rust);
  }
  .cs-stats{
    display:grid;grid-template-columns:repeat(4,1fr);
    gap:32px 24px;
    margin-top:clamp(28px,4vw,44px);
  }
  @media(max-width:900px){.cs-stats{grid-template-columns:repeat(2,1fr);}}
  .cs-quote{max-width:760px;margin:0 auto;text-align:center;}
  .cs-quote p{
    font-family:'Alte Haas Grotesk','Inter',sans-serif;
    font-weight:400;
    font-size:clamp(20px,2.6vw,30px);
    line-height:1.5;
    color:var(--cream);
  }
  .cs-quote-attr{
    display:block;margin-top:20px;
    font-size:12px;letter-spacing:.14em;text-transform:uppercase;
    color:rgba(250,246,237,.55);
  }
  .cs-result{
    font-family:'Alte Haas Grotesk','Inter',sans-serif;
    font-weight:500;
    font-size:clamp(20px,2.4vw,26px);
    line-height:1.4;
    color:var(--ink);
  }
  .cs-grid{
    margin-top:clamp(32px,5vw,48px);
    display:grid;grid-template-columns:1fr;gap:28px;
  }
  .cs-card{
    display:grid;grid-template-columns:1.1fr 1fr;
    gap:0;
    border:1px solid var(--line);
    border-radius:2px;
    overflow:hidden;
    text-decoration:none;
    transition:border-color .3s var(--ease);
  }
  .cs-card:hover{border-color:var(--taupe);}
  .cs-card-media{position:relative;overflow:hidden;height:340px;background:var(--dark-bg);}
  .cs-card-media video,.cs-card-media img{width:100%;height:100%;object-fit:cover;display:block;filter:grayscale(35%);transition:filter .5s var(--ease),transform .8s var(--ease);}
  .cs-card:hover .cs-card-media video,.cs-card:hover .cs-card-media img{filter:grayscale(0%);transform:scale(1.04);}
  .cs-card-body{padding:clamp(28px,4vw,44px);display:flex;flex-direction:column;justify-content:center;}
  .cs-card-eyebrow{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--taupe);margin-bottom:10px;}
  .cs-card-title{font-family:'Alte Haas Grotesk','Inter',sans-serif;font-weight:400;font-size:clamp(22px,2.6vw,30px);color:var(--ink);margin-bottom:12px;}
  .cs-card-dek{font-size:14.5px;line-height:1.6;color:var(--ink-70);margin-bottom:18px;}
  .cs-card-stats{display:flex;gap:24px;flex-wrap:wrap;margin-bottom:18px;}
  .cs-card-stats .stat .num{font-size:clamp(22px,2.4vw,28px);}
  .cs-card-link{font-family:'Alte Haas Grotesk','Inter',sans-serif;font-size:13.5px;color:var(--brown);text-decoration:none;border-bottom:1px solid var(--brown);padding-bottom:2px;display:inline-block;width:fit-content;}
  @media(max-width:800px){.cs-card{grid-template-columns:1fr;}.cs-card-media{height:220px;}}

  .cs-banner{
    margin-top:clamp(32px,5vw,48px);
    border-radius:2px;overflow:hidden;
    aspect-ratio:1.393;
    max-width:900px;
  }
  .cs-banner img{width:100%;height:100%;object-fit:cover;display:block;}
  @media(max-width:700px){.cs-banner{max-width:none;}}

  .cs-gallery{
    margin-top:clamp(32px,5vw,48px);
    column-count:3;column-gap:20px;
  }
  .cs-gallery img{
    width:100%;display:block;margin-bottom:20px;
    border-radius:2px;break-inside:avoid;
  }
  .cs-gallery-video{
    position:relative;margin-bottom:20px;
    border-radius:2px;overflow:hidden;break-inside:avoid;
  }
  .cs-gallery-video video{width:100%;display:block;}
  .cs-gallery-video .video-badge{
    position:absolute;top:10px;right:10px;
    display:flex;align-items:center;gap:5px;
    padding:4px 10px 4px 8px;
    background:rgba(20,15,10,.55);
    backdrop-filter:blur(3px);
    border-radius:20px;
    font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--cream);
  }
  .cs-gallery-video .video-badge svg{width:9px;height:9px;fill:var(--cream);}
  .cs-gallery-caption{
    margin-top:14px;
    font-size:13px;color:var(--ink-70);
    max-width:70ch;
  }
  @media(max-width:800px){.cs-gallery{column-count:2;}}
  @media(max-width:520px){.cs-gallery{column-count:1;}}

  .brand-row{
    margin-top:clamp(50px,7vw,84px);
    padding-top:26px;
    border-top:1px solid var(--line-onDark);
  }
  .brand-row .eyebrow{margin-bottom:16px;}
  .brand-list{display:flex;flex-wrap:wrap;gap:10px 14px;}
  .brand-list span{
    font-size:13px;
    padding:8px 16px;
    border:1px solid var(--line-onDark);
    border-radius:999px;
    color:rgba(250,246,237,.75);
  }

  [data-reveal="stagger"] > *{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .7s var(--ease),transform .7s var(--ease);
  }
  [data-reveal="stagger"].is-visible > *{opacity:1;transform:translateY(0);}
  [data-reveal="stagger"].is-visible > *:nth-child(1){transition-delay:.02s;}
  [data-reveal="stagger"].is-visible > *:nth-child(2){transition-delay:.09s;}
  [data-reveal="stagger"].is-visible > *:nth-child(3){transition-delay:.16s;}
  [data-reveal="stagger"].is-visible > *:nth-child(4){transition-delay:.23s;}
  [data-reveal="stagger"].is-visible > *:nth-child(5){transition-delay:.30s;}
  [data-reveal="stagger"].is-visible > *:nth-child(6){transition-delay:.37s;}

/* ============ SUBPAGE LAYOUT (Talent & Case Studies) ============ */
.talent-page-main {
  padding-top: clamp(96px, 14vw, 132px);
}
.tp-body {
  padding-bottom: 80px;
}
.tp-crumb {
  font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
}
.tp-crumb a {
  color: var(--taupe);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.tp-crumb a:hover {
  color: var(--brown);
  border-color: var(--brown);
}
.related-talent {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px) 100px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.related-talent h2 {
  font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ink);
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.related-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  object-position: center 18%;
}
.related-card-name {
  display: block;
  margin-top: 10px;
  font-family: 'Alte Haas Grotesk', 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
}
.related-card-role {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--ink-45);
}
