/* =========================================================
   Integrity Studio Co. — v2 Prototype
   Reference: cocreateconsultancy.com
   ========================================================= */

:root {
  /* Convenience aliases (kept — widely used) */
  --page-bg: var(--neutral-50);
  --cream: var(--neutral-100);
  --sage: var(--sage-500);
  --sage-light: var(--sage-300);
  --periwinkle: var(--peri-500);
  --terracotta: var(--terra-400);
  --navy: var(--neutral-900);
  --text: var(--neutral-900);
  --text-mid: var(--neutral-700);
  --text-light: var(--neutral-600);
  --border: rgba(30,45,64,0.08);
  --white: #ffffff;

  /* ═══ PRIMITIVE COLOUR SCALE (v3) ═══ */

  /* ── Sage ──
     Hue ~155° (green-teal). Brand's primary colour family.
     300 = brand Light Sage · 400 = brand Dark Sage · 500 = current --sage */
  --sage-50:  #f2f5f4;
  --sage-100: #e4ebe8;
  --sage-200: #cddad4;
  --sage-300: #A7C4B5;
  --sage-400: #8BA49A;
  --sage-500: #6d8c82;
  --sage-600: #587268;
  --sage-700: #475d53;
  --sage-800: #364841;
  --sage-900: #263330;
  --sage-950: #1a2421;

  /* ── Periwinkle ──
     Hue ~228° (blue-violet). Corporate path accent.
     500 = client anchor value */
  --peri-50:  #f1f3f7;
  --peri-100: #e3e6ef;
  --peri-200: #ccd1e2;
  --peri-300: #a6aece;
  --peri-400: #7e8dbe;
  --peri-500: #4B5EA0;
  --peri-600: #3f5089;
  --peri-700: #354373;
  --peri-800: #2b365c;
  --peri-900: #212946;
  --peri-950: #181d32;

  /* ── Terracotta ──
     Hue ~22° (warm orange-brown). Shared accent colour.
     400 = screen-adapted CTA · 500 = brand guide anchor */
  --terra-50:  #f8f4f1;
  --terra-100: #f0e8e2;
  --terra-200: #e2d2c7;
  --terra-300: #d0b5a3;
  --terra-400: #C4795A;
  --terra-500: #AD856E;
  --terra-600: #946e56;
  --terra-700: #7a5a46;
  --terra-800: #604737;
  --terra-900: #47332a;
  --terra-950: #31231d;

  /* ── Neutrals ──
     Warm-shifted (toward sage hue) — never pure grey.
     50 = page bg · 100 = cream · 900 = navy/text */
  --neutral-50:  #FAF9F7;
  --neutral-100: #F3EFE9;
  --neutral-200: #E8E3DB;
  --neutral-300: #D5CFC5;
  --neutral-400: #B0A89C;
  --neutral-500: #8A8279;
  --neutral-600: #6c7684;
  --neutral-700: #4b5968;
  --neutral-800: #2e3a48;
  --neutral-900: #1e2d40;
  --neutral-950: #141e2d;

  /* ═══ SEMANTIC TOKENS ═══ */

  /* Surfaces */
  --color-surface:         var(--neutral-50);
  --color-surface-raised:  var(--neutral-100);
  --color-surface-overlay: rgba(30,45,64,0.04);
  --color-surface-sage:    var(--sage-50);
  --color-surface-peri:    var(--peri-50);

  /* Text */
  --color-text:            var(--neutral-900);
  --color-text-mid:        var(--neutral-700);
  --color-text-light:      var(--neutral-600);
  --color-text-on-dark:    #fff;
  --color-text-on-dark-muted: rgba(255,255,255,0.78);

  /* Borders */
  --color-border:          rgba(30,45,64,0.08);
  --color-border-sage:     rgba(167,196,181,0.35);
  --color-border-peri:     rgba(75,94,160,0.20);

  /* Individual path (sage) */
  --individual-hero:       var(--sage-500);
  --individual-accent:     var(--terra-400);
  --individual-eyebrow:    var(--sage-600);
  --individual-band:       var(--sage-700);
  --individual-cta:        var(--terra-400);
  --individual-tile-bg:    var(--sage-100);
  --individual-tile-ico:   var(--sage-500);

  /* Corporate path (periwinkle) */
  --corporate-hero:        var(--peri-500);
  --corporate-accent:      #fff;
  --corporate-eyebrow:     var(--peri-500);
  --corporate-band:        var(--peri-600);
  --corporate-cta:         var(--peri-500);
  --corporate-tile-bg:     var(--peri-100);
  --corporate-tile-ico:    var(--peri-500);

  /* Shared */
  --color-action:          var(--neutral-900);
  --color-action-hover:    var(--sage-800);
  --color-accent:          var(--terra-400);
  --color-quote-mark:      var(--terra-300);

  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Jost', 'Sinhala MN', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(30,45,64,0.04), 0 2px 8px rgba(30,45,64,0.04);
  --shadow-md: 0 4px 16px rgba(30,45,64,0.06), 0 12px 32px rgba(30,45,64,0.05);
  --shadow-lg: 0 8px 32px rgba(30,45,64,0.08), 0 24px 64px rgba(30,45,64,0.08);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- focus-visible (accessibility) ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--sage-700);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .split-cta:focus-visible { outline-offset: 4px; }
.btn-ghost-on-colour:focus-visible, .btn-on-colour:focus-visible,
.split-landing__half:focus-visible { outline-color: #fff; }

/* ---------- THE ONE RULE: container ---------- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ---------- section spacing (whitespace is the hero, per brand guide) ---------- */
section { padding: 80px 0; position: relative; }
section.tight { padding: 48px 0; }
section.hero-wrap { padding: 120px 0 0px; }
section.hero-wrap > .container { padding-top: 12px; padding-bottom: 12px; }
@media (max-width: 1024px) { section { padding: 64px 0; } section.tight { padding: 36px 0; } section.hero-wrap { padding: 140px 0 0px; } }
@media (max-width: 768px)  { section { padding: 48px 0; } section.tight { padding: 28px 0; } section.hero-wrap { padding: 118px 0 0px; } }

/* ---------- typography ----------
   Jost 700 for h1/h2, 600 for h3/h4. Weight is where punch comes from —
   not colour saturation. Large scale + heavy weight against Poppins body
   creates the CoCreate-level contrast this brand needs. */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.0;
}
h1 { font-size: clamp(3.2rem, 7.2vw, 5.4rem); }
h2 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); line-height: 1.02; }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.7rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { font-size: 15.5px; color: var(--text-mid); line-height: 1.75; }
.lead { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; max-width: 56ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display); /* Jost — keeps brand voice in UI labels */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 18px;
}
.eyebrow::before { content: none; }
.eyebrow--light { color: rgba(255,255,255,0.82); }

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-mid); }

/* ---------- buttons ----------
   Jost (display font) for all buttons — keeps brand voice in UI.
   Weight 600, generous padding, high-contrast primaries. */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.25s ease; font-family: inherit; letter-spacing: 0; text-transform: none; }
.btn:hover .arrow { transform: translateX(5px); }
/* Primary: deep navy — maximum contrast, confident */
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--sage-800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,45,64,0.25); }
/* Ghost: sage border, clear intent */
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--sage); }
.btn-ghost:hover { background: var(--sage-100); border-color: var(--sage-700); color: var(--sage-700); }
/* On coloured backgrounds */
.btn-on-colour { background: #fff; color: var(--navy); }
.btn-on-colour:hover { background: #fff; opacity: 0.92; transform: translateY(-2px); }
.btn-ghost-on-colour { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.85); }
.btn-ghost-on-colour:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
/* Terracotta accent CTA */
.btn-terracotta { background: var(--terracotta); color: #fff; }
.btn-terracotta:hover { background: var(--terra-600); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,121,90,0.3); }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500;
  color: var(--sage-700);
  transition: color 0.2s ease;
}
.text-link .arrow { transition: transform 0.25s ease; }
.text-link:hover { color: var(--navy); }
.text-link:hover .arrow { transform: translateX(4px); }

/* ---------- nav ---------- */
.site-header {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
}
.site-header__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 58px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header__inner.scrolled {
  background: rgba(250, 249, 247, 0.82);
  border-color: rgba(167, 196, 181, 0.45);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 8px 28px rgba(30,45,64,0.06);
}
.site-header__brand {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.site-header__brand img {
  height: 64px;
  width: auto;
  display: block;
}
.site-header__nav {
  display: flex; align-items: center; gap: 26px;
  flex: 1; justify-content: center;
}
.site-header__nav > .nav-dropdown { display: flex; align-items: center; }
.site-header__nav a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
.site-header__nav a:hover { opacity: 1; }
.site-header__nav a.active { opacity: 1; color: var(--sage-600); }
.site-header__nav > a.active,
.site-header__nav .nav-dropdown > .nav-dropdown__trigger.active { opacity: 1; color: var(--sage-600); }
.site-header__cta { flex-shrink: 0; }
.site-header__cta .btn { padding: 9px 20px; font-size: 13px; }

/* dropdown menus */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
}
.nav-dropdown__trigger:hover { opacity: 1; }
.nav-dropdown__trigger .nav-chevron {
  width: 10px; height: 10px;
  transition: transform 0.2s ease;
}
.nav-dropdown.is-open .nav-dropdown__trigger .nav-chevron { transform: rotate(180deg); }
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid rgba(167,196,181,0.35);
  border-radius: 14px;
  padding: 10px 8px;
  box-shadow: 0 12px 32px rgba(30,45,64,0.10), 0 4px 12px rgba(30,45,64,0.06);
  z-index: 200;
}
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown.is-open .nav-dropdown__menu { display: block; }
.nav-dropdown__menu a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--navy) !important;
  opacity: 0.75 !important;
  text-transform: none;
  border-radius: 8px;
  transition: background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown__menu a:hover { background: var(--sage-100); opacity: 1 !important; }
.nav-dropdown__menu a.active { opacity: 1 !important; color: var(--sage-600) !important; background: var(--sage-100); }

.site-header__burger { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; }
.site-header__burger span { display: block; width: 18px; height: 1.5px; background: var(--navy); position: relative; }
.site-header__burger span::before, .site-header__burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--navy); }
.site-header__burger span::before { top: -5px; }
.site-header__burger span::after  { top: 5px; }

@media (max-width: 920px) {
  .site-header__nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(250,249,247,0.97);
    backdrop-filter: blur(10px);
    padding: 28px 32px;
    border-radius: 18px;
    border: 1px solid var(--sage-light);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .site-header__nav.open { display: flex; }
  .site-header__nav > a,
  .site-header__nav > .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(30,45,64,0.06);
  }
  .site-header__nav > a:last-child,
  .site-header__nav > .nav-dropdown:last-of-type { border-bottom: none; }
  .site-header__nav > a {
    display: block;
    padding: 16px 0;
    font-size: 13px;
    opacity: 0.8;
  }
  .site-header__nav > .nav-dropdown .nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 13px;
  }
  .site-header__burger { display: inline-flex; margin-left: auto; }
  .site-header__cta { display: none; }
  .nav-dropdown__menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0 0 12px 8px;
    min-width: 0;
  }
  .nav-dropdown__menu a {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 10px;
  }
}

/* ---------- hero card ---------- */
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  min-height: 540px;
  color: #fff;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-card::before { content: none; } /* no soft orb — solid backgrounds assert */
/* Flat solid hero backgrounds — with a soft palette, solid blocks read as confident;
   gradients just make everything look washed and designed-in-Canva.
   RULE: no gradients anywhere on this site. Punch comes from weight + solid blocks. */
.hero-card--periwinkle { background: var(--periwinkle); }
.hero-card--sage       { background: var(--sage); }
.hero-card--navy       { background: var(--navy); }
.hero-card--cream      { background: var(--cream); color: var(--navy); }
.hero-card--cream .hero-sub { color: var(--text-mid); }
.hero-card--cream .eyebrow { color: var(--terra-600); }

.hero-card__inner { position: relative; z-index: 1; max-width: 720px; }
.hero-card h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: inherit;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero-card--long h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); max-width: 20ch; }
.hero-card h1 .accent { font-style: italic; color: var(--color-accent); display: inline-block; }
.hero-card--sage h1 .accent { color: var(--color-text-on-dark); }
.hero-card--periwinkle h1 .accent { color: var(--corporate-accent); }
.hero-card--cream h1 .accent { color: var(--terra-600); }
.hero-card--cream .btn-ghost-on-colour { color: var(--navy); border-color: rgba(30,45,64,0.35); }
.hero-card--cream .btn-ghost-on-colour:hover { background: rgba(30,45,64,0.06); border-color: var(--navy); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* rotating word */
.rot-word { display: inline-block; transition: transform 0.35s ease, opacity 0.35s ease; will-change: transform, opacity; }

/* ---------- feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--sage-100);
  border-radius: 20px;
  border: none;
  padding: 40px 36px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sage); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.feature-card p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* mirror prompts — two-column: image left, fade-cycling questions right */
.mirror-section { padding-bottom: 0; }
.mirror-section + .tight { padding-top: 40px; }
@media (max-width: 768px) { .mirror-section + .tight { padding-top: 32px; } }

.mirror-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mirror-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mirror-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mirror-right {
  display: flex;
  flex-direction: column;
}

.mirror-prompts {
  position: relative;
  min-height: 120px;
}
.mirror-prompt {
  padding: 28px 0 28px 32px;
  border-left: 3px solid var(--sage);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.mirror-prompt.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.mirror-prompt h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.mirror-prompt p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.mirror-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.mirror-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(167,196,181,0.35);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.mirror-dots button.is-active {
  background: var(--sage);
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .mirror-split { grid-template-columns: 1fr; gap: 32px; }
  .mirror-prompt { padding: 22px 0 22px 24px; }
  .mirror-prompt h3 { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .mirror-prompt { position: relative !important; opacity: 1 !important; transform: none !important; pointer-events: auto !important; }
  .mirror-prompt + .mirror-prompt { border-top: 1px solid rgba(167,196,181,0.25); }
  .mirror-dots { display: none; }
}

/* periwinkle theme for corporate feature cards — matches Paper design */
.feature-grid--periwinkle {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
  gap: 1px;
  background: rgba(30,45,64,0.07);
}
.feature-grid--periwinkle .feature-card {
  background: var(--page-bg, #FAF9F7);
  border-radius: 0;
  min-height: auto;
  flex: 1 1 0%;
  min-width: 220px;
}
.feature-grid--periwinkle .feature-card:hover { transform: none; box-shadow: none; }
.feature-grid--periwinkle .feature-card .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(75,94,160,0.1);
  color: var(--periwinkle);
}
.feature-grid--periwinkle .feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-grid--periwinkle .feature-card p { font-size: 14.5px; }
@media (max-width: 720px) {
  .feature-grid--periwinkle { flex-direction: column; gap: 1px; }
  .feature-grid--periwinkle .feature-card { min-width: 100%; }
}
/* periwinkle stacked variant — individual assessment page */
.feature-grid--periwinkle-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(75,94,160,0.15);
  border-radius: 20px;
  overflow: hidden;
}
.feature-grid--periwinkle-stack .feature-card {
  background: var(--page-bg, #FAF9F7);
  border-radius: 0;
  min-height: auto;
  padding: 32px 30px;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(75,94,160,0.10);
  border-right: 1px solid rgba(75,94,160,0.10);
}
.feature-grid--periwinkle-stack .feature-card:nth-child(2n) { border-right: none; }
.feature-grid--periwinkle-stack .feature-card:nth-last-child(-n+2) { border-bottom: none; }
.feature-grid--periwinkle-stack .feature-card:hover { transform: none; box-shadow: none; }
.feature-grid--periwinkle-stack .feature-card .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(75,94,160,0.10);
  color: var(--periwinkle);
  flex-shrink: 0;
  margin-bottom: 16px;
}
.feature-grid--periwinkle-stack .feature-card h3 { font-size: 19px; margin-bottom: 6px; }
.feature-grid--periwinkle-stack .feature-card p { font-size: 14px; }
@media (max-width: 560px) {
  .feature-grid--periwinkle-stack { grid-template-columns: 1fr; }
  .feature-grid--periwinkle-stack .feature-card { border-right: none; }
  .feature-grid--periwinkle-stack .feature-card:last-child { border-bottom: none; }
}

/* ---------- feature strip (4-col, no cards) ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-strip__item {
  padding: 0 32px;
  border-left: 1px solid var(--border, rgba(30,45,64,0.12));
}
.feature-strip__item:first-child { border-left: none; padding-left: 0; }
.feature-strip__item:last-child { padding-right: 0; }
.feature-strip__item .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(75,94,160,0.10);
  color: var(--periwinkle);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-strip__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
}
.feature-strip__item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .feature-strip { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .feature-strip__item:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 560px) {
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip__item { border-left: none; padding: 24px 0; border-top: 1px solid var(--border, rgba(30,45,64,0.12)); }
  .feature-strip__item:first-child { border-top: none; padding-top: 0; }
}

/* ---------- audience tiles ---------- */
.tiles-grid {
  display: flex;
  gap: 16px;
}
.tile {
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 260px;
  background: var(--sage-100);
  border: none;
  padding: 36px 32px;
  flex: 1 1 0%;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile__top {
  color: var(--navy);
  display: flex; flex-direction: column;
}
.tile__top .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}
.tile__top h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}
.tile__bottom {
  padding: 0;
  flex: 0 0 auto;
}
.tile__bottom p { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; margin-bottom: 0; }
.tile__bottom .text-link {
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-top: 20px;
  display: inline-block;
}

.tile--sage             { background: var(--individual-tile-bg); }
.tile--sage .tile__top .ico { background: var(--individual-tile-ico); color: #fff; }
.tile--sage-light       { background: var(--corporate-tile-bg); }
.tile--sage-light .tile__top h3 { color: var(--navy); }
.tile--sage-light .tile__top .ico { background: var(--periwinkle); color: #fff; }
.tile--sage-light .tile__bottom .text-link { color: var(--peri-600); }
.tile--periwinkle       { background: var(--periwinkle); }
.tile--periwinkle .tile__top .ico { background: rgba(255,255,255,0.18); color: #fff; }
.tile--periwinkle .tile__top h3 { color: #fff; }
.tile--periwinkle .tile__bottom p { color: rgba(255,255,255,0.82); }
.tile--periwinkle .tile__bottom .text-link { color: rgba(255,255,255,0.82); }
.tile--terracotta       { background: var(--terracotta); }
.tile--terracotta .tile__top .ico { background: rgba(255,255,255,0.18); color: #fff; }
.tile--terracotta .tile__top h3 { color: #fff; }
.tile--terracotta .tile__bottom p { color: rgba(255,255,255,0.82); }
.tile--terracotta .tile__bottom .text-link { color: rgba(255,255,255,0.82); }
.tile--navy             { background: var(--neutral-200); }
.tile--navy .tile__top .ico { background: var(--navy); color: #fff; }

.tile--peri-1           { background: var(--peri-100); }
.tile--peri-1 .tile__top .ico { background: rgba(75,94,160,0.18); color: var(--periwinkle); }
.tile--peri-1 .tile__bottom .text-link { color: var(--periwinkle); }

.tile--peri-2           { background: var(--peri-200); }
.tile--peri-2 .tile__top .ico { background: rgba(75,94,160,0.22); color: var(--periwinkle); }
.tile--peri-2 .tile__bottom .text-link { color: var(--periwinkle); }

.tile--peri-3           { background: var(--peri-400); }
.tile--peri-3 .tile__top h3 { color: #fff; }
.tile--peri-3 .tile__top .ico { background: rgba(255,255,255,0.18); color: #fff; }
.tile--peri-3 .tile__bottom p { color: rgba(255,255,255,0.82); }
.tile--peri-3 .tile__bottom .text-link { color: rgba(255,255,255,0.85); }

.tile--peri-4           { background: var(--periwinkle); }
.tile--peri-4 .tile__top h3 { color: #fff; }
.tile--peri-4 .tile__top .ico { background: rgba(255,255,255,0.18); color: #fff; }
.tile--peri-4 .tile__bottom p { color: rgba(255,255,255,0.82); }
.tile--peri-4 .tile__bottom .text-link { color: rgba(255,255,255,0.85); }

@media (max-width: 900px) { .tiles-grid { flex-wrap: wrap; } .tiles-grid .tile { min-width: calc(50% - 8px); } }
@media (max-width: 560px) { .tiles-grid { flex-direction: column; } .tiles-grid .tile { min-width: 100%; } }

/* ---------- expanding image cards (horizontal accordion) ---------- */
.expand-grid {
  display: flex;
  gap: 10px;
  height: 460px;
}
.expand-card {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  transition: flex-grow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.expand-card:hover {
  flex-grow: 3;
}
.expand-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.expand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,45,64,0.55) 0%, rgba(30,45,64,0.08) 50%, transparent 100%);
  transition: background 0.5s ease;
}
.expand-card:hover .expand-card__overlay {
  background: linear-gradient(to right, rgba(30,45,64,0.15) 0%, rgba(30,45,64,0.45) 40%, rgba(30,45,64,0.7) 100%);
}
.expand-card__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  transition: opacity 0.3s ease;
}
.expand-card:hover .expand-card__label {
  opacity: 0;
}
.expand-card__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  z-index: 3;
  overflow: hidden;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0;
  opacity: 0;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease 0.1s,
              padding 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.expand-card:hover .expand-card__content {
  width: 260px;
  opacity: 1;
  padding: 32px 28px;
}
.expand-card__content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
  white-space: nowrap;
}
.expand-card__content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  min-width: 220px;
}
.expand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-top: 14px;
  white-space: nowrap;
}
.expand-card__link .arrow {
  transition: transform 0.25s ease;
}
.expand-card:hover .expand-card__link .arrow {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .expand-grid { height: 380px; gap: 8px; }
  .expand-card__label { font-size: 15px; bottom: 18px; left: 18px; }
  .expand-card:hover .expand-card__content { width: 220px; padding: 24px 22px; }
  .expand-card__content h3 { font-size: 17px; }
  .expand-card__content p { font-size: 13px; min-width: 180px; }
}
@media (max-width: 560px) {
  .expand-grid { flex-direction: column; height: auto; }
  .expand-card { min-height: 200px; }
  .expand-card:hover { flex-grow: 1; }
  .expand-card:hover .expand-card__label { opacity: 1; }
  .expand-card:hover .expand-card__overlay {
    background: linear-gradient(to top, rgba(30,45,64,0.55) 0%, rgba(30,45,64,0.08) 50%, transparent 100%);
  }
  .expand-card__content { display: none; }
}

/* ---------- report / accordion cards ---------- */
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .report-grid { grid-template-columns: 1fr; } }

.report-card {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid rgba(75,94,160,0.18);
  border-top: 3px solid var(--periwinkle);
  padding: 28px 26px;
  display: flex; flex-direction: column;
}
.report-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.report-card .pages { font-size: 11.5px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 18px; }
.report-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.report-card li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text-mid);
}
.report-card li::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(75,94,160,0.1);
  flex-shrink: 0; margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7.5l2.5 2.5L11 4.5' stroke='%234B5EA0' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.report-card li.hidden { display: none; }
.report-card.open li.hidden { display: flex !important; }
.report-card .toggle {
  margin-top: auto;
  font-size: 12.5px; font-weight: 500;
  color: var(--periwinkle);
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: 14px; border-top: 1px dashed rgba(75,94,160,0.2);
}
.report-card .toggle .chev { transition: transform 0.25s ease; }
.report-card.open .toggle .chev { transform: rotate(180deg); }

.report-grid--sage .report-card { border-color: rgba(167,196,181,0.25); border-top-color: var(--sage); }
.report-grid--sage .report-card .pages { color: var(--sage); }
.report-grid--sage .report-card li::before {
  background: rgba(167,196,181,0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7.5l2.5 2.5L11 4.5' stroke='%23728F7F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.report-grid--sage .report-card .toggle { color: var(--sage); border-top-color: rgba(167,196,181,0.3); }

/* ---------- quote block ---------- */
.quote-band {
  background: var(--corporate-band);
  padding: 72px 0;
}
.quote-band blockquote {
  max-width: 820px; margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  font-style: italic;
  position: relative;
  letter-spacing: -0.01em;
}
.quote-band blockquote::before {
  content: '';
  display: block;
  width: 40px; height: 32px;
  margin: 0 auto 24px;
  background: var(--color-quote-mark);
  opacity: 1;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32' fill='%23fff'%3E%3Cpath d='M0 20.8C0 12.2 5.4 4.6 14.2 0l2.6 4.2C10.6 7.8 8 13 7.8 17.2h6.8V32H0V20.8zm21.4 0C21.4 12.2 26.8 4.6 35.6 0l2.6 4.2C32 7.8 29.4 13 29.2 17.2H36V32H21.4V20.8z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32' fill='%23fff'%3E%3Cpath d='M0 20.8C0 12.2 5.4 4.6 14.2 0l2.6 4.2C10.6 7.8 8 13 7.8 17.2h6.8V32H0V20.8zm21.4 0C21.4 12.2 26.8 4.6 35.6 0l2.6 4.2C32 7.8 29.4 13 29.2 17.2H36V32H21.4V20.8z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.quote-band cite { display: block; margin-top: 20px; font-size: 11px; font-style: normal; color: var(--sage-light); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; opacity: 0.8; }
.quote-band--sage { background: var(--individual-band); }
.quote-band--sage blockquote::before { background: var(--color-quote-mark); opacity: 1; }

/* ---------- testimonials ---------- */
/* testimonial carousel */
.testi-carousel { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 2px;
  box-sizing: border-box;
}
/* single-card mode: each slide = 1 card */
.testi-card {
  min-width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--sage-light);
  padding: 32px 28px;
  margin-right: 20px;
  box-sizing: border-box;
}
.testi-quote-mark {
  width: 32px; height: 26px;
  margin-bottom: 18px;
  background: var(--sage);
  opacity: 0.45;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32' fill='%23fff'%3E%3Cpath d='M0 20.8C0 12.2 5.4 4.6 14.2 0l2.6 4.2C10.6 7.8 8 13 7.8 17.2h6.8V32H0V20.8zm21.4 0C21.4 12.2 26.8 4.6 35.6 0l2.6 4.2C32 7.8 29.4 13 29.2 17.2H36V32H21.4V20.8z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32' fill='%23fff'%3E%3Cpath d='M0 20.8C0 12.2 5.4 4.6 14.2 0l2.6 4.2C10.6 7.8 8 13 7.8 17.2h6.8V32H0V20.8zm21.4 0C21.4 12.2 26.8 4.6 35.6 0l2.6 4.2C32 7.8 29.4 13 29.2 17.2H36V32H21.4V20.8z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.testi-card p { font-size: 14.5px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 18px; flex: 1; }
.testi-card footer { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testi-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(30,45,64,0.15);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.testi-arrow:hover { border-color: var(--sage); background: var(--sage-100); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots button {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(167,196,181,0.35);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.testi-dots button.is-active { background: var(--sage); transform: scale(1.15); }

@media (min-width: 901px) {
  .testi-nav { display: none; }
}
@media (max-width: 900px) {
  .testi-card { min-width: calc(50% - 10px); }
}
@media (max-width: 600px) {
  .testi-card { min-width: 100%; margin-right: 0; }
  .testi-track { gap: 16px; }
}

/* ---------- logo strip ---------- */
.logo-strip { text-align: center; padding: 12px 0; }
.logo-strip__label {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}
.logo-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-strip__placeholder {
  width: 120px;
  height: 40px;
  border-radius: 8px;
  background: rgba(30,45,64,0.04);
  border: 1px dashed rgba(30,45,64,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(30,45,64,0.25);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .logo-strip__logos { gap: 24px; }
  .logo-strip__placeholder { width: 100px; height: 36px; }
}

/* ---------- two-col split ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.split h2 { margin-bottom: 20px; }
.split .btn { margin-bottom: 24px; }
.split h2 em { font-style: italic; color: var(--terracotta); }
.split > .media { border-radius: var(--radius-lg); overflow: hidden; background: var(--sage-100); aspect-ratio: 9/10; position: relative; }
.split > .media img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.split > .media::after { content: none; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse > :first-child { order: 0; } }
.split--terracotta .eyebrow { color: var(--terracotta); }
.split--terracotta .check-list li::before { background-color: var(--terracotta); }

.check-list { list-style: none; padding: 0; margin: 18px 0 24px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--text-mid);
}
.check-list li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0; margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7.5l2.5 2.5L11 4.5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- stats row ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat { text-align: center; padding: 24px 16px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat span { font-size: 13px; color: var(--text-mid); }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }

/* ---------- CTA strip ---------- */
.cta-strip {
  display: none;
  /* Solid periwinkle — with a soft palette, solid asserts; gradients dilute */
  background: var(--periwinkle);
  border-radius: var(--radius-lg);
  padding: 64px clamp(40px, 5vw, 72px);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-strip::before { content: none; }
.cta-strip::after { content: none; }
.cta-strip--sage { background: var(--sage); }
.cta-strip--periwinkle { background: var(--periwinkle); }
.cta-strip--terracotta { background: var(--terracotta); }
.cta-strip__text { position: relative; z-index: 1; max-width: 560px; }
.cta-strip h2 { color: #fff; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,0.78); font-size: 15.5px; max-width: 48ch; }
.cta-strip .btn { position: relative; z-index: 1; }
.cta-strip__mark {
  position: absolute;
  right: clamp(-100px, -6vw, -40px);
  bottom: clamp(-100px, -6vw, -40px);
  width: clamp(320px, 40vw, 480px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}
.cta-strip__mark svg {
  width: 100%; height: 100%;
  transform-origin: 50% 50%;
  overflow: visible;
}
@media (prefers-reduced-motion: no-preference) {
  .cta-strip__mark svg { animation: mark-spin 60s linear infinite; }
}
.cta-strip__mark svg path {
  fill: #fff !important;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  transition: color 0.2s ease;
}
.faq-q .chev {
  width: 24px; height: 24px;
  border-radius: 50%; background: var(--sage-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--sage); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a > div { padding: 0 8px 22px; color: var(--text-mid); font-size: 14.5px; }
.faq-item.open .faq-a { max-height: 360px; }

/* ---------- contact toggle ---------- */
.contact-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.hero-wrap--contact { padding-bottom: 56px; }
.contact-toggle__btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--sage-light);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s ease;
}
.contact-toggle__btn:hover { border-color: var(--sage); color: var(--navy); }
.contact-toggle__btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ---------- form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font: inherit; font-size: 14.5px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--sage-light);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(139,164,154,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ---------- footer ----------
   Dark sage-deep footer = strong architectural bookend. With a soft palette,
   you earn visual weight by contrast structure, not by using bold colours
   inline. Dark footer + white type = CoCreate-level presence. */
.site-footer {
  background: var(--neutral-50);
  border-top: 1px solid rgba(30,45,64,0.06);
  padding: 64px 0 36px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer__brand .mark {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  background: url("logo.png") center/contain no-repeat;
  opacity: 0.7;
}
.site-footer__brand .mark::after { content: none; }
.site-footer__brand h4 { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 8px; }
.site-footer__brand p { font-size: 13.5px; max-width: 280px; color: var(--text-mid); line-height: 1.7; opacity: 0.7; }
.site-footer h5 { font-family: var(--font-display); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { font-size: 13.5px; color: var(--text-mid); opacity: 0.6; transition: opacity 0.2s ease; }
.site-footer a:hover { opacity: 1; }
.site-footer__base {
  border-top: 1px solid rgba(30,45,64,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.site-footer__base p { font-size: 12px; color: var(--text-light); opacity: 0.45; }
.site-footer__tagline { font-family: var(--font-display); font-style: italic; color: var(--sage); font-size: 14px; opacity: 0.6; }
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }


/* ---------- misc utils ---------- */
.center-text { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.muted { color: var(--text-light); }
.hidden { display: none !important; }

/* ---------- scroll animation initial state ---------- */
.animate--up   { opacity: 0; transform: translateY(30px); }
.animate--fade { opacity: 0; }
.animate--in, .no-anim .animate--up, .no-anim .animate--fade { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .animate--up, .animate--fade { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- split landing ---------- */
.split-landing { min-height: 100vh; display: flex; }
.split-landing__half {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 40px;
  color: #fff;
  text-align: center;
  min-height: 50vh;
  flex: 1;
  transition: flex 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 761px) {
  .split-landing__half:hover { flex: 1.25; }
  .split-landing:hover .split-landing__half:not(:hover) { flex: 0.85; }
}
.split-landing__half .inner { position: relative; z-index: 1; max-width: 400px; transition: transform 0.4s ease; }
.split-landing__half:hover .inner { transform: translateY(-4px); }
.split-landing__half::before { content: none; } /* no gradients — solid backgrounds assert */
.split-landing__half .ico {
  width: 72px; height: 72px; margin: 0 auto 24px;
  border-radius: 50%;
  border: 1.2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.9;
}
.split-landing__half h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.split-landing__half p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 28px; max-width: 340px; }
.split-landing__half .split-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.96);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}
.split-landing__half:hover .split-cta { background: #fff; transform: translateX(4px); }
/* Solid — gradients on these muted colours just read as flat anyway, but solid looks intentional */
.split-landing__corporate { background: var(--corporate-hero); }
.split-landing__individual { background: var(--individual-hero); }
.split-landing__logo { position: fixed; top: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 10px; color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.split-landing__logo .mark { width: 38px; height: 38px; background: url("logo.png") center/contain no-repeat; filter: brightness(0) invert(1); }
@media (max-width: 760px) { .split-landing { grid-template-columns: 1fr; } .split-landing__half { min-height: 55vh; } .split-landing__logo { top: 24px; } }

/* ---------- team styles grid (for teams page) ---------- */
.styles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .styles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .styles-grid { grid-template-columns: 1fr; } }
.style-card {
  background: #fff; border-radius: 12px;
  border: 1px solid var(--neutral-300);
  padding: 28px 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.style-card:hover { border-color: var(--periwinkle); transform: translateY(-2px); }
.style-card .num { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--periwinkle); margin-bottom: 8px; }
.style-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.style-card p { font-size: 13.5px; color: var(--text-mid); }

/* ---------- coaching packages ---------- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .package-grid { grid-template-columns: 1fr; } }
.package {
  background: #fff; border-radius: var(--radius-md);
  border: 1.5px solid var(--sage-light); /* visible — consistent with card system */
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package.featured { border: 2px solid var(--sage); box-shadow: var(--shadow-sm); }
.package .tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-700); margin-bottom: 12px; }
.package h3 { margin-bottom: 10px; font-size: 1.4rem; }
.package p { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.65; }
.package .price { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin-bottom: 18px; }

/* =========================================================
   ADDITIONS — amplify pass
   ========================================================= */

/* ---------- section eyebrow number (editorial counter) ---------- */
.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--sage-600);
  margin-right: 8px;
}

/* ---------- animated hero mark (SVG logo circle) ----------
   Contained by .hero-card overflow:hidden so the mark stays within the
   card's rounded corners. */
.hero-card__mark {
  position: absolute;
  right: clamp(-120px, -8vw, -60px);
  bottom: clamp(-120px, -8vw, -60px);
  top: auto;
  width: clamp(400px, 52vw, 680px);
  aspect-ratio: 1;
  transform: none;
  pointer-events: auto;
  z-index: 0;
  opacity: 0.045;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
}
.hero-card__mark svg {
  width: 100%; height: 100%;
  transform-origin: 50% 50%;
  overflow: visible;
}
@keyframes mark-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-card__mark svg { animation: mark-spin 60s linear infinite; }
}
.hero-card__mark svg path {
  transform-origin: 942px 932px;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.hero-card__mark:hover svg { animation-play-state: paused; }
/* translate values in SVG user units (viewBox ~1884). ~260u ≈ 14% of viewBox width */
.hero-card__mark:hover svg path:nth-child(1) { transform: translate(40px,  -280px); }
.hero-card__mark:hover svg path:nth-child(2) { transform: translate(-240px,-180px); }
.hero-card__mark:hover svg path:nth-child(3) { transform: translate(-300px, 20px);  }
.hero-card__mark:hover svg path:nth-child(4) { transform: translate(-250px, 220px); }
.hero-card__mark:hover svg path:nth-child(5) { transform: translate(-90px,  300px); }
.hero-card__mark:hover svg path:nth-child(6) { transform: translate(110px,  300px); }
.hero-card__mark:hover svg path:nth-child(7) { transform: translate(270px,  190px); }
.hero-card__mark:hover svg path:nth-child(8) { transform: translate(330px, -30px);  }
.hero-card__mark:hover svg path:nth-child(9) { transform: translate(250px, -220px); }

.hero-card .hero-card__inner { position: relative; z-index: 2; }
.hero-card--cream .hero-card__mark svg path { fill: var(--terracotta) !important; }

@media (max-width: 900px) {
  .hero-card__mark { opacity: 0.035; right: -60px; bottom: -60px; top: auto; width: 320px; }
}

/* ---------- split-landing amplified logo mark ---------- */
.split-landing__logo {
  position: fixed;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.split-landing__logo .mark {
  width: 62px; height: 62px;
  background: url("logo-circle.svg") center/contain no-repeat;
  filter: brightness(0) invert(1);
}

/* ---------- Enneagram band (native) ---------- */
.enneagram-band {
  background: #FAF9F7;
  position: relative;
  overflow: hidden;
  padding-top: 28px;
  padding-bottom: 28px;
}
.enneagram-band::before {
  content: '';
  position: absolute;
  right: -260px; bottom: -260px;
  width: 680px; height: 680px;
  background: url("logo-circle.svg") center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.enneagram-band .container { position: relative; z-index: 1; padding-right: 20px; }

/* Native enneagram — two-column: text left, diagram right. */
.enneagram-native {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.enneagram-native .enneagram-side {
  flex: 0 0 400px;
  min-width: 0;
}
.enneagram-native .section-head {
  margin-bottom: 24px;
}
@media (max-width: 860px) {
  .enneagram-native {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 40px;
  }
  .enneagram-native .enneagram-side { flex: 1 1 auto; }
}

.enneagram-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 860px) {
  .enneagram-band .container { padding-right: 24px; }
}
.enneagram-stage__mark {
  position: absolute;
  inset: 0;
  background: url("logo-circle.svg") center/contain no-repeat;
  opacity: 0.06;
  transform: scale(1.18);
  transform-origin: center;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.enneagram-native.is-active .enneagram-stage__mark { opacity: 0.1; }

.enneagram-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.en-ring {
  fill: none;
  stroke: rgba(30,45,64,0.18);
  stroke-width: 2;
}
.en-scaffold {
  fill: none;
  stroke: rgba(30,45,64,0.12);
  stroke-width: 1;
  stroke-dasharray: 2 4;
  transition: opacity 0.4s ease;
}
.enneagram-native.is-active .en-scaffold { opacity: 0.25; }

.en-link {
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  opacity: 0;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: opacity 0.35s ease, stroke-dashoffset 0.7s cubic-bezier(0.16,1,0.3,1);
}
.en-link.is-visible {
  opacity: 0.85;
  stroke-dashoffset: 0;
}
.en-link--wing   { stroke: var(--sage-light); }
.en-link--stress { stroke: var(--terracotta); stroke-dasharray: 5 5, 600; }
.en-link--growth { stroke: var(--periwinkle); }

.en-node {
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
  transform-box: fill-box;
}
.en-node circle {
  fill: #fff;
  stroke: #b8c6c0;
  stroke-width: 5;
  transition: fill 0.3s ease, stroke 0.3s ease, r 0.3s cubic-bezier(0.16,1,0.3,1), filter 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(30,45,64,0.08));
}
/* 3-colour gradient around the ring: sage → terracotta → periwinkle → sage */
.en-node[data-n="1"] circle { stroke: #6D8C82; }
.en-node[data-n="2"] circle { stroke: #8A8675; }
.en-node[data-n="3"] circle { stroke: #A87F67; }
.en-node[data-n="4"] circle { stroke: #C4795A; }
.en-node[data-n="5"] circle { stroke: #9C7071; }
.en-node[data-n="6"] circle { stroke: #746789; }
.en-node[data-n="7"] circle { stroke: #4B5EA0; }
.en-node[data-n="8"] circle { stroke: #566D96; }
.en-node[data-n="9"] circle { stroke: #627D8C; }
.en-node__number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  fill: var(--sage-700);
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
  transition: fill 0.3s ease;
  letter-spacing: -0.01em;
}
.en-node__label {
  display: none;
  fill: var(--text-light);
  /* text-anchor is set per-node in JS based on angle so labels flow outward */
  dominant-baseline: central;
  pointer-events: none;
  transition: fill 0.3s ease, opacity 0.3s ease;
}
.en-node:hover circle { filter: drop-shadow(0 4px 12px rgba(30,45,64,0.18)); }
.en-node:hover .en-node__number { fill: var(--sage-600); }

.en-node.is-linked circle { stroke-width: 5; }
.en-node.is-linked .en-node__label { fill: var(--sage-700); }

.en-node.is-selected circle {
  fill: var(--sage-600);
  stroke: var(--sage-800);
  stroke-width: 5;
  filter: drop-shadow(0 8px 24px rgba(74,115,104,0.35));
}
.en-node.is-selected .en-node__number { fill: #fff; }
.en-node.is-selected .en-node__label { fill: var(--sage-600); font-weight: 600; }

.en-node.is-dim circle { fill: #f4f6f4; stroke: #e7ebe8; filter: none; }
.en-node.is-dim .en-node__number { fill: #c6ccc8; }
.en-node.is-dim .en-node__label { opacity: 0.35; }

/* Modes & panel */
.enneagram-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.enneagram-controls button {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
}
.enneagram-controls button:hover {
  border-color: var(--sage-light);
  color: var(--sage-700);
  background: var(--sage-100);
}
.enneagram-controls button.is-active {
  background: var(--sage-600);
  color: #fff;
  border-color: var(--sage-600);
  box-shadow: 0 6px 18px rgba(74,115,104,0.28);
}

.enneagram-panel {
  position: relative;
}
.enneagram-panel::before { content: none; }

.enneagram-panel__empty p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.en-tap-hint {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-top: 32px;
}
.en-type-hook {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 12px;
  margin-top: 20px;
}

.enneagram-panel__body { display: none; }
.enneagram-panel.is-active .enneagram-panel__empty { display: none; }
.enneagram-panel.is-active .enneagram-panel__body  { display: block; }
.enneagram-native.is-active .section-head .lead { display: none; }
.enneagram-native.is-active .section-head { margin-bottom: 12px; }

.en-type-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.en-type-eyebrow::before { content: none; }
.en-type-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.en-type-name em { font-style: italic; color: var(--terracotta); }
.en-type-keyword {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage-100);
  color: var(--sage-600);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 18px;
}
.en-type-tagline {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 48ch;
}
.en-type-connections {
  font-size: 12px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  line-height: 1.9;
}
.enneagram-panel__body .btn { margin-top: 24px; }

@media (prefers-reduced-motion: reduce) {
  .en-link { transition: opacity 0.2s ease; stroke-dasharray: none; stroke-dashoffset: 0; }
  .en-link.is-visible { opacity: 0.85; }
  .en-node, .en-node circle, .en-node text { transition: none; }
  .enneagram-panel::before { transition: opacity 0.2s ease; transform: scaleY(1); }
}

/* ---------- Saturated sage stat band ---------- */
.sage-band {
  background: var(--sage);
  background-image:
    radial-gradient(at 15% 20%, rgba(255,255,255,0.10) 0%, transparent 40%),
    radial-gradient(at 85% 80%, rgba(0,0,0,0.15) 0%, transparent 50%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.sage-band::before {
  content: '';
  position: absolute;
  left: -160px; top: -160px;
  width: 480px; height: 480px;
  background: url("logo-circle.svg") center/contain no-repeat;
  opacity: 0.08;
  filter: brightness(0) invert(1);
  /* static watermark */
}
.sage-band--periwinkle {
  background: var(--periwinkle);
  background-image:
    radial-gradient(at 15% 20%, rgba(255,255,255,0.10) 0%, transparent 40%),
    radial-gradient(at 85% 80%, rgba(0,0,0,0.15) 0%, transparent 50%);
}
.sage-band h2 { color: #fff; max-width: 16ch; margin-bottom: 20px; }
.sage-band .eyebrow { color: rgba(255,255,255,0.75); }
.sage-band .eyebrow::before { background: rgba(255,255,255,0.55); }
.sage-band p { color: rgba(255,255,255,0.82); max-width: 52ch; font-size: 1.05rem; }
.sage-band__stats {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.sage-band__stats .stat { text-align: left; padding: 0; }
.sage-band__stats .stat strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  letter-spacing: -0.02em;
}
.sage-band__stats .stat span {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .sage-band__stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Split landing punch ---------- */
.split-landing__half h2 {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.split-landing__half h2 em {
  font-style: italic;
  color: var(--color-quote-mark);
}
.split-landing__corporate { background: var(--corporate-hero); }
.split-landing__individual { background: var(--individual-hero); }

/* ---------- Section header ---------- */
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 14px; max-width: 20ch; }
.section-head.center h2,
.section-head.center .lead { margin-left: auto; margin-right: auto; }
@media (max-width: 768px) { .section-head { margin-bottom: 32px; } }

/* ---------- Quote band more punch ---------- */
.quote-band blockquote {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.quote-band blockquote::before { background: var(--color-quote-mark); opacity: 1; width: 40px; height: 32px; }

/* =========================================================
   Marquee image gallery — scroll-linked, two tracks
   ========================================================= */
.marquee-section { padding: 80px 0 64px; overflow: clip; }
@media (max-width: 1024px) { .marquee-section { padding: 64px 0 48px; } }
@media (max-width: 768px)  { .marquee-section { padding: 48px 0 36px; } }

.marquee {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* full-bleed without triggering horizontal scroll */
  width: 100%;
  position: relative;
  /* soft edge fade so images feel like they emerge from/leave to the margins */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;   /* track is as wide as its contents */
  will-change: transform;
}
.marquee__tile {
  flex: 0 0 auto;
  width: clamp(260px, 26vw, 380px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--sage-100);
  box-shadow: 0 6px 18px rgba(30,45,64,0.08), 0 18px 40px rgba(30,45,64,0.06);
  position: relative;
}
.marquee__tile--tall { aspect-ratio: 3 / 4; width: clamp(220px, 20vw, 300px); }
.marquee__tile--wide { aspect-ratio: 16 / 10; width: clamp(320px, 32vw, 460px); }
.marquee__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* brand-cohesion treatment over placeholder photography */
  filter: grayscale(0.25) sepia(0.08) saturate(0.95) brightness(0.96);
  transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.marquee__tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,115,104,0.08), rgba(196,121,90,0.06));
  pointer-events: none;
  mix-blend-mode: multiply;
}
.marquee__tile:hover img { filter: none; transform: scale(1.03); }

@media (prefers-reduced-motion: reduce) {
  .marquee { mask-image: none; -webkit-mask-image: none; flex-wrap: wrap; }
  .marquee__track { flex-wrap: wrap; width: 100%; justify-content: center; gap: 16px; }
}

.package .btn { margin-top: auto; align-self: flex-start; }

/* ---------- workshop steps (teams page — editorial list) ---------- */
.workshop-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.workshop-step {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.workshop-step:hover {
  background: rgba(75,94,160,0.05);
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 12px;
  border-color: transparent;
}
.workshop-step:hover + .workshop-step {
  border-top-color: transparent;
}
.workshop-step__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--periwinkle);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  letter-spacing: -0.02em;
}
.workshop-step__body {
  flex: 1;
  min-width: 0;
}
.workshop-step__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.workshop-step__body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 52ch;
}
@media (max-width: 560px) {
  .workshop-step { gap: 20px; }
  .workshop-step__num { width: 48px; font-size: 2rem; }
  .workshop-step:hover { margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
}
