/* ─── Variables ─── */
    :root {
      --y:    #FFE45C;
      --k:    #0A0A0A;
      --w:    #FFFFFF;
      --g:    #F5F4F0;
      --mute: #8A8A8A;
      --ease: cubic-bezier(.16,1,.3,1);
      --r:    18px;
    }

    /* ─── Reset ─── */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--w);
      color: var(--k);
      cursor: none;
      overflow-x: hidden;
    }

    /* ─── Display font shorthand ─── */
    .disp {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -.02em;
      line-height: .95;
    }

    /* ─── Cursor ─── */
    #dot, #ring {
      position: fixed;
      pointer-events: none;
      border-radius: 50%;
      transform: translate(-50%,-50%);
      will-change: left, top;
      z-index: 9999;
    }
    #dot {
      width: 8px; height: 8px;
      background: var(--k);
      z-index: 9999;
      transition: background .2s, transform .15s;
    }
    #ring {
      width: 36px; height: 36px;
      border: 1.5px solid var(--k);
      z-index: 9998;
      transition: width .35s var(--ease), height .35s var(--ease),
                  opacity .3s, border-color .2s;
    }
    #ring.big  { width:54px; height:54px; opacity:.38; }
    #dot.inv   { background: var(--w); }
    #ring.inv  { border-color: rgba(255,255,255,.6); }

    /* ─── Glass utility ─── */
    .glass {
      background: rgba(255,255,255,.7);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border: 1px solid rgba(255,255,255,.72);
      box-shadow:
        0 4px 32px rgba(0,0,0,.07),
        inset 0 1.5px 0 rgba(255,255,255,.95),
        inset 0 -1px 0 rgba(0,0,0,.04);
    }
    .glass-dark {
      background: rgba(20,20,20,.55);
      backdrop-filter: blur(24px) saturate(160%);
      -webkit-backdrop-filter: blur(24px) saturate(160%);
      border: 1px solid rgba(255,255,255,.1);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 4px 24px rgba(0,0,0,.4);
    }

    /* ─── BUTTONS ─── */
    .btn-k {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 12px 26px; border-radius: 100px;
      background: var(--k); color: var(--w);
      font-size: 13px; font-weight: 600; letter-spacing: .03em;
      text-decoration: none;
      transition: opacity .2s, transform .2s;
      white-space: nowrap;
    }
    .btn-k:hover { opacity:.76; transform:translateY(-1px); }

    .btn-y {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 12px 26px; border-radius: 100px;
      background: var(--y); color: var(--k);
      font-size: 13px; font-weight: 600; letter-spacing: .03em;
      text-decoration: none;
      transition: opacity .2s, transform .2s;
      white-space: nowrap;
    }
    .btn-y:hover { opacity:.82; transform:translateY(-1px); }

    .btn-glass {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 12px 26px; border-radius: 100px;
      background: rgba(255,255,255,.68);
      backdrop-filter: blur(16px) saturate(160%);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
      border: 1px solid rgba(0,0,0,.1);
      box-shadow: 0 2px 10px rgba(0,0,0,.05), inset 0 1.5px 0 rgba(255,255,255,.9);
      font-size: 13px; font-weight: 600; letter-spacing: .03em;
      color: var(--k); text-decoration: none;
      transition: box-shadow .25s, transform .2s;
      white-space: nowrap;
    }
    .btn-glass:hover { transform:translateY(-1px); box-shadow:0 5px 20px rgba(0,0,0,.09), inset 0 1.5px 0 rgba(255,255,255,.9); }

    .btn-glass-inv {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 12px 26px; border-radius: 100px;
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
      font-size: 13px; font-weight: 600; letter-spacing: .03em;
      color: rgba(255,255,255,.85); text-decoration: none;
      transition: background .25s, transform .2s;
      white-space: nowrap;
    }
    .btn-glass-inv:hover { background: rgba(255,255,255,.17); transform:translateY(-1px); }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 18px; left: 50%;
      transform: translateX(-50%);
      z-index: 800;
      display: flex; align-items: center;
      gap: 4px;
      padding: 7px 7px 7px 22px;
      border-radius: 100px;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(32px) saturate(200%);
      -webkit-backdrop-filter: blur(32px) saturate(200%);
      border: 1px solid rgba(255,255,255,.8);
      box-shadow:
        0 4px 28px rgba(0,0,0,.08),
        inset 0 1.5px 0 rgba(255,255,255,.98),
        inset 0 -1px 0 rgba(0,0,0,.04);
      opacity: 0;
      animation: navIn .55s .1s var(--ease) forwards;
    }
    .nav-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px; font-weight: 900;
      text-transform: uppercase; letter-spacing: .04em;
      color: var(--k); text-decoration: none;
      margin-right: 8px;
    }
    .nav-links {
      list-style: none;
      display: flex; align-items: center; gap: 1px;
    }
    .nav-links a {
      display: block;
      font-size: 13.5px; font-weight: 500;
      text-decoration: none; color: var(--k);
      padding: 7px 16px; border-radius: 100px;
      letter-spacing: .01em;
      transition: background .2s;
    }
    .nav-links a:hover { background: rgba(0,0,0,.05); }
    .nav-links a.active {
      background: var(--k); color: var(--w);
    }
    .nav-cta {
      margin-left: 4px;
      font-size: 13.5px; font-weight: 600; letter-spacing: .01em;
      text-decoration: none; color: var(--w);
      background: var(--k);
      padding: 9px 22px; border-radius: 100px;
      transition: opacity .2s;
    }
    .nav-cta:hover { opacity:.72; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background: var(--w);
      position: relative; overflow: hidden;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 0 72px 96px;
    }
    /* subtle radial warm glow top-right */
    .hero::before {
      content: '';
      position: absolute;
      top: -10%; right: -5%;
      width: 52vw; height: 52vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,228,92,.14) 0%, transparent 68%);
      pointer-events: none;
    }
    /* tiny yellow pill accent top-right background */
    .hero::after {
      content: '';
      position: absolute;
      top: 22%; right: 8%;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: rgba(255,228,92,.07);
      border: 1px solid rgba(255,228,92,.18);
      pointer-events: none;
    }

    .hero-inner {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: flex-end;
    }

    /* left: big wordmark */
    .hero-wordmark {
      font-size: clamp(110px, 15.5vw, 240px);
    }
    .hero-wm-line { display:block; overflow:hidden; }
    .hero-wm-line span {
      display: block;
      opacity:0; transform:translateY(105%);
      animation: slideUp .95s var(--ease) forwards;
    }
    .hero-wm-line:nth-child(1) span { animation-delay:.12s; }
    .hero-wm-line:nth-child(2) span { animation-delay:.22s; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 16px;
      background: rgba(255,228,92,.15);
      border: 1px solid rgba(255,228,92,.35);
      border-radius: 100px;
      padding: 5px 14px 5px 9px;
      font-size: 11.5px; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      color: var(--k);
      opacity: 0; animation: fadeUp .5s .55s var(--ease) forwards;
    }
    .hero-badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--y); display: block;
    }

    /* right: text content */
    .hero-right {
      opacity:0; animation: fadeUp .75s .35s var(--ease) forwards;
    }
    .hero-tagline {
      font-size: clamp(40px, 5vw, 66px);
      line-height: 1.06; font-family: 'Barlow Condensed';
      font-weight: 900; text-transform: uppercase;
      letter-spacing: -.01em;
    }
    .hero-tagline .yl {
      color: var(--k);
      -webkit-text-stroke: 0;
      position: relative; display: inline-block;
    }
    /* yellow underline accent on "whisper" */
    .hero-tagline .yl::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 0; right: 0;
      height: 5px;
      background: var(--y);
      border-radius: 3px;
    }
    .hero-body {
      font-size: 16px; font-weight: 400;
      line-height: 1.68; color: #636363;
      max-width: 380px; margin-top: 22px;
    }
    .hero-actions {
      display: flex; gap: 10px;
      margin-top: 36px; flex-wrap: wrap;
    }

    /* ─── TICKER ─── */
    .ticker {
      overflow: hidden; background: var(--k);
      padding: 13px 0; user-select: none;
    }
    .ticker-track {
      display: flex; width: max-content;
      animation: ticker 32s linear infinite;
    }
    .ticker-item {
      font-size: 11px; font-weight: 600;
      letter-spacing: .2em; text-transform: uppercase;
      color: rgba(255,255,255,.45);
      padding: 0 26px; white-space: nowrap;
    }
    .ticker-item.hi { color: var(--y); }

    /* ─── SECTION COMMON ─── */
    .sec  { padding: 120px 72px; }
    .sec-tag {
      display: inline-block;
      font-size: 11px; font-weight: 600;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--mute);
      margin-bottom: 52px;
      padding-left: 20px; position: relative;
    }
    .sec-tag::before {
      content: '';
      position: absolute; left: 0; top: 50%;
      transform: translateY(-50%);
      width: 10px; height: 1.5px;
      background: var(--mute);
    }

    /* ─── WORK ─── */
    #work { background: var(--g); }
    .work-head {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 40px;
    }
    .work-head h2 { font-size: clamp(40px,5vw,62px); }
    .work-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 14px;
    }
    .work-card {
      border-radius: var(--r);
      overflow: hidden; position: relative;
      aspect-ratio: 3/2; background: var(--k);
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    }
    .work-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 48px rgba(0,0,0,.16);
    }
    .wc-bg {
      position: absolute; inset:0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .65s var(--ease);
    }
    .work-card:hover .wc-bg { transform:scale(1.06); }
    .wc-bg.a { background: linear-gradient(148deg,#1c1c1c 0%,#2e2e2e 60%,#141414 100%); }
    .wc-bg.b { background: linear-gradient(148deg,#1e2123 0%,#333 60%,#191919 100%); }
    .wc-bg.c { background: linear-gradient(148deg,#141414 0%,#272727 60%,#1a1a1a 100%); }

    /* glass info strip at bottom of card */
    .wc-info {
      position: absolute; bottom:12px; left:12px; right:12px;
      padding: 16px 18px;
      border-radius: 12px;
      background: rgba(15,15,15,.52);
      backdrop-filter: blur(20px) saturate(150%);
      -webkit-backdrop-filter: blur(20px) saturate(150%);
      border: 1px solid rgba(255,255,255,.1);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 4px 16px rgba(0,0,0,.35);
      display: flex; justify-content: space-between; align-items: center;
      gap: 12px;
    }
    .wc-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px; font-weight: 900;
      text-transform: uppercase; color: #fff; line-height:1;
    }
    .wc-type {
      font-size: 10px; font-weight: 500;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.45); margin-top:4px;
    }
    .wc-btn {
      flex-shrink:0;
      width:32px; height:32px; border-radius:50%;
      border: 1px solid rgba(255,255,255,.2);
      display:flex; align-items:center; justify-content:center;
      color:#fff; font-size:14px;
      transition: background .2s, border-color .2s, color .2s;
    }
    .work-card:hover .wc-btn {
      background: var(--y); border-color: var(--y); color: var(--k);
    }

    /* ─── ABOUT (dark) ─── */
    #about { background: var(--k); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 96px; align-items: center;
    }
    .about-headline {
      font-size: clamp(62px,9vw,120px);
      color: var(--w);
    }
    .about-headline .yl { color: var(--y); }
    .about-sub {
      margin-top: 20px;
      display: inline-block;
      font-size: 11px; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: rgba(255,228,92,.5);
      border: 1px solid rgba(255,228,92,.2);
      border-radius: 100px;
      padding: 5px 14px;
    }
    .about-p {
      font-size: 17px; line-height:1.68;
      color: rgba(255,255,255,.62);
    }
    .about-p strong { color: var(--w); font-weight:600; }
    .about-p .yl    { color: var(--y); font-weight:600; }

    /* glass card quote */
    .glass-quote {
      margin-top: 36px;
      padding: 28px 30px;
      border-radius: var(--r);
      background: rgba(255,255,255,.05);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,.1);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.09);
      font-size: 15px; line-height:1.65;
      color: rgba(255,255,255,.5);
      font-style: italic;
    }
    .glass-quote strong { color: var(--y); font-style:normal; font-weight:600; }

    .about-cta { margin-top: 36px; }

    /* ─── SERVICES ─── */
    #services { background: var(--w); }
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 16px; margin-top: 0;
    }
    .svc-card {
      padding: 40px 40px 40px;
      border: 1px solid rgba(0,0,0,.07);
      border-radius: var(--r);
      position: relative; overflow: hidden;
      transition: box-shadow .3s, transform .3s, border-color .3s;
      background: var(--w);
    }
    /* subtle glow on hover */
    .svc-card::after {
      content: '';
      position: absolute; inset: -1px;
      border-radius: var(--r);
      border: 1.5px solid rgba(255,228,92,0);
      transition: border-color .3s;
      pointer-events: none;
    }
    .svc-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.07); transform:translateY(-2px); }
    .svc-card:hover::after { border-color: rgba(255,228,92,.45); }
    .svc-num {
      font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      background: var(--k); color: var(--y);
      display: inline-block; padding: 3px 11px;
      border-radius: 100px; margin-bottom: 22px;
    }
    .svc-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px; font-weight: 900;
      text-transform: uppercase; line-height:1.05;
      margin-bottom: 14px; letter-spacing: -.01em;
    }
    .svc-body {
      font-size: 14.5px; line-height: 1.68;
      color: #666;
    }

    /* ─── CTA ─── */
    #cta {
      background: var(--k);
      text-align: center;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      top: -30%; left: 50%; transform: translateX(-50%);
      width: 70vw; height: 70vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,228,92,.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-kicker {
      font-size: 11px; font-weight: 600;
      letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,228,92,.5);
      margin-bottom: 20px;
    }
    .cta-head {
      font-size: clamp(64px,10vw,128px);
      color: var(--w);
    }
    .cta-head .yl { color: var(--y); }
    .cta-body {
      font-size: 16px; color: rgba(255,255,255,.45);
      max-width: 380px; margin: 22px auto 0; line-height:1.68;
    }
    .cta-actions { display:flex; justify-content:center; gap:10px; margin-top:44px; flex-wrap:wrap; }
    .cta-email {
      margin-top:20px;
      font-size: 13px; color: rgba(255,255,255,.3);
      letter-spacing: .03em;
    }
    .cta-email a {
      color: rgba(255,228,92,.6); text-decoration:none;
      border-bottom: 1px solid rgba(255,228,92,.25);
      transition: color .2s, border-color .2s;
    }
    .cta-email a:hover { color: var(--y); border-color: var(--y); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--k);
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 28px 72px;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 14px;
    }
    .ft-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px; font-weight: 900;
      text-transform: uppercase; letter-spacing: .05em;
      color: var(--w); text-decoration: none;
    }
    .ft-links { display:flex; gap:20px; list-style:none; }
    .ft-links a {
      font-size: 12px; font-weight: 500;
      color: rgba(255,255,255,.3); text-decoration:none;
      letter-spacing: .06em; text-transform: uppercase;
      transition: color .2s;
    }
    .ft-links a:hover { color: var(--w); }
    .ft-copy {
      font-size: 12px; color: rgba(255,255,255,.22);
      letter-spacing:.04em;
    }

    /* ─── Scroll reveal ─── */
    .rev {
      opacity:0; transform: translateY(28px);
      transition: opacity .75s var(--ease), transform .75s var(--ease);
    }
    .rev.on { opacity:1; transform:translateY(0); }
    .d1 { transition-delay:.1s; }
    .d2 { transition-delay:.2s; }
    .d3 { transition-delay:.3s; }

    /* ─── Keyframes ─── */
    @keyframes slideUp {
      to { opacity:1; transform:translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(10px); }
      to   { opacity:1; transform:translateY(0); }
    }
    @keyframes navIn {
      from { opacity:0; transform:translateX(-50%) translateY(-10px); }
      to   { opacity:1; transform:translateX(-50%) translateY(0); }
    }
    @keyframes ticker {
      from { transform:translateX(0); }
      to   { transform:translateX(-50%); }
    }

    /* ─── Hero video ─── */
    .hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; z-index: 0;
    }
    .hero-video-glass {
      position: absolute; inset: 0;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(14px) saturate(150%);
      -webkit-backdrop-filter: blur(14px) saturate(150%);
      z-index: 1;
    }
    .hero::before, .hero::after { z-index: 2; }
    .hero-inner { position: relative; z-index: 3; }

    /* ─── Services carousel ─── */
    .svc-carousel-wrap { overflow: hidden; }
    .svc-track {
      display: flex; gap: 14px;
      transition: transform .62s cubic-bezier(.16,1,.3,1);
      will-change: transform; user-select: none;
    }
    .svc-slide {
      flex-shrink: 0;
      padding: 36px 28px 40px;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: var(--r);
      background: var(--w);
      transition: background .3s, box-shadow .3s, transform .3s;
      position: relative; overflow: hidden;
    }
    .svc-slide::after {
      content: '';
      position: absolute; inset: -1px;
      border-radius: var(--r);
      border: 1.5px solid rgba(255,228,92,0);
      transition: border-color .3s;
      pointer-events: none;
    }
    .svc-slide:hover { box-shadow: 0 8px 40px rgba(0,0,0,.07); transform: translateY(-2px); }
    .svc-slide:hover::after { border-color: rgba(255,228,92,.45); }

    /* ─── Carousel ─── */
    .carousel-wrap {
      overflow: hidden;
      position: relative;
    }
    .carousel-track {
      display: flex;
      gap: 14px;
      transition: transform .62s cubic-bezier(.16,1,.3,1);
      will-change: transform;
      user-select: none;
    }
    /* card widths set by JS; keep aspect ratio */
    #carTrack .work-card { flex-shrink: 0; }

    .car-controls {
      display: flex; gap: 8px;
      align-items: center;
    }
    .car-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,.1);
      background: rgba(255,255,255,.75);
      backdrop-filter: blur(16px) saturate(160%);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
      box-shadow: 0 2px 8px rgba(0,0,0,.07), inset 0 1.5px 0 rgba(255,255,255,.9);
      font-size: 16px; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      cursor: none;
      transition: opacity .2s, transform .2s, background .2s;
      font-family: inherit; color: var(--k);
    }
    .car-btn:hover { background: rgba(255,255,255,.95); transform: scale(1.06); }

    .car-dots {
      display: flex; gap: 6px;
      justify-content: center;
      margin-top: 24px;
    }
    .car-dot {
      height: 6px; width: 6px;
      border-radius: 3px;
      background: rgba(0,0,0,.18);
      border: none; cursor: none; padding: 0;
      transition: width .35s var(--ease), background .3s;
    }
    .car-dot.active {
      width: 24px;
      background: var(--k);
    }

    /* Client tag pill on cards */
    .wc-tag {
      position: absolute; top: 14px; left: 14px; z-index: 2;
      font-size: 10px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.65);
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 100px;
      padding: 4px 12px;
    }

    /* ─── Services columns (new) ─── */
    .svc-cols {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      border: 1px solid rgba(0,0,0,.08);
      border-radius: var(--r);
      overflow: hidden;
      margin-top: 0;
    }
    .svc-col {
      padding: 36px 28px 40px;
      border-right: 1px solid rgba(0,0,0,.08);
      transition: background .3s;
      position: relative;
    }
    .svc-col:last-child { border-right: none; }
    .svc-col:hover { background: rgba(255,228,92,.05); }
    .svc-col-num {
      font-size: 11px; font-weight: 700;
      letter-spacing: .1em;
      color: var(--y); background: var(--k);
      display: inline-block; padding: 2px 10px;
      border-radius: 100px; margin-bottom: 18px;
    }
    .svc-col-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px; font-weight: 900;
      text-transform: uppercase; letter-spacing: -.01em;
      line-height: 1; margin-bottom: 22px;
    }
    .svc-col-items { list-style: none; }
    .svc-col-items li {
      font-size: 13.5px; font-weight: 400;
      color: #666; line-height: 1;
      padding: 9px 0;
      border-top: 1px solid rgba(0,0,0,.06);
    }
    .svc-col-items li:first-child { border-top: none; }

    /* ─── Testimonial Cards ─── */
    #testimonials { padding-left: 0; padding-right: 0; background: var(--w); }
    .t-head { padding: 0 72px; margin-bottom: 48px; }
    .t-scroll {
      display: flex; gap: 0;
      overflow-x: auto; scroll-snap-type: x mandatory;
      scrollbar-width: none; -webkit-overflow-scrolling: touch;
      padding-left: 72px;
    }
    .t-scroll::-webkit-scrollbar { display: none; }
    .t-card {
      flex: 0 0 clamp(300px, 28vw, 420px);
      min-height: 500px; padding: 44px 40px 40px;
      scroll-snap-align: start;
      display: flex; flex-direction: column;
      justify-content: space-between;
    }
    .t-card:last-child { margin-right: 72px; }
    .t-y { background: var(--y); color: var(--k); }
    .t-k { background: var(--k); color: var(--w); }
    .t-g { background: #F0EDE4;  color: var(--k); }
    .t-d { background: #161616;  color: var(--w); }
    .t-c { background: #EDE8DC;  color: var(--k); }
    .t-quote { font-size: 15.5px; line-height: 1.72; font-style: italic; flex: 1; }
    .t-rule { height: 1px; margin: 28px 0 20px; background: rgba(0,0,0,.14); }
    .t-k .t-rule, .t-d .t-rule { background: rgba(255,255,255,.14); }
    .t-name { font-size: 15px; font-weight: 700; letter-spacing: .01em; }
    .t-role { font-size: 12px; font-weight: 400; margin-top: 4px; opacity: .52; }
    @media (max-width: 1100px) {
      .t-head { padding: 0 40px; }
      .t-scroll { padding-left: 40px; }
      .t-card:last-child { margin-right: 40px; }
    }
    @media (max-width: 768px) {
      .t-head { padding: 0 20px; }
      .t-scroll { padding-left: 20px; }
      .t-card { flex: 0 0 85vw; min-height: 420px; padding: 32px 28px; }
      .t-card:last-child { margin-right: 20px; }
    }

    /* ─── Hamburger ─── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center; align-items: center;
      gap: 5px;
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(0,0,0,.06);
      border: none;
      cursor: none;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block;
      width: 18px; height: 1.5px;
      background: var(--k);
      border-radius: 2px;
      transition: transform .38s var(--ease), opacity .3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(0px, 6.5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(0px, -6.5px); }

    /* ─── Mobile fullscreen menu ─── */
    .mobile-menu {
      position: fixed; inset: 0; z-index: 750;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(48px) saturate(200%);
      -webkit-backdrop-filter: blur(48px) saturate(200%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 110px 24px 56px;
      opacity: 0; pointer-events: none;
      transition: opacity .45s var(--ease);
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }

    .mobile-menu-nav {
      display: flex; flex-direction: column;
      align-items: center; gap: 0;
      margin-bottom: 44px;
    }
    .mobile-menu-nav a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(52px, 15vw, 76px);
      font-weight: 900; text-transform: uppercase;
      text-decoration: none; color: var(--k);
      line-height: 1.05; letter-spacing: -.02em;
      position: relative;
      opacity: 0; transform: translateY(20px);
      transition: opacity .4s var(--ease), transform .4s var(--ease), color .2s;
    }
    .mobile-menu-nav a::after {
      content: '';
      position: absolute; bottom: 3px; left: 0; right: 0;
      height: 4px; border-radius: 2px;
      background: var(--y);
      transform: scaleX(0);
      transition: transform .28s var(--ease);
      transform-origin: left;
    }
    .mobile-menu-nav a:hover::after { transform: scaleX(1); }

    /* stagger in */
    .mobile-menu.open .mobile-menu-nav a            { opacity: 1; transform: translateY(0); }
    .mobile-menu.open .mobile-menu-nav a:nth-child(1){ transition-delay: .08s; }
    .mobile-menu.open .mobile-menu-nav a:nth-child(2){ transition-delay: .13s; }
    .mobile-menu.open .mobile-menu-nav a:nth-child(3){ transition-delay: .18s; }
    .mobile-menu.open .mobile-menu-nav a:nth-child(4){ transition-delay: .23s; }

    .mobile-menu-cta {
      opacity: 0; transform: translateY(14px);
      transition: opacity .4s .28s var(--ease), transform .4s .28s var(--ease);
    }
    .mobile-menu.open .mobile-menu-cta { opacity: 1; transform: translateY(0); }

    .mobile-menu-tagline {
      position: absolute; bottom: 36px;
      font-size: 11px; font-weight: 600;
      letter-spacing: .16em; text-transform: uppercase;
      color: rgba(0,0,0,.25);
      opacity: 0; transition: opacity .4s .32s var(--ease);
    }
    .mobile-menu.open .mobile-menu-tagline { opacity: 1; }

    /* ─── Responsive ─── */
    @media (max-width:1100px) {
      .hero, .sec, footer { padding-left:40px; padding-right:40px; }
      .hero { padding-bottom:80px; }
      .about-grid { grid-template-columns:1fr; gap:56px; }
    }
    @media (max-width:768px) {
      nav { padding: 7px 7px 7px 18px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-inner { grid-template-columns:1fr; gap:36px; }
      .hero-wordmark { font-size: clamp(80px,22vw,130px); }
      .work-head { flex-direction:column; align-items:flex-start; gap:16px; }
      .about-grid { grid-template-columns:1fr; gap:48px; }
      .sec { padding:64px 20px; }
      .hero { padding: 0 20px 72px; }
      footer { padding:24px 20px; flex-direction:column; align-items:flex-start; gap:16px; }
      .ft-links { flex-wrap:wrap; gap:14px; }
      .cta-actions { flex-direction:column; align-items:center; }
    }