/* =================================================================
   Leaping Media — index styles
   Fonts: Fraunces (display), Instrument Sans (body), JetBrains Mono (labels)
   ================================================================= */

:root {
  --ink: #1f2124;
  --blue: #2e50d9;
  --teal: #2ed9bd;
  --mint: #a8f0e0;
  --slate: #334155;
  --cream: #f5f2ec;
  --cream-card: #faf8f2;
  --navy: #1e293b;
  --white: #ffffff;
  --line: rgba(31, 33, 36, 0.15);
  --line-soft: rgba(31, 33, 36, 0.1);
  --line-light: rgba(255, 255, 255, 0.15);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Container */
  --maxw: 1440px;
  --gutter: clamp(20px, 5vw, 60px);
  --header-h: 92px;

  /* Spacing scale (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Rhythm tokens */
  --section-y: clamp(80px, 10vw, 160px);
  --head-gap: clamp(40px, 5vw, 64px);
  --card-pad: clamp(28px, 3vw, 40px);
  --grid-gap: clamp(24px, 2.2vw, 32px);

  /* Radii */
  --radius-card: 8px;
  --radius-tile: 6px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Fluid display sizes */
  --h-hero: clamp(56px, 11vw, 152px);
  --h-cta: clamp(46px, 9.6vw, 144px);
  --h-intention: clamp(40px, 6.8vw, 96px);
  --h-section: clamp(34px, 5.1vw, 72px);
  --h-stat: clamp(44px, 5vw, 72px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  line-height: 1;
}

em { font-style: italic; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.7); }

.ital-blue { font-style: italic; color: var(--blue); }
.ital-teal { font-style: italic; color: var(--teal); }
.ital { font-style: italic; }

.section-title {
  font-size: var(--h-section);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Icons */
.ico-stroke { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico-fill { fill: currentColor; }
svg { display: block; }

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}
.btn-pill:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); padding-left: 28px; font-size: 16px; }

.btn-icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  flex: none;
  transition: transform 0.18s ease;
}
.btn-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-icon--light { background: #fff; color: var(--ink); }
.btn-icon--dark { background: var(--ink); color: #fff; }
.btn-pill:hover .btn-icon { transform: translateX(2px); }

.link-underline {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-underline--light { color: #fff; }
.link-underline:hover { opacity: 0.7; }

.link-inline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.link-inline svg { width: 16px; height: 16px; }
.link-inline:hover { opacity: 0.7; }

/* Section heading row (used across sections) */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-12);
  margin-bottom: var(--head-gap);
}
.section-head-text { max-width: 672px; }
.section-head .eyebrow { margin-bottom: var(--space-4); }
.section-head-aside {
  max-width: 384px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--slate);
}

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid transparent;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand img { width: 150px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 15px;
  color: var(--slate);
  transition: color 0.18s ease;
}
.main-nav a:hover { color: var(--ink); }

.header-cta { padding-left: 20px; gap: 8px; }
.header-cta .btn-icon { width: 28px; height: 28px; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle:hover span:nth-child(1) { transform: translateX(2px); }
.nav-toggle:hover span:nth-child(3) { transform: translateX(-2px); }

/* ---------- Mobile overlay menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 0 0 clamp(28px, 5vw, 48px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), visibility 0.45s;
  overflow-y: auto;
}
.menu::before {
  content: "";
  position: absolute;
  top: -140px; right: -110px;
  width: 420px; height: 420px;
  background: var(--blue);
  opacity: 0.2;
  filter: blur(90px);
  pointer-events: none;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; }

.menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  position: relative;
  z-index: 1;
}
.menu-logo { width: 120px; height: auto; }
.menu-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: #fff;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.4s var(--ease-out);
}
.menu-close svg { width: 26px; height: 26px; }
.menu-close:hover { background: rgba(255, 255, 255, 0.08); transform: rotate(90deg); }

.menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2px, 1vw, 10px);
  position: relative;
  z-index: 1;
}
.menu-links a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 6px 0;
  font-family: var(--serif);
  font-size: clamp(40px, 11vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s ease;
}
.menu.is-open .menu-links a { opacity: 1; transform: none; }
.menu.is-open .menu-links a:nth-child(1) { transition-delay: 0.10s; }
.menu.is-open .menu-links a:nth-child(2) { transition-delay: 0.16s; }
.menu.is-open .menu-links a:nth-child(3) { transition-delay: 0.22s; }
.menu.is-open .menu-links a:nth-child(4) { transition-delay: 0.28s; }
.menu.is-open .menu-links a:nth-child(5) { transition-delay: 0.34s; }
.menu-links a:hover { color: var(--mint); }
.menu-index { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.4); transform: translateY(-0.4em); }
.menu-word { display: inline-block; transition: transform 0.25s var(--ease-out); }
.menu-links a:hover .menu-word { transform: translateX(10px); font-style: italic; }

.menu-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line-light);
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease 0.42s;
}
.menu.is-open .menu-foot { opacity: 1; }
.menu-cta { flex: none; }
.menu-email { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.7); }
.menu-email:hover { color: #fff; }

body.menu-open { overflow: hidden; }

/* ---------- Scroll reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =================================================================
   HERO
   ================================================================= */
.hero { padding-top: clamp(48px, 6vw, 88px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 531px;
  gap: var(--space-8);
  align-items: start;
}
.hero-copy { padding-left: 0; padding-top: 0; }
.hero-title {
  font-size: var(--h-hero);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero-title .line { display: block; }
.hero-lead {
  margin-top: 34px;
  max-width: 448px;
  font-size: 18px;
  line-height: 1.625;
  color: var(--slate);
}
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-visual { padding-top: var(--space-2); display: flex; flex-direction: column; gap: var(--space-4); }
.hero-photo {
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  height: 345px;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { border-radius: 6px; padding: 20px; height: 122px; }
.stat-card--blue { background: var(--blue); color: #fff; position: relative; }
.stat-card--dark { background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.stat-card-icon { color: #fff; display: block; }
.stat-card-icon svg { width: 22px; height: 22px; }
.stat-card-value { font-family: var(--serif); font-size: 36px; line-height: 1; margin-top: 8px; font-variant-numeric: tabular-nums; }
.stat-card-value.sm { font-size: 30px; }
.stat-card-label { font-size: 12px; line-height: 1.33; opacity: 0.9; margin-top: 8px; }
.stat-card-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* Marquee */
.marquee {
  margin-top: clamp(48px, 6vw, 80px);
  background: rgba(245, 242, 236, 0.4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 21px 24px;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.m-word { font-family: var(--serif); font-style: italic; font-size: 36px; line-height: 1.1; color: var(--ink); white-space: nowrap; }
.m-star { font-family: var(--serif); font-size: 36px; color: var(--blue); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =================================================================
   CLIENT STRIP
   ================================================================= */
.clients { padding: var(--section-y) 0; }
.clients-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-10);
  margin-bottom: var(--head-gap);
}
.clients-head .eyebrow { margin-bottom: var(--space-4); }
.clients-title {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 1040px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.client-cell {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 12px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}
.client-cell:last-child { border-right: 0; }

/* =================================================================
   INTENTION (dark)
   ================================================================= */
.intention {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: var(--section-y) 0;
}
.intention .wrap { position: relative; z-index: 2; }
.glow { position: absolute; border-radius: 50%; z-index: 1; }
.glow--blue { width: 520px; height: 520px; top: -160px; right: -60px; background: var(--blue); opacity: 0.3; filter: blur(120px); }
.glow--mint { width: 460px; height: 460px; bottom: -120px; left: -160px; background: var(--mint); opacity: 0.25; filter: blur(140px); }
.intention-title {
  font-size: var(--h-intention);
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 920px;
  margin: var(--space-6) 0 0;
}
.intention-cols {
  display: grid;
  grid-template-columns: minmax(0, 672px) 1fr;
  gap: clamp(48px, 8vw, 120px);
  margin-top: clamp(56px, 8vw, 112px);
}
.intention-lead { font-size: 20px; line-height: 1.625; opacity: 0.8; }
.promises {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  border-left: 1px solid var(--line-light);
  padding-left: var(--space-10);
}
.promises li { display: flex; gap: var(--space-4); }
.promise-plus { color: var(--blue); flex: none; margin-top: 4px; }
.promise-plus svg { width: 18px; height: 18px; }
.promises h3 { font-size: 20px; line-height: 1.4; color: #fff; margin-bottom: 4px; }
.promises p { font-size: 15px; line-height: 1.5; opacity: 0.7; max-width: 452px; }

/* =================================================================
   SERVICES
   ================================================================= */
.services { padding: var(--section-y) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.service-card {
  background: var(--cream-card);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  min-height: 442px;
}
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--slate); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--ink);
}
.service-icon svg { width: 20px; height: 20px; }
.service-title { font-size: 36px; line-height: 0.95; letter-spacing: -0.02em; margin-top: var(--space-10); }
.service-desc { margin-top: var(--space-4); font-size: 15px; line-height: 1.625; color: var(--slate); }
.service-tags {
  margin-top: auto;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.service-tags i { color: var(--blue); font-style: normal; margin-left: 4px; }

/* =================================================================
   PROCESS
   ================================================================= */
.process { background: #f7f5ef; padding: var(--section-y) 0; }
.process-head { display: block; margin-bottom: var(--head-gap); }
.process-head .eyebrow { margin-bottom: var(--space-4); }
.process-head .section-title { max-width: 768px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.process-step {
  padding: var(--card-pad);
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: 0; }
.process-meta { display: flex; align-items: center; gap: var(--space-3); }
.process-week { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
.process-rule { flex: 1; height: 1px; background: var(--line); }
.process-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--slate); }
.process-word { font-size: 48px; line-height: 1; letter-spacing: -0.02em; margin-top: var(--space-10); }
.process-desc { margin-top: var(--space-6); font-size: 15px; line-height: 1.625; color: var(--slate); }

/* =================================================================
   BUILT FOR
   ================================================================= */
.builtfor { padding: var(--section-y) 0; }
.builtfor-grid {
  display: grid;
  grid-template-columns: 620px 620px;
  justify-content: space-between;
  gap: var(--space-16);
  align-items: start;
}
.builtfor-collage { position: relative; width: 620px; height: 620px; }
.builtfor-collage > * { border-radius: 6px; overflow: hidden; }
.bf-photo img { width: 100%; height: 100%; object-fit: cover; }
.bf-photo--lg { position: absolute; left: 0; top: 0; width: 409px; height: 409px; background: var(--navy); }
.bf-quote {
  position: absolute; left: 421px; top: 0; width: 199px; height: 304px;
  background: var(--blue); color: #fff;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bf-quote-icon svg { width: 22px; height: 22px; }
.bf-quote p { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.25; }
.bf-photo--tall { position: absolute; left: 421px; top: 316px; width: 199px; height: 304px; }
.bf-years {
  position: absolute; left: 0; top: 421px; width: 304px; height: 199px;
  background: var(--ink); color: #fff;
  padding: 20px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.bf-years-num { font-family: var(--serif); font-size: 30px; line-height: 1.2; font-variant-numeric: tabular-nums; }
.bf-years-label { font-family: var(--mono); font-size: 12px; line-height: 1.5; letter-spacing: 0.1em; text-transform: uppercase; text-align: right; opacity: 0.7; }
.bf-mint {
  position: absolute; left: 316px; top: 421px; width: 93px; height: 199px;
  background: var(--mint); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.bf-mint-icon svg { width: 26px; height: 26px; }

.builtfor-text .eyebrow { margin-bottom: var(--space-4); }
.builtfor-text .section-title { max-width: 620px; }
.builtfor-lead { margin-top: var(--space-8); max-width: 576px; font-size: 18px; line-height: 1.625; color: var(--slate); }
.builtfor-lead em { font-style: italic; }
.audience-grid {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-6);
}
.audience {
  padding: 21px 0 24px;
  border-top: 1px solid var(--line);
}
.audience h3 { font-size: 24px; line-height: 1.33; color: var(--ink); }
.audience p { margin-top: 4px; font-size: 14px; line-height: 1.5; color: var(--slate); }

/* =================================================================
   STATS (dark)
   ================================================================= */
.stats { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: var(--section-y) 0; }
.stats-glow { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1; }
.stats-glow--mint { top: -60px; left: 120px; width: 420px; height: 220px; background: rgba(168, 240, 224, 0.22); }
.stats-glow--blue { bottom: -80px; right: 80px; width: 520px; height: 260px; background: rgba(46, 80, 217, 0.4); }
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-10); }
.stat-num { font-family: var(--serif); font-size: var(--h-stat); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-text { margin-top: var(--space-4); max-width: 187px; font-size: 14px; line-height: 1.62; opacity: 0.8; }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testimonials { padding: var(--section-y) 0; }
.rating { text-align: right; }
.rating-stars { display: inline-flex; gap: 0; color: var(--ink); }
.rating-stars svg { width: 16px; height: 16px; }
.rating-text { display: block; margin-top: 6px; font-size: 14px; color: var(--slate); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); }
.testi {
  background: var(--cream-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  min-height: 364px;
}
.testi-icon { color: var(--blue); }
.testi-icon svg { width: 28px; height: 28px; }
.testi-quote {
  flex: 1;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.testi-foot {
  border-top: 1px solid var(--line-soft);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.testi-person { display: flex; flex-direction: column; }
.testi-name { font-weight: 500; font-size: 16px; color: var(--ink); }
.testi-role { font-size: 13px; color: var(--slate); }
.testi-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); text-align: right; }

.testi--dark { background: var(--ink); border-color: var(--ink); }
.testi--dark .testi-icon { color: rgba(255, 255, 255, 0.3); }
.testi--dark .testi-quote { color: #fff; }
.testi--dark .testi-foot { border-top-color: var(--line-light); }
.testi--dark .testi-name { color: #fff; }
.testi--dark .testi-role { color: rgba(255, 255, 255, 0.7); }
.testi--dark .testi-tag { color: rgba(255, 255, 255, 0.6); }

/* =================================================================
   CTA (blue)
   ================================================================= */
.cta { position: relative; overflow: hidden; background: var(--blue); color: #fff; padding: var(--section-y) 0; text-align: center; }
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(50% 50% at 15% 90%, rgba(0, 0, 0, 0.18), transparent 60%);
  opacity: 0.9;
}
.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta-eyebrow { margin-bottom: var(--space-10); }
.cta-title {
  font-size: var(--h-cta);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 1263px;
}
.cta-lead { margin-top: var(--space-8); max-width: 576px; font-size: 18px; line-height: 1.625; opacity: 0.9; }
.cta-actions { margin-top: var(--space-12); display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; justify-content: center; }
.cta .btn-icon { width: 40px; height: 40px; }
.cta .btn-icon svg { width: 18px; height: 18px; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--ink); color: #fff; padding: var(--space-20) 0 var(--space-10); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(4, minmax(0, 0.5fr));
  gap: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line-light);
}
.footer-logo { width: 112px; height: auto; }
.footer-brand p { margin-top: var(--space-6); max-width: 384px; font-size: 16px; line-height: 1.625; color: rgba(255, 255, 255, 0.7); }
.footer-head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: var(--space-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a { font-size: 14px; color: #fff; opacity: 0.92; transition: opacity 0.18s ease; }
.footer-col a:hover { opacity: 0.6; }
.footer-bottom {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer-copy, .footer-legal a { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a:hover { color: rgba(255, 255, 255, 0.85); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1280px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 460px; }
  .intention-cols { grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 220px; }
  .builtfor-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .builtfor-collage { width: 100%; max-width: 560px; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { padding-left: 0; }
  .hero-visual { max-width: 560px; }
  .hero-lead, .hero-actions { max-width: none; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 48px; }
  .rating { text-align: left; }
  .rating-stars { color: var(--ink); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }

  .intention-cols { grid-template-columns: 1fr; gap: var(--space-12); margin-top: var(--space-12); }
  .promises { border-left: 0; padding-left: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }

  .builtfor-grid { grid-template-columns: 1fr; gap: 56px; justify-content: start; }
  .builtfor-collage { margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: var(--space-8); }
  .hero-actions { gap: var(--space-4); }
  .m-word, .m-star { font-size: 28px; }

  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-cell { border-bottom: 1px solid var(--line); }
  .client-cell:nth-child(2n) { border-right: 0; }
  .client-cell:nth-last-child(-n+2) { border-bottom: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }

  /* Collage -> simple stacked grid */
  .builtfor-collage { position: static; width: 100%; max-width: none; height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .builtfor-collage > * { position: static !important; width: auto !important; height: auto !important; }
  .bf-photo--lg { grid-column: 1 / -1; aspect-ratio: 1 / 1; }
  .bf-quote { min-height: 240px; }
  .bf-photo--tall { aspect-ratio: 3 / 4; }
  .bf-years { grid-column: 1 / -1; min-height: 150px; }
  .bf-mint { grid-column: 1 / -1; min-height: 90px; }

  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi { padding: 28px; min-height: 0; }
  .testi-quote { font-size: 24px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
  .btn-pill:hover { transform: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .menu, .menu-links a, .menu-foot { transition: opacity 0.2s ease; transform: none; }
}
