/* =========================================================
   Integrity Studio Co. — preview build
   Reference: cocreateconsultancy.com
   ========================================================= */

/* TT Drugs (trial) — Salt Socials display font.
   NOTE: trial licence — replace with production licence before launch. */
@font-face {
  font-family: 'TT Drugs';
  src: url('fonts/TT Drugs Trial Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Drugs';
  src: url('fonts/TT Drugs Trial Light Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Drugs';
  src: url('fonts/TT Drugs Trial Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Drugs';
  src: url('fonts/TT Drugs Trial Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Drugs';
  src: url('fonts/TT Drugs Trial Bold.otf') format('opentype');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Drugs';
  src: url('fonts/TT Drugs Trial Bold Italic.otf') format('opentype');
  font-weight: 600 700;
  font-style: italic;
  font-display: swap;
}

:root {
  /* ═══ INTEGRITY STUDIO CO. — BRAND PALETTE ═══ */
  --estate-blue:  #223657;   /* deep navy — accents, links, quote band, corporate path */
  --foxtrot:      #bb9275;   /* terra — primary CTA + one accent per page */
  --coconut-milk: #F5F4F0;   /* warm cream — page surface */
  --desert-sage:  #A7AD9F;   /* structural sage — surfaces, separators, holding bg */
  --smoke-green:  #A7B9A1;   /* lighter sage tint */

  /* Body / base type — pre-refactor very dark navy, kept distinct from brand blue */
  --ink:         #1e2d40;
  --text:        var(--ink);
  --text-mid:    color-mix(in oklab, var(--ink) 78%, var(--coconut-milk));
  --text-light:  color-mix(in oklab, var(--ink) 55%, var(--coconut-milk));
  --navy:        var(--ink);
  --border:      color-mix(in oklab, var(--ink) 12%, transparent);
  --white:       #ffffff;

  /* Surfaces */
  --page-bg:     var(--coconut-milk);
  --cream:       var(--coconut-milk);

  /* Convenience aliases used throughout the existing CSS */
  --terracotta:  var(--foxtrot);
  --sage:        var(--desert-sage);
  --sage-light:  var(--smoke-green);
  --periwinkle:  var(--estate-blue);

  /* ═══ RAMPS (legacy — every value resolves to the 5 brand hexes or ink) ═══ */

  /* Sage */
  --sage-50:  color-mix(in oklab, var(--smoke-green) 18%, var(--coconut-milk));
  --sage-100: color-mix(in oklab, var(--smoke-green) 32%, var(--coconut-milk));
  --sage-200: color-mix(in oklab, var(--smoke-green) 60%, var(--coconut-milk));
  --sage-300: var(--smoke-green);
  --sage-400: var(--desert-sage);
  --sage-500: var(--desert-sage);
  --sage-600: color-mix(in oklab, var(--desert-sage) 80%, var(--ink));
  --sage-700: color-mix(in oklab, var(--desert-sage) 60%, var(--ink));
  --sage-800: color-mix(in oklab, var(--desert-sage) 35%, var(--ink));
  --sage-900: var(--ink);
  --sage-950: var(--ink);

  /* Periwinkle — corporate path collapses to brand blue */
  --peri-50:  color-mix(in oklab, var(--estate-blue) 8%,  var(--coconut-milk));
  --peri-100: color-mix(in oklab, var(--estate-blue) 16%, var(--coconut-milk));
  --peri-200: color-mix(in oklab, var(--estate-blue) 28%, var(--coconut-milk));
  --peri-300: color-mix(in oklab, var(--estate-blue) 50%, var(--coconut-milk));
  --peri-400: color-mix(in oklab, var(--estate-blue) 75%, var(--coconut-milk));
  --peri-500: var(--estate-blue);
  --peri-600: var(--estate-blue);
  --peri-700: var(--estate-blue);
  --peri-800: var(--estate-blue);
  --peri-900: var(--estate-blue);
  --peri-950: var(--estate-blue);

  /* Terracotta */
  --terra-50:  color-mix(in oklab, var(--foxtrot) 12%, var(--coconut-milk));
  --terra-100: color-mix(in oklab, var(--foxtrot) 22%, var(--coconut-milk));
  --terra-200: color-mix(in oklab, var(--foxtrot) 38%, var(--coconut-milk));
  --terra-300: color-mix(in oklab, var(--foxtrot) 60%, var(--coconut-milk));
  --terra-400: var(--foxtrot);
  --terra-500: var(--foxtrot);
  --terra-600: var(--foxtrot);
  --terra-700: var(--foxtrot);
  --terra-800: var(--foxtrot);
  --terra-900: var(--foxtrot);
  --terra-950: var(--foxtrot);

  /* Neutrals — Coconut Milk surfaces, ink text. No grey, no black. */
  --neutral-50:  var(--coconut-milk);
  --neutral-100: color-mix(in oklab, var(--foxtrot) 6%,  var(--coconut-milk));
  --neutral-200: color-mix(in oklab, var(--foxtrot) 12%, var(--coconut-milk));
  --neutral-300: color-mix(in oklab, var(--foxtrot) 22%, var(--coconut-milk));
  --neutral-400: color-mix(in oklab, var(--ink) 40%, var(--coconut-milk));
  --neutral-500: color-mix(in oklab, var(--ink) 55%, var(--coconut-milk));
  --neutral-600: color-mix(in oklab, var(--ink) 65%, var(--coconut-milk));
  --neutral-700: color-mix(in oklab, var(--ink) 78%, var(--coconut-milk));
  --neutral-800: color-mix(in oklab, var(--ink) 90%, var(--coconut-milk));
  --neutral-900: var(--ink);
  --neutral-950: var(--ink);

  /* ═══ 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: #fff;   /* same — keep token name for compat, drop the muting */

  /* Borders */
  --color-border:          rgba(30,45,64,0.08);
  --color-border-sage:     rgba(167,185,161,0.35);
  --color-border-peri:     rgba(34,54,87,0.20);

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

  /* Corporate path (brand blue) */
  --corporate-hero:        var(--peri-300);
  --corporate-accent:      #fff;
  --corporate-eyebrow:     var(--estate-blue);
  --corporate-band:        var(--peri-300);
  --corporate-cta:         var(--estate-blue);
  --corporate-tile-bg:     var(--peri-100);
  --corporate-tile-ico:    var(--estate-blue);

  /* Shared */
  --color-action:          var(--ink);
  --color-action-hover:    var(--estate-blue);
  --color-accent:          var(--terra-400);
  --color-quote-mark:      var(--terra-300);

  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'TT Drugs', 'Poppins', -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: 15px; -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 ----------
   Salt Socials brand: TT Drugs (display) + Poppins (body).
   Scale tuned so 100% zoom feels comfortable on desktop (was reading too large
   per Claire/Hannah review — they were viewing at 75%). Weight reduced from
   bold-everywhere to medium so headlines feel balanced against body copy. */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.0rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.4rem); font-weight: 700; line-height: 1.1; }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.005em; }
h4 { font-size: 0.95rem; font-weight: 600; }

/* Callout / quote-band / Meet Claire headlines stay restrained — that was
   the specific spot Claire flagged as too heavy when bold + italic combined. */
.callout h1, .callout h2, .callout h3,
.quote-band h1, .quote-band h2, .quote-band h3,
.meet-claire h1, .meet-claire h2, .meet-claire h3 {
  font-weight: 500;
}

/* Don't stack bold + italic — pick one. Italic in callouts/quotes drops to regular weight. */
.callout em, .callout i, .quote-band em, .quote-band i,
.meet-claire em, .meet-claire i,
blockquote em, blockquote i {
  font-style: italic;
  font-weight: 400;
}
.callout strong, .callout b, .quote-band strong, .quote-band b,
.meet-claire strong, .meet-claire b {
  font-style: normal;
  font-weight: 600;
}

p { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; }
.lead { font-size: 1.0rem; 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);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);   /* warm accent by default — breaks up the blue */
  margin-bottom: 18px;
}
.eyebrow::before { content: none; }
.eyebrow--light { color: var(--terracotta); }

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

/* ---------- 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(--estate-blue); color: #fff; }
.btn-primary:hover { background: var(--estate-blue); 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(187,146,117,0.35); }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500;
  color: var(--estate-blue);
  transition: color 0.2s ease;
}
.text-link .arrow { transition: transform 0.25s ease; }
.text-link:hover { color: var(--ink); }
.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(245, 244, 240, 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,
.site-header__nav a[aria-current="page"],
.site-header__nav a.is-active { opacity: 1; color: var(--sage-600); }
.site-header__nav > a.active,
.site-header__nav .nav-dropdown > .nav-dropdown__trigger.active,
.site-header__nav .nav-dropdown > .nav-dropdown__trigger[aria-current="true"] { opacity: 1; color: var(--sage-600); }
.nav-dropdown__menu a[aria-current="page"],
.nav-dropdown__menu a.is-active { color: var(--sage-600); font-weight: 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,185,161,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); }

/* Nested sub-accordion inside a dropdown (e.g. Corporate > Teams > Team report) */
.nav-dropdown__menu .nav-sub { padding: 0; margin: 0; }
.nav-dropdown__menu .nav-sub > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--navy);
  opacity: 0.75;
  border-radius: 8px;
  transition: background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown__menu .nav-sub > summary::-webkit-details-marker { display: none; }
.nav-dropdown__menu .nav-sub > summary::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 4px;
}
.nav-dropdown__menu .nav-sub[open] > summary::after { transform: rotate(-135deg); }
.nav-dropdown__menu .nav-sub > summary:hover { background: var(--sage-100); opacity: 1; }
.nav-dropdown__menu .nav-sub > a {
  padding-left: 30px;
  font-size: 12px;
  opacity: 0.7 !important;
}

.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(--estate-blue); position: relative; }
.site-header__burger span::before, .site-header__burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--estate-blue); }
.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(245,244,240,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. */
/* Corporate hero cards use full estate-blue navy (paired with cookie banner + split landing as the three places dark blue is allowed) */
.hero-card--periwinkle { background: var(--estate-blue); }
.hero-card--sage       { background: var(--sage); }
.hero-card--cream      {
  background: #fffdf9;
  color: var(--navy);
}
.hero-card--cream .hero-sub { color: var(--text-mid); }

.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, 6vw, 4.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(--terracotta); display: inline-block; }
.hero-card--sage .eyebrow { color: #fff; }
.hero-card--cream .btn-ghost-on-colour { color: var(--navy); border-color: color-mix(in oklab, var(--estate-blue) 35%, transparent); }
.hero-card--cream .btn-ghost-on-colour:hover { background: color-mix(in oklab, var(--estate-blue) 6%, transparent); border-color: var(--estate-blue); }
.hero-sub {
  font-size: 1.05rem;
  color: #fff;
  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; margin-top: auto; }
@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,185,161,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,185,161,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, var(--coconut-milk));
  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(34,54,87,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(34,54,87,0.15);
  border-radius: 20px;
  overflow: hidden;
}
.feature-grid--periwinkle-stack .feature-card {
  background: var(--page-bg, var(--coconut-milk));
  border-radius: 0;
  min-height: auto;
  padding: 32px 30px;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(34,54,87,0.10);
  border-right: 1px solid rgba(34,54,87,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(34,54,87,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(34,54,87,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: #fff; }
.tile--periwinkle .tile__bottom .text-link { color: #fff; }
.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: #fff; }
.tile--terracotta .tile__bottom .text-link { color: #fff; }
.tile--navy             { background: var(--neutral-200); }
.tile--navy .tile__top .ico { background: var(--estate-blue); color: #fff; }

.tile--peri-1           { background: var(--peri-100); }
.tile--peri-1 .tile__top .ico { background: rgba(34,54,87,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(34,54,87,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: #fff; }
.tile--peri-3 .tile__bottom .text-link { color: #fff; }

.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: #fff; }
.tile--peri-4 .tile__bottom .text-link { color: #fff; }

@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(34,54,87,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(34,54,87,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(34,54,87,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,185,161,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,185,161,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,185,161,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,
.quote-band blockquote::after {
  content: '';
  display: block;
  width: 40px; height: 32px;
  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 blockquote::before { margin: 0 auto 24px; }
.quote-band blockquote::after  { margin: 24px auto 0; transform: rotate(180deg); }
.quote-band cite { display: block; margin-top: 20px; font-size: 11px; font-style: normal; color: rgba(30,45,64,0.7); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.quote-band--sage { background: var(--individual-band); }
.quote-band--sage blockquote::before,
.quote-band--sage blockquote::after { 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,185,161,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; }
.contact-pane.split { align-items: start; }
.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;
  /* Default fill — peri-300 (corporate-hero blend), never the full estate-blue */
  background: var(--corporate-hero);
  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(--corporate-hero); }
.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: #fff; 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-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 44px;
  padding: 28px 24px;
  background: color-mix(in oklab, var(--smoke-green) 10%, var(--coconut-milk));
  border: 1px solid color-mix(in oklab, var(--smoke-green) 25%, var(--coconut-milk));
  border-radius: 14px;
}
.contact-toggle__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0;
}
.contact-toggle {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-wrap--contact { padding-bottom: 0; }
.hero-wrap--contact + section.tight { padding-top: 24px; }
@media (max-width: 768px) { .hero-wrap--contact + section.tight { padding-top: 16px; } }
@media (max-width: 560px) {
  .contact-toggle-wrap { padding: 22px 18px; }
  .contact-toggle__btn { flex: 1 1 auto; padding: 12px 18px; font-size: 12.5px; }
}
.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 ---------- */
.contact-form { position: relative; }
.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; } }
.form-status { min-height: 1em; margin-top: 14px; font-size: 13px; color: var(--text-mid); }
.form-status[data-state="error"] { color: var(--terracotta); }
.form-success { padding: 8px 0; }
.form-success h3 { color: var(--navy); }
.form-success p { color: var(--text-mid); font-size: 14.5px; line-height: 1.7; }
.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(167,173,159,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 > img { height: 48px; width: auto; margin-bottom: 18px; opacity: 0.7; }
.site-footer__brand .mark {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  background: url("logo-circle.svg") 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; }
@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; flex-direction: column;
  align-items: center; justify-content: center;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 3vw, 48px);
  background: var(--coconut-milk);
}
.split-landing__row {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
  max-width: 1480px;
  flex: 1 1 auto;
  align-self: stretch;
}
.split-landing__half {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 3vw, 56px);
  color: #fff;
  text-align: left;
  min-height: 60vh;
  flex: 1;
  border-radius: clamp(20px, 2vw, 28px);
  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__row:hover .split-landing__half:not(:hover) { flex: 0.85; }
}
.split-landing__half .inner { position: relative; z-index: 1; width: 100%; max-width: 460px; 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: #fff; 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 is the brand gesture — estate-blue exception, parallel to the cookie banner */
.split-landing__corporate { background: var(--estate-blue); }
.split-landing__individual { background: var(--individual-hero); }
.split-landing__logo { display: flex; justify-content: center; }
.split-landing__logo img {
  width: clamp(96px, 9vw, 132px);
  height: auto;
  display: block;
}
@media (max-width: 760px) {
  .split-landing__row { flex-direction: column; }
  .split-landing__half { min-height: 50vh; }
}

/* ---------- 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 {
  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; margin-bottom: 8px; }
.style-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.style-card p { font-size: 13.5px; color: var(--text-mid); }
.style-card:nth-child(3n+1) { background: var(--sage-50); }
.style-card:nth-child(3n+2) { background: var(--peri-50); }
.style-card:nth-child(3n)   { background: var(--terra-50); }
.style-card:nth-child(3n+1) .num { color: var(--sage); }
.style-card:nth-child(3n+2) .num { color: var(--periwinkle); }
.style-card:nth-child(3n)   .num { color: var(--terracotta); }

/* ---------- 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; }
.package .price .was { color: var(--text-light); text-decoration: line-through; margin-right: 8px; }
.package .price .limited-flag { display: inline-block; margin-left: 10px; font-family: var(--font-base, inherit); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terra-400); vertical-align: middle; }

/* =========================================================
   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; }
}

/* ---------- Enneagram band (native) ---------- */
.enneagram-band {
  background: var(--coconut-milk);
  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: color-mix(in oklab, var(--estate-blue) 28%, transparent);
  stroke-width: 5;   /* bulkier ring per Claire's feedback */
}
.en-scaffold {
  fill: none;
  stroke: color-mix(in oklab, var(--estate-blue) 14%, transparent);
  stroke-width: 1;
  stroke-dasharray: 2 4;
  transition: opacity 0.4s ease;
}

/* Slow auto-cycle through the numbers — signals interactivity, calm pace */
.enneagram-stage svg .en-node-rotor {
  transform-origin: center;
  transform-box: view-box;
  animation: en-rotor-pulse 27s ease-in-out infinite;
}
.enneagram-native.is-active .enneagram-stage svg .en-node-rotor,
.enneagram-stage:hover .en-node-rotor,
.enneagram-stage:focus-within .en-node-rotor {
  animation-play-state: paused;
}
@keyframes en-rotor-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
.en-node--cycling circle {
  animation: en-node-cycle 27s steps(9, end) infinite;
}
@keyframes en-node-cycle {
  /* visual heartbeat — one node lifts every ~3s. Stroke colour is driven
     by the per-node rule so the rainbow stays visible during the pulse. */
  0%, 100% { stroke-width: 5; }
  3%       { stroke-width: 8; filter: drop-shadow(0 4px 14px rgba(34,54,87,0.30)); }
  10%      { stroke-width: 5; }
}
@media (prefers-reduced-motion: reduce) {
  .enneagram-stage svg .en-node-rotor,
  .en-node--cycling circle { animation: none; }
}

/* Centre prompt — "Tap any number to begin" lives inside the wheel */
.en-centre-prompt {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 0 18%;
  transition: opacity 0.4s ease;
}
.enneagram-native.is-active .en-centre-prompt { opacity: 0; }
.en-centre-prompt__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.en-centre-prompt__text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 500;
  color: var(--estate-blue);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.en-centre-prompt__text .arrow {
  display: inline-block;
  margin-left: 4px;
  animation: en-arrow-nudge 2.4s ease-in-out infinite;
}
@keyframes en-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .en-centre-prompt__text .arrow { animation: none; }
}
.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); }
.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: var(--coconut-milk);
  stroke: var(--desert-sage);
  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(34,54,87,0.10));
}
/* Subtle rainbow around the ring — flows through the four brand accents
   (smoke green → desert sage → foxtrot → estate blue → smoke green) so
   each type has its own hue without leaving the palette. */
.en-node[data-n="1"] circle { stroke: var(--smoke-green); }
.en-node[data-n="2"] circle { stroke: var(--desert-sage); }
.en-node[data-n="3"] circle { stroke: color-mix(in oklab, var(--desert-sage) 60%, var(--foxtrot)); }
.en-node[data-n="4"] circle { stroke: var(--foxtrot); }
.en-node[data-n="5"] circle { stroke: color-mix(in oklab, var(--foxtrot) 70%, var(--estate-blue)); }
.en-node[data-n="6"] circle { stroke: color-mix(in oklab, var(--foxtrot) 35%, var(--estate-blue)); }
.en-node[data-n="7"] circle { stroke: var(--estate-blue); }
.en-node[data-n="8"] circle { stroke: color-mix(in oklab, var(--estate-blue) 65%, var(--smoke-green)); }
.en-node[data-n="9"] circle { stroke: color-mix(in oklab, var(--estate-blue) 35%, var(--smoke-green)); }
.en-node__number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  fill: var(--estate-blue);
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
  transition: fill 0.3s ease;
  letter-spacing: -0.01em;
}
.en-node__label {
  display: block;            /* Claire: show type names alongside numbers */
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  fill: var(--text-light);
  dominant-baseline: central;
  pointer-events: none;
  transition: fill 0.3s ease, opacity 0.3s ease;
}
.en-node:hover circle { stroke: var(--estate-blue); filter: drop-shadow(0 4px 12px rgba(34,54,87,0.22)); }
.en-node:hover .en-node__number { fill: var(--ink); }
.en-node:hover .en-node__label  { fill: var(--ink); }

.en-node.is-linked circle { stroke: var(--estate-blue); stroke-width: 5; }
.en-node.is-linked .en-node__label { fill: var(--ink); }

.en-node.is-selected circle {
  fill: var(--estate-blue);
  stroke: var(--estate-blue);
  stroke-width: 5;
  filter: drop-shadow(0 8px 24px rgba(34,54,87,0.35));
}
.en-node.is-selected .en-node__number { fill: var(--coconut-milk); }
.en-node.is-selected .en-node__label  { fill: var(--estate-blue); font-weight: 600; }

.en-node.is-dim circle {
  fill: color-mix(in oklab, var(--smoke-green) 14%, var(--coconut-milk));
  stroke: color-mix(in oklab, var(--desert-sage) 30%, var(--coconut-milk));
  filter: none;
}
.en-node.is-dim .en-node__number { fill: color-mix(in oklab, var(--estate-blue) 30%, var(--coconut-milk)); }
.en-node.is-dim .en-node__label  { opacity: 0.35; }

/* Mobile: the stage shrinks to full container width when the explorer stacks,
   which crushes the SVG text. Scale the numbers + labels up so the wheel stays
   legible on phones (Claire: "diagram too small to read"). */
@media (max-width: 860px) {
  .en-node__number { font-size: 34px; }
  .en-node__label  { font-size: 18px; }
  .en-centre-prompt { padding: 0 12%; }
}

/* 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(167,173,159,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(--text-light);
  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: #fff; }
.sage-band .eyebrow::before { background: rgba(255,255,255,0.55); }
.sage-band p { color: #fff; 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: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .sage-band__stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Split landing punch ----------
   Matches the overview hero treatment: heavy display weight, tight
   leading, terracotta italic accent. */
.split-landing__half h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.split-landing__half h2 em {
  font-style: italic;
  color: var(--terra-300);
}
/* Split landing is the brand gesture — estate-blue exception, parallel to the cookie banner */
.split-landing__corporate { background: var(--estate-blue); }
.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 .lead + .lead { margin-top: 14px; }
.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: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.quote-band blockquote::before,
.quote-band blockquote::after { 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(167,173,159,0.08), rgba(139,102,75,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(34,54,87,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; }
}

/* =========================================================
   Cookie / consent banner
   ========================================================= */
.is-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--estate-blue);
  color: var(--coconut-milk);
  box-shadow: 0 -8px 32px rgba(34,54,87,0.18);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.is-consent--visible { transform: translateY(0); }
.is-consent__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.is-consent__copy { flex: 1 1 360px; }
.is-consent__title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 6px;
}
.is-consent__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--coconut-milk);
  margin: 0;
}
.is-consent__text a {
  color: var(--coconut-milk);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.is-consent__text a:hover { color: var(--smoke-green); }
.is-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.is-consent__btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.is-consent__btn--primary {
  background: var(--coconut-milk);
  color: var(--estate-blue);
}
.is-consent__btn--primary:hover { background: var(--smoke-green); color: var(--estate-blue); }
.is-consent__btn--ghost {
  background: transparent;
  color: var(--coconut-milk);
  border-color: rgba(245,244,240,0.45);
}
.is-consent__btn--ghost:hover { border-color: var(--coconut-milk); background: rgba(245,244,240,0.08); }
@media (max-width: 768px) {
  .is-consent__inner { padding: 14px 24px; gap: 14px; }
  .is-consent__actions { width: 100%; justify-content: flex-end; }
}

/* Footer legal / compliance row — matches existing footer typography
   (footer sits on light --neutral-50 surface, not dark). */
.site-footer__legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(34,54,87,0.08);
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-mid);
  text-align: center;
}
.site-footer__legal p { margin: 0; font-size: 13.5px; line-height: 1.7; }
.site-footer__legal > p:first-child { opacity: 0.7; }
.site-footer__legal a {
  font-size: 13.5px;
  color: var(--text-mid);
  opacity: 0.6;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.site-footer__legal a:hover { text-decoration: underline; text-underline-offset: 3px; color: var(--estate-blue); opacity: 1; }
.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 13.5px;
}
.site-footer__legal-links span { opacity: 0.45; color: var(--text-light); }
.site-footer__copyright { margin-top: 6px !important; opacity: 0.6 !important; }

/* Legal pages (privacy / terms / cookies placeholders) */
.legal-page { padding: 120px 0 96px; }
.legal-page .container { max-width: 760px; }
.legal-page .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.legal-page h1 { margin-bottom: 18px; }
.legal-page .lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.legal-page h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 32px 0 14px;
}
.legal-page h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--navy);
}
.legal-page ul { padding-left: 20px; margin: 0 0 24px; }
.legal-page li { margin: 6px 0; line-height: 1.65; }
.legal-page a:not(.btn) { color: var(--estate-blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a.btn,
.legal-page a.btn-primary,
.legal-page a.btn-primary:hover { text-decoration: none; color: #fff; }
.legal-page code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85em;
  background: color-mix(in oklab, var(--terracotta) 10%, var(--coconut-milk));
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--navy);
}
.cookie-table-wrap { overflow-x: auto; margin: 8px 0 28px; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--smoke-green) 30%, var(--coconut-milk));
  border-radius: 10px;
  overflow: hidden;
}
.cookie-table th,
.cookie-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid color-mix(in oklab, var(--smoke-green) 20%, var(--coconut-milk));
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table th {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--coconut-milk);
}
.cookie-table td code { background: color-mix(in oklab, var(--periwinkle) 12%, var(--coconut-milk)); }
