/* The New Rules: Warm & Premium design system */
@import url('https://api.fontshare.com/v2/css?f[]=boska@400,400i,500,500i,700&f[]=satoshi@300,400,500,700&display=swap');

:root {
  /* Warm & Premium palette */
  --color-bg: #F6F0E6;
  --color-surface: #FAF5EC;
  --color-surface-2: #EFE6D6;
  --color-text: #1F1A14;
  --color-muted: #6B5E4C;
  --color-line: #E4D9C4;
  --color-primary: #B7553A;
  --color-primary-hover: #9A4129;
  --color-primary-soft: #E9C9BC;
  --color-ochre: #C08B2B;
  --color-sage: #6E7B5A;
  --color-ink-dark: #1F1A14;
  --color-on-dark: #F6F0E6;
  --color-on-dark-muted: #B8A98F;

  /* Typography */
  --font-display: 'Boska', Georgia, serif;
  --font-body: 'Satoshi', system-ui, sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.18vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.06rem + 0.32vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.16rem + 0.45vw, 1.4375rem);
  --text-2xl: clamp(1.5rem, 1.36rem + 0.7vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.6rem + 1.4vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.9rem + 1.8vw, 3.25rem);
  --text-5xl: clamp(2.75rem, 2.1rem + 3.2vw, 4.5rem);
  --text-hero: clamp(3rem, 2.2rem + 4.5vw, 6rem);

  /* Spacing (4px scale) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadow + motion */
  --shadow-sm: 0 1px 2px oklch(0.2 0.04 60 / 0.06), 0 1px 1px oklch(0.2 0.04 60 / 0.04);
  --shadow-md: 0 4px 16px oklch(0.2 0.04 60 / 0.08), 0 2px 4px oklch(0.2 0.04 60 / 0.06);
  --shadow-lg: 0 16px 48px oklch(0.2 0.04 60 / 0.12), 0 4px 12px oklch(0.2 0.04 60 / 0.08);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 220ms var(--ease-out);

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;
}

[data-theme='dark'] {
  --color-bg: #14110D;
  --color-surface: #1F1A14;
  --color-surface-2: #2A231B;
  --color-text: #F6F0E6;
  --color-muted: #B8A98F;
  --color-line: #3A3024;
  --color-primary: #D4795D;
  --color-primary-hover: #E89478;
  --color-primary-soft: #4A2A1F;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}

/* ---------- Typography utilities ---------- */
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}
em, .accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

section { padding-block: clamp(4rem, 9vw, 7.5rem); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: oklch(from var(--color-bg) l c h / 0.78);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.site-header.header--scrolled {
  border-bottom-color: var(--color-line);
  background: oklch(from var(--color-bg) l c h / 0.92);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-6);
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--color-text);
}
.brand__logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}
.brand__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav__links { display: flex; gap: var(--space-5); }
.nav__links a {
  font-size: var(--text-sm);
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--color-text); }
.theme-toggle {
  width: 38px; height: 38px;
  display: inline-grid; place-items: center;
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  transition: background var(--transition), color var(--transition);
}
.theme-toggle:hover { background: var(--color-surface-2); color: var(--color-text); }
@media (max-width: 720px) { .nav__links { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: var(--text-base);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: #FDF9F1;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  color: var(--color-text);
  border-color: var(--color-line);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--lg { padding: 1.05rem 1.85rem; font-size: var(--text-lg); }

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(4rem, 10vw, 8rem) clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, oklch(from var(--color-primary) l c h / 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, oklch(from var(--color-ochre) l c h / 0.08), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__eyebrow {
  margin-bottom: var(--space-6);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.hero__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-primary);
}
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
  max-width: 18ch;
}
.hero__sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  line-height: 1.25;
  color: var(--color-text);
  max-width: 28ch;
  margin-bottom: var(--space-5);
}
.hero__sub strong {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
}
/* terracotta inline highlight */
.tc { color: var(--color-primary); }
.hero__positioning {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: var(--space-8);
}
.hero__ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ---------- Marquee / logo ribbon ---------- */
.ribbon {
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-block: 1px solid var(--color-line);
  background: #FFFFFF;
  overflow: hidden;
}
.ribbon__label {
  text-align: center;
  max-width: none;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #1F1A14;
  margin-bottom: var(--space-5);
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2.25rem, 5vw, 4rem);
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 42px;
  white-space: nowrap;
}
.marquee__item img {
  /* Per-logo heights below equalise the rendered TEXT cap-height across the ribbon */
  height: 18px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}
/* Single-line wordmarks — tuned so the lettering reads at a common size */
.marquee__item img[src*="deloitte"]   { height: 16px; }
.marquee__item img[src*="barclays"]   { height: 18px; }
.marquee__item img[src*="omers-ventures"] { height: 34px; }
.marquee__item img[src*="generation"] { height: 22px; }
.marquee__item img[src*="walmart"]    { height: 22px; }
.marquee__item img[src*="nortal"]     { height: 22px; }
.marquee__item img[src*="accenture"]  { height: 22px; }
/* Two-line / boxed wordmarks — larger overall box so each text line matches */
.marquee__item img[src*="mckinsey"]   { height: 34px; }
.marquee__item img[src*="wellington"] { height: 30px; }
.marquee__item img[src*="goldman"]    { height: 30px; }
.marquee__item img[src*="omers-pe"]   { height: 36px; }
.marquee__item img[src*="advent"]     { height: 32px; }
.marquee__item img[src*="oracle"]     { height: 36px; }
.marquee__item img[src*="cisco"]      { height: 30px; }
/* Single-image symbol logos — consistent accents that punctuate the wordmarks */
.marquee__item img[src*="google"],
.marquee__item img[src*="amazon"],
.marquee__item img[src*="apple"],
.marquee__item img[src*="aws"],
.marquee__item img[src*="pa-consulting"],
.marquee__item img[src*="multiverse"] { height: 30px; }
.marquee__item img[src*="meta"]       { height: 19px; }
.marquee__item img[src*="microsoft"]  { height: 28px; }
.marquee__item:hover img {
  opacity: 1;
  transform: scale(1.04);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* ---------- Section heading ---------- */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-4xl);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.section-head__intro {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 60ch;
  line-height: 1.55;
}

/* Pillars uses a LARGER, promoted section title */
.section-head--pillars .section-head__title {
  font-size: clamp(2.5rem, 2rem + 2.4vw, 4rem);
  letter-spacing: -0.025em;
  text-transform: none;
}

/* Tighten the gap above the giant '3' */
.pillars { padding-block-start: clamp(2.25rem, 4.5vw, 4rem); }

/* Graphic pillars header: giant italic '3' */
.pillars-head {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: flex-start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pillars-head__lead {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
}
.pillars-head__numeral {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(8rem, 6rem + 14vw, 18rem);
  line-height: 0.78;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  /* tighten visual baseline */
  margin: 0;
  padding: 0;
  user-select: none;
}
.pillars-head__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.1rem + 2.6vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1;
}
.pillars-head__intro {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.375rem, 1.1rem + 0.9vw, 1.75rem);
  line-height: 1.3;
  color: var(--color-text);
  margin: clamp(1.25rem, 3vw, 2.25rem) 0 0;
}
.pillars-head__intro em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
}
@media (max-width: 640px) {
  .pillars-head {
    grid-template-columns: 1fr;
    text-align: left;
    gap: var(--space-4);
  }
  .pillars-head__numeral {
    font-size: clamp(7rem, 30vw, 12rem);
    line-height: 0.8;
  }
}

/* ---------- Who it is for ---------- */
.who { background: var(--color-surface); }
.who__statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: 1.35;
  color: var(--color-text);
  max-width: 48ch;
  margin-bottom: var(--space-10);
}
.who__statement strong {
  font-weight: 500;
  color: var(--color-primary);
  font-style: italic;
}
.who__statement--accent {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 500;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.who__statement--mixed {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.who__statement--mixed .accent,
.section-head__title--mixed .accent {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 500;
}
.who__statement--mixed .plain,
.section-head__title--mixed .plain {
  color: var(--color-text);
  font-style: normal;
  font-weight: 500;
}
.who__list {
  list-style: none;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.who__list li {
  position: relative;
  padding-left: var(--space-8);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text);
  max-width: none;
}
.who__list li::before {
  content: '\2192'; /* → */
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary);
  line-height: inherit;
  background: transparent;
  width: auto;
  height: auto;
}

/* Full-width stacked variant */
.who__list--stacked {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 60rem;
}
.who__list--stacked li {
  padding: var(--space-6) var(--space-2) var(--space-6) var(--space-10);
  font-size: var(--text-lg);
  line-height: 1.55;
  border-top: 1px solid var(--color-line);
}
.who__list--stacked li:last-child {
  border-bottom: 1px solid var(--color-line);
}
.who__list--stacked li::before {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
}

/* ---------- Pillars ---------- */
.pillars__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.pillar {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.1rem) clamp(1.1rem, 2.4vw, 1.5rem);
  position: relative;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-soft);
}
.pillar__icon {
  width: 44px;
  height: 44px;
  display: block;
  color: var(--pillar-accent, var(--color-primary));
  margin-bottom: var(--space-4);
}
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 6.2cqi, 1.7rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pillar-accent, var(--color-primary));
  margin-bottom: var(--space-3);
}
.pillar__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.2rem; /* fallback */
  font-size: clamp(1.8rem, 10.6cqi, 3.4rem); /* scales with card width, stays on one line */
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
  color: var(--color-text);
  white-space: nowrap;
}
.pillar__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 6.2cqi, 1.7rem);
  letter-spacing: -0.015em;
  color: var(--pillar-accent, var(--color-primary));
  font-weight: 500;
  margin-bottom: var(--space-4);
  line-height: 1.28;
  /* hold a consistent 2-line height so the body text aligns across all 3 cards */
  min-height: 2.56em;
}
.pillar__body {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: var(--space-5);
  max-width: none;
  text-align: left;
}
.pillar__topics {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-line);
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.pillar--1 { --pillar-accent: var(--color-primary); }
.pillar--2 { --pillar-accent: var(--color-ochre); }
.pillar--3 { --pillar-accent: var(--color-sage); }
.pillar--draft::after {
  content: 'Coming soon';
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xs);
  color: var(--color-muted);
  background: var(--color-surface-2);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

/* ---------- How it works ---------- */
.how { background: var(--color-ink-dark); color: var(--color-on-dark); }
.how .section-head__title { color: var(--color-on-dark); }
.how .section-head__intro { color: var(--color-on-dark-muted); }
.how .eyebrow { color: var(--color-primary-soft); }

.how__grid {
  display: grid;
  gap: var(--space-12);
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 860px) { .how__grid { grid-template-columns: 1fr; } }

.how__rhythm {
  background: oklch(from var(--color-on-dark) l c h / 0.04);
  border: 1px solid oklch(from var(--color-on-dark) l c h / 0.10);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.how__rhythm h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  color: var(--color-on-dark);
}
.how__rhythm ul {
  list-style: none;
  display: grid;
  gap: var(--space-6);
}
.how__rhythm li {
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-on-dark-muted);
  max-width: none;
}
.how__rhythm li strong {
  display: block;
  margin-bottom: var(--space-1);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--color-primary-soft);
}
.how__rhythm li span { display: block; }

.how__steps { display: grid; gap: 0; }
.how__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: stretch;
}
.how__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* connecting line below each node, filling the rest of the row to meet the next node */
.how__rail::after {
  content: '';
  flex: 1 1 auto;
  width: 2px;
  margin: 6px 0 0;
  background: oklch(from var(--color-on-dark) l c h / 0.18);
}
.how__step:last-child .how__rail::after { display: none; }
.how__step-body { padding-bottom: var(--space-10); }
.how__step:last-child .how__step-body { padding-bottom: 0; }
.how__step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid oklch(from var(--color-primary-soft) l c h / 0.45);
  background: var(--color-ink-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--color-primary-soft);
  line-height: 1;
}
.how__step h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
  color: var(--color-on-dark);
}
.how__step p {
  font-size: var(--text-sm);
  color: var(--color-on-dark-muted);
  line-height: 1.55;
  max-width: 48ch;
}

/* ---------- About strip ---------- */
.about { background: var(--color-surface); }
.about__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 820px;
  margin-inline: auto;
}
.about__text {
  flex: 1;
  text-align: center;
}
.about__lede {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  margin: 0 auto var(--space-3);
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .about__inner { flex-direction: column; text-align: center; }
  .about__lede { white-space: normal; }
}
.about__photo {
  width: 238px;
  height: 238px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-surface);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__text p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: var(--space-2);
  max-width: 60ch;
}
.about__text p { margin-inline: auto; }
.about__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5) var(--space-6);
  margin: var(--space-2) 0 var(--space-4) !important;
  font-size: var(--text-base) !important;
  color: var(--color-muted) !important;
  letter-spacing: 0.02em;
}
.about__stats span {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  white-space: nowrap;
}
.about__stats strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.875rem);
  color: var(--color-primary);
  font-style: italic;
  line-height: 1;
}
.about__body {
  text-align: center;
}
.about__locations {
  margin-top: var(--space-4) !important;
  font-size: var(--text-xs);
  letter-spacing: 0.03em;
  text-transform: none;
  text-align: center;
  color: var(--color-muted);
}
@media (max-width: 640px) {
  .about__stats { justify-content: center; }
}

/* ---------- Final CTA ---------- */
.cta-final { background: var(--color-ink-dark); color: var(--color-on-dark); text-align: center; position: relative; overflow: hidden; }
.cta-final .container { position: relative; z-index: 1; }
/* Ascent motif — abstracted from the logo peak */
.ascent {
  position: absolute;
  top: 50%;
  right: clamp(-30px, 3vw, 90px);
  transform: translateY(-50%);
  width: clamp(240px, 32vw, 480px);
  height: auto;
  color: var(--color-primary);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.ascent--cta { color: var(--color-primary-soft); opacity: 0.08; }
@media (max-width: 640px) { .ascent { opacity: 0.05; right: -40px; } }
.cta-final__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-4xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
  max-width: none;
  margin-inline: auto;
}
.cta-final__title em { color: var(--color-primary-soft); }
.cta-final__ctas { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }
.cta-final .btn--ghost {
  color: var(--color-on-dark);
  border-color: oklch(from var(--color-on-dark) l c h / 0.25);
}
.cta-final .btn--ghost:hover {
  color: var(--color-primary-soft);
  border-color: var(--color-primary-soft);
}
.cta-final .btn .tc { color: var(--color-primary-soft); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  padding-block: var(--space-10);
  border-top: 1px solid var(--color-line);
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer a { color: var(--color-muted); text-decoration: none; transition: color var(--transition); }
.footer a:hover { color: var(--color-primary); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
