/* ============================================================
   WASEEM ANWAR — waseemanwar.com
   Design System & Stylesheet
   ============================================================

   FONT PAIR:
   --font-display : 'Plus Jakarta Sans' — headings, big text
   --font-body    : 'Plus Jakarta Sans' — body, labels
   --font-accent  : 'Cormorant'         — italic accents only

   COLOR SYSTEM: Black + White only. No gold, no tints.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Cormorant:ital,wght@0,300;0,400;1,300;1,400;1,600&display=swap');

/* ── ROOT TOKENS ─────────────────────────────────────────── */
:root {
  --dark:    #080808;
  --dark-2:  #101010;
  --dark-3:  #1a1a1a;
  --dark-4:  #242424;
  --light:   #F5F2ED;
  --light-2: #EDEAE4;
  --white:   #ffffff;
  --muted-w: rgba(255,255,255,0.68);
  --muted-d: rgba(0,0,0,0.55);
  --border-w: rgba(255,255,255,0.1);
  --border-d: rgba(0,0,0,0.1);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-accent:  'Cormorant', Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ── CURSOR ──────────────────────────────────────────────── */
.cur {
  width: 10px; height: 10px;
  background: var(--white);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform .18s var(--ease), background .2s;
  transform: translate(-50%,-50%);
}
.cur-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform .45s var(--ease);
  transform: translate(-50%,-50%);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 64px;
  background: linear-gradient(to bottom, rgba(8,8,8,.96), transparent);
  transition: background .4s, padding .3s;
}
#nav.scrolled {
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(16px);
  padding: 14px 64px;
}
/* When scrolled, button stays white — good contrast against dark nav */
#nav.scrolled .nav-cta {
  box-shadow: none;
  border-color: rgba(255,255,255,.6);
}
.nav-label {
  font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-w); line-height: 1.75;
}
.nav-label span { color: rgba(255,255,255,.65); display: block; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; display: block; }
.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: .06em; color: var(--white);
  text-decoration: none; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.68); text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
/* Override .nav-links a color with higher specificity */
.nav-links a.nav-cta,
a.nav-cta { color: var(--dark) !important; }
.nav-cta {
  display: inline-flex; align-items: center;
  gap: 12px; padding: 7px 7px 7px 22px;
  background: var(--white);
  border-radius: 50px;
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dark);
  text-decoration: none;
  /* Strong outer ring so button reads on any background */
  outline: 2px solid rgba(255,255,255,.5);
  outline-offset: 2px;
  transition: transform .25s var(--ease), outline-color .25s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  outline-color: rgba(255,255,255,.9);
}
.nav-cta-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
/* Primary pill — white on dark */
.btn-primary {
  display: inline-flex; align-items: center;
  gap: 14px; padding: 8px 8px 8px 26px;
  background: var(--white); border-radius: 50px;
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dark);
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,.15); }
.btn-primary .btn-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.btn-primary:hover .btn-icon { transform: rotate(45deg); }

/* Primary pill — dark on light */
.btn-primary-dk {
  display: inline-flex; align-items: center;
  gap: 14px; padding: 8px 8px 8px 26px;
  background: var(--dark); border-radius: 50px;
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white);
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.btn-primary-dk:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-primary-dk .btn-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); color: var(--dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.btn-primary-dk:hover .btn-icon { transform: rotate(45deg); }

/* Ghost text link */
.btn-line {
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.btn-line:hover { color: var(--white); border-color: var(--white); }
.btn-line-dk {
  font-size: 10.5px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-d);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.2);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.btn-line-dk:hover { color: var(--dark); border-color: var(--dark); }

/* ── MARQUEE ─────────────────────────────────────────────── */
.mqwrap {
  background: var(--dark-3);
  border-top: 1px solid var(--border-w);
  border-bottom: 1px solid var(--border-w);
  overflow: hidden; padding: 14px 0; white-space: nowrap;
}
.mqtrack { display: inline-flex; animation: mq 28s linear infinite; }
.mqitem {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7); padding: 0 44px;
}
.mqsep { color: rgba(255,255,255,.18); }

/* ── SHARED ──────────────────────────────────────────────── */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 64px; }
.snum {
  font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.32); margin-bottom: 18px;
}
.snum.dk { color: rgba(0,0,0,.3); }
.gline { width: 38px; height: 1px; background: rgba(255,255,255,.35); margin: 32px 0; }
.gline.dk { background: rgba(0,0,0,.2); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.22s}
.d3{transition-delay:.34s} .d4{transition-delay:.46s}

/* ── GLASS EFFECT ────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
}
.glass-light {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.4);
}

/* ══════════════════════════════════════════════════════════
   HERO — Full bleed portrait background
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* No flex — hero-inner is absolutely positioned */
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--dark-2) url('assets/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
/* Portrait fills right side as background */
.hero-portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}
/* Gradient: pitch-black on left for text → clear on right to show face */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(8,8,8,1)    0%,
      rgba(8,8,8,.97) 25%,
      rgba(8,8,8,.75) 45%,
      rgba(8,8,8,.25) 65%,
      rgba(8,8,8,.02) 100%
    ),
    linear-gradient(to top,
      rgba(8,8,8,.85) 0%,
      rgba(8,8,8,.2)  30%,
      transparent     55%
    );
  z-index: 2;
}
.hero-inner {
  /* Absolutely pinned to bottom, spans full width,
     then max-width + auto margins = identical to .wrap centering */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  max-width: 1440px;     /* same as .wrap */
  margin: 0 auto;        /* same as .wrap */
  padding: 0 64px 110px; /* same left/right as .wrap + bottom space */
}
.hero-c {
  max-width: 580px; /* text stays in left portion */
}
.hero-tag {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 1s var(--ease) .3s forwards;
}
.hero-hl {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.5vw, 132px);
  font-weight: 800; line-height: .9;
  color: var(--white); margin-bottom: 36px;
  letter-spacing: -.03em;
  opacity: 0; animation: fadeUp 1.1s var(--ease) .5s forwards;
}
.hero-hl em {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 300; color: var(--white);
}
.hero-sub {
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 44px;
  opacity: 0; animation: fadeUp 1s var(--ease) .75s forwards;
}
.hero-sub span { color: rgba(255,255,255,.38); margin: 0 14px; }
.hero-btns {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 1s var(--ease) 1s forwards;
}
.hero-scrl {
  position: absolute; right: 64px; bottom: 140px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s ease 1.6s forwards;
}
.hero-scrl span {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.45); writing-mode: vertical-rl;
}
.scrl-bar {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: pulse 2s ease infinite;
}

/* ══════════════════════════════════════════════════════════
   S1 MIRROR — light
══════════════════════════════════════════════════════════ */
#mirror { background: var(--light); padding: 140px 0; }
#mirror .inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: end; margin-top: 18px;
}
.mirror-big {
  font-family: var(--font-display);
  font-size: clamp(36px,4.6vw,70px);
  font-weight: 700; line-height: 1.06; color: var(--dark);
}
.mirror-big em {
  font-style: italic; font-family: var(--font-accent);
  color: var(--dark); font-weight: 300;
}
.mirror-body p {
  font-size: 18px; font-weight: 300;
  line-height: 1.92; color: rgba(0,0,0,.78); margin-bottom: 22px;
}
.mirror-body strong { font-weight: 700; color: var(--dark); }
.mirror-close {
  font-family: var(--font-accent);
  font-size: 24px; font-style: italic;
  color: rgba(0,0,0,.65); font-weight: 300;
}

/* ══════════════════════════════════════════════════════════
   S2 SPLIT — light-2
══════════════════════════════════════════════════════════ */
#split { background: var(--light-2); padding: 140px 0; }
#split .inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: stretch;
}
.split-left { display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
.split-left-top h2 {
  font-family: var(--font-display);
  font-size: clamp(30px,3.4vw,52px);
  font-weight: 700; line-height: 1.1; color: var(--dark);
  margin-bottom: 22px; letter-spacing: -.01em;
}
.split-left-top p {
  font-size: 17px; font-weight: 300;
  line-height: 1.9; color: rgba(0,0,0,.75); max-width: 420px;
}
.split-img-real {
  width: 300px; height: 240px;
  object-fit: cover; display: block; flex-shrink: 0;
}
.split-stat-num {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 800;
  color: var(--dark); line-height: 1; letter-spacing: -.04em;
}
.split-stat-label {
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(0,0,0,.45); line-height: 1.65; margin-top: 6px;
}
.split-right { position: relative; }
.split-card {
  position: relative; width: 100%;
  height: 100%; min-height: 520px; overflow: hidden;
  background: var(--dark-3);
}
.split-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.split-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 55%);
}
.split-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; }
.split-card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px,2.4vw,34px);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 12px; letter-spacing: -.01em;
}
.split-card-content p {
  font-size: 13px; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,.6); max-width: 320px;
}
/* Glass badge */
.split-badge {
  position: absolute; bottom: 40px; right: 40px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
}
.split-badge-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--dark);
}
.split-badge-text span { display: block; font-size: 12px; font-weight: 600; color: var(--white); }
.split-badge-text small {
  font-size: 10px; color: rgba(255,255,255,.45);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   S3 OUTCOMES — dark, glass cards
══════════════════════════════════════════════════════════ */
#outcomes { background: var(--dark-2); padding: 140px 0; }
#outcomes .top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 80px;
}
.otitle {
  font-family: var(--font-display);
  font-size: clamp(34px,4vw,62px);
  font-weight: 700; line-height: 1.06; color: var(--white);
  max-width: 520px; letter-spacing: -.02em;
}
.otitle em {
  font-style: italic; font-family: var(--font-accent);
  color: var(--white); font-weight: 300;
}
.ointro {
  font-size: 16px; font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,.65);
  max-width: 340px; text-align: right;
}
.ogrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border-w); }
.ocard {
  background: var(--dark-2); padding: 48px 36px 44px;
  transition: background .3s;
}
.ocard:hover { background: rgba(255,255,255,.04); }
.ocard-num { font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.38); margin-bottom: 26px; display: block; }
.ocard-bar { width: 24px; height: 1px; background: rgba(255,255,255,.4); margin-bottom: 26px; }
.ocard-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--white); margin-bottom: 16px; line-height: 1; letter-spacing: -.01em;
}
.ocard-desc { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.68); }

/* ══════════════════════════════════════════════════════════
   COUNTERS — dark
══════════════════════════════════════════════════════════ */
#counters { background: var(--dark); padding: 120px 0; border-top: 1px solid var(--border-w); }
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border-w); }
.counter-item { background: var(--dark); padding: 60px 48px; text-align: center; }
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(52px,6vw,86px);
  font-weight: 800; color: var(--white);
  line-height: 1; letter-spacing: -.04em; margin-bottom: 14px;
}
.counter-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6); line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   LOGOS — light
══════════════════════════════════════════════════════════ */
#logos { background: var(--light); padding: 80px 0; border-bottom: 1px solid var(--border-d); }
.logos-label {
  text-align: center; font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted-d); margin-bottom: 52px;
}
.logos-track {
  display: flex; align-items: center;
  justify-content: center; gap: 64px; flex-wrap: wrap;
}
.logo-real {
  height: 36px; width: auto;
  opacity: .75; filter: grayscale(1);
  transition: opacity .3s, filter .3s;
}
.logo-real:hover { opacity: .65; filter: grayscale(.3); }

/* ══════════════════════════════════════════════════════════
   PROOF — light-2
══════════════════════════════════════════════════════════ */
#proof { background: var(--light-2); padding: 140px 0; }
.proof-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 72px;
}
.proof-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px,4vw,62px);
  font-weight: 700; color: var(--dark); letter-spacing: -.02em;
}
.proof-head h2 em { font-style: italic; font-family: var(--font-accent); font-weight: 300; }
.proof-note { font-size: 11px; letter-spacing: .12em; color: rgba(0,0,0,.55); text-transform: uppercase; text-align: right; }
.plist { display: flex; flex-direction: column; }
.pitem {
  display: grid; grid-template-columns: 72px 1fr 1.2fr 180px;
  gap: 48px; align-items: start;
  padding: 50px 0; border-top: 1px solid var(--border-d);
  transition: padding-left .3s var(--ease);
}
.pitem:last-child { border-bottom: 1px solid var(--border-d); }
.pitem:hover { padding-left: 16px; }
.pidx { font-size: 10px; letter-spacing: .2em; color: rgba(0,0,0,.4); padding-top: 5px; text-transform: uppercase; }
.pctx {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--dark); line-height: 1.2; letter-spacing: -.01em;
}
.pdesc { font-size: 16px; font-weight: 300; line-height: 1.9; color: rgba(0,0,0,.72); }
.pout { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,.55); padding-top: 5px; text-align: right; }

/* ══════════════════════════════════════════════════════════
   WORK — dark, image background cards
══════════════════════════════════════════════════════════ */
#work { background: var(--dark); padding: 140px 0; }
#work .work-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 80px;
}
#work .work-top h2 {
  font-family: var(--font-display);
  font-size: clamp(34px,4vw,64px);
  font-weight: 700; color: var(--white); letter-spacing: -.02em;
}
#work .work-top h2 em {
  font-style: italic; font-family: var(--font-accent);
  font-weight: 300; color: var(--white);
}
#work .work-note {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.72); max-width: 300px; text-align: right; line-height: 1.85;
}
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.work-card {
  position: relative; overflow: hidden; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end; cursor: none;
}
.wc1 {
  background:
    url('assets/work/slide-setters.jpg') center/cover no-repeat,
    linear-gradient(135deg,#0d1b2a,#243b55);
}
.wc2 {
  background:
    url('assets/work/rise-rabbit.jpg') center/cover no-repeat,
    linear-gradient(135deg,#1a0d05,#3d1f08);
}
.work-card-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.work-card:hover .work-card-img { transform: scale(1.04); }
.work-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.3) 55%, rgba(0,0,0,.05) 100%);
}
.work-card-content { position: relative; z-index: 2; padding: 52px 48px; }
.wc-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.wc-tag::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,.4); }
.wc-name {
  font-family: var(--font-display);
  font-size: clamp(28px,3vw,50px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.02; letter-spacing: -.03em;
}
.wc-desc {
  font-size: 16px; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,.72);
  max-width: 380px; margin-bottom: 36px;
}
.wc-arrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 8px 8px 22px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  transition: background .25s, gap .25s;
}
.wc-arrow:hover { background: var(--white); color: var(--dark); gap: 20px; }
.wc-arrow:hover .wc-arrow-icon { background: var(--dark); color: var(--white); }
.wc-arrow-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); color: var(--dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wc-label-bg {
  position: absolute; bottom: -20px; right: -10px; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(80px,12vw,160px);
  font-weight: 800; letter-spacing: -.05em;
  color: rgba(255,255,255,.04); text-transform: uppercase;
  line-height: 1; pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   PROCESS — light
══════════════════════════════════════════════════════════ */
#process { background: var(--light); padding: 140px 0; }
.proc-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; margin-bottom: 100px; align-items: end;
}
.proc-hl {
  font-family: var(--font-display);
  font-size: clamp(36px,4.2vw,62px);
  font-weight: 700; line-height: 1.06; color: var(--dark); letter-spacing: -.02em;
}
.proc-hl em { font-style: italic; font-family: var(--font-accent); font-weight: 300; color: var(--dark); }
.proc-desc { font-size: 18px; font-weight: 300; line-height: 1.9; color: rgba(0,0,0,.72); }
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border-d); }
.step { background: var(--light); padding: 46px 34px; transition: background .3s; }
.step:hover { background: var(--light-2); }
.step-n {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  color: rgba(0,0,0,.1); line-height: 1; margin-bottom: 22px; letter-spacing: -.04em;
}
.step-t { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(0,0,0,.65); margin-bottom: 13px; }
.step-d { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(0,0,0,.7); }

/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION — dark, with image
══════════════════════════════════════════════════════════ */
#faq { background: var(--dark-2); padding: 140px 0; }
.faq-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.faq-left-top { margin-bottom: 56px; }
.faq-left-top h2 {
  font-family: var(--font-display);
  font-size: clamp(34px,3.8vw,58px);
  font-weight: 700; color: var(--white);
  line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px;
}
.faq-left-top h2 em { font-style: italic; font-family: var(--font-accent); font-weight: 300; }
.faq-left-top p { font-size: 17px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.72); }

.acc-list { display: flex; flex-direction: column; }
.acc-item { border-top: 1px solid var(--border-w); }
.acc-item:last-child { border-bottom: 1px solid var(--border-w); }
.acc-trigger {
  width: 100%; background: none; border: none; cursor: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; gap: 20px; text-align: left;
}
.acc-trigger-text {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,.92); letter-spacing: -.01em;
  transition: color .25s;
}
.acc-trigger:hover .acc-trigger-text { color: rgba(255,255,255,.75); }
.acc-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border-w);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px; color: var(--white);
  transition: transform .35s var(--ease), background .25s;
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--white); color: var(--dark); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), padding .35s;
}
.acc-item.open .acc-body { max-height: 400px; }
.acc-body-inner {
  padding: 0 40px 28px 0;
  font-size: 16px; font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,.68);
}

.faq-right { position: sticky; top: 120px; }
.faq-img-wrap { position: relative; }
.faq-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
}
/* Fallback if no image */
.faq-img-ph {
  width: 100%; aspect-ratio: 3/4;
  background: var(--dark-3);
  border: 1px dashed var(--border-w);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-w); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
}
/* Glass overlay on faq image */
.faq-img-tag {
  position: absolute; bottom: 32px; left: 32px;
  padding: 18px 22px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  max-width: 280px;
}
.faq-img-tag p {
  font-family: var(--font-accent);
  font-size: 18px; font-style: italic;
  color: var(--white); font-weight: 300; line-height: 1.5;
}
.faq-img-tag small {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 8px; display: block;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS — dark, drag scroll, glass cards
══════════════════════════════════════════════════════════ */
#testimonials { background: var(--dark-3); padding: 140px 0; overflow: hidden; }
#testimonials .t-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 64px;
}
#testimonials .t-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px,4vw,60px);
  font-weight: 700; color: var(--white); letter-spacing: -.02em;
}
#testimonials .t-header h2 em { font-style: italic; font-family: var(--font-accent); font-weight: 300; }
.t-hint {
  font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.62); display: flex; align-items: center; gap: 10px;
}
.t-track-wrap {
  overflow: hidden; cursor: grab; user-select: none;
  /* Fade both edges — glass-edge effect */
  -webkit-mask-image: linear-gradient(to right,
    transparent       0%,
    rgba(0,0,0,.6)   5%,
    rgba(0,0,0,1)    14%,
    rgba(0,0,0,1)    86%,
    rgba(0,0,0,.6)   95%,
    transparent       100%
  );
  mask-image: linear-gradient(to right,
    transparent       0%,
    rgba(0,0,0,.6)   5%,
    rgba(0,0,0,1)    14%,
    rgba(0,0,0,1)    86%,
    rgba(0,0,0,.6)   95%,
    transparent       100%
  );
}
.t-track-wrap:active { cursor: grabbing; }
.t-track { display: flex; gap: 24px; padding: 16px 80px; width: max-content; will-change: transform; }
/* Glass testimonial cards */
.t-card {
  padding: 48px 44px;
  min-width: 460px; max-width: 460px; flex-shrink: 0;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.t-card:hover {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.09);
  box-shadow: 0 12px 48px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.t-quote {
  font-family: var(--font-accent);
  font-size: 22px; font-style: italic; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,.9); margin-bottom: 36px;
}
.t-quote::before {
  content: '"'; color: rgba(255,255,255,.4);
  font-size: 36px; line-height: 0;
  vertical-align: -.45em; margin-right: 3px;
}
.t-attr { display: flex; flex-direction: column; gap: 4px; }
.t-name { font-size: 13px; font-weight: 700; color: var(--white); }
.t-role { font-size: 11px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.58); }

/* ══════════════════════════════════════════════════════════
   WHO — light
══════════════════════════════════════════════════════════ */
#who { background: var(--light); padding: 140px 0; }
#who .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 130px; align-items: center; }
.who-img-side {
  position: relative;
  min-height: 500px;   /* holds layout even if image fails to load */
}
.who-portrait {
  width: 100%; max-width: 430px; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top; display: block;
  background: var(--light-2);  /* visible placeholder color while loading */
}
/* Glass credential badge — repositioned for when portrait loads */
.who-badge {
  position: absolute; bottom: -22px; right: -22px;
  padding: 22px 26px;
  background: rgba(8,8,8,.95);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 9px;
  z-index: 2;
}
.wbi { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.58); white-space: nowrap; }
.wbi.hl { color: var(--white); font-weight: 600; }
.who-txt h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 700; line-height: 1.08; color: var(--dark);
  margin-bottom: 32px; letter-spacing: -.02em;
}
.who-txt h2 em { font-style: italic; font-family: var(--font-accent); font-weight: 300; }
.who-txt p {
  font-size: 15px; font-weight: 300; line-height: 1.95;
  color: rgba(0,0,0,.7); margin-bottom: 20px;
}
.who-txt .quote {
  font-family: var(--font-accent); font-size: 21px;
  font-style: italic; color: rgba(0,0,0,.5); font-weight: 300;
}

/* ══════════════════════════════════════════════════════════
   CTA — dark
══════════════════════════════════════════════════════════ */
#cta { background: var(--dark-2); padding: 170px 0; text-align: center; }
.cta-tag { font-size: 10px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 28px; }
.cta-hl {
  font-family: var(--font-display);
  font-size: clamp(48px,8.5vw,130px);
  font-weight: 800; line-height: .9; color: var(--white);
  margin-bottom: 44px; letter-spacing: -.04em;
}
.cta-hl em { font-style: italic; font-family: var(--font-accent); color: var(--white); font-weight: 300; }
.cta-sub { font-size: 18px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.65); margin-bottom: 56px; }
.cta-btns { display: flex; gap: 22px; justify-content: center; align-items: center; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer { background: var(--dark); border-top: 1px solid var(--border-w); }
footer nav, .footer-social-col, .footer-contact { position: static !important; background: none; }
.footer-top {
  padding: 80px 64px 64px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 64px; max-width: 1440px; margin: 0 auto;
}
.footer-contact h2, .footer-contact h3, .footer-contact h4,
.footer-social-col h2, .footer-social-col h3, .footer-social-col h4 {
  font-family: var(--font-body);
  font-size: 9.5px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.55); margin-bottom: 24px;
  position: static; background: none; padding: 0; line-height: 1.4;
}
.footer-contact-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 10px 10px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  margin-bottom: 14px;
  transition: background .25s, border-color .25s;
}
.footer-contact-btn:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.25); }
.footer-contact-btn-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); color: var(--dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-contact a:hover { color: var(--white); }
.footer-social-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-social-col ul li a {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: rgba(255,255,255,.6); text-decoration: none;
  transition: color .25s; letter-spacing: -.01em;
}
.footer-social-col ul li a:hover { color: var(--white); }
.footer-divider { height: 1px; background: var(--border-w); margin: 0 64px; }
.footer-giant { overflow: hidden; line-height: .82; }
.footer-giant-text {
  font-family: var(--font-display);
  font-size: clamp(80px,14vw,220px);
  font-weight: 800; color: rgba(255,255,255,.055);
  letter-spacing: -.04em; text-transform: uppercase;
  width: 100%; text-align: center; padding: 20px 0 0;
  transition: color .6s;
}
.footer-giant-text:hover { color: rgba(255,255,255,.1); }
.footer-tiny { text-align: center; padding: 16px 64px 28px; font-size: 11px; color: rgba(255,255,255,.14); letter-spacing: .08em; }
.footer-tiny a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(34px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes pulse  { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes mq     { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE HAMBURGER MENU
══════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform .35s var(--ease), opacity .25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile full-screen nav overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(20px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.nav-overlay.open { opacity: 1; }
.nav-overlay ul {
  list-style: none;
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
}
.nav-overlay ul li a {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: rgba(255,255,255,.7);
  text-decoration: none; letter-spacing: -.01em;
  transition: color .25s;
}
.nav-overlay ul li a:hover { color: var(--white); }
.nav-overlay .overlay-cta {
  margin-top: 20px;
}

/* ══════════════════════════════════════════════════════════
   BREAKPOINT: 1200px — Large tablet / small desktop
══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .wrap { padding: 0 48px; }

  #hero .hero-inner { padding: 0 48px 100px; }

  .ogrid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }

  .faq-inner { gap: 56px; }
  .work-card { min-height: 480px; }
}

/* ══════════════════════════════════════════════════════════
   BREAKPOINT: 1024px — Tablet landscape
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wrap { padding: 0 40px; }

  /* NAV */
  #nav { padding: 20px 40px; }
  #nav.scrolled { padding: 14px 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* HERO */
  #hero .hero-inner { padding: 0 40px 100px; }
  .hero-hl { font-size: clamp(48px, 7vw, 100px); }
  .hero-c { max-width: 520px; }
  .hero-scrl { display: none; }

  /* SECTIONS */
  #mirror .inner { grid-template-columns: 1fr; gap: 48px; }
  #mirror { padding: 100px 0; }

  #split .inner { grid-template-columns: 1fr; gap: 56px; }
  #split { padding: 100px 0; }
  .split-right { max-height: 480px; }
  .split-card { min-height: 400px; }

  #outcomes .top { flex-direction: column; gap: 24px; }
  .ointro { text-align: left; max-width: 100%; }
  #outcomes { padding: 100px 0; }

  .pitem { grid-template-columns: 48px 1fr 1fr; gap: 24px; }
  .pout { display: none; }
  #proof { padding: 100px 0; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 420px; }
  #work { padding: 100px 0; }

  .proc-top { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  #process { padding: 100px 0; }

  .faq-inner { grid-template-columns: 1fr; }
  .faq-right { display: none; }
  #faq { padding: 100px 0; }

  #who .inner { grid-template-columns: 1fr; gap: 60px; }
  .who-portrait { max-width: 100%; aspect-ratio: 4/3; }
  .who-badge { right: 0; bottom: -10px; }
  #who { padding: 100px 0; }

  #counters { padding: 80px 0; }
  .counter-item { padding: 48px 32px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px 48px; }
  .footer-divider { margin: 0 40px; }
  .footer-giant-text { font-size: clamp(60px, 10vw, 160px); }
  .footer-tiny { padding: 16px 40px 24px; }
}

/* ══════════════════════════════════════════════════════════
   BREAKPOINT: 768px — Tablet portrait / large mobile
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .wrap { padding: 0 28px; }

  /* NAV */
  #nav { padding: 18px 28px; }
  #nav.scrolled { padding: 13px 28px; }
  .nav-label span { display: none; }
  .nav-label { font-size: 9px; }

  /* HERO */
  #hero .hero-inner { padding: 0 28px 90px; }
  .hero-tag { font-size: 9px; margin-bottom: 14px; }
  .hero-hl { font-size: clamp(42px, 10vw, 80px); margin-bottom: 24px; }
  .hero-sub { font-size: 10px; margin-bottom: 32px; letter-spacing: .15em; }
  .hero-c { max-width: 100%; }
  /* Stronger overlay on mobile — portrait still visible but darker */
  .hero-overlay {
    background:
      linear-gradient(to right,
        rgba(8,8,8,.98) 0%,
        rgba(8,8,8,.92) 40%,
        rgba(8,8,8,.65) 70%,
        rgba(8,8,8,.2)  100%
      ),
      linear-gradient(to top,
        rgba(8,8,8,.95) 0%,
        rgba(8,8,8,.3)  40%,
        transparent     65%
      );
  }

  /* SECTIONS PADDING */
  #mirror,#split,#outcomes,#proof,#work,#process,#faq,#who,#cta { padding: 80px 0; }
  #counters { padding: 64px 0; }
  #logos { padding: 60px 0; }

  /* MIRROR */
  .mirror-big { font-size: clamp(32px, 8vw, 56px); }
  .mirror-body p { font-size: 15px; }

  /* OUTCOMES */
  .ogrid { grid-template-columns: 1fr 1fr; }
  .ocard { padding: 36px 28px 32px; }
  .otitle { font-size: clamp(28px, 6vw, 48px); }

  /* COUNTERS */
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter-item { padding: 40px 24px; }
  .counter-num { font-size: clamp(44px, 10vw, 72px); }
  .counter-label { font-size: 9.5px; letter-spacing: .16em; }

  /* PROOF */
  .pitem { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .pidx { display: none; }
  .pctx { font-size: 20px; }
  .proof-head { flex-direction: column; gap: 16px; }
  .proof-note { text-align: left; }

  /* WORK */
  .wc-name { font-size: clamp(26px, 7vw, 42px); }
  .work-card-content { padding: 36px 32px; }

  /* PROCESS */
  .steps { grid-template-columns: repeat(2, 1fr); }
  .proc-hl { font-size: clamp(30px, 7vw, 52px); }

  /* SPLIT */
  .split-left-top h2 { font-size: clamp(26px, 6vw, 44px); }
  .split-img-real { width: 100%; height: 200px; }
  .split-stat-num { font-size: 64px; }

  /* FAQ */
  .faq-left-top h2 { font-size: clamp(28px, 7vw, 48px); }
  .acc-trigger-text { font-size: 14px; }

  /* WHO */
  .who-txt h2 { font-size: clamp(28px, 7vw, 48px); }
  .who-badge { position: relative; bottom: auto; right: auto; margin-top: 24px; }
  .who-img-side { min-height: auto; }

  /* CTA */
  .cta-hl { font-size: clamp(40px, 10vw, 90px); }
  .cta-btns { flex-direction: column; align-items: center; gap: 16px; }

  /* LOGOS */
  .logos-track { gap: 36px; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 48px 28px 40px; }
  .footer-divider { margin: 0 28px; }
  .footer-contact a, .footer-contact span { font-size: 16px; }
  .footer-social-col ul li a { font-size: 15px; }
  .footer-giant-text { font-size: clamp(48px, 14vw, 120px); }
  .footer-tiny { padding: 14px 28px 20px; font-size: 10px; }

  /* TESTIMONIALS */
  .t-card { min-width: 320px; max-width: 320px; padding: 36px 32px; }
  .t-quote { font-size: 17px; }
  .t-track { padding: 0 28px; gap: 16px; }
}

/* ══════════════════════════════════════════════════════════
   BREAKPOINT: 480px — Mobile
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }

  /* NAV */
  #nav { padding: 16px 20px; }
  .nav-label { display: none; }

  /* HERO */
  #hero .hero-inner { padding: 0 20px 80px; }
  .hero-hl { font-size: clamp(38px, 11vw, 64px); }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* ALL SECTIONS */
  #mirror,#split,#outcomes,#proof,#work,#process,#faq,#who,#cta { padding: 64px 0; }
  #counters { padding: 56px 0; }

  /* OUTCOMES — single column */
  .ogrid { grid-template-columns: 1fr; }
  .ocard { padding: 32px 24px; }

  /* COUNTERS — single column */
  .counters-grid { grid-template-columns: 1fr; }
  .counter-item { padding: 36px 20px; border-bottom: 1px solid var(--border-w); }

  /* STEPS — single column */
  .steps { grid-template-columns: 1fr; }
  .step { padding: 32px 24px; }

  /* PROCESS */
  .proc-top { gap: 24px; margin-bottom: 48px; }

  /* WHO */
  .who-portrait { aspect-ratio: 1/1; }

  /* CTA */
  .cta-hl { font-size: clamp(36px, 11vw, 60px); }

  /* FOOTER */
  .footer-top { padding: 40px 20px 32px; }
  .footer-divider { margin: 0 20px; }
  .footer-giant-text { font-size: clamp(40px, 16vw, 80px); padding: 10px 0 0; }

  /* TESTIMONIALS */
  .t-card { min-width: 280px; max-width: 280px; padding: 28px 24px; }
  .t-quote { font-size: 16px; }
  .t-track { padding: 0 20px; }
}
