:root {
  --black: #1d1d1f;
  --ink: #111113;
  --paper: #fbfbfd;
  --paper-soft: #ffffff;
  --line: #e6e6e6;
  --line-soft: #f0f0f0;
  --text-soft: #6e6e73;
  --muted: #86868b;
  --max: 1280px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Compact vertical rhythm */
  --section-y: clamp(3.1rem, 5.2vw, 5rem);
  --lift-shadow: 0 22px 46px -30px rgba(17, 17, 19, 0.45);
  --card-shadow: 0 28px 70px -52px rgba(17, 17, 19, 0.5);

  /* Editorial type scale */
  --type-label: 0.72rem;
  --type-small: 0.88rem;
  --type-body: 1rem;
  --type-lede: 1.1rem;
  --type-card-title: 1.45rem;
  --type-row-title: 1.8rem;
  --type-section-title: 3.1rem;
  --type-editorial-title: 3.25rem;
  --type-hero-title: 5.25rem;
  --type-cta-title: 4.2rem;
  --leading-copy: 1.58;
  --leading-title: 0.99;
  --tracking-copy: 0;
  --tracking-title: 0;
  --tracking-display: 0;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--type-body);
  line-height: var(--leading-copy);
  letter-spacing: var(--tracking-copy);
  background: var(--paper);
  overflow-x: hidden;
  font-optical-sizing: auto;
  overflow-wrap: break-word;
}

main,
section,
article,
aside,
figure,
form,
nav,
div,
p,
h1,
h2,
h3,
dl,
ol,
ul,
li {
  min-width: 0;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

::selection { color: var(--paper); background: var(--ink); }

[id] { scroll-margin-top: 84px; }

.skip-link, .sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap;
}

.skip-link:focus {
  position: fixed; z-index: 999; width: auto; height: auto;
  top: 1rem; left: 1rem; clip: auto;
  padding: 0.75rem 1rem; color: var(--paper); background: var(--ink);
  border-radius: 999px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.5rem);
  min-height: 64px;
  padding: 0.35rem max(1.5rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(251, 251, 253, 0.12);
  background: rgba(10, 12, 16, 0.34);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  transition:
    background 320ms var(--ease),
    color 320ms var(--ease),
    border-color 320ms var(--ease),
    backdrop-filter 320ms var(--ease);
  color: rgba(251, 251, 253, 0.92);
}

.site-header.is-scrolled {
  background: rgba(251, 251, 253, 0.78);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.site-header .brand-logo {
  border-radius: 10px;
  background: rgba(251, 251, 253, 0.92);
  padding: 4px;
  transition: background 320ms var(--ease), padding 320ms var(--ease);
}
.site-header.is-scrolled .brand-logo {
  background: transparent;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  transition: opacity 220ms var(--ease);
}
.brand:hover { opacity: 0.72; }
.brand-logo {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.1rem;
  margin-right: auto;
}
.primary-nav a, .header-cta {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: 0;
}
.primary-nav a {
  color: rgba(251, 251, 253, 0.78);
  transition: color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}
.site-header.is-scrolled .primary-nav a {
  color: var(--text-soft);
}
.primary-nav a:hover,
.primary-nav a.is-active {
  color: #fff;
  background: rgba(251, 251, 253, 0.12);
}
.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a.is-active {
  color: var(--ink);
  background: rgba(17, 17, 19, 0.06);
}
.primary-nav a:hover { transform: translateY(-1px); }

.header-cta {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(251, 251, 253, 0.85);
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.site-header.is-scrolled .header-cta {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}
.header-cta:hover {
  background: #fff;
  box-shadow: 0 16px 32px -22px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}
.site-header.is-scrolled .header-cta:hover {
  background: #000;
  box-shadow: var(--lift-shadow);
}
.nav-toggle { display: none; }

/* ---------- Containers ---------- */
.hero,
.section,
.manifesto,
.proof-strip,
.process,
.team,
.testimonials {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, p { margin: 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: var(--leading-title);
  color: var(--ink);
  text-wrap: balance;
}

h3 { letter-spacing: -0.018em; }

p { text-wrap: pretty; }

h1 em, h2 em {
  font-style: normal;
  color: var(--muted);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  color: var(--text-soft);
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--muted);
}

/* ---------- Hero (cinema) ---------- */
.hero-pin {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 320vh;
  background: #0a0c10;
}

.hero--cinema {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
  min-height: 600px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  color: #fbfbfd;
  background: #0a0c10;
  overflow: hidden;
  isolation: isolate;
}

@media (hover: hover) and (pointer: fine) {
  .hero--cinema,
  .hero--cinema a,
  .hero--cinema button { cursor: none; }
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.hero-stage-img {
  position: absolute;
  inset: -10%;
  width: 120%;
  max-width: none;
  height: 120%;
  object-fit: cover;
  object-position: 64% 60%;
  transform: scale(1.18) translate3d(0, 0, 0);
  filter: blur(18px) saturate(0.55) brightness(0.78) contrast(1.04);
  opacity: 0;
  transform-origin: 60% 50%;
  will-change: transform, filter, opacity;
}

.hero-stage-img.is-loaded {
  animation: heroBoot 2200ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
}

@keyframes heroBoot {
  0% {
    transform: scale(1.22) translate3d(0, 0, 0);
    filter: blur(22px) saturate(0.45) brightness(0.72) contrast(1.08);
    opacity: 0;
  }
  30% { opacity: 1; }
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: blur(0) saturate(1) brightness(1) contrast(1);
    opacity: 1;
  }
}

/* Cursor-following glow over the hero image */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--glow-x, 70%) var(--glow-y, 40%),
    rgba(255, 220, 170, 0.22),
    rgba(255, 220, 170, 0) 60%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 600ms var(--ease);
}

.hero--cinema.is-booted .hero-glow {
  opacity: 1;
}

/* Diagonal spotlight sweep on boot */
.hero-sweep {
  position: absolute;
  inset: -20% -40%;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.16) 48%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.16) 52%,
    rgba(255, 255, 255, 0) 62%
  );
  transform: translate3d(-120%, 0, 0);
  mix-blend-mode: screen;
  opacity: 0;
}

.hero--cinema.is-booted .hero-sweep {
  animation: heroSweep 2400ms cubic-bezier(0.2, 0.7, 0.1, 1) 360ms both;
}

@keyframes heroSweep {
  0%   { transform: translate3d(-120%, 0, 0); opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translate3d(120%, 0, 0); opacity: 0; }
}

/* Custom cursor (hero only) */
.hero-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.92);
  pointer-events: none;
  z-index: 80;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 220ms var(--ease), width 280ms var(--ease), height 280ms var(--ease), background 220ms var(--ease), border 220ms var(--ease);
  mix-blend-mode: difference;
}

.hero-cursor.is-visible { opacity: 1; }

.hero-cursor.is-hot {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  mix-blend-mode: normal;
}

/* Animated grain */
.hero-grain {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.96  0 0 0 0 0.96  0 0 0 0.42 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  opacity: 0.18;
  mix-blend-mode: overlay;
  animation: grainDrift 8s steps(8) infinite;
}

@keyframes grainDrift {
  0%   { transform: translate3d(0, 0, 0); }
  10%  { transform: translate3d(-6%, -3%, 0); }
  25%  { transform: translate3d(3%, 5%, 0); }
  45%  { transform: translate3d(-4%, 2%, 0); }
  65%  { transform: translate3d(5%, -4%, 0); }
  85%  { transform: translate3d(-2%, 6%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.65) 0%, rgba(10, 12, 16, 0.18) 20%, rgba(10, 12, 16, 0.2) 45%, rgba(10, 12, 16, 0.62) 75%, rgba(10, 12, 16, 0.94) 100%),
    linear-gradient(96deg, rgba(10, 12, 16, 0.7) 0%, rgba(10, 12, 16, 0.32) 38%, rgba(10, 12, 16, 0.05) 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  align-self: stretch;
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
  padding: clamp(7.8rem, 14vh, 8.8rem) 0 clamp(1.4rem, 3vh, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
}

.hero-chapters { margin-top: 0; }

.hero-title {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

/* Pinned chapter stack */
.hero-chapters {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  min-height: clamp(340px, 42vh, 470px);
}

.hero-chapter {
  grid-area: stack;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: blur(8px);
  pointer-events: none;
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.1, 1),
    transform 720ms cubic-bezier(0.2, 0.7, 0.1, 1),
    filter 600ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.hero-chapter.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  pointer-events: auto;
}

.hero-chapter.is-exiting {
  opacity: 0;
  transform: translate3d(0, -28px, 0);
  filter: blur(6px);
}

.hero-chapter-tag {
  margin: 0;
  color: rgba(251, 251, 253, 0.62);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: rgba(251, 251, 253, 0.78);
  letter-spacing: 0.12em;
}

.hero-eyebrow .dot { background: rgba(251, 251, 253, 0.5); }

.hero-title {
  margin: 0;
  max-width: 18ch;
  color: #fbfbfd;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.55rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.hero-title em {
  font-style: normal;
  color: rgba(251, 251, 253, 0.55);
}

.hero-letter.is-em {
  color: rgba(251, 251, 253, 0.55);
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.08em;
}

.hero-line-inner {
  display: inline-block;
}

.hero-letter {
  display: inline-block;
  transform: translate3d(0, 115%, 0) skewY(8deg);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-letter--space {
  display: inline;
}

/* Active chapter cascades letters in */
.hero--cinema.is-booted .hero-chapter.is-active .hero-letter {
  transform: translate3d(0, 0, 0) skewY(0deg);
  opacity: 1;
  transition-delay: calc(var(--letter-index, 0) * 26ms + var(--cascade-base, 220ms));
}

/* Chapter 0 gets a slightly later base on initial boot for image to take focus */
.hero--cinema.is-booted .hero-chapter[data-chapter="0"] {
  --cascade-base: 460ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-letter {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

.hero-lede {
  max-width: 46ch;
  color: rgba(251, 251, 253, 0.78);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.hero-foot {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 1.1rem 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(251, 251, 253, 0.16);
  color: rgba(251, 251, 253, 0.6);
  font-size: var(--type-small);
  letter-spacing: 0.02em;
}

/* Hero chapter progress */
.hero-progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.hero-progress button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-progress-track {
  position: relative;
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(251, 251, 253, 0.22);
  overflow: hidden;
}

.hero-progress-track::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  background: rgba(251, 251, 253, 0.95);
  transition: width 280ms var(--ease);
}

.hero-progress button.is-active .hero-progress-track {
  background: rgba(251, 251, 253, 0.32);
}

.hero-progress button:hover .hero-progress-track,
.hero-progress button:focus-visible .hero-progress-track {
  background: rgba(251, 251, 253, 0.42);
}

/* Cinema entrance for content (independent of .reveal) */
.hero--cinema [data-cinema-step] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.hero--cinema.is-booted [data-cinema-step] {
  animation: heroInk 900ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
}

.hero--cinema.is-booted [data-cinema-step="1"] { animation-delay: 320ms; }
.hero--cinema.is-booted [data-cinema-step="2"] { animation-delay: 460ms; }
.hero--cinema.is-booted [data-cinema-step="3"] { animation-delay: 720ms; }
.hero--cinema.is-booted [data-cinema-step="4"] { animation-delay: 880ms; }
.hero--cinema.is-booted [data-cinema-step="5"] { animation-delay: 1040ms; }

@keyframes heroInk {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage-img,
  .hero-stage-img.is-loaded {
    animation: none;
    transform: none;
    filter: none;
    opacity: 1;
  }
  .hero--cinema [data-cinema-step] {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-foot-scroll-track::after {
    animation: none;
  }
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.button.large { min-height: 54px; padding: 0 1.7rem; font-size: var(--type-small); }

.button.dark { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button.dark:hover {
  background: #000;
  box-shadow: var(--lift-shadow);
  transform: translateY(-2px);
}

.button.ghost-dark {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 17, 19, 0.2);
}
.button.ghost-dark:hover {
  border-color: var(--ink);
  background: rgba(17, 17, 19, 0.045);
  transform: translateY(-2px);
}

.button.ghost {
  color: var(--paper);
  background: transparent;
  border-color: rgba(251, 251, 253, 0.35);
}
.button.ghost:hover {
  border-color: var(--paper);
  background: rgba(251, 251, 253, 0.09);
  transform: translateY(-2px);
}

.button.light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}
.button.light:hover {
  background: #fff;
  box-shadow: 0 18px 38px -24px rgba(0, 0, 0, 0.55);
  transform: translateY(-2px);
}

.button.ghost-light {
  color: var(--paper);
  background: transparent;
  border-color: rgba(251, 251, 253, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.button.ghost-light:hover {
  border-color: var(--paper);
  background: rgba(251, 251, 253, 0.12);
  transform: translateY(-2px);
}

/* ---------- Proof strip ---------- */
.proof-strip {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.proof-strip span,
.proof-strip strong {
  min-width: 0;
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 0.9rem 0.6rem;
  text-align: center;
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: 0;
}

.proof-strip span {
  color: var(--muted);
  font-size: var(--type-label);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  justify-self: start;
  padding-inline: 0;
}

.proof-strip strong {
  color: var(--ink);
  font-weight: 600;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.proof-strip strong:hover {
  background: rgba(17, 17, 19, 0.045);
  transform: translateY(-2px);
}

/* ---------- About (white, editorial) ---------- */
.about-light {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(3.7rem, 7vw, 5.8rem) 0 clamp(3.1rem, 5vw, 4.4rem);
  background: var(--paper);
  color: var(--ink);
}

.about-light-inner {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.about-light-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.about-light-head .section-label { color: var(--text-soft); }

.about-light-mono {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-light-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(1.6rem, 5vw, 4rem);
  padding-block: clamp(2rem, 4.5vw, 3.5rem) clamp(1.5rem, 3vw, 2.2rem);
}

.about-light-title-wrap {
  display: grid;
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
}

.about-light-kicker {
  max-width: 34ch;
  color: var(--text-soft);
  font-size: var(--type-lede);
  font-weight: 500;
  line-height: 1.4;
}

.about-light-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 13.4ch;
}

.about-light-title em {
  font-style: italic;
  color: var(--text-soft);
  font-weight: 400;
}

.about-light-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48ch;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: 1.6;
}

.about-light-body p { margin: 0; }

.about-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr));
  gap: 1px;
  margin-top: clamp(0.8rem, 2vw, 1.3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--card-shadow);
}

.about-company-card,
.about-company-panel {
  min-height: 238px;
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  background: var(--paper-soft);
}

.about-company-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.about-company-card--dark {
  color: var(--paper);
  background: var(--ink);
}

.about-company-card span {
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-company-card--dark span {
  color: rgba(251, 251, 253, 0.56);
}

.about-company-card h3 {
  max-width: 13ch;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  letter-spacing: -0.024em;
  color: inherit;
}

.about-company-card p {
  max-width: 44ch;
  color: var(--text-soft);
}

.about-company-card--dark p {
  color: rgba(251, 251, 253, 0.72);
}

.about-company-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}

.about-company-panel p {
  max-width: 14ch;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.about-company-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-company-panel li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.about-company-panel li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--ink);
}

.about-light-stats {
  list-style: none;
  margin: 0;
  padding: clamp(1.5rem, 2.7vw, 2.2rem) 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.about-light-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-light-stats li:first-child { padding-left: 0; }

.about-light-stats .num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--ink);
}

.about-light-stats .num sup {
  font-size: 0.5em;
  vertical-align: 0.7em;
  color: var(--muted);
}

.about-light-stats .tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 900px) {
  .about-light-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-light-stats li {
    border-bottom: 0;
  }
  .about-light-stats li:last-child { border-right: 0; padding-right: 0; }
}

/* ---------- Service deck (sticky horizontal slide — white) ---------- */
.service-deck {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 560vh;
  background: var(--paper);
  color: var(--ink);
}

.service-deck-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--paper);
}

.service-deck-head {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: clamp(2.2rem, 4vh, 3rem) 0 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.service-deck-head .section-label {
  color: var(--text-soft);
}

.service-deck-head h2 {
  margin: 0.55rem 0 0;
  max-width: 24ch;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.024em;
  line-height: 1.05;
}

.service-deck-mono {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.service-rail-mask {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-rail {
  display: flex;
  align-items: stretch;
  gap: clamp(1.2rem, 2vw, 1.8rem);
  padding-inline: clamp(1.5rem, 6vw, 5rem);
  height: 80%;
  min-height: 360px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.service-slide {
  position: relative;
  flex: 0 0 clamp(280px, 56vw, 640px);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-soft);
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease);
}

.service-slide:hover {
  border-color: rgba(17, 17, 19, 0.28);
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
}

.service-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.service-slide h3 {
  margin: 0.4rem 0 0;
  max-width: 14ch;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.022em;
  line-height: 1.04;
}

.service-tag {
  margin: 0.3rem 0 0;
  max-width: 28ch;
  color: var(--ink);
  font-size: var(--type-lede);
  font-weight: 500;
  line-height: 1.4;
}

.service-slide > p:last-child {
  margin: auto 0 0;
  max-width: 38ch;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-deck-foot {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 1.1rem 0 clamp(1.2rem, 3vh, 2rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}

.service-counter {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.service-counter .dim { color: var(--muted); }

.service-progress {
  position: relative;
  height: 1.5px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.service-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--ink);
  transition: width 200ms var(--ease);
}

.service-hint { text-align: right; }

@media (max-width: 720px) {
  .service-deck { height: 420vh; }
  .service-deck-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-deck-head h2 { font-size: 1.6rem; }
  .service-slide { flex-basis: 84vw; }
  .service-deck-foot {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .service-hint { display: none; }
}

/* ---------- Section base ---------- */
.section { padding: var(--section-y) 0; }

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(1.8rem, 3vw, 2.7rem);
}

.section-heading h2 {
  margin-top: 0.9rem;
  font-size: var(--type-section-title);
  font-weight: 600;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

.section-heading p {
  max-width: 560px;
  margin-top: 1.1rem;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: var(--leading-copy);
}

/* ---------- Manifesto (replaces centred About) ---------- */
.manifesto { padding: calc(var(--section-y) * 0.8) 0 calc(var(--section-y) * 0.45); }

.manifesto h2 {
  margin-top: 0.9rem;
  max-width: 22ch;
  font-size: var(--type-section-title);
  font-weight: 600;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line);
}

.manifesto-grid > p {
  max-width: 50ch;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: var(--leading-copy);
  letter-spacing: var(--tracking-copy);
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
}

.manifesto-stats > div { display: grid; gap: 0.35rem; }

.manifesto-stats dt {
  font-size: var(--type-row-title);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.04;
}

.manifesto-stats dd {
  margin: 0;
  color: var(--text-soft);
  font-size: var(--type-small);
  line-height: 1.4;
  letter-spacing: 0;
}

/* ---------- Feature / Project grids ---------- */
.feature-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.45rem);
}

.feature-card, .project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(251, 251, 253, 0.5));
  box-shadow: 0 0 0 rgba(17, 17, 19, 0);
  overflow: hidden;
  transition:
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.feature-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(17, 17, 19, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 260ms var(--ease);
  pointer-events: none;
}

.feature-card:hover,
.project-card:hover {
  border-color: rgba(17, 17, 19, 0.28);
  box-shadow: var(--card-shadow);
  transform: translateY(-6px);
}

.feature-card:hover::before,
.project-card:hover::before { opacity: 1; }

.feature-card span, .project-card span {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-card h3, .project-card h3 {
  font-size: var(--type-card-title);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.feature-card p, .project-card p {
  color: var(--text-soft);
  font-size: var(--type-body);
  line-height: var(--leading-copy);
  letter-spacing: var(--tracking-copy);
}

.award-feature {
  position: relative;
  margin: 0 0 clamp(1.2rem, 2.8vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-soft);
  box-shadow: var(--card-shadow);
}

.award-feature img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.award-feature figcaption {
  position: absolute;
  inset: auto 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.9rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(251, 251, 253, 0.22);
  border-radius: 18px;
  color: var(--paper);
  background: rgba(17, 17, 19, 0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.award-feature figcaption span {
  color: rgba(251, 251, 253, 0.66);
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.award-feature figcaption strong {
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: 0;
}

.project-gallery {
  position: relative;
  margin: 0 0 clamp(1.4rem, 3vw, 2.25rem);
  padding-block: 0.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.project-gallery::-webkit-scrollbar { display: none; }

.project-gallery-track {
  display: flex;
  width: max-content;
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
  animation: projectGalleryScroll 48s linear infinite;
  will-change: transform;
}

.project-gallery:hover .project-gallery-track {
  animation-play-state: paused;
}

.project-gallery-item {
  flex: 0 0 clamp(176px, 23vw, 300px);
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 18px;
  background: var(--paper-soft);
  box-shadow: 0 18px 44px -34px rgba(17, 17, 19, 0.42);
  transform: translateZ(0);
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: filter 260ms var(--ease), transform 260ms var(--ease);
}

.project-gallery-item:hover img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.035);
}

@keyframes projectGalleryScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - clamp(0.4rem, 0.9vw, 0.575rem)), 0, 0); }
}

/* ---------- Process ---------- */
.process { padding: calc(var(--section-y) * 0.85) 0; }

.process-head { max-width: 900px; margin-bottom: clamp(1.8rem, 3vw, 2.7rem); }
.process-head h2 {
  margin-top: 0.9rem;
  max-width: 22ch;
  font-size: var(--type-section-title);
  font-weight: 600;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}
.process-head > p:not(.section-label) {
  max-width: 52ch;
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: var(--leading-copy);
}

.process-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 1.8rem;
  bottom: 1.8rem;
  left: 31px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 19, 0.12) 0%,
    rgba(17, 17, 19, 0.2) 18%,
    rgba(17, 17, 19, 0.08) 100%
  );
  pointer-events: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.process-card {
  position: relative;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(251, 251, 253, 0.78));
  box-shadow: 0 12px 34px -30px rgba(17, 17, 19, 0.4);
  overflow: hidden;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(17, 17, 19, 0.08), transparent 36%);
  opacity: 0;
  transition: opacity 220ms var(--ease);
  pointer-events: none;
}

.process-list li:hover .process-card {
  border-color: rgba(17, 17, 19, 0.24);
  box-shadow: var(--lift-shadow);
  transform: translateY(-4px);
}

.process-list li:hover .process-card::before { opacity: 1; }

.process-kicker {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-transform: uppercase;
}

.process-num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(17, 17, 19, 0.14);
  border-radius: 22px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(28, 28, 31, 0.96), rgba(17, 17, 19, 1));
  box-shadow:
    0 18px 30px -24px rgba(17, 17, 19, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.process-list li:hover .process-num {
  transform: scale(1.03);
  box-shadow:
    0 22px 34px -24px rgba(17, 17, 19, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.process-list h3 {
  margin-top: 0.4rem;
  font-size: var(--type-row-title);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.process-list p {
  margin-top: 0.6rem;
  max-width: 54ch;
  color: var(--text-soft);
  font-size: var(--type-body);
  line-height: var(--leading-copy);
}

.process-list .process-kicker {
  margin-top: 0;
  max-width: none;
  color: var(--muted);
  font-size: var(--type-label);
  line-height: 1.15;
}

/* ---------- Team (Kenneth + Associates unified) ---------- */
.team { padding: calc(var(--section-y) * 0.9) 0; }

.team-head { max-width: 800px; margin-bottom: clamp(1.8rem, 3vw, 2.7rem); }
.team-head h2 {
  margin-top: 0.9rem;
  max-width: 20ch;
  font-size: var(--type-section-title);
  font-weight: 600;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

.lead-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.7rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.3rem) 0;
}

.leader-visual { margin: 0; }

.leader-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 24px;
  box-shadow:
    0 40px 80px -30px rgba(17, 17, 19, 0.3),
    0 12px 24px -14px rgba(17, 17, 19, 0.18);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), filter 420ms var(--ease);
}
.leader-visual:hover .leader-img {
  box-shadow:
    0 42px 86px -32px rgba(17, 17, 19, 0.36),
    0 16px 32px -18px rgba(17, 17, 19, 0.22);
  filter: saturate(1.05) contrast(1.03);
  transform: translateY(-4px) scale(1.015);
}

.leader-copy { display: flex; flex-direction: column; gap: 1.1rem; }

.leader-role {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.leader-copy h3 {
  max-width: 16ch;
  font-size: var(--type-row-title);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.leader-bio {
  display: flex; flex-direction: column; gap: 0.9rem;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: var(--leading-copy);
}

.leader-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.4rem;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: gap 180ms var(--ease), opacity 180ms var(--ease), transform 180ms var(--ease);
}
.leader-link:hover { gap: 0.7rem; opacity: 0.7; transform: translateX(2px); }

.associates {
  margin-top: clamp(1.7rem, 3.5vw, 3rem);
  padding-top: clamp(1.4rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line);
}

.associates-label { margin-bottom: 1.8rem; }

.associate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.associate-list li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 18px;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.associate-list li:hover {
  border-color: rgba(17, 17, 19, 0.28);
  box-shadow: var(--lift-shadow);
  transform: translateY(-4px);
}

.associate-role {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.associate-list strong {
  font-size: var(--type-card-title);
  font-weight: 600;
  letter-spacing: 0;
}

.associate-credentials {
  color: var(--text-soft);
  font-size: var(--type-body);
  line-height: var(--leading-copy);
}

/* ---------- Testimonials (editorial) ---------- */
.testimonials { padding: calc(var(--section-y) * 0.9) 0; }

.testimonials .section-label { margin-bottom: 1.6rem; }

.quote-hero {
  margin: 0 0 clamp(2rem, 4vw, 3.4rem);
  padding-bottom: clamp(1.8rem, 3.5vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.quote-hero blockquote {
  position: relative;
  margin: 0;
  max-width: 22ch;
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--type-editorial-title);
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
  color: var(--ink);
}

.quote-mark {
  display: block;
  margin-bottom: -0.2em;
  font-size: 1.2em;
  line-height: 0.6;
  color: var(--muted);
}

.quote-hero figcaption,
.quote-row figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 1.6rem;
}

.quote-hero figcaption strong,
.quote-row figcaption strong {
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
}

.quote-hero figcaption span,
.quote-row figcaption span {
  color: var(--muted);
  font-size: var(--type-small);
  letter-spacing: 0;
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.quote-row figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.quote-row figure:hover {
  border-color: rgba(17, 17, 19, 0.24);
  box-shadow: var(--lift-shadow);
  transform: translateY(-4px);
}

.quote-row blockquote {
  margin: 0;
  color: var(--ink);
  font-size: var(--type-body);
  line-height: var(--leading-copy);
  letter-spacing: var(--tracking-copy);
}

.quote-row figcaption {
  margin-top: auto;
  padding-top: 1.6rem;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.82fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: start;
}

.contact-copy h2 {
  margin-top: 0.9rem;
  font-size: var(--type-section-title);
  font-weight: 600;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

.contact-copy > p {
  max-width: 48ch;
  margin-top: 1.1rem;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: var(--leading-copy);
}

.contact-methods {
  display: grid;
  margin-top: 1.4rem;
}

.contact-methods a {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), border-color 180ms var(--ease);
}
.contact-methods a:first-child { border-top: 1px solid var(--line); }
.contact-methods a:hover {
  border-color: var(--ink);
  opacity: 0.72;
  transform: translateX(6px);
}

.contact-methods span {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: var(--type-card-title);
  font-weight: 600;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.quote-form {
  position: relative;
  display: grid;
  gap: 1rem;
  align-self: start;
  padding: clamp(1.35rem, 2.8vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(251, 251, 253, 0.88));
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(17, 17, 19, 0.06), transparent 34%),
    radial-gradient(circle at bottom left, rgba(17, 17, 19, 0.04), transparent 28%);
  pointer-events: none;
}

.quote-form > * {
  position: relative;
  z-index: 1;
}

.quote-form h3 {
  max-width: 14ch;
  font-size: var(--type-row-title);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
}

.quote-form-intro,
.quote-form-note {
  color: var(--text-soft);
  font-size: var(--type-small);
  line-height: 1.5;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  font-size: var(--type-body);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(17, 17, 19, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(17, 17, 19, 0.06);
}

.quote-form textarea {
  min-height: 144px;
  resize: vertical;
}

.quote-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.quote-form button {
  width: 100%;
  min-height: 54px;
  margin-top: 0.2rem;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: var(--type-small);
  font-weight: 500;
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}
.quote-form button:hover {
  background: #000;
  box-shadow: var(--lift-shadow);
  transform: translateY(-2px);
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 1.2rem;
  color: var(--text-soft);
  font-size: var(--type-small);
}

.form-status[data-status="success"] {
  color: #17613a;
}

.form-status[data-status="error"] {
  color: #a12d2d;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-widget {
  position: fixed;
  right: max(1rem, calc((100vw - var(--max)) / 2 + 1rem));
  bottom: 1.2rem;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow:
    0 18px 40px -18px rgba(18, 140, 76, 0.88),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.whatsapp-widget-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.whatsapp-widget svg {
  display: block;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  background: #1ebe5d;
  box-shadow:
    0 22px 42px -18px rgba(18, 140, 76, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  transform: translateY(-3px);
}

.whatsapp-widget:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.28);
  outline-offset: 4px;
}

/* ---------- Structured section refresh ---------- */
.service-deck {
  height: auto;
  padding: clamp(3.7rem, 7vw, 5.8rem) 0 clamp(3.1rem, 5vw, 4.4rem);
  border-top: 1px solid var(--line);
}

.service-deck-pin {
  position: relative;
  top: auto;
  width: min(calc(100% - 3rem), var(--max));
  height: auto;
  min-height: 0;
  margin-inline: auto;
  display: grid;
  grid-template-rows: none;
  gap: clamp(1.4rem, 3vw, 2.2rem);
  overflow: visible;
}

.service-deck-head {
  width: 100%;
  padding: 0 0 clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(1.4rem, 4vw, 3rem);
}

.service-deck-head h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.service-deck-head > p {
  max-width: 48ch;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: 1.6;
}

.service-rail-mask {
  display: block;
  height: auto;
  overflow: visible;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  transform: none !important;
  box-shadow: var(--card-shadow);
}

.service-slide {
  flex: initial;
  min-height: 330px;
  gap: 1rem;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  border: 0;
  border-radius: 0;
  background: var(--paper-soft);
  box-shadow: none;
}

.service-slide--dark {
  color: var(--paper);
  background: var(--ink);
}

.service-slide:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.service-slide h3 {
  max-width: 13ch;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  color: inherit;
}

.service-slide--dark h3,
.service-slide--dark .service-tag {
  color: var(--paper);
}

.service-slide--dark .service-num,
.service-slide--dark > p:last-child {
  color: rgba(251, 251, 253, 0.68);
}

.service-slide > p:last-child {
  margin-top: auto;
}

.service-deck-foot {
  width: 100%;
  margin: 0;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}

.service-deck-foot p {
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.service-deck-foot span {
  max-width: 62ch;
  color: var(--text-soft);
  line-height: 1.55;
}

.process {
  padding: clamp(3.7rem, 7vw, 5.8rem) 0 clamp(3.1rem, 5vw, 4.4rem);
  border-top: 1px solid var(--line);
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(1.4rem, 4vw, 3rem);
  max-width: none;
  padding-bottom: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: clamp(1.2rem, 2.4vw, 1.7rem);
  border-bottom: 1px solid var(--line);
}

.process-head .section-label {
  grid-column: 1 / -1;
}

.process-head h2 {
  max-width: 12ch;
  margin-top: 0;
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.process-head > p:not(.section-label) {
  max-width: 48ch;
  margin-top: 0;
}

.process-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--card-shadow);
}

.process-list::before {
  display: none;
}

.process-list li {
  display: block;
}

.process-marker {
  display: none;
}

.process-card {
  min-height: 270px;
  height: 100%;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  border: 0;
  border-radius: 0;
  background: var(--paper-soft);
  box-shadow: none;
}

.process-card::before {
  display: none;
}

.process-list li:hover .process-card {
  box-shadow: none;
  transform: none;
}

.process-list h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.process-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-top: 1px;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.process-note strong {
  max-width: 16ch;
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.process-note p {
  max-width: 64ch;
  color: rgba(251, 251, 253, 0.72);
  line-height: 1.55;
}

.team {
  padding: clamp(3.7rem, 7vw, 5.8rem) 0 clamp(3.1rem, 5vw, 4.4rem);
  border-top: 1px solid var(--line);
}

.team-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(1.4rem, 4vw, 3rem);
  max-width: none;
  padding-bottom: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: clamp(1.2rem, 2.4vw, 1.7rem);
  border-bottom: 1px solid var(--line);
}

.team-head .section-label {
  grid-column: 1 / -1;
}

.team-head h2 {
  max-width: 12ch;
  margin-top: 0;
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.team-head > p {
  max-width: 50ch;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: 1.6;
}

.lead-card {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--card-shadow);
}

.leader-visual,
.leader-copy {
  background: var(--paper-soft);
}

.leader-visual {
  display: grid;
  place-items: stretch;
}

.leader-img {
  max-width: none;
  height: 100%;
  min-height: 520px;
  border-radius: 0;
  box-shadow: none;
}

.leader-visual:hover .leader-img {
  box-shadow: none;
}

.leader-copy {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  justify-content: center;
}

.leader-copy h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.leader-credentials {
  display: grid;
  gap: 0.6rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.leader-credentials li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.leader-credentials li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--ink);
}

.associates {
  margin-top: clamp(1.4rem, 2.5vw, 2rem);
}

.associates-intro {
  max-width: 62ch;
  margin: -0.6rem 0 1.4rem;
  color: var(--text-soft);
  font-size: var(--type-lede);
  line-height: 1.55;
}

.associate-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--card-shadow);
}

.associate-list li {
  min-height: 210px;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 0;
  border-radius: 0;
  background: var(--paper-soft);
}

.associate-list li:hover {
  box-shadow: none;
  transform: none;
}

.credential-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-bottom: 1px;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: var(--ink);
  color: var(--paper);
}

.credential-band strong {
  max-width: 15ch;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.credential-band span {
  max-width: 64ch;
  color: rgba(251, 251, 253, 0.72);
  line-height: 1.55;
}

#credentials .project-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  background: var(--line);
  box-shadow: var(--card-shadow);
}

#credentials .project-card {
  min-height: 230px;
  border: 0;
  border-radius: 0;
  background: var(--paper-soft);
  box-shadow: none;
}

#credentials .project-card:hover {
  box-shadow: none;
  transform: none;
}

.testimonials {
  padding: clamp(3.7rem, 7vw, 5.8rem) 0 clamp(3.1rem, 5vw, 4.4rem);
  border-top: 1px solid var(--line);
}

.testimonials-head {
  display: grid;
  gap: 0.9rem;
  padding-bottom: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: clamp(1.2rem, 2.4vw, 1.7rem);
  border-bottom: 1px solid var(--line);
}

.testimonials-head h2 {
  max-width: 17ch;
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.testimonials .section-label {
  margin-bottom: 0;
}

.quote-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1px;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: var(--ink);
  color: var(--paper);
}

.quote-hero blockquote {
  max-width: 30ch;
  color: var(--paper);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.quote-hero figcaption {
  margin-top: 0;
}

.quote-hero figcaption strong {
  color: var(--paper);
}

.quote-hero figcaption span {
  color: rgba(251, 251, 253, 0.58);
}

.quote-row {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  background: var(--line);
  box-shadow: var(--card-shadow);
}

.quote-row figure {
  min-height: 260px;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 0;
  border-radius: 0;
  background: var(--paper-soft);
}

.quote-row figure:hover {
  box-shadow: none;
  transform: none;
}

.contact {
  padding-top: clamp(3.7rem, 7vw, 5.8rem);
  border-top: 1px solid var(--line);
}

.contact-copy > p + p {
  margin-top: 0.8rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  width: 100%;
  margin-top: calc(var(--section-y) * 0.2);
  padding: clamp(2.3rem, 4.8vw, 3.7rem) 0 clamp(1.5rem, 3vw, 2rem);
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.09), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 255, 255, 0.06), transparent 55%);
}

.final-cta-inner {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: end;
}

.final-cta-copy {
  min-width: 0;
}

.final-cta .section-label { color: rgba(251, 251, 253, 0.55); }

.final-cta h2 {
  margin-top: 0.6rem;
  max-width: 16ch;
  color: var(--paper);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: var(--tracking-display);
}

.final-cta h2 em { color: rgba(251, 251, 253, 0.48); }

.final-cta-lede {
  max-width: 470px;
  margin-top: 1rem;
  color: rgba(251, 251, 253, 0.72);
  font-size: var(--type-lede);
  line-height: var(--leading-copy);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.final-social {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  gap: 0.55rem;
  order: 3;
  margin-top: 0.3rem;
}

.final-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(251, 251, 253, 0.18);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(251, 251, 253, 0.06);
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.final-social a:hover {
  border-color: rgba(251, 251, 253, 0.36);
  background: rgba(251, 251, 253, 0.12);
  transform: translateY(-2px);
}

.final-social a:focus-visible {
  outline: 2px solid rgba(251, 251, 253, 0.8);
  outline-offset: 4px;
}

.final-social .social-link--facebook:hover {
  border-color: rgba(24, 119, 242, 0.65);
  background: #1877f2;
}

.final-social .social-link--instagram:hover {
  border-color: rgba(225, 48, 108, 0.65);
  background: #e1306c;
}

.final-social .social-link--x:hover,
.final-social .social-link--threads:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: #000;
}

.final-social .social-link--linkedin:hover {
  border-color: rgba(10, 102, 194, 0.65);
  background: #0a66c2;
}

.final-social svg {
  display: block;
  flex: 0 0 auto;
}

.final-cta-brand {
  display: grid;
  align-content: end;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.2rem 1.2rem 1.1rem;
  border: 1px solid rgba(251, 251, 253, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.final-cta-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 34px -28px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.final-cta-logo {
  width: min(100%, 280px);
  height: auto;
  opacity: 1;
}

.final-cta-brandline {
  color: rgba(251, 251, 253, 0.56);
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-transform: uppercase;
}

.final-cta-brandtext {
  max-width: 28ch;
  color: rgba(251, 251, 253, 0.76);
  font-size: var(--type-small);
  line-height: 1.55;
}

.final-cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 251, 253, 0.14);
  color: rgba(251, 251, 253, 0.6);
  font-size: var(--type-small);
  line-height: 1.35;
}

.final-cta-meta strong {
  color: var(--paper);
  font-weight: 600;
}

.final-cta-meta a {
  color: var(--paper);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 180ms var(--ease);
}

.final-cta-meta a:hover {
  opacity: 0.72;
}

.final-cta .button.dark {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}
.final-cta .button.dark:hover { background: #fff; }

/* ---------- Type role map ---------- */
.eyebrow,
.section-label,
.feature-card span,
.project-card span,
.leader-role,
.associate-role,
.contact-methods span,
.proof-strip span {
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.15;
}

.primary-nav a,
.header-cta,
.button,
.button.large,
.quote-form label,
.quote-hero figcaption span,
.quote-row figcaption span,
.form-status,
.final-cta-meta {
  font-size: var(--type-small);
  line-height: 1.35;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: var(--type-hero-title);
  font-weight: 650;
  letter-spacing: var(--tracking-display);
  line-height: 0.94;
}

.section-heading h2,
.manifesto h2,
.process-head h2,
.team-head h2,
.contact-copy h2 {
  max-width: 20ch;
  font-size: var(--type-section-title);
  font-weight: 650;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

.hero-lede,
.section-heading p,
.manifesto-grid > p,
.leader-bio,
.contact-copy > p,
.final-cta-lede {
  font-size: var(--type-lede);
  line-height: var(--leading-copy);
  letter-spacing: var(--tracking-copy);
}

.process-list p,
.feature-card p,
.project-card p,
.associate-credentials,
.quote-row blockquote {
  font-size: var(--type-body);
  line-height: var(--leading-copy);
  letter-spacing: var(--tracking-copy);
}

.feature-card h3,
.project-card h3,
.contact-methods strong,
.associate-list strong {
  font-size: var(--type-card-title);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

.process-list h3,
.leader-copy h3,
.manifesto-stats dt {
  font-size: var(--type-row-title);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.04;
}

.quote-hero blockquote {
  max-width: 24ch;
  font-size: var(--type-editorial-title);
  font-weight: 650;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

.final-cta h2 {
  max-width: 16ch;
  font-size: 3.2rem;
  font-weight: 650;
  letter-spacing: var(--tracking-display);
  line-height: 0.98;
}

/* ---------- Scroll reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 850ms var(--ease),
    transform 850ms var(--ease);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js .feature-grid .reveal,
.js .project-grid .reveal,
.js .quote-row .reveal,
.js .associate-list .reveal {
  transform: translate3d(0, 22px, 0) scale(0.96);
}

.js .process-list .reveal {
  transform: translate3d(-18px, 18px, 0);
}

.js .process-list .reveal.is-visible {
  transform: none;
}

.js .hero-media.reveal,
.js .leader-visual.reveal {
  clip-path: inset(8% 8% 8% 8% round 28px);
  transform: translate3d(0, 22px, 0) scale(0.97);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease),
    clip-path 900ms var(--ease);
}

.js .hero-media.reveal.is-visible,
.js .leader-visual.reveal.is-visible {
  clip-path: inset(0 0 0 0 round 28px);
}

.js .section-label.reveal.is-visible,
.js .eyebrow.reveal.is-visible {
  animation: labelTrack 850ms var(--ease) both;
}

.js.home-arrival .hero-text > *,
.js.home-arrival .hero-media,
.js.home-arrival .hero-foot {
  animation: homeArrival 900ms var(--ease) both;
}

.js.home-arrival .hero-text > :nth-child(2) { animation-delay: 70ms; }
.js.home-arrival .hero-text > :nth-child(3) { animation-delay: 140ms; }
.js.home-arrival .hero-text > :nth-child(4) { animation-delay: 210ms; }
.js.home-arrival .hero-media { animation-delay: 260ms; }
.js.home-arrival .hero-foot { animation-delay: 320ms; }

@keyframes labelTrack {
  from { letter-spacing: 0.14em; }
  to { letter-spacing: 0.09em; }
}

@keyframes homeArrival {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal,
  .js .feature-grid .reveal,
  .js .project-grid .reveal,
  .js .project-gallery.reveal,
  .js .quote-row .reveal,
  .js .associate-list .reveal,
  .js .process-list .reveal,
  .js .hero-media.reveal,
  .js .leader-visual.reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .project-gallery-track {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: initial;
  }

  .brand-logo { height: 44px; }

  .final-cta-layout { grid-template-columns: 1fr; }
  .final-cta-brand {
    min-height: auto;
    max-width: 420px;
  }

  .primary-nav { display: none; }

  .nav-toggle {
    position: fixed;
    top: 11px;
    right: 1rem;
    justify-self: end;
    flex: 0 0 auto;
    display: grid;
    gap: 4px;
    place-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    box-shadow: 0 16px 32px -24px rgba(17, 17, 19, 0.48);
    z-index: 2;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px; height: 2px;
    border-radius: 999px;
    background: var(--paper);
  }

  .nav-open .site-header {
    background: rgba(251, 251, 253, 0.92);
    border-color: rgba(17, 17, 19, 0.08);
    color: var(--ink);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
  }

  .nav-open .primary-nav {
    position: fixed;
    top: calc(64px + 0.65rem);
    left: 1rem;
    right: 1rem;
    z-index: 61;
    display: grid;
    gap: 0.2rem;
    max-height: calc(100dvh - 88px);
    margin: 0;
    padding: 0.65rem;
    overflow-y: auto;
    border: 1px solid rgba(17, 17, 19, 0.08);
    border-radius: 18px;
    background: rgba(251, 251, 253, 0.985);
    box-shadow: 0 28px 70px -44px rgba(0, 0, 0, 0.55);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
  }

  .nav-open .primary-nav a {
    display: block;
    width: 100%;
    padding: 0.72rem 0.85rem;
    color: var(--ink);
    border-radius: 12px;
  }

  .nav-open .primary-nav a:hover,
  .nav-open .primary-nav a.is-active {
    color: var(--ink);
    background: rgba(17, 17, 19, 0.06);
    transform: none;
  }

  .nav-open .brand-logo {
    background: transparent;
    padding: 0;
  }
  .header-cta { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 360px; }

  .about-light-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .about-light-title { max-width: 15ch; }
  .about-light-body { max-width: 66ch; }
  .about-company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-company-card--dark { grid-column: span 2; }

  .service-deck-head,
  .process-head,
  .team-head,
  .quote-hero,
  .contact {
    grid-template-columns: 1fr;
  }
  .service-deck-head h2,
  .process-head h2,
  .team-head h2,
  .testimonials-head h2 {
    max-width: 16ch;
  }
  .service-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-list li:last-child {
    grid-column: 1 / -1;
  }
  .service-deck-foot,
  .process-note,
  .credential-band {
    grid-template-columns: 1fr;
  }
  .lead-card {
    grid-template-columns: 1fr;
  }
  .leader-img {
    min-height: 440px;
  }
  .associate-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto-grid { grid-template-columns: 1fr; align-items: start; }
  .manifesto-stats { grid-template-columns: repeat(3, 1fr); }

  .feature-grid,
  .project-grid,
  .associate-list,
  .quote-row { grid-template-columns: repeat(2, 1fr); }

  .lead-card { grid-template-columns: 1fr; }
  .leader-img { max-width: 380px; }

  .contact { grid-template-columns: 1fr; }
  .quote-form-grid { grid-template-columns: 1fr; }

  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip span {
    display: block;
    justify-self: stretch;
    width: 100%;
    max-width: 20ch;
    margin-inline: auto;
    padding: 0.8rem 0;
    white-space: normal;
    line-height: 1.45;
    text-wrap: balance;
  }
  .proof-strip strong { border-top: 1px solid var(--line); }
}

@media (max-width: 640px) {
  :root {
    --section-y: 3.2rem;
    --type-hero-title: 2.75rem;
    --type-section-title: 2.3rem;
    --type-editorial-title: 2.3rem;
    --type-cta-title: 2.7rem;
    --type-row-title: 1.55rem;
    --type-card-title: 1.28rem;
    --type-lede: 1rem;
  }

  .site-header { padding-inline: 1rem; }
  .brand-logo { height: 38px; }

  .hero-inner {
    padding-top: clamp(5.4rem, 12vh, 6.2rem);
    gap: 0.9rem;
  }

  .hero-chapters {
    min-height: auto;
  }

  .hero-chapter {
    gap: 1.05rem;
  }

  .hero-stage-img {
    object-position: 80% 56%;
  }

  .hero,
  .section,
  .manifesto,
  .proof-strip,
  .process,
  .team,
  .testimonials,
  .final-cta-inner {
    width: min(calc(100% - 2rem), var(--max));
  }

  .hero { padding: 4.7rem 0 2.4rem; }
  .hero-text,
  .hero-lede,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    max-width: 10.6ch;
    font-size: clamp(2.65rem, 11.4vw, 3rem);
    line-height: 0.95;
    letter-spacing: var(--tracking-display);
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .final-cta-actions .button {
    width: min(100%, 360px);
  }

  .final-cta-actions .button:first-child {
    order: 1;
  }

  .final-social {
    justify-content: center;
    order: 2;
    width: min(100%, 360px);
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
  }

  .final-cta-actions .button:last-of-type {
    order: 3;
  }
  .hero-lede {
    max-width: 32ch;
    font-size: 1.04rem;
    line-height: 1.52;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.65rem;
    width: min(100%, 360px);
    margin-top: 0.35rem;
  }
  .hero-actions .button {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    padding-inline: 1.1rem;
    font-size: var(--type-small);
    white-space: normal;
  }
  .hero-media { min-height: 300px; }
  .hero-foot {
    flex-direction: column;
    gap: 0.35rem;
  }

  .about-light-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-light-title {
    max-width: 100%;
    font-size: clamp(2.15rem, 14vw, 3.2rem);
  }
  .about-company-grid {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }
  .about-company-card,
  .about-company-panel {
    min-height: auto;
  }
  .about-company-card--dark,
  .about-company-panel {
    grid-column: auto;
  }
  .about-company-panel {
    grid-template-columns: 1fr;
  }
  .about-company-panel p {
    max-width: 100%;
  }
  .about-light-stats {
    grid-template-columns: 1fr;
  }
  .about-light-stats li {
    border-right: 0;
    padding-inline: 0;
  }

  .service-deck {
    padding-block: 3.2rem;
  }
  .service-deck-pin {
    width: min(calc(100% - 2rem), var(--max));
  }
  .service-rail,
  .process-list,
  .associate-list,
  #credentials .project-grid,
  .quote-row {
    grid-template-columns: 1fr;
  }
  .process-list li:last-child {
    grid-column: auto;
  }
  .service-slide,
  .process-card,
  .associate-list li,
  #credentials .project-card,
  .quote-row figure {
    min-height: auto;
  }
  .service-deck-foot,
  .process-note,
  .credential-band,
  .quote-hero {
    padding: 1.15rem;
  }
  .leader-img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
  .leader-copy {
    padding: 1.15rem;
  }
  .testimonials-head h2,
  .quote-hero blockquote {
    max-width: 100%;
  }

  .manifesto-stats { grid-template-columns: 1fr; gap: 1.2rem; }

  .process-list {
    gap: 0.85rem;
  }
  .process-list::before {
    top: 1.35rem;
    bottom: 1.35rem;
    left: 21px;
  }
  .process-list li { grid-template-columns: 44px 1fr; gap: 0.8rem; }
  .process-card {
    padding: 1rem;
    border-radius: 20px;
  }
  .process-num {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 0.74rem;
  }
  .process-list h3 { font-size: var(--type-row-title); }

  .js .process-list .reveal {
    transform: translate3d(0, 18px, 0);
  }

  .feature-grid,
  .project-grid,
  .associate-list,
  .quote-row { grid-template-columns: 1fr; }

  .award-feature {
    border-radius: 20px;
  }

  .project-gallery {
    margin-inline: -1rem;
    padding-inline: 1rem;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .project-gallery-track {
    animation-duration: 58s;
  }

  .project-gallery-item {
    flex-basis: min(72vw, 260px);
    border-radius: 16px;
  }

  .award-feature figcaption {
    position: static;
    width: 100%;
    max-width: none;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: var(--paper-soft);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .award-feature figcaption span {
    color: var(--muted);
  }

  .quote-hero blockquote { font-size: var(--type-editorial-title); }

  .final-cta-meta { flex-direction: column; }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 58px;
    gap: 0.7rem;
  }

  .brand-logo { height: 34px; }

  .nav-toggle {
    display: grid;
    top: 9px;
    width: 40px;
    height: 40px;
  }

  .nav-open .primary-nav {
    top: calc(58px + 0.6rem);
  }

  .hero { padding-top: 4.25rem; }

  .eyebrow,
  .section-label {
    gap: 0.42rem;
  }

  .eyebrow .dot {
    width: 2px;
    height: 2px;
  }

  .hero-title,
  .hero h1,
  .section-heading h2,
  .manifesto h2,
  .process-head h2,
  .team-head h2,
  .contact-copy h2,
  .final-cta h2 {
    max-width: 100%;
  }

  .hero-media { min-height: 240px; }

  .button.large {
    min-height: 50px;
    padding-inline: 1.25rem;
  }

  .lead-card {
    gap: 1.2rem;
  }

  .leader-img {
    max-width: 100%;
    border-radius: 20px;
  }

  .quote-form {
    border-radius: 22px;
  }

  .whatsapp-widget {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-widget-icon {
    width: 52px;
    height: 52px;
    background: transparent;
    box-shadow: none;
  }

  .final-social a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .hero,
  .section,
  .manifesto,
  .proof-strip,
  .process,
  .team,
  .testimonials,
  .final-cta-inner {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .hero-title {
    font-size: 2.45rem;
    line-height: 0.95;
  }

  .quote-form,
  .feature-card,
  .project-card,
  .associate-list li,
  .quote-row figure {
    padding: 1rem;
  }

  .final-cta-brand {
    padding: 1rem;
    border-radius: 20px;
  }
}
