@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

/* ─────────────────────────────────────────
   TOKENS — Direction 4: Forme Slate
   Cool white · Navy · Electric teal · Geo grid
───────────────────────────────────────── */
:root {
  --bg:       #F2F5F8;
  --bg2:      #E4EAF0;
  --bg3:      #D6DFE8;
  --fg:       #0A1828;
  --fg2:      #182A3E;
  --mu:       #647A8E;
  --mu2:      #A4B6C6;
  --ac:       #0B7D86;
  --ac2:      #0E9299;
  --bd:       rgba(10, 24, 40, 0.08);
  --bda:      rgba(11, 125, 134, 0.2);
  --nav-blur: rgba(242, 245, 248, 0.92);
  --cta-bg:   #0A1828;
  --cta-fg:   #F2F5F8;

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:  1600px;
  --pad-x:  80px;
  --nav-h:  96px;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section      { padding: 84px var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.section-full { padding: 84px 0; }

/* ─────────────────────────────────────────
   NAV — always frosted, content aligned to page grid
───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Solid banner — no mesh. The blueprint grid begins below the nav and fades
     up into nothing (see .grid-field::before), mirroring the bottom dissolve. */
  background-color: var(--bg);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 28px;
  width: auto;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--mu);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--fg); }
.nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 22px;
  border-radius: 3px;
  background: var(--ac);
  color: #fff;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--ac2); }

/* Hamburger — hidden on desktop, shown ≤900px */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.25s ease;
}
.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-toggle span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO — 40 px navy geo grid
───────────────────────────────────────── */
/* Blueprint mesh field: behind the hero, passing under the opaque client
   band, re-emerging below it, then dissolving */
.grid-field {
  position: relative;
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(0deg,   rgba(10,24,40,.055) 0, rgba(10,24,40,.055) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg,  rgba(10,24,40,.055) 0, rgba(10,24,40,.055) 1px, transparent 1px, transparent 40px);
  padding-bottom: 84px;
}
.grid-field::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 84px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
}
/* Top dissolve: mesh blurs up into nothing just below the solid nav */
.grid-field::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero {
  position: relative;
  /* 62svh lifts the hero so the client band sits fully above the fold */
  min-height: calc(62svh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Centres hero content on the same grid as every other section */
.hero-container {
  position: relative;
  z-index: 2; /* above the top-fade (.grid-field::before) */
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px var(--pad-x) 48px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* Hero entry — stagger children on load */
.hero-inner > * { opacity: 0; transform: translateY(20px); }
.hero-loaded .hero-inner > * {
  animation: reveal-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-loaded .hero-eyebrow { animation-delay: 80ms; }
.hero-loaded .hero-h1      { animation-delay: 180ms; }
.hero-loaded .hero-sub     { animation-delay: 300ms; }
.hero-loaded .hero-actions { animation-delay: 420ms; }

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 30px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ac);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 40px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--ac);
}

/* .hero-sub removed 2026-07-06 (subtext line cut from hero; matches section-intro 18px if restored) */
.hero-sub {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mu);
  max-width: 620px;
  margin-bottom: 28px;
}
.hero-actions .btn-primary { font-size: 15px; }
.btn-primary em { font-style: italic; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}



/* ─────────────────────────────────────────
   FOCUS — keyboard accessibility
───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--ac);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border-radius: 3px;
  background: var(--ac);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--ac2); transform: translateY(-1px); }

.btn-text {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--mu);
  border-bottom: 1px solid var(--bd);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-text:hover { color: var(--fg); border-color: var(--fg); }

.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 3px;
  border: 1px solid var(--bd);
  color: var(--mu);
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--fg); border-color: rgba(10,24,40,0.3); }

/* ─────────────────────────────────────────
   CLIENTS STRIP — static logo grid
───────────────────────────────────────── */
.approach {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 76px var(--pad-x) 68px;
}
.approach-inner {
  max-width: none;
}
.approach-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 26px;
}
.approach-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--ac);
  flex-shrink: 0;
}
.approach-lead {
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 900px;
  margin-bottom: 64px;
}
.approach-lead em {
  font-style: italic;
  color: var(--ac);
}

/* Five-pillar spec strip — blueprint hairlines + indices echo the hero grid */
.approach-pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.pillar {
  position: relative;
  padding: 22px 24px 0 0;
  border-top: 1.5px solid var(--fg);
}
.pillar::after {
  content: '';
  position: absolute;
  top: -1.5px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ac);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar:hover::after { width: 100%; }
.pillar-idx {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  color: var(--ac);
  margin-bottom: 14px;
}
.pillar-label {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--fg2);
  max-width: 13ch;
}

/* Transparent: the blueprint mesh of .grid-field shows through */
.clients-strip {
  /* Modest breathing room after the hero; label + logos sit inside the first screen */
  padding: clamp(48px, 8svh, 110px) 0 0;
}
.clients-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.clients-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mu);
  margin-bottom: 40px;
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 40px;
}
/* Fixed bounding box normalises logos regardless of built-in whitespace */
/* Normalise by HEIGHT so wide wordmarks don't dominate square marks */
.client-logo {
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  max-height: 36px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: grayscale(100%) opacity(0.72);
  transition: filter 0.3s ease;
}
.client-logo:hover img {
  filter: grayscale(0%) opacity(0.95);
}
/* Gentle staggered reveal: animate the img FILTER, not the box —
   transform/opacity on the container would break mix-blend-mode (white boxes) */
.client-logo.fade-in,
.client-logo.fade-in.visible { opacity: 1; transform: none; transition: none; } /* even translateY(0) creates a stacking context and kills the blend */
.client-logo.fade-in img { filter: grayscale(100%) opacity(0); transition: filter 0.9s ease; }
.client-logo.fade-in.visible img { filter: grayscale(100%) opacity(0.72); }
.client-logo.fade-in.visible:hover img { filter: grayscale(0%) opacity(0.95); }
/* Square/stacked lockups need more height to match the optical weight of wordmarks */
.client-logo--tall img { max-height: 62px; }

/* Quiet proof line under the logos */
.clients-proof {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mu2);
  margin-top: 40px;
}

/* Optical vertical centering — per-logo nudges measured from ink mass center
   (assets bake in uneven whitespace/descenders; order matches the HTML) */
.clients-logos .client-logo:nth-child(1) img { transform: translateY(3.5px); }  /* Fugro */
.clients-logos .client-logo:nth-child(2) img { transform: translateY(-3.8px); } /* Rabobank */
.clients-logos .client-logo:nth-child(3) img { transform: translateY(2.3px); }  /* Ortec */
.clients-logos .client-logo:nth-child(4) img { transform: translateY(-3.7px); } /* Cofra */
.clients-logos .client-logo:nth-child(5) img { transform: translateY(-3.4px); } /* Future Group */
.clients-logos .client-logo:nth-child(7) img { transform: translateY(1.5px); }  /* RSM */
.clients-logos .client-logo:nth-child(8) img { transform: translateY(-2.7px); } /* DocBase */


/* ─────────────────────────────────────────
   SECTION COMPONENT SYSTEM
   Every section is built from the same four slots — reuse these, don't
   invent per-section sizes:
   1. Title    → .section-h2    (DM Serif Display italic 40, navy;
                                 works functional "How we work" or as a statement)
   2. Subtitle → .section-intro (DM Sans 18, muted, ≤880px, 1–2 sentences)
   3. Body     → 16.5px DM Sans muted inside cards/columns (.svc-desc etc.)
   4. Link/CTA → 15px DM Sans 600 grey --mu (.svc-link); 13px teal (.testi-link)
───────────────────────────────────────── */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 40px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ac);
  flex-shrink: 0;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--ac);
  flex-shrink: 0;
}
.section-h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.section-intro {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mu);
  max-width: 880px;
  margin: -16px 0 48px;
}

/* ─────────────────────────────────────────
   STAT SECTION
───────────────────────────────────────── */
.stats-section {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 72px 48px 72px 0;
  border-right: 1px solid var(--bd);
}
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-item + .stat-item { padding-left: 48px; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 14px;
}
.stat-lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mu);
  display: block;
  margin-bottom: 8px;
}
.stat-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mu);
}

/* ─────────────────────────────────────────
   SERVICE CARDS — open columns, ghost numbers
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.svc-card {
  position: relative;
  overflow: hidden;
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--bd);
  cursor: pointer;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:last-child  { border-right: none; padding-right: 0; }
.svc-card + .svc-card { padding-left: 40px; }
.svc-card:hover       { background: rgba(11, 125, 134, 0.04); }

/* Big serif service word; colours teal on card hover */
.svc-word {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 16px;
  transition: color 0.25s ease;
}
.svc-card:hover .svc-word { color: var(--ac); }
.svc-kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac);
  display: block;
  margin-bottom: 16px;
}
/* Light ghost index, bottom-right of each card, fully inside the card */
.svc-num {
  position: absolute;
  bottom: 6px;
  right: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 124px;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--ac);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}
.svc-desc {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--mu);
  margin-bottom: 28px;
  flex: 1; /* pushes the Learn more link to a shared baseline across cards */
}
.svc-link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--mu); /* same grey as nav/footer links per Ven */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.22s ease, color 0.22s ease;
}
.svc-link:hover { gap: 12px; color: var(--fg); }

/* Stretched link — entire card is clickable through this anchor */
.svc-link::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ─────────────────────────────────────────
   TRAINERS
───────────────────────────────────────── */
.trainers-section {
}

/* Single static row — all 8 trainers */
.trainers-grid {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trainer-card {
  flex: 1;
  min-width: 0; /* long nowrap names must not widen a card (Venkatesh's did) */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}
.trainer-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--bg3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.trainer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.28s ease;
}
.trainer-card:hover .trainer-avatar {
  border-color: var(--ac);
  box-shadow: 0 0 0 4px rgba(11,125,134,.12);
  transform: scale(1.02);
}
.trainer-card:hover .trainer-avatar img {
  transform: scale(1.04);
}

.trainer-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg2);
  margin-top: 10px;
  line-height: 1.35;
  width: 100%;
}

/* ─────────────────────────────────────────
   TESTIMONIALS — client story cards
───────────────────────────────────────── */
.testimonial-band {
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--bd);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.25s ease;
}
.testi-card:hover { box-shadow: 0 10px 30px rgba(10, 24, 40, 0.08); }
.testi-logo img {
  height: 24px;
  width: auto;
  max-width: 110px;
  mix-blend-mode: multiply;
}
.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg2);
  letter-spacing: -0.01em;
  flex: 1;
}
.testi-quote::before { content: "\201C"; color: var(--ac); margin-right: 2px; }
.testi-quote::after  { content: "\201D"; color: var(--ac); }
.testi-rule { height: 1px; background: var(--bd); }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.testi-name { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--fg); }
.testi-role { font-family: var(--sans); font-size: 12.5px; color: var(--mu); line-height: 1.35; }
.testi-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ac);
  text-decoration: none;
}
.testi-link:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   CTA BAND — dark navy, left-aligned, geo grid
───────────────────────────────────────── */
.cta-band {
  padding: 76px 0;
  background-color: var(--cta-bg);
  background-image:
    repeating-linear-gradient(0deg,  rgba(242,245,248,.04) 0, rgba(242,245,248,.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(242,245,248,.04) 0, rgba(242,245,248,.04) 1px, transparent 1px, transparent 40px);
  position: relative;
  overflow: hidden;
}
/* Wrapper aligns CTA content to the same grid as all other sections */
.cta-band-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}
.cta-inner {
  max-width: 620px;
}
.cta-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta-fg);
  opacity: 0.38;
  display: block;
  margin-bottom: 22px;
}
.cta-h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cta-fg);
  margin-bottom: 18px;
}
.cta-sub {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--cta-fg);
  opacity: 0.62;
  margin-bottom: 44px;
}
.btn-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border-radius: 3px;
  background: var(--cta-fg);
  color: var(--cta-bg);
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.85; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  padding: 48px 0 36px;
  background: var(--bg2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo img {
  height: 64px;
  width: auto;
  mix-blend-mode: multiply;
}
.footer-tagline {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.65;
  max-width: 280px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mu2);
  margin-bottom: 4px;
}
.footer-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--mu);
  transition: color 0.15s;
}
.footer-link:hover   { color: var(--fg); }
.footer-link.accent  { color: var(--ac); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--bd);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-legal {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--mu2);
}

/* ─────────────────────────────────────────
   SCROLL FADE-IN
───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   SERVICES / CONTACT INNER PAGES
───────────────────────────────────────── */
/* Nav is sticky (not fixed), so no offset needed */
.page-hero {
  padding: 80px var(--pad-x) 72px;
  border-bottom: 1px solid var(--bd);
  max-width: 100%;
}
.page-hero .section-eyebrow { margin-bottom: 16px; display: block; }

.display {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--fg);
}
.body-lg {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--mu);
}
.body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--mu);
}

/* Services full page */
.svc-full { border-top: 1px solid var(--bd); padding: 104px 0; }
.svc-full:first-child { border-top: none; }
.svc-full-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.svc-full-label {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.svc-full-num {
  font-family: var(--sans);
  font-size: 12px; /* matches .pillar-idx (framework diagram + home approach) */
  font-weight: 600;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  color: var(--ac);
  margin-bottom: 10px;
}
.svc-full-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ac);
  margin-bottom: 8px;
}
.svc-full-clients-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mu2);
  margin-top: 28px;
  margin-bottom: 8px;
}
.svc-full-client-list { display: flex; flex-wrap: wrap; gap: 6px; }
.client-chip {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--mu);
  padding: 4px 10px;
  border: 1px solid var(--bd);
  border-radius: 2px;
}
.svc-full-intro {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--fg2); /* darkest text in the block: the thesis outranks the stories */
  margin-bottom: 40px;
  max-width: 880px;
}
/* Consecutive intro paragraphs read as one block */
.svc-full-intro + .svc-full-intro { margin-top: -22px; }
.svc-full-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.svc-full-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.55;
}
.svc-full-item::before {
  content: '→';
  color: var(--ac);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}
.svc-testimonial {
  border: 1px solid var(--bda);
  border-radius: 3px;
  background: rgba(11,125,134,.05);
  padding: 28px;
  margin-top: 36px;
}
.svc-testimonial .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--fg2);
  margin-bottom: 14px;
}
.svc-testimonial .attr {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--mu);
}
.svc-testimonial .attr strong { color: var(--fg2); font-weight: 500; }

/* ─────────────────────────────────────────
   SERVICES PAGE v2 — kicker · client-story rows · full pull-quotes
───────────────────────────────────────── */
.svc-full {
  scroll-margin-top: calc(var(--nav-h) + 24px);
  /* fade-in transform creates a stacking context that breaks mix-blend-mode
     against the body; give the block its own matching backdrop to blend into */
  background: var(--bg);
}
.svc-full-name { margin-bottom: 4px; }
.svc-full-kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac);
}

/* Clients-in-track — real logos in the sticky label column */
/* sticky creates a stacking context too; matching backdrop keeps multiply working */
.svc-full-label { background: var(--bg); }
.svc-full-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 18px;
  align-items: center;
  margin-top: 6px;
}
.svc-client-logo { height: 36px; display: flex; align-items: center; justify-content: flex-start; }
.svc-client-logo img {
  max-height: 22px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
  filter: grayscale(100%) opacity(0.78);
  transition: filter 0.25s ease;
}
/* Stacked lockups need more height to match wordmark optical weight (as home) */
.svc-client-logo--tall img { max-height: 36px; }

/* Engagement photo in the rail — uniform 16:9, no per-image ratio drift.
   object-position fine-tuned inline per photo so no faces are cropped. */
.svc-label-photo { margin: 30px 0 0; }
.svc-label-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.svc-label-photo figcaption {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
  color: var(--mu2);
  margin-top: 8px;
}

/* Optical pixel nudges per logo — scaled from the home band calibration
   (ink-mass centering; ORDER-SENSITIVE: update when logos reorder) */
#align .svc-client-logo:nth-child(1) img { transform: translateY(-1.7px); } /* DocBase */
#align .svc-client-logo:nth-child(2) img { transform: translateY(2.1px); }  /* Fugro */
#align .svc-client-logo:nth-child(3) img { transform: translateY(-2.3px); } /* Rabobank */
#align .svc-client-logo:nth-child(5) img { transform: translateY(-3.7px); } /* Cofra */
#align .svc-client-logo:nth-child(6) img { transform: translateY(-3.4px); } /* Future Group */
#adopt .svc-client-logo:nth-child(1) img { transform: translateY(2.1px); }  /* Fugro */
#build .svc-client-logo:nth-child(1) img { transform: translateY(1.4px); }  /* Ortec */
#build .svc-client-logo:nth-child(2) img { transform: translateY(2.1px); }  /* Fugro */
.svc-client-logo:hover img { filter: grayscale(0%) opacity(0.95); }

/* Framework diagram — Align · Adopt · Build, pillar formatting */
/* Doubles as the services page hero (the standalone hero was redundant with it) */
.approach--pagetop { padding-top: 64px; padding-bottom: 40px; }
.approach--pagetop .approach-lead { max-width: 1080px; }
/* Service blocks follow the framework hero directly; the blocks carry their own padding */
.svc-section { padding-top: 0; padding-bottom: 40px; }
.svc-section .svc-full:first-child { padding-top: 48px; }
.approach-lead--tight { margin-bottom: 16px; }
.approach-note {
  font-family: var(--sans);
  font-size: 18px; /* matches home .section-intro */
  font-weight: 400;
  line-height: 1.6;
  color: var(--mu);
  margin-bottom: 56px;
}
.framework-grid { grid-template-columns: repeat(3, 1fr); }
.framework-word {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ac);
  margin-bottom: 14px;
}
.framework-sub {
  display: block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--mu);
  max-width: 30ch;
}

/* Named client stories — plain paragraphs (client named in text + rail logos) */
/* Caps label separates the intro copy from the client engagement stories */
.svc-stories-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mu); /* matches .clients-eyebrow ("Trusted by...") */
  margin-bottom: 18px;
}
.svc-stories { display: flex; flex-direction: column; gap: 22px; }
/* Client-anchored rows: hairline rule + bold client lead make each
   engagement a scannable case entry rather than another paragraph */
.svc-story { border-top: 1px solid var(--bd); padding-top: 18px; }
.svc-story-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--mu); /* one step lighter than the intro: evidence under thesis */
}
.svc-story-client {
  font-weight: 600;
  color: var(--fg2);
}
.svc-story-client::after {
  content: '·';
  color: var(--mu2);
  margin: 0 10px;
  font-weight: 400;
}

/* Full testimonial — teal rule pull-quote with avatar */
.svc-quote {
  border-left: 2px solid var(--ac);
  padding: 4px 0 4px 28px;
  margin-top: 40px;
}
.svc-quote + .svc-quote { margin-top: 30px; }
.svc-quote .q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px; /* matches home .testi-quote */
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--fg2);
  margin-bottom: 20px;
  max-width: 820px;
}
.svc-quote .q::before { content: "\201C"; color: var(--ac); }
.svc-quote .q::after  { content: "\201D"; color: var(--ac); }
.svc-quote .who { display: flex; align-items: center; gap: 12px; }
.svc-quote .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.svc-quote .who .n { display: block; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--fg); }
.svc-quote .who .r { display: block; font-family: var(--sans); font-size: 12.5px; color: var(--mu); line-height: 1.35; }

/* Page hero inner — align to grid without doubling .page-hero padding */
.page-hero-inner { max-width: 780px; }
.page-hero .display { margin-bottom: 20px; }
.page-hero .body-lg { font-size: 18px; }

@media (max-width: 900px) {
  .svc-story { grid-template-columns: 1fr; gap: 12px; }
  .svc-story-logo { padding-top: 0; }
  .svc-full-label { position: static; }
}

/* ─────────────────────────────────────────
   PROGRAM PAGE (enterprise-ai-adoption)
   QR-linked certificate page — not in the nav
───────────────────────────────────────── */
.prog-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 8px 0 40px;
}
.prog-fact { border-top: 1px solid var(--bd); padding-top: 16px; }
.prog-fact-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mu2);
  margin-bottom: 8px;
}
.prog-fact-text {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--fg2);
}
.prog-personas { margin-bottom: 0; }
.prog-modules { display: flex; flex-direction: column; }
.prog-module {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  border-top: 1px solid var(--bd);
  padding: 20px 0;
  max-width: 880px;
}
.prog-module-week {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac);
  padding-top: 3px;
}
.prog-module-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg2);
  margin-bottom: 6px;
}
.prog-module-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mu);
}
.trainer-role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--mu);
  margin-top: 5px;
}
/* Dev / Non-dev / Joint track tags on module rows */
.prog-track-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac);
  border: 1px solid var(--bda);
  border-radius: 3px;
  padding: 2px 7px;
  margin-right: 10px;
  vertical-align: 2px;
}
.prog-track-tag--nondev { color: var(--mu); border-color: var(--bd); }
.prog-track-tag--joint  { margin-left: 8px; margin-right: 0; }
.prog-module-desc + .prog-module-desc { margin-top: 8px; }
/* Second note line in the page top (who Yodoley is) */
.prog-about { margin-top: -8px; }

/* Tighter vertical rhythm on this single-purpose page */
.prog-page .section { padding-top: 44px; padding-bottom: 44px; }
.prog-page .approach--pagetop { padding-bottom: 16px; }
.prog-page .section-head { margin-bottom: 28px; }

@media (max-width: 900px) {
  .prog-facts { grid-template-columns: repeat(2, 1fr); }
  .prog-module { grid-template-columns: 1fr; gap: 6px; }
}

/* Contact page — Cal.com popup on the CTA button, no form */
.contact-section { padding-top: 0; }
.btn-primary--lg { font-size: 15px; padding: 16px 40px; }
.contact-alt {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--mu);
}
.contact-alt a { color: var(--ac); font-weight: 500; transition: opacity 0.15s; }
.contact-alt a:hover { opacity: 0.75; }

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .hero-container   { padding: 64px 24px 60px; }
  .section          { padding: 64px 24px; }
  .cta-band         { padding: 64px 0; }
  .clients-strip    { padding: 40px 0; }
  .clients-logos    { gap: 20px 24px; justify-content: flex-start; }
  .client-logo      { min-width: 80px; }
  .services-grid     { grid-template-columns: 1fr; }
  .svc-card          { border-right: none; border-bottom: 1px solid var(--bd); padding: 40px 0; }
  .svc-card + .svc-card { padding-left: 0; }
  .stats-grid        { grid-template-columns: 1fr; }
  .stat-item         { border-right: none; border-bottom: 1px solid var(--bd); padding: 40px 0; }
  .stat-item + .stat-item { padding-left: 0; }
  .testi-grid        { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .footer-inner      { grid-template-columns: 1fr; gap: 28px; }
  .svc-full-grid     { grid-template-columns: 1fr; gap: 32px; }
  .trainers-static   { padding-right: 16px; }
  .section-head      { flex-direction: column; gap: 8px; }
  .approach          { padding: 64px 24px 56px; }
  .approach-pillars  { grid-template-columns: 1fr 1fr; gap: 0; }
  .pillar            { padding: 18px 18px 22px 0; }
  .pillar-label      { max-width: none; }

  /* Mobile nav: hamburger opens a panel under the bar */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px var(--pad-x) 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--bd);
  }
  .nav-open .nav-links { display: flex; }
  .nav-links .nav-link { padding: 10px 0; font-size: 16px; }
  .nav-links .nav-cta  { margin-top: 12px; }

  /* Trainers: 8-across row becomes a 4×2 grid */
  .trainers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 12px; }
  .trainer-name  { white-space: normal; font-size: 12px; line-height: 1.35; }

  /* Client logos: centred rows instead of ragged left */
  .clients-logos { justify-content: center; }

  .grid-field { padding-bottom: 56px; }
  .grid-field::after { height: 56px; }
}
@media (max-width: 560px) {
  .approach-pillars  { grid-template-columns: 1fr; }
  .trainers-grid     { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
}
