/* Growth Advisory design layer
 * The legacy theme styles remain available for secondary WordPress views.
 * This layer owns the redesigned advisory shell and front page. */

:root {
  /* --- Brand palette: unchanged --- */
  --brand-primary: #20392E;
  --brand-dark: #172A22;
  --accent-brass: #D0B37A;
  --accent-cream: #EFE7D6;
  --bg-primary: #F7F3EA;
  --bg-secondary: #DCE3DE;
  --sage: #8FA697;
  --text-primary: #1B2420;
  --text-secondary: #4C5B54;
  --white: #FFFFFF;

  /* --- Derived accents. The brass reads as this olive on light surfaces,
         where the brass itself does not hold enough contrast for text. --- */
  --accent-olive: #756037;
  --accent-brass-hover: #B89A5E;
  --link-hover: #5D765F;
  --focus-ring: #8D743F;

  /* --- Lines and surfaces --- */
  --line-light: rgba(32, 57, 46, 0.12);
  --line-strong: rgba(32, 57, 46, 0.2);
  --line-dark: rgba(247, 243, 234, 0.18);
  --line-dark-strong: rgba(247, 243, 234, 0.26);
  --gold-line: rgba(208, 179, 122, 0.34);
  --surface-card: #FFFFFF;
  --surface-raised: rgba(255, 255, 255, 0.5);
  --surface-inset: rgba(255, 255, 255, 0.36);
  --input-border: rgba(32, 57, 46, 0.26);
  --line-portrait: #AC9871;
  --text-on-dark-muted: rgba(247, 243, 234, 0.72);

  /* --- Shell --- */
  --advisory-max: 1280px;
  --advisory-gutter: clamp(20px, 4vw, 64px);
  --advisory-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-offset: 73px;
  --anchor-offset: 96px;

  /* --- Type: one display scale, one heading scale, four text sizes --- */
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --fs-display-1: clamp(2.125rem, 1.575rem + 2.35vw, 3.875rem);
  --fs-display-2: clamp(1.875rem, 1.435rem + 1.88vw, 3.25rem);
  --fs-display-3: clamp(1.75rem, 1.385rem + 1.56vw, 2.875rem);
  --fs-h2: clamp(1.625rem, 1.375rem + 1.07vw, 2.5rem);
  --fs-h2-sm: clamp(1.3125rem, 1.17rem + 0.6vw, 1.75rem);
  --fs-h3: clamp(1.1875rem, 1.115rem + 0.31vw, 1.5rem);
  --fs-h4: 1.125rem;
  --fs-lead: clamp(1.0625rem, 0.9rem + 0.5vw, 1.1875rem);
  --fs-body: 1rem;
  --fs-read: 1.125rem;
  --measure: 640px;
  --fs-body-sm: 0.9375rem;
  --fs-meta: 0.8125rem;
  --fs-kicker: 0.75rem;
  --fs-ui: 0.875rem;

  --lh-display: 1.06;
  --lh-heading: 1.16;
  --lh-h3: 1.26;
  --lh-lead: 1.5;
  --lh-body: 1.6;
  --lh-read: 1.75;

  --ls-display: -0.025em;
  --ls-heading: -0.02em;
  --ls-h3: -0.015em;
  --ls-kicker: 0.1em;

  /* --- Spacing: 4px base, with named rhythm steps --- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --section-y: clamp(72px, 6.5vw, 108px);
  --section-y-sm: clamp(56px, 5vw, 80px);
  --hero-y: clamp(64px, 6vw, 96px);
  --head-gap: clamp(40px, 5vw, 64px);
  --card-pad: 28px;
  --card-pad-sm: 22px;
  --gap-grid: 20px;

  /* --- Radius: four steps, used by component type --- */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 12px;
  --advisory-radius: 12px;

  /* --- Control heights --- */
  --ctl-h: 48px;
  --ctl-h-sm: 40px;
  --ctl-h-xs: 36px;

  /* --- Depth and motion: restrained by default --- */
  --shadow-sm: 0 1px 2px rgba(23, 42, 34, 0.05);
  --shadow-md: 0 12px 28px rgba(23, 42, 34, 0.07);
  --shadow-lg: 0 16px 40px rgba(23, 42, 34, 0.12);
  --t-fast: 140ms;
  --t: 180ms;
  --t-slow: 240ms;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video { max-width: 100%; }

body.home { overflow-x: hidden; }
body.home .site-header { background-image: none; }

.advisory-container {
  width: min(var(--advisory-max), calc(100% - (var(--advisory-gutter) * 2)));
  margin: 0 auto;
}

:where(.advisory-home) h1,
:where(.advisory-home) h2,
:where(.advisory-home) h3,
:where(.advisory-home) p { margin-top: 0; }

.advisory-home h1,
.advisory-home h2,
.advisory-home h3 {
  font-family: var(--font-sans);
  font-weight: 500;
}

:where(.advisory-home) h1 {
  max-width: 760px;
  color: var(--bg-primary);
  font-size: var(--fs-display-1);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  text-wrap: balance;
}

:where(.advisory-home) h2 {
  max-width: 760px;
  color: var(--brand-primary);
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  text-wrap: balance;
}

:where(.advisory-home) h3 {
  color: var(--brand-primary);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-h3);
}

.advisory-kicker {
  margin-bottom: var(--sp-4);
  color: var(--text-secondary);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: var(--ls-kicker);
  line-height: 1.3;
  text-transform: uppercase;
}

.advisory-kicker--accent { color: var(--accent-brass); }

.advisory-section {
  padding: var(--section-y) 0; }

.advisory-section--cream { background: var(--accent-cream); }
.advisory-section--white { background: var(--white); }

.advisory-lead,
.advisory-section-head__note,
.advisory-insights__body p {
  color: var(--text-secondary);
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
}

.advisory-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--ctl-h);
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color var(--t) ease, border-color var(--t) ease, color var(--t) ease, transform var(--t) var(--advisory-ease);
  letter-spacing: 0.005em;
  text-align: center;
}

.advisory-button:hover { transform: translateY(-1px); }
.advisory-button:focus-visible,
.advisory-text-link:focus-visible,
.advisory-brand:focus-visible,
.advisory-nav a:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }

.advisory-button--accent { background: var(--accent-brass); color: var(--brand-primary); }
.advisory-button--accent:hover { background: var(--accent-brass-hover); color: var(--brand-primary); }
.advisory-button--outline-light { border-color: var(--line-dark-strong); color: var(--bg-primary); }
.advisory-button--outline-light:hover { border-color: var(--bg-primary); color: var(--bg-primary); }

/* Header */
.advisory-site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  padding: 24px 0;
  font-family: var(--font-sans);
}

.advisory-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  width: min(var(--advisory-max), calc(100% - (var(--advisory-gutter) * 2)));
  margin: 0 auto;
}

.advisory-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--bg-primary);
  text-decoration: none;
}

.advisory-brand__mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.advisory-brand__mark span { display: block; width: 3px; background: currentColor; border-radius: 2px; }
.advisory-brand__mark span:nth-child(1) { height: 8px; opacity: 0.64; }
.advisory-brand__mark span:nth-child(2) { height: 14px; opacity: 0.82; }
.advisory-brand__mark span:nth-child(3) { height: 20px; }

.advisory-brand__name { display: inline-flex; flex-direction: column; font-size: var(--fs-ui); font-weight: 600; letter-spacing: -0.025em; line-height: 1.02; }
.advisory-brand__image { display: block; width: 40px; height: 40px; border-radius: var(--r-sm); object-fit: contain; }
.advisory-brand__wordmark { display: block; width: min(230px, 100%); height: auto; border-radius: var(--r-sm); object-fit: contain; }

.advisory-header-menu { display: flex; align-items: center; justify-content: flex-end; gap: clamp(24px, 3vw, 48px); flex: 1 1 auto; }
.advisory-nav { display: block; }
.advisory-nav .nav-menu { display: flex; align-items: center; gap: clamp(20px, 1.8vw, 28px); margin: 0; padding: 0; list-style: none; }
.advisory-nav .nav-menu li { margin: 0; padding: 0; }
.advisory-nav a { display: inline-block; padding: 6px 0; color: var(--text-on-dark-muted); font-size: var(--fs-ui); font-weight: 500; text-decoration: none; transition: color var(--t) ease; }
.advisory-nav a:hover,
.advisory-nav a.active { color: var(--bg-primary); }
.advisory-header-actions { display: flex; align-items: center; gap: 10px; }
.advisory-header-cta { min-height: var(--ctl-h-sm); padding: 10px 16px; font-size: var(--fs-ui); }
.advisory-menu-toggle { display: none; }

body.compact-header .advisory-brand,
body:not(.home) .advisory-brand { color: var(--brand-primary); }
body.compact-header .advisory-nav a,
body:not(.home) .advisory-nav a { color: var(--text-secondary); }
body.compact-header .advisory-nav a:hover,
body.compact-header .advisory-nav a.active,
body:not(.home) .advisory-nav a:hover,
body:not(.home) .advisory-nav a.active { color: var(--brand-primary); }

/* Hero */
.advisory-hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: var(--hero-y) 0;
  background-color: var(--brand-primary);
  color: var(--bg-primary);
}

.advisory-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 0, transparent calc(50% - 0.5px), rgba(247, 243, 234, 0.07) 50%, transparent calc(50% + 0.5px)), linear-gradient(rgba(247, 243, 234, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 160px;
  content: '';
  pointer-events: none;
}

.advisory-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr); align-items: center; gap: clamp(48px, 9vw, 140px); }
.advisory-hero__lead { max-width: 650px; margin: var(--sp-6) 0 0; color: var(--bg-secondary); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.advisory-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-8); }
/* Intro and problem areas */
.advisory-intro { background: var(--bg-primary); }
.advisory-intro__grid { display: grid; grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1.56fr); gap: clamp(42px, 9vw, 140px); align-items: start; }
.advisory-intro h2 { max-width: 820px; }
.advisory-intro .advisory-lead { max-width: 680px; margin: var(--sp-7) 0 0; }
.advisory-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line-light); }
.advisory-principle { min-height: 130px; padding: var(--sp-6) var(--sp-7) 0 0; border-right: 1px solid var(--line-light); }
.advisory-principle + .advisory-principle { padding-left: var(--sp-7); }
.advisory-principle:last-child { border-right: 0; }
.advisory-principle p { max-width: 280px; margin: 0; color: var(--text-secondary); font-size: var(--fs-body); line-height: var(--lh-body); }

.advisory-section-head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr); gap: clamp(32px, 4vw, 54px); align-items: end; margin-bottom: var(--head-gap); }
.advisory-section-head h2 { max-width: 700px; margin: 0; }
.advisory-section-head__note { max-width: 360px; margin: 0 0 5px; }
.advisory-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.advisory-service-card { display: flex; min-height: auto; flex-direction: column; padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--white); transition: background-color var(--t) ease, transform var(--t) var(--advisory-ease); }
.advisory-service-card:hover { position: relative; z-index: 1; background: var(--bg-primary); transform: translateY(-3px); }
.advisory-service-card h3 { margin-bottom: var(--sp-3); }
.advisory-service-card p { max-width: 320px; margin: 0; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.advisory-service-card a,
.advisory-text-link { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--brand-primary); font-size: var(--fs-ui); font-weight: 600; text-decoration: none; transition: color var(--t) ease; }
.advisory-service-card a:hover,
.advisory-text-link:hover { color: var(--link-hover); }

/* People: a compact bridge between the problem areas and the working approach. */
.advisory-people { background: var(--bg-primary); }
.advisory-people__head { margin-bottom: 22px; }
.advisory-people__disclaimer { max-width: 760px; margin: 0 0 clamp(28px, 3.5vw, 44px); color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.advisory-people-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.advisory-person-card { display: flex; min-width: 0; flex-direction: column; padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--white); }
.advisory-person-card__identity { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 18px; align-items: center; }
.advisory-person-card__portrait { display: block; width: 72px; height: 72px; border: 1px solid var(--line-portrait); border-radius: 50%; object-fit: cover; object-position: center; }
.advisory-person-card__role { margin: 0 0 var(--sp-2); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); line-height: 1.3; text-transform: uppercase; }
.advisory-person-card h3 { margin: 0; font-size: var(--fs-h3); }
.advisory-person-card h3 a { color: var(--brand-primary); text-decoration: none; }
.advisory-person-card h3 a:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 5px; }
.advisory-person-card__copy { margin-top: 24px; }
.advisory-person-card__copy p { margin: 0 0 17px; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.advisory-person-card__copy p:last-child { margin-bottom: 0; }
.advisory-person-card__copy span { display: block; margin-bottom: 6px; color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); line-height: 1.3; text-transform: uppercase; }
.advisory-person-card__links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: auto; padding-top: var(--sp-6); border-top: 1px solid var(--line-light); }
.advisory-person-card__links a { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; padding: 8px 0; color: var(--brand-primary); font-size: var(--fs-ui); font-weight: 600; text-decoration: none; }
.advisory-person-card__links a:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 5px; }
@media (max-width: 700px) {
  .advisory-people-grid { grid-template-columns: 1fr; }
}

/* Approach */
.advisory-approach { background: var(--bg-secondary); }
.advisory-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-strong); }
.advisory-process-step { min-height: 240px; padding: var(--sp-6) var(--sp-7) 0 0; border-right: 1px solid var(--line-strong); }
.advisory-process-step + .advisory-process-step { padding-left: var(--sp-7); }
.advisory-process-step:last-child { border-right: 0; }
.advisory-process-step > span { display: block; margin-bottom: var(--sp-7); color: var(--accent-brass); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); }
.advisory-process-step h3 { margin-bottom: var(--sp-3); }
.advisory-process-step p { max-width: 240px; margin: 0; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }

/* Results */
.advisory-results { background: var(--brand-primary); color: var(--bg-primary); }
.advisory-results h2 { color: var(--bg-primary); }
.advisory-results .advisory-section-head__note { color: var(--bg-secondary); }
.advisory-results .advisory-kicker { color: var(--bg-secondary); }
.advisory-results .advisory-kicker--accent { color: var(--accent-brass); }
.advisory-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.advisory-proof-card { min-height: 210px; padding: var(--card-pad); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.advisory-proof-card__number { display: block; color: var(--accent-brass); font-size: clamp(3rem, 5.2vw, 4.5rem); font-weight: 500; letter-spacing: -0.045em; line-height: 0.9; }
.advisory-proof-card p { margin: var(--sp-5) 0 var(--sp-2); color: var(--bg-primary); font-size: var(--fs-body); line-height: var(--lh-body); }
.advisory-proof-card small { color: rgba(220, 227, 222, 0.66); font-size: var(--fs-meta); }
/* Insights and contact */
.advisory-insights h2 { max-width: 600px; }
.advisory-insights__body { max-width: 400px; }
.advisory-insights__body p { margin-bottom: 34px; }
.advisory-contact { background: var(--accent-cream); }
.advisory-contact__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: clamp(46px, 10vw, 150px); align-items: end; }
.advisory-contact h2 { max-width: 760px; margin: 0; }
.advisory-contact__action p { max-width: 360px; margin: 0 0 28px; color: var(--text-secondary); font-size: var(--fs-lead); line-height: var(--lh-lead); }

/* Footer */
.advisory-footer { padding: clamp(64px, 6vw, 88px) 0 var(--sp-7); background: var(--brand-dark); color: var(--bg-primary); }
.advisory-footer__top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(150px, 0.85fr)); gap: clamp(28px, 3vw, 44px); }
.advisory-brand--footer { color: var(--bg-primary); }
.advisory-footer__identity p { max-width: 300px; margin: var(--sp-5) 0 0; color: var(--sage); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.advisory-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-1); }
.advisory-footer__label { margin: 0 0 var(--sp-2); color: var(--accent-brass); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.advisory-footer a:not(.advisory-brand) { color: var(--bg-secondary); font-size: var(--fs-body-sm); text-decoration: none; transition: color var(--t) ease; display: inline-block; padding: 6px 0; }
.advisory-footer a:not(.advisory-brand):hover { color: var(--accent-brass); }
.advisory-footer__rule { height: 1px; margin: clamp(48px, 5vw, 64px) 0 var(--sp-5); background: var(--gold-line); }
.advisory-footer__bottom { display: flex; justify-content: space-between; gap: 20px; color: var(--sage); font-size: var(--fs-meta); }

/* Motion */
/* Reveal-on-scroll is intentionally not implemented in CSS: content stays
   visible on first paint whether or not the observer script runs. */

@media (max-width: 980px) {
  .advisory-hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .advisory-hero__visual { max-width: 650px; padding: var(--card-pad); }
  .advisory-service-grid { grid-template-columns: repeat(2, 1fr); }
  .advisory-process { grid-template-columns: repeat(2, 1fr); }
  .advisory-process-step:nth-child(2) { border-right: 0; }
  .advisory-process-step:nth-child(n+3) { border-top: 1px solid var(--line-strong); }
  .advisory-process-step:nth-child(3) { padding-left: 0; }
  .advisory-process-step:nth-child(4) { padding-left: 26px; }
  .advisory-footer__top { gap: clamp(28px, 4vw, 40px); grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .advisory-site-header { padding: 18px 0; }
  .advisory-header__inner { position: relative; }
  .advisory-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-left: auto; padding: 0; border: 1px solid var(--line-dark-strong); border-radius: 50%; background: transparent; color: var(--bg-primary); cursor: pointer; font: inherit; line-height: 1; transition: background var(--t-fast) ease, border-color var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) ease; }
  .advisory-menu-toggle .menu-icon,
  .advisory-menu-toggle .menu-icon::before,
  .advisory-menu-toggle .menu-icon::after { width: 18px; height: 1.5px; background: currentColor; }
  .advisory-menu-toggle .menu-icon::before,
  .advisory-menu-toggle .menu-icon::after { content: ''; position: absolute; }
  .advisory-menu-toggle .menu-icon { position: relative; }
  .advisory-menu-toggle .menu-icon::before { top: -6px; }
  .advisory-menu-toggle .menu-icon::after { bottom: -6px; }
  .advisory-menu-toggle:hover { transform: translateY(-1px); }
  body.menu-open .advisory-menu-toggle { background: var(--brand-primary); border-color: var(--brand-primary); color: var(--bg-primary); }
  body.menu-open .advisory-menu-toggle .menu-icon { background: transparent; }
  body.menu-open .advisory-menu-toggle .menu-icon::before { transform: translateY(6px) rotate(45deg); }
  body.menu-open .advisory-menu-toggle .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }
  body.compact-header .advisory-menu-toggle,
  body:not(.home) .advisory-menu-toggle { border-color: var(--line-light); color: var(--brand-primary); }
  .advisory-header-menu { position: absolute; top: calc(100% + 14px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: var(--sp-5); padding: var(--sp-6); border: 1px solid var(--line-light); border-radius: var(--r-lg); background: var(--bg-primary); box-shadow: var(--shadow-lg); }
  body.menu-open .advisory-header-menu { display: flex; }
  .advisory-nav .nav-menu { flex-direction: column; align-items: flex-start; gap: 16px; }
  .advisory-nav a,
  body.compact-header .advisory-nav a,
  body:not(.home) .advisory-nav a { color: var(--brand-primary); font-size: var(--fs-body); }
  .advisory-header-actions { width: 100%; }
  .advisory-header-cta { width: 100%; }
  .advisory-home h1 { max-width: 670px; }
}

@media (max-width: 700px) {
  .advisory-hero__visual { padding: var(--card-pad); }
  .advisory-intro__grid,
  .advisory-section-head,
  .advisory-contact__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .advisory-principles,
  .advisory-proof-grid { grid-template-columns: 1fr; }
  .advisory-principle,
  .advisory-principle + .advisory-principle { min-height: auto; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .advisory-principle:last-child { border-bottom: 0; }
  .advisory-service-grid { grid-template-columns: 1fr; }
  .advisory-service-card { min-height: auto; }
  .advisory-process { grid-template-columns: 1fr; }
  .advisory-process-step,
  .advisory-process-step + .advisory-process-step,
  .advisory-process-step:nth-child(3),
  .advisory-process-step:nth-child(4) { min-height: auto; padding: 22px 0 30px; border-right: 0; border-top: 1px solid var(--line-strong); }
  .advisory-process-step:first-child { border-top: 0; }
  .advisory-process-step > span { margin-bottom: var(--sp-7); }
  .advisory-proof-card { min-height: 190px; }
  .advisory-footer__top { grid-template-columns: 1fr 1fr; }
  .advisory-footer__identity { grid-column: 1 / -1; }
  .advisory-footer__rule { margin-top: 58px; }
  .advisory-footer__bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 460px) {
  .advisory-actions { flex-direction: column; align-items: stretch; margin-top: var(--sp-8); }
  .advisory-actions .advisory-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Advisory shell: explicit surfaces, readable first paint, and responsive controls. */
body.home .site-header.advisory-site-header,
body.compact-header .site-header.advisory-site-header,
body:not(.home) .site-header.advisory-site-header {
  position: sticky;
  top: 0;
  padding: 16px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: none;
}
body.admin-bar .site-header.advisory-site-header { top: 32px; }
.advisory-site-header .advisory-brand,
.advisory-site-header .advisory-nav a { color: var(--brand-primary); }
.advisory-site-header .advisory-nav a { color: var(--text-secondary); }
.advisory-site-header .advisory-nav a:hover { color: var(--brand-primary); }
.advisory-site-header .advisory-nav a.active,
.advisory-site-header .advisory-nav li.current-menu-item > a,
.advisory-site-header .advisory-nav li.current_page_item > a,
.advisory-site-header .advisory-nav a[aria-current="page"] {
  color: var(--brand-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.advisory-site-header .advisory-header-menu { justify-content: flex-end; }
.advisory-nav a { min-height: var(--ctl-h-sm); display: inline-flex; align-items: center; }
.advisory-home section[id] { scroll-margin-top: var(--anchor-offset); }
.advisory-home h1, .advisory-home h2, .advisory-home h3 { overflow-wrap: break-word; }
.advisory-hero__grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr); gap: clamp(32px, 5vw, 72px); }
.advisory-actions { margin-top: 28px; }
.advisory-hero__visual { min-height: auto; }
.advisory-process-step > span,
.advisory-approach .advisory-kicker, .advisory-contact .advisory-kicker { color: var(--accent-olive); }
.advisory-proof-card h3 { color: var(--accent-brass); }
.advisory-proof-card p { color: var(--bg-secondary); font-size: var(--fs-body); line-height: var(--lh-body); margin: var(--sp-5) 0 0; }
.advisory-process-step > span { margin-bottom: 32px; }
.advisory-service-card a { min-height: var(--ctl-h-sm); padding-top: var(--sp-6); margin-top: auto; }
.advisory-footer a:not(.advisory-brand) { display: inline-block; }
.advisory-home a:focus-visible, .advisory-site-header a:focus-visible,
.advisory-site-header button:focus-visible, .advisory-footer a:focus-visible {
  outline: 2px solid var(--focus-ring); outline-offset: 3px; }
.advisory-hero a:focus-visible, .advisory-footer a:focus-visible { outline-color: var(--accent-brass); }
.advisory-skip-link { position: fixed; top: 8px; left: 16px; z-index: 100001; padding: 12px 20px; background: var(--brand-primary); color: white; transform: translateY(-180%); border-radius: var(--r-md); }
.advisory-skip-link:focus { transform: none; color: white; }
@media (max-width: 1100px) {
  .advisory-header__inner { gap: 20px; }
  .advisory-header-menu { gap: 22px; }
  .advisory-nav .nav-menu { gap: 18px; }
}
@media (max-width: 980px) {
  .advisory-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .advisory-hero__visual { max-width: 650px; width: 100%; }
}
@media (max-width: 900px) {
  .advisory-site-header .advisory-menu-toggle { color: var(--brand-primary); border-color: var(--line-light); }
  body.menu-open .advisory-site-header .advisory-menu-toggle { color: var(--bg-primary); }
  .advisory-site-header .advisory-header-menu { display: none; max-height: calc(100dvh - 96px); overflow-y: auto; }
  body.menu-open .advisory-site-header .advisory-header-menu { display: flex; }
  .advisory-site-header .advisory-nav, .advisory-site-header .advisory-nav .nav-menu { display: flex; width: 100%; }
  .advisory-site-header .advisory-nav .nav-menu { gap: 4px; }
  .advisory-nav li, .advisory-nav a { width: 100%; }
}
@media (max-width: 782px) { body.admin-bar .site-header.advisory-site-header { top: 46px; } }
@media (max-width: 700px) {
  .advisory-hero { padding: clamp(48px, 9vw, 64px) 0 var(--section-y-sm); }
  .advisory-hero__visual { min-height: 0; }
  .advisory-section-head { margin-bottom: var(--sp-8); }
  .advisory-proof-card { min-height: auto; }
  .advisory-footer__top { gap: 28px; }
}
@media (max-width: 460px) {
  .advisory-footer__top { grid-template-columns: 1fr; }
}
.advisory-home .advisory-hero__lead { margin-top: var(--sp-6); }

/* WordPress-powered GrowthTune insights archive */
.growth-blog-count { margin: 0; color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap-grid); }
.growth-blog-card { min-width: 0; border: 1px solid var(--line-light); background: var(--white); transition: border-color var(--t) ease, box-shadow var(--t) ease, transform var(--t) var(--advisory-ease); }
.growth-blog-card:hover { position: relative; z-index: 1; border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.growth-blog-card__link { color: inherit; text-decoration: none; }
.growth-blog-card__body { display: flex; height: 100%; flex-direction: column; padding: var(--card-pad); }
.growth-blog-card__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 14px; margin-bottom: var(--sp-5); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: 0.07em; line-height: 1.3; text-transform: uppercase; }
.growth-blog-card__meta time { color: var(--text-secondary); font-weight: 500; letter-spacing: .02em; text-transform: none; }
.growth-blog-card h3 { margin: 0 0 var(--sp-3); font-size: var(--fs-h3); line-height: var(--lh-h3); }
.growth-blog-card__body > p { margin: 0; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-blog-card__read { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: auto; padding-top: var(--sp-6); color: var(--brand-primary); font-size: var(--fs-ui); font-weight: 600; }
.growth-blog-card__read span { color: var(--accent-olive); font-size: var(--fs-body); transition: transform var(--t) var(--advisory-ease); }
.growth-blog-card:hover .growth-blog-card__read span { transform: translate(2px, -2px); }
.growth-blog-pagination-wrap { display: flex; align-items: center; justify-content: space-between; gap: 26px; margin-top: clamp(42px, 6vw, 70px); padding-top: 24px; border-top: 1px solid var(--line-light); }
.growth-blog-pagination-summary { margin: 0; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-blog-pagination { flex: 0 0 auto; }
.growth-blog-pagination ul { display: flex; align-items: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.growth-blog-pagination li { margin: 0; }
.growth-blog-pagination a,
.growth-blog-pagination span { display: inline-flex; min-width: var(--ctl-h-sm); min-height: var(--ctl-h-sm); align-items: center; justify-content: center; padding: 8px 12px; border: 1px solid var(--line-light); color: var(--brand-primary); font-size: var(--fs-ui); font-weight: 600; text-decoration: none; border-radius: var(--r-sm); transition: background-color var(--t) ease, border-color var(--t) ease, color var(--t) ease; }
.growth-blog-pagination a:hover,
.growth-blog-pagination a:focus-visible { border-color: var(--brand-primary); background: var(--brand-primary); color: var(--bg-primary); }
.growth-blog-pagination span.current { border-color: var(--brand-primary); background: var(--brand-primary); color: var(--bg-primary); }
.growth-blog-pagination .prev,
.growth-blog-pagination .next { padding-right: 14px; padding-left: 14px; }
.growth-blog-empty { padding: var(--section-y-sm) 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.growth-blog-empty .advisory-kicker { margin-bottom: 18px; }
.growth-blog-empty h2 { margin-bottom: 16px; }
.growth-blog-empty p:last-of-type { max-width: 530px; margin: 0; font-size: var(--fs-lead); line-height: var(--lh-lead); }

@media (max-width: 980px) {
  .growth-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .growth-blog-grid { grid-template-columns: 1fr; }
  .growth-blog-pagination-wrap { align-items: flex-start; flex-direction: column; }
  .growth-blog-pagination { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .growth-blog-pagination ul { width: max-content; }
}

/* GrowthTune interior pages */

/* GrowthTune article archive pagination and single-article presentation. */
.growth-blog-card__author { margin-top: var(--sp-3); color: var(--text-secondary); font-size: var(--fs-meta); }
.growth-blog-pagination-wrap { align-items: flex-start; }
.growth-blog-pagination__inner { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.growth-blog-pagination__pages { display: flex; align-items: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.growth-blog-pagination__pages li { margin: 0; }
.growth-blog-pagination__control,
.growth-blog-pagination__page { display: inline-flex; min-width: var(--ctl-h-sm); min-height: var(--ctl-h-sm); align-items: center; justify-content: center; padding: 8px 12px; border: 1px solid var(--line-light); color: var(--brand-primary); font-size: var(--fs-ui); font-weight: 600; text-decoration: none; border-radius: var(--r-sm); transition: background-color var(--t) ease, border-color var(--t) ease, color var(--t) ease; }
.growth-blog-pagination__control:hover,
.growth-blog-pagination__control:focus-visible,
.growth-blog-pagination__page:hover,
.growth-blog-pagination__page:focus-visible { border-color: var(--brand-primary); background: var(--brand-primary); color: var(--bg-primary); }
.growth-blog-pagination__control.is-disabled { border-color: var(--line-light); color: rgba(32, 57, 46, 0.4); cursor: default; }
.growth-blog-pagination__page.is-current { border-color: var(--brand-primary); background: var(--brand-primary); color: var(--bg-primary); }
.growth-article-hero { padding: var(--section-y) 0 var(--section-y-sm); background: var(--brand-primary); color: var(--bg-primary); --advisory-max: 800px; }
.growth-article-breadcrumb { margin-bottom: clamp(28px, 4vw, 48px); }
.growth-article-breadcrumb ol { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; margin: 0; padding: 0; list-style: none; color: var(--text-on-dark-muted); font-size: var(--fs-meta); }
.growth-article-breadcrumb li { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--text-on-dark-muted); }
.growth-article-breadcrumb li:not(:last-child)::after { color: var(--accent-brass); content: '/'; }
.growth-article-breadcrumb a { color: var(--bg-primary); text-decoration: none; transition: color var(--t) ease; }
.growth-article-breadcrumb a:hover { color: var(--accent-brass); text-decoration: underline; text-underline-offset: 4px; }
.growth-article-hero h1 { max-width: 100%; margin: 0; color: var(--bg-primary); font-size: var(--fs-display-3); line-height: 1.1; text-wrap: balance; letter-spacing: var(--ls-display); }
.growth-article-hero__excerpt { max-width: 720px; margin: var(--sp-6) 0 0; color: var(--bg-secondary); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-article-meta { display: flex; align-items: center; gap: var(--sp-3) var(--sp-6); flex-wrap: wrap; margin-top: var(--sp-7); color: var(--text-on-dark-muted); font-size: var(--fs-meta); }
.growth-article-meta span + span { padding-left: var(--sp-6); border-left: 1px solid var(--line-dark-strong); }
.growth-article-section { padding-top: var(--section-y); }
.growth-article-content-shell { max-width: 800px; margin: 0 auto; }
.growth-article-content { max-width: var(--measure); margin-left: auto; margin-right: auto; }
.growth-article-content > * { max-width: 100%; }
.growth-article-content > * + * { margin-top: var(--sp-7); }
.growth-article-content h2 { margin-top: clamp(40px, 4vw, 56px); color: var(--brand-primary); font-size: var(--fs-h2-sm); line-height: var(--lh-heading); letter-spacing: var(--ls-heading); margin-bottom: 0; text-wrap: balance; }
.growth-article-content p { margin-bottom: 0; font-size: var(--fs-read); line-height: var(--lh-read); }
.growth-article-content a { color: var(--brand-primary); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--t) ease; }
.growth-article-content a:hover { color: var(--link-hover); }
.growth-article-updated { margin: var(--sp-8) 0 0; color: var(--text-secondary); font-size: var(--fs-meta); }
.growth-article-next-step { display: grid; grid-template-columns: minmax(0, .9fr) minmax(240px, 1.1fr); gap: var(--sp-7); align-items: end; margin-top: clamp(44px, 5vw, 64px); padding: var(--card-pad); border: 1px solid var(--line-light); border-left: 3px solid var(--accent-brass); background: var(--surface-raised); }
.growth-article-next-step .advisory-kicker { margin-bottom: 16px; }
.growth-article-next-step h2 { margin: 0; color: var(--brand-primary); font-size: var(--fs-h2-sm); line-height: var(--lh-heading); }
.growth-article-next-step p { margin: 0 0 var(--sp-5); color: var(--text-secondary); line-height: var(--lh-body); }
.growth-article-next-step .advisory-button { margin-top: 0; }
.growth-article-authors { margin-top: clamp(56px, 7vw, 88px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line-light); }
.growth-article-section-heading { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-7); }
.growth-article-section-heading .advisory-kicker { margin: 0; }
.growth-article-section-heading h2 { margin: 0; color: var(--brand-primary); font-size: var(--fs-h2); line-height: var(--lh-heading); letter-spacing: var(--ls-heading); }
.growth-article-section-heading > p:last-child { max-width: 620px; margin: 0; color: var(--text-secondary); font-size: var(--fs-body); line-height: var(--lh-body); }
.growth-article-author-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gap-grid); }
.growth-article-author { display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 18px; padding: var(--card-pad); border: 1px solid var(--line-light); background: var(--surface-raised); }
.growth-article-author img { width: 86px; height: 86px; border: 1px solid var(--line-portrait); border-radius: 50%; object-fit: cover; }
.growth-article-author__role { margin: 0 0 var(--sp-2); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); line-height: 1.3; text-transform: uppercase; }
.growth-article-author h3 { margin: 0 0 var(--sp-2); color: var(--brand-primary); font-size: var(--fs-h3); line-height: var(--lh-h3); }
.growth-article-author p:not(.growth-article-author__role) { margin: 0 0 12px; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-article-author__links { display: flex; gap: 8px 16px; flex-wrap: wrap; }
.growth-article-author__links a { color: var(--brand-primary); font-size: var(--fs-ui); font-weight: 600; text-decoration: none; }
.growth-article-author__links a:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 4px; }
.growth-article-author__note { margin: 22px 0 0; color: var(--text-secondary); font-size: var(--fs-meta); line-height: var(--lh-body); }
.growth-article-related { padding-top: var(--section-y); }
.growth-article-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap-grid); }
.growth-article-related-card { display: flex; min-width: 0; flex-direction: column; padding: var(--card-pad); border: 1px solid var(--line-light); background: var(--surface-raised); }
.growth-article-related-card__meta { display: flex; gap: 10px 14px; justify-content: space-between; flex-wrap: wrap; margin-bottom: var(--sp-5); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: 0.07em; line-height: 1.3; text-transform: uppercase; }
.growth-article-related-card__meta time { color: var(--text-secondary); font-weight: 500; letter-spacing: .02em; text-transform: none; }
.growth-article-related-card h3 { margin: 0 0 var(--sp-3); color: var(--brand-primary); font-size: var(--fs-h3); line-height: var(--lh-h3); }
.growth-article-related-card h3 a { color: inherit; text-decoration: none; }
.growth-article-related-card h3 a:hover { color: var(--link-hover); }
.growth-article-related-card p { margin: 0; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-article-related-card .advisory-text-link { margin-top: auto; padding-top: var(--sp-6); }
.growth-page--insights-article a:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }
@media (max-width: 980px) {
  .growth-article-author-grid,
  .growth-article-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .growth-blog-pagination-wrap { align-items: stretch; }
  .growth-blog-pagination { width: 100%; overflow: visible; padding-bottom: 0; }
  .growth-blog-pagination__inner { justify-content: space-between; gap: 10px; }
  .growth-blog-pagination__pages { order: 3; width: 100%; justify-content: center; }
  .growth-blog-pagination__control { flex: 1 1 auto; }
  .growth-article-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .growth-article-meta span + span { padding-left: 0; border-left: 0; }
  .growth-article-next-step { grid-template-columns: 1fr; padding: 22px; }
  .growth-article-author { grid-template-columns: 64px minmax(0, 1fr); gap: 14px; padding: 18px; }
  .growth-article-author img { width: 64px; height: 64px; }
}

.growth-page { min-height: 60vh; background: var(--bg-primary); }
:where(.growth-page) h1,
:where(.growth-page) h2,
:where(.growth-page) h3,
:where(.growth-page) p { margin-top: 0; }
.growth-page h1,
.growth-page h2,
.growth-page h3,
.growth-legal-hero h1,
.growth-thank-you h1 { font-family: var(--font-sans); font-weight: 500; }
:where(.growth-page) h2 { color: var(--brand-primary); font-size: var(--fs-h2); line-height: var(--lh-heading); letter-spacing: var(--ls-heading); text-wrap: balance; }
:where(.growth-page) h3 { color: var(--brand-primary); font-size: var(--fs-h3); line-height: var(--lh-h3); letter-spacing: var(--ls-h3); }
:where(.growth-page) p,
:where(.growth-page) li { color: var(--text-secondary); }
.growth-page-hero { position: relative; overflow: hidden; padding: var(--section-y-sm) 0; background: var(--brand-primary); color: var(--bg-primary); }
.growth-page-hero::before { position: absolute; inset: 0; background-image: linear-gradient(90deg, transparent 0, transparent calc(66% - .5px), rgba(247,243,234,.08) 66%, transparent calc(66% + .5px)), linear-gradient(rgba(247,243,234,.05) 1px, transparent 1px); background-size: 100% 100%, 100% 126px; content: ''; pointer-events: none; }
.growth-page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(44px, 9vw, 140px); align-items: end; }
.growth-page-hero h1 { max-width: 860px; margin: 0; color: var(--bg-primary); line-height: var(--lh-display); letter-spacing: var(--ls-display); text-wrap: balance; }
.growth-page-hero__lead { max-width: 690px; margin: var(--sp-6) 0 0; color: var(--bg-secondary); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-page-hero .advisory-actions { margin-top: var(--sp-8); }
.growth-section { padding: var(--section-y) 0; }
.growth-section--paper { background: var(--bg-primary); }
.growth-section--cream { background: var(--accent-cream); }
.growth-section--sage { background: var(--bg-secondary); }
.growth-section--ink { background: var(--brand-primary); }
.growth-section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: clamp(32px, 7vw, 100px); align-items: end; margin-bottom: var(--head-gap); }
.growth-section-heading h2 { max-width: 760px; margin: 0; }
.growth-section-heading > p { max-width: 380px; margin: 0 0 5px; font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-section-heading--light h2 { color: var(--bg-primary); }
.growth-section-heading--light > p { color: var(--bg-secondary); }
.growth-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr); gap: clamp(42px, 10vw, 150px); align-items: start; }
.growth-split--wide { grid-template-columns: minmax(0, .82fr) minmax(300px, 1.18fr); }
.growth-split h2 { max-width: 700px; margin: 0; }
.growth-copy-stack { max-width: 560px; }
.growth-copy-stack p { margin: 0 0 22px; font-size: var(--fs-body); line-height: var(--lh-body); }
.growth-copy-stack p:last-child { margin-bottom: 0; }
.growth-copy-stack .advisory-lead { font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-card-grid { display: grid; gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.growth-card-grid--four { grid-template-columns: repeat(4, 1fr); }
.growth-card { min-height: 220px; padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--surface-raised); }
.growth-card span,
.growth-service-list > article > span,
.growth-framework article > span,
.growth-proof-grid article > span { display: block; margin-bottom: var(--sp-7); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); }
.growth-card h3 { margin-bottom: var(--sp-3); }
.growth-card p { margin: 0; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.growth-principle-grid > div { min-height: 200px; padding: var(--sp-6) var(--sp-7) 0 0; border-right: 1px solid var(--line-dark); }
.growth-principle-grid > div + div { padding-left: var(--sp-7); }
.growth-principle-grid > div:last-child { border-right: 0; }
.growth-principle-grid strong { display: block; margin-bottom: var(--sp-8); color: var(--accent-brass); font-size: var(--fs-kicker); letter-spacing: var(--ls-kicker); }
.growth-principle-grid h3 { margin-bottom: var(--sp-3); color: var(--bg-primary); }
.growth-principle-grid p { max-width: 280px; margin: 0; color: var(--bg-secondary); line-height: var(--lh-body); }
.growth-story-band { display: grid; grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr); gap: clamp(42px, 10vw, 150px); align-items: start; }
.growth-story-band h2 { margin: 0; }
.growth-story-band > p { max-width: 560px; margin: 0; font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-page-cta { padding: var(--section-y) 0; background: var(--accent-cream); }
.growth-page-cta__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(46px, 10vw, 150px); align-items: end; }
.growth-page-cta h2 { max-width: 800px; margin: 0; }
.growth-page-cta__inner > div:last-child p { max-width: 380px; margin: 0 0 26px; color: var(--text-secondary); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-service-list { border-top: 1px solid var(--line-light); }
.growth-service-list > article { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 28px; padding: var(--sp-8) 0; border-bottom: 1px solid var(--line-light); }
.growth-service-list > article > span { margin: 4px 0 0; }
.growth-service-list h3 { margin: 0 0 var(--sp-3); }
.growth-service-list p { max-width: 650px; margin: 0 0 18px; font-size: var(--fs-body); line-height: var(--lh-body); }
.growth-service-list ul { display: flex; flex-wrap: wrap; gap: 8px 26px; margin: 0; padding: 0; list-style: none; }
.growth-service-list li { position: relative; padding-left: 16px; font-size: var(--fs-body-sm); }
.growth-service-list li::before { position: absolute; top: .7em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-brass); content: ''; }
.growth-problem-list { border-top: 1px solid var(--line-light); }
.growth-problem-list > article { padding: var(--sp-8) 0; border-bottom: 1px solid var(--line-light); }
.growth-problem-list h3 { margin: 0 0 20px; }
.growth-problem-list__tension { max-width: 760px; margin: 0; color: var(--brand-primary); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-problem-list__tension strong { display: block; margin-bottom: 7px; color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-problem-list__details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-light); }
.growth-problem-list__details div { min-width: 0; }
.growth-problem-list__details span { display: block; margin-bottom: 8px; color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); line-height: 1.3; text-transform: uppercase; }
.growth-problem-list__details p { margin: 0; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-goal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.growth-goal-grid article { min-height: auto; padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--surface-raised); }
.growth-goal-grid h3 { max-width: 440px; margin: 0 0 var(--sp-3); }
.growth-goal-grid p { max-width: 520px; margin: 0; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-scope-note { max-width: 900px; margin: var(--sp-7) 0 0; padding: var(--sp-4) var(--sp-5); border-left: 3px solid var(--accent-brass); background: var(--surface-inset); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-engagement-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.growth-engagement-grid article { display: flex; min-height: auto; flex-direction: column; padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--surface-raised); }
.growth-engagement-grid h3 { margin: 0 0 var(--sp-3); }
.growth-engagement-grid article > p { margin: 0; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-engagement-grid ul { display: grid; gap: 9px; margin: auto 0 0; padding: 20px 0 0; border-top: 1px solid var(--line-light); list-style: none; }
.growth-engagement-grid li { position: relative; padding-left: 16px; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-engagement-grid li::before { position: absolute; top: .65em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-brass); content: ''; }
.growth-framework { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.growth-framework article { min-height: 300px; padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--surface-raised); }
.growth-framework article h3 { margin-bottom: var(--sp-3); }
.growth-framework article p { min-height: 112px; margin: 0 0 24px; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-framework article div { display: grid; gap: 7px; padding-top: 18px; border-top: 1px solid var(--line-light); }
.growth-framework article strong { color: var(--brand-primary); font-size: var(--fs-kicker); letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-framework article em { color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-number-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.growth-number-list li { display: grid; grid-template-columns: minmax(110px, .4fr) 1fr; gap: 20px; padding: var(--sp-4) 0; border-bottom: 1px solid var(--line-light); }
.growth-number-list strong { color: var(--brand-primary); font-size: var(--fs-meta); letter-spacing: 0.06em; text-transform: uppercase; }
.growth-number-list span { color: var(--text-secondary); line-height: var(--lh-body); }
.growth-callout { max-width: 900px; }
.growth-callout h2 { margin: 0 0 22px; }
.growth-callout p:last-child { max-width: 620px; margin: 0; font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-callout--light h2 { color: var(--bg-primary); }
.growth-callout--light > p { color: var(--bg-secondary); }
.growth-callout--light p:last-child { color: var(--bg-secondary); }
.growth-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.growth-proof-grid article { min-height: 220px; padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.growth-proof-grid h3 { margin-bottom: var(--sp-3); }
.growth-proof-grid p { max-width: 280px; margin: 0; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-note { margin-top: var(--sp-7); padding: var(--sp-4) var(--sp-5); border-left: 3px solid var(--accent-brass); background: var(--surface-inset); font-size: var(--fs-body-sm); }
.growth-insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-grid); }
.growth-insight-card { display: flex; min-height: 280px; flex-direction: column; padding: var(--card-pad); border: 1px solid var(--line-light); background: var(--white); }
.growth-insight-card span { color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-insight-card h3 { margin: var(--sp-6) 0 var(--sp-3); }
.growth-insight-card p { margin: 0; font-size: var(--fs-body); line-height: var(--lh-body); }
.growth-insight-card a { display: inline-flex; gap: 9px; align-items: center; margin-top: auto; padding-top: var(--sp-6); color: var(--brand-primary); font-size: var(--fs-ui); font-weight: 600; text-decoration: none; }
.growth-insight-card a:hover { color: var(--link-hover); }
.growth-article-list .advisory-container { display: grid; gap: 1px; }
.growth-article { display: grid; grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr); column-gap: clamp(26px, 6vw, 90px); padding: clamp(34px, 5vw, 62px) 0; border-top: 1px solid var(--line-light); }
.growth-article__meta { color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); line-height: 1.3; text-transform: uppercase; }
.growth-article h2 { margin: 0 0 20px; }
.growth-article .advisory-lead { max-width: var(--measure); margin-bottom: 28px; }
.growth-article__body { max-width: var(--measure); }
.growth-article__body p { margin: 0 0 18px; font-size: var(--fs-read); line-height: var(--lh-read); }
.growth-article__body p:last-child { margin-bottom: 0; }
.growth-section-heading--results,
.growth-section-heading--insights { margin-bottom: var(--head-gap); }
.growth-split--results { align-items: start; }
.growth-insight-grid--archive { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.growth-insight-card--commercial { border-top: 3px solid var(--accent-olive); }
.growth-insight-card--economics { border-top: 3px solid var(--link-hover); }
.growth-insight-card--management { border-top: 3px solid #607a86; }
.growth-insight-card--focus { border-top: 3px solid #a86f4e; }
.growth-article-list--archive .growth-article { scroll-margin-top: var(--anchor-offset); }
.growth-article-list--archive .growth-article + .growth-article { padding-top: clamp(42px, 6vw, 78px); }
.growth-callout--light .advisory-text-link--light { display: inline-flex; margin-top: var(--sp-7); color: var(--bg-primary); }
.growth-callout--light .advisory-text-link--light:hover { color: var(--accent-brass); }
.growth-legal-hero { padding: var(--section-y) 0 var(--section-y-sm); background: var(--brand-primary); --advisory-max: 760px; }
.growth-legal-hero h1 { max-width: 100%; margin: 0; color: var(--bg-primary); font-size: var(--fs-display-2); line-height: var(--lh-display); letter-spacing: var(--ls-display); text-wrap: balance; }
.growth-legal-hero p:last-child { margin: var(--sp-6) 0 0; color: var(--bg-secondary); }
.growth-legal { max-width: var(--measure); margin-right: auto; margin-left: auto; }
.growth-legal > p:first-child { font-size: var(--fs-lead); line-height: var(--lh-lead); margin-top: 0; }
.growth-legal h2 { margin: clamp(36px, 4vw, 52px) 0 var(--sp-4); font-size: var(--fs-h2-sm); }
.growth-legal p { font-size: var(--fs-read); line-height: var(--lh-read); margin: var(--sp-6) 0 0; }
.growth-legal a { color: var(--brand-primary); font-weight: 600; }
.growth-thank-you { padding: var(--section-y) 0; background: var(--bg-primary); }
.growth-thank-you__inner { max-width: 900px; }
.growth-thank-you__mark { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: var(--sp-6); border: 1px solid var(--accent-brass); border-radius: 50%; color: var(--brand-primary); font-size: 1.25rem; }
.growth-thank-you h1 { max-width: 850px; margin: 0; color: var(--brand-primary); font-size: var(--fs-display-2); line-height: var(--lh-display); letter-spacing: var(--ls-display); text-wrap: balance; }
.growth-thank-you .advisory-lead { max-width: 680px; margin: var(--sp-6) 0 0; }
.growth-thank-you .advisory-text-link { margin-top: 0; padding-top: 0; }
.growth-faq { max-width: 900px; margin-right: auto; margin-left: auto; }
.growth-faq details { border-top: 1px solid var(--line-light); }
.growth-faq details:last-child { border-bottom: 1px solid var(--line-light); }
.growth-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: var(--sp-6) 0; color: var(--brand-primary); cursor: pointer; font-size: var(--fs-h4); font-weight: 600; list-style: none; transition: color var(--t) ease; }
.growth-faq summary::-webkit-details-marker { display: none; }
.growth-faq summary::after { color: var(--accent-brass); content: '+'; font-size: 1.375rem; font-weight: 400; }
.growth-faq details[open] summary::after { content: '−'; }
.growth-faq details p { max-width: var(--measure); margin: 0 0 var(--sp-6); font-size: var(--fs-read); line-height: var(--lh-read); }
.growth-page a:focus-visible,
.growth-page summary:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }

/* The legacy theme alternates section backgrounds on non-home pages. Keep that
   rule for the older CPAI views, but let the GrowthTune page system own its
   intentional surfaces and contrast. */
main.growth-page > section.growth-page-hero,
main.growth-page > section.growth-legal-hero,
main.growth-page > section.growth-section--ink { background: var(--brand-primary); }
main.growth-page > section.growth-section--paper { background: var(--bg-primary); }
main.growth-page > section.growth-section--cream,
main.growth-page > section.growth-page-cta { background: var(--accent-cream); }
main.growth-page > section.growth-section--sage { background: var(--bg-secondary); }
main.growth-page > section.growth-thank-you { background: var(--bg-primary); }

@media (max-width: 980px) {
  .growth-page-hero__grid,
  .growth-section-heading,
  .growth-split,
  .growth-split--wide,
  .growth-story-band,
  .growth-page-cta__inner { grid-template-columns: 1fr; gap: 30px; }
  .growth-card-grid--four,
  .growth-framework,
  .growth-insight-grid--archive { grid-template-columns: repeat(2, 1fr); }
  .growth-principle-grid { grid-template-columns: 1fr; }
  .growth-principle-grid > div,
  .growth-principle-grid > div + div { min-height: auto; padding: 22px 0 26px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .growth-principle-grid > div:last-child { border-bottom: 0; }
  .growth-principle-grid strong { margin-bottom: 24px; }
  .growth-problem-list__details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .growth-page-hero { padding: 60px 0 58px; }
  .growth-page-hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .growth-card-grid--four,
  .growth-framework,
  .growth-proof-grid,
  .growth-insight-grid,
  .growth-insight-grid--archive { grid-template-columns: 1fr; }
  .growth-card { min-height: auto; }
  .growth-service-list > article { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; }
  .growth-service-list ul { display: grid; gap: 8px; }
  .growth-framework article { min-height: auto; }
  .growth-framework article p { min-height: 0; }
  .growth-article { grid-template-columns: 1fr; gap: 18px; }
  .growth-article__meta { max-width: 260px; }
  .growth-number-list li { grid-template-columns: 1fr; gap: 5px; }
  .growth-problem-list__details,
  .growth-goal-grid,
  .growth-engagement-grid { grid-template-columns: 1fr; }
  .growth-problem-list__details { gap: 18px; }
  .growth-thank-you { padding: 82px 0; }
}
.advisory-session { background: var(--bg-primary); }
.advisory-session__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.advisory-session__qualifier { max-width: 620px; margin: 14px 0 0; padding: var(--sp-4) var(--sp-5); border-left: 3px solid var(--accent-brass); background: var(--bg-secondary); font-weight: 500; }
.advisory-session__response { margin: var(--sp-5) 0 0; color: var(--brand-primary); font-size: var(--fs-body); line-height: var(--lh-body); }
.advisory-session h1 { color: var(--brand-primary); font-size: var(--fs-display-2); margin-bottom: var(--sp-5); letter-spacing: var(--ls-display); line-height: var(--lh-display); text-wrap: balance; }
.advisory-session h2 { font-size: var(--fs-h2-sm); margin: var(--sp-8) 0 var(--sp-4); }
.advisory-session__steps { padding-left: var(--sp-6); color: var(--text-secondary); }
.advisory-session__steps li { margin-bottom: var(--sp-3); padding-left: var(--sp-1); margin-top: 0; }
.advisory-session__card { background: white; border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 40px); scroll-margin-top: var(--anchor-offset); }
.advisory-session__card h2 { margin-top: 0; }
.advisory-session__card form { display: flex; flex-direction: column; gap: var(--sp-3); }
.advisory-session__card label { color: var(--brand-primary); font-weight: 600; margin-top: var(--sp-3); font-size: var(--fs-body-sm); }
.advisory-session__card input, .advisory-session__card select, .advisory-session__card textarea { width: 100%; min-width: 0; min-height: var(--ctl-h); padding: 12px 14px; font: inherit; font-size: 16px; color: var(--text-primary); background: white; border: 1px solid var(--input-border); border-radius: var(--r-md); transition: border-color var(--t) ease, box-shadow var(--t) ease; }
.advisory-session__card textarea { resize: vertical; }
.advisory-session__card :is(input, select, textarea):focus-visible,
.advisory-session__card .gform_wrapper :is(input, select, textarea):focus,
.advisory-session__card .gform_wrapper :is(input, select, textarea):focus-visible {
  border-color: var(--brand-primary);
  outline: 2px solid rgba(117, 96, 55, 0.32);
  outline-offset: 1px;
}
.advisory-session__card button:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.advisory-session__help { font-size: var(--fs-body-sm); color: var(--text-secondary); margin-bottom: 4px; }
.advisory-session__card button { cursor: pointer; font: inherit; font-weight: 600; margin-top: 10px; }
.advisory-session__notice { padding: var(--sp-5); border-left: 4px solid var(--brand-primary); background: var(--bg-secondary); margin-bottom: 24px; }
.advisory-session__trap { display: none; }
.advisory-session__details { display: grid; gap: 8px; margin: 28px 0 0; padding: var(--sp-5) var(--sp-6); border: 1px solid var(--line-light); border-radius: var(--r-lg); background: var(--bg-secondary); }
.advisory-session__details p { margin: 0; color: var(--text-secondary); }
.advisory-session__details strong { color: var(--brand-primary); }
.advisory-session__card .gform_wrapper { margin: 0; }
.advisory-session__card .gform_wrapper form { display: block; }
.advisory-session__card .gform_wrapper .gform_fields { display: flex; flex-direction: column; gap: var(--sp-5); margin: 0; padding: 0; list-style: none; }
.advisory-session__card .gform_wrapper .gfield { min-width: 0; margin: 0; padding: 0; }
.advisory-session__card .gform_wrapper .gfield_label { display: block; margin: 0 0 var(--sp-2); color: var(--brand-primary); font-weight: 600; line-height: 1.3; font-size: var(--fs-body-sm); }
.advisory-session__card .gform_wrapper .gfield_required { color: var(--brand-primary); }
.advisory-session__card .gform_wrapper .gfield_description { margin: 0 0 var(--sp-2); color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.advisory-session__card .gform_wrapper input[type="text"], .advisory-session__card .gform_wrapper input[type="email"], .advisory-session__card .gform_wrapper input[type="tel"], .advisory-session__card .gform_wrapper input[type="url"], .advisory-session__card .gform_wrapper select, .advisory-session__card .gform_wrapper textarea { box-sizing: border-box; width: 100%; min-width: 0; min-height: var(--ctl-h); padding: 12px 14px; font: inherit; font-size: 16px; color: var(--text-primary); background: white; border: 1px solid var(--input-border); border-radius: var(--r-md); transition: border-color var(--t) ease, box-shadow var(--t) ease; }
.advisory-session__card .gform_wrapper .gsection { margin: var(--sp-7) 0 0; padding: var(--sp-6) 0 0; border-top: 1px solid var(--line-light); }
.advisory-session__card .gform_wrapper .gsection:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.advisory-session__card .gform_wrapper .gsection_title { margin: 0; color: var(--brand-primary); font-size: var(--fs-h4); line-height: 1.3; }
.advisory-session__card .gform_wrapper .gfield_radio { display: flex; flex-direction: column; gap: var(--sp-3); margin: 0; padding: 0; list-style: none; }
.advisory-session__card .gform_wrapper .gfield_radio li { display: flex; gap: var(--sp-3); align-items: flex-start; margin: 0; }
.advisory-session__card .gform_wrapper .gfield_radio input[type="radio"] { width: auto; min-height: auto; margin: 4px 0 0; padding: 0; }
.advisory-session__card .gform_wrapper .gfield_radio label { margin: 0; color: var(--text-primary); font-weight: 400; font-size: var(--fs-body-sm); }
.advisory-session__card .gform_wrapper textarea { min-height: 132px; resize: vertical; }
.advisory-session__card .gform_wrapper .gform_footer { margin: var(--sp-6) 0 0; padding: 0; }
.advisory-session__card .gform_wrapper input[type="submit"].button.gform_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  min-height: var(--ctl-h) !important;
  margin: 0 !important;
  padding: 12px 22px !important;
  border: 1px solid transparent !important;
  border-radius: var(--r-md) !important;
  background: var(--accent-brass) !important;
  color: var(--brand-primary) !important;
  cursor: pointer;
  font-family: inherit !important;
  font-size: var(--fs-body-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.005em !important;
  line-height: 1.2 !important;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms var(--advisory-ease);
}
.advisory-session__card .gform_wrapper input[type="submit"].button.gform_button:hover {
  background: var(--accent-brass-hover) !important;
  color: var(--brand-primary) !important;
  transform: translateY(-1px);
}
.advisory-session__card .gform_wrapper input[type="submit"].button.gform_button:focus-visible {
  outline: 2px solid var(--accent-brass) !important;
  outline-offset: 3px;
}
.advisory-session__card .gform_wrapper .gform_validation_errors, .advisory-session__card .gform_wrapper .gfield_validation_message { border-radius: var(--r-md); }
.advisory-session__card .gform_confirmation_wrapper { padding: 18px; border-left: 4px solid var(--brand-primary); background: var(--bg-secondary); color: var(--text-primary); line-height: var(--lh-body); }
@media (max-width: 800px) { .advisory-session__grid { grid-template-columns: 1fr; } }

/* About: personal narrative and attributed experience in the advisory palette. */
.growth-page--about .growth-about-hero { padding: var(--section-y) 0 var(--section-y-sm); }
.growth-about-hero__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(270px, .7fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.growth-page--about .growth-about-hero h1 { font-size: var(--fs-display-2); line-height: var(--lh-display); max-width: 790px; text-wrap: balance; }
.growth-page--about .growth-about-hero .growth-page-hero__lead { margin-top: var(--sp-6); font-size: var(--fs-lead); }
.growth-about-hero .advisory-button { margin-top: var(--sp-7); }
.growth-about-video { display: flex; align-items: center; justify-content: center; }
.growth-about-video video { width: 100%; border-radius: var(--advisory-radius); }
.growth-about-video__portraits { display: flex; gap: var(--sp-3); }
.growth-about-video__portraits img { width: 50%; aspect-ratio: 1; border-radius: var(--advisory-radius); object-fit: cover; border: 1px solid rgba(247,243,234,.5); }
.growth-about-portrait { display: block; flex: 0 0 auto; border-radius: 50%; object-fit: cover; object-position: center; }
.growth-page--about .advisory-kicker { color: var(--accent-olive); font-size: var(--fs-kicker); line-height: 1.3; }
.growth-page--about .growth-page-hero .advisory-kicker,
.growth-page--about .growth-section--ink .advisory-kicker { color: var(--accent-brass); }
.growth-page--about h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); text-wrap: balance; letter-spacing: var(--ls-heading); }
.growth-page--about .growth-section--ink h2 { color: var(--bg-primary); }
.growth-page--about .growth-section--ink .growth-copy-stack p { color: var(--bg-secondary); }
.growth-page--about .growth-section--ink .advisory-text-link { color: var(--accent-brass); }
.growth-page--about :is(section, article)[id] { scroll-margin-top: var(--anchor-offset); }
.growth-about-people-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 72px); }
.growth-about-person { display: block; min-width: 0; padding: clamp(30px, 4vw, 54px) 0; border-top: 1px solid var(--line-light); }
.growth-about-person__identity { align-self: start; }
.growth-about-portrait--detail { width: 148px; height: 148px; margin: 0 0 24px; border: 1px solid var(--line-portrait); }
.growth-about-person__identity h3 { font-size: var(--fs-h2-sm); line-height: var(--lh-heading); margin: 0; letter-spacing: var(--ls-heading); }
.growth-about-person__identity .advisory-kicker { margin-bottom: 12px; font-size: var(--fs-kicker); }
.growth-about-person__identity .advisory-text-link { padding-top: var(--sp-5); min-height: var(--ctl-h-sm); }
.growth-about-person__story { max-width: none; margin-top: var(--sp-7); }
.growth-about-person__story h4 { margin: 0 0 var(--sp-5); color: var(--brand-primary); font-family: inherit; font-size: var(--fs-h3); font-weight: 500; letter-spacing: var(--ls-h3); line-height: var(--lh-h3); }
.growth-about-person__story p { margin: 0 0 var(--sp-7); font-size: var(--fs-read); line-height: var(--lh-read); }
.growth-about-person__story .growth-about-education { padding-top: var(--sp-5); margin: var(--sp-7) 0 0; border-top: 1px solid var(--line-light); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-page--about .growth-about-attribution { margin: var(--sp-4) 0 0; padding: var(--sp-5) var(--sp-6); border-left: 3px solid var(--focus-ring); background: var(--surface-raised); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-page--about .growth-page-hero a:focus-visible,
.growth-page--about .growth-section--ink a:focus-visible { outline-color: var(--accent-brass); }
@media (max-width: 980px) {
  .growth-about-hero__grid { grid-template-columns: 1fr; }
  .growth-about-people-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .growth-about-person__story p { font-size: var(--fs-body); }
}

/* Shared recovery and search surfaces use the GrowthTune advisory language. */
.advisory-brand__image--footer { width: 42px; height: 52px; filter: brightness(0) invert(1); }
.advisory-brand--footer .advisory-brand__name { color: var(--bg-primary); }
.advisory-brand--footer .advisory-brand__name span { display: block; }

.growth-page--insights-article .growth-article-hero .advisory-kicker.advisory-kicker--accent { color: var(--accent-brass); }
.growth-page--insights-article .growth-article-hero .growth-article-hero__excerpt { color: var(--bg-secondary); }
.growth-page--insights-article .growth-article-hero .growth-article-breadcrumb ol,
.growth-page--insights-article .growth-article-hero .growth-article-breadcrumb li { color: var(--text-on-dark-muted); }
.growth-page--insights-article .growth-article-hero .growth-article-breadcrumb span[aria-current="page"] { color: var(--bg-primary); }

.growth-error-page { min-height: 60vh; }
.growth-error { padding: var(--section-y) 0; background: var(--brand-primary); color: var(--bg-primary); }
.growth-error__grid { display: grid; grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr); gap: clamp(42px, 10vw, 150px); align-items: center; }
.growth-error__index { display: grid; gap: var(--sp-5); min-height: 240px; padding: var(--sp-6) var(--sp-7) var(--sp-6) 0; border-right: 1px solid var(--line-dark-strong); }
.growth-error__index > span { color: var(--bg-secondary); font-size: var(--fs-kicker); letter-spacing: var(--ls-kicker); line-height: 1.3; text-transform: uppercase; }
.growth-error__index strong { align-self: center; color: var(--accent-brass); font-size: clamp(4.5rem, 9vw, 7.5rem); font-weight: 500; letter-spacing: -0.06em; line-height: .76; }
.growth-error__rule { width: min(190px, 100%); height: 1px; background: var(--gold-line); }
.growth-error__copy { max-width: 720px; }
.growth-error__copy h1 { max-width: 700px; margin: 0; color: var(--bg-primary); font-family: var(--font-sans); font-size: var(--fs-display-2); font-weight: 500; letter-spacing: var(--ls-display); line-height: var(--lh-display); text-wrap: balance; }
.growth-error__message { max-width: 600px; margin: var(--sp-6) 0 0; color: var(--bg-secondary); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-error__search { max-width: 620px; margin-top: 34px; }
.growth-error__search label { display: block; margin-bottom: 10px; color: var(--bg-primary); font-size: var(--fs-body-sm); font-weight: 600; }
.growth-error__search-row { display: flex; align-items: stretch; gap: 10px; }
.growth-error__search input { flex: 1 1 auto; min-width: 0; min-height: var(--ctl-h); padding: 12px 14px; border: 1px solid var(--line-dark-strong); border-radius: var(--r-md); background: rgba(247,243,234,.08); color: var(--bg-primary); font: inherit; }
.growth-error__search input::placeholder { color: var(--text-on-dark-muted); opacity: 1; }
.growth-error__search input:focus { border-color: var(--accent-brass); outline: 2px solid var(--accent-brass); outline-offset: 3px; }
.growth-error__search .advisory-button { flex: 0 0 auto; border: 0; cursor: pointer; min-height: var(--ctl-h); }
.growth-error__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 24px; margin-top: 26px; }
.growth-error__actions .advisory-text-link { color: var(--bg-primary); min-height: var(--ctl-h-sm); }
.growth-error__actions .advisory-text-link:hover { color: var(--accent-brass); }

.cpai-global-search { min-height: 60vh; background: var(--bg-primary); color: var(--text-primary); }
.cpai-global-search-hero { padding: var(--section-y) 0 var(--section-y-sm); background: var(--brand-primary); border-bottom: 0; color: var(--bg-primary); }
.cpai-global-search-hero-inner { gap: var(--sp-4); display: grid; }
.cpai-global-search-hero .advisory-kicker { margin: 0 0 4px; color: var(--accent-brass); }
.cpai-global-search h1 { max-width: 900px; color: var(--bg-primary); font-family: var(--font-sans); font-size: var(--fs-display-2); font-weight: 500; letter-spacing: var(--ls-display); line-height: var(--lh-display); text-wrap: balance; margin: 0; }
.cpai-global-search-count { color: var(--bg-secondary); font-weight: 500; margin: 0; font-size: var(--fs-lead); }
.cpai-global-search-form { width: min(680px, 100%); margin-top: var(--sp-4); display: flex; gap: var(--sp-3); }
.cpai-global-search-form input { min-height: var(--ctl-h); border: 1px solid var(--line-dark-strong); border-radius: var(--r-md); background: rgba(247, 243, 234, 0.08); color: var(--bg-primary); flex: 1 1 auto; min-width: 0; padding: 12px 14px; font: inherit; }
.cpai-global-search-form input::placeholder { color: var(--text-on-dark-muted); opacity: 1; }
.cpai-global-search-form input:focus { border-color: var(--accent-brass); outline: 2px solid var(--accent-brass); outline-offset: 3px; }
.cpai-global-search-form .advisory-button { min-height: var(--ctl-h); border: 0; cursor: pointer; }
.cpai-global-search-results { padding: var(--section-y-sm) 0; background: var(--bg-primary); }
.cpai-global-search-toolbar { gap: var(--sp-5); margin-bottom: 28px; display: grid; }
.cpai-global-search-active-count { color: var(--text-secondary); font-weight: 600; margin: 0; font-size: var(--fs-body-sm); }
.cpai-global-search-tabs { gap: 24px; padding: 0 0 12px; border-bottom: 1px solid var(--line-light); display: flex; min-width: 0; overflow-x: auto; flex-wrap: wrap; }
.cpai-global-search-tab { min-height: var(--ctl-h-sm); padding: 8px 0; border: 0; border-bottom: 2px solid transparent; border-radius: 0; background: transparent; color: var(--text-secondary); font-weight: 600; display: inline-flex; align-items: center; gap: var(--sp-2); flex: 0 0 auto; font-size: var(--fs-ui); line-height: 1.2; text-decoration: none; cursor: pointer; transition: border-color var(--t) ease, color var(--t) ease; }
.cpai-global-search-tab:hover,
.cpai-global-search-tab:focus-visible { border-color: var(--accent-brass); color: var(--brand-primary); }
.cpai-global-search-tab.is-active { border-color: var(--brand-primary); background: transparent; color: var(--brand-primary); }
.cpai-global-search-tab-count { background: rgba(32, 57, 46, 0.07); display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 20px; padding: 0 6px; border-radius: var(--r-xs); color: var(--text-secondary); font-size: var(--fs-kicker); font-weight: 600; line-height: 1; }
.cpai-global-search-list { max-width: 920px; gap: 0; display: grid; }
.cpai-global-search-card { padding: 26px 0; border: 0; border-top: 1px solid var(--line-light); border-radius: 0; background: transparent; box-shadow: none; min-width: 0; }
.cpai-global-search-card:last-child { border-bottom: 1px solid var(--line-light); }
.cpai-global-search-card-meta { color: var(--accent-olive); display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); margin-bottom: var(--sp-3); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); line-height: 1.3; text-transform: uppercase; }
.cpai-global-search-card h3 { font-family: var(--font-sans); font-size: var(--fs-h3); font-weight: 600; letter-spacing: -.025em; line-height: var(--lh-h3); margin: 0; }
.cpai-global-search-card h3 a { color: var(--brand-primary); text-decoration: none; transition: color var(--t) ease; }
.cpai-global-search-card h3 a:hover,
.cpai-global-search-card h3 a:focus-visible { color: var(--link-hover); }
.cpai-global-search-card p { color: var(--text-secondary); margin: var(--sp-3) 0 0; font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.cpai-global-search-empty { max-width: 680px; padding: var(--section-y-sm) 0; border: 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); border-radius: 0; background: transparent; box-shadow: none; }
.cpai-global-search-empty h2 { color: var(--brand-primary); font-family: var(--font-sans); font-size: var(--fs-h2); font-weight: 500; letter-spacing: var(--ls-heading); margin: 0; line-height: var(--lh-heading); }
.cpai-global-search-empty p { color: var(--text-secondary); }
.cpai-global-search-empty .advisory-button { margin-top: 6px; }

@media (max-width: 700px) {
  .growth-error__grid { grid-template-columns: 1fr; gap: 38px; }
  .growth-error__index { min-height: 0; padding: 0 0 28px; border-right: 0; border-bottom: 1px solid var(--line-dark-strong); }
  .growth-error__index strong { margin: 18px 0; }
  .growth-error__search-row { flex-direction: column; }
  .growth-error__search .advisory-button { width: 100%; }
  .growth-error__actions { align-items: stretch; flex-direction: column; }
  .growth-error__actions .advisory-button { width: 100%; }
  .growth-error__actions .advisory-text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .cpai-global-search-form { display: grid; }
  .cpai-global-search-form .advisory-button { width: 100%; }
}

/* --- GrowthTune copy/UX pass additions --- */

.advisory-hero__visual { padding: 32px; border: 1px solid var(--line-light); border-radius: var(--advisory-radius); background: var(--white); color: var(--text-primary); }
.advisory-hero__visual-label { margin: 0 0 16px; font-weight: 600; color: var(--text-secondary); }
.advisory-hero__signals { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.advisory-hero__signals li { position: relative; padding-left: 22px; font-size: var(--fs-body); line-height: var(--lh-body); border-top: 1px solid var(--line-light); padding-top: 14px; color: var(--text-primary); }
.advisory-hero__signals li:first-child { border-top: 0; padding-top: 0; }
.advisory-hero__signals li::before { content: "\2014"; position: absolute; left: 0; color: var(--accent-olive); }

.advisory-people__stats-label { margin: 18px 0 12px; font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; color: var(--text-secondary); }
.advisory-people__stats { list-style: none; margin: 0 0 14px; padding: var(--sp-6) 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.advisory-people__stats li { display: flex; flex-direction: column; gap: 2px; }
.advisory-people__stats strong { font-size: 1.125rem; color: var(--brand-primary); }
.advisory-people__stats span { font-size: var(--fs-meta); color: var(--text-secondary); }
.advisory-people__stats-caveat { margin: 0 0 28px; font-size: var(--fs-body-sm); color: var(--text-secondary); font-style: italic; line-height: var(--lh-body); }
@media (max-width: 700px) { .advisory-people__stats { grid-template-columns: repeat(2, 1fr); } }

.advisory-services__cta { margin-top: 32px; text-align: center; }

.advisory-insights__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-grid); margin: 24px 0; }
.advisory-insight-card h3 { margin: 0 0 var(--sp-2); font-size: var(--fs-h4); }
.advisory-insight-card p { margin: 0; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
@media (max-width: 900px) { .advisory-insights__list { grid-template-columns: 1fr; } }

.growth-page-hero--single .growth-page-hero__grid { grid-template-columns: 1fr; }
.growth-page-hero--single .growth-page-hero__copy { max-width: 760px; }
.growth-page-hero--single h1 { max-width: 760px; font-size: var(--fs-display-2); }
.growth-page-hero--single .growth-page-hero__lead { max-width: 700px; }

.growth-about-video { display: flex; align-items: center; justify-content: center; }
.growth-about-video video { width: 100%; border-radius: var(--advisory-radius); }

.growth-pov-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.growth-pov-list li { padding: var(--sp-4) var(--sp-6); border-left: 3px solid var(--accent-brass); background: var(--white); font-weight: 500; }

.growth-case-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.growth-case-list li { padding: var(--sp-6) 0; border-top: 1px solid var(--line-light); }
.growth-case-list li:first-child { border-top: 0; }
.growth-case-meta { margin: 0 0 4px; font-size: var(--fs-kicker); text-transform: uppercase; letter-spacing: var(--ls-kicker); color: var(--text-secondary); font-weight: 600; }
.growth-case-list h3 { margin: 0 0 8px; }
.growth-case-list p { margin: 0; }

/* The trailing arrow is a text glyph: hold it to the label's optical centre
   and let it lead by a hair on hover rather than jumping. */
.advisory-button > span[aria-hidden="true"],
.advisory-text-link > span[aria-hidden="true"],
.growth-blog-card__read > span[aria-hidden="true"] {
  display: inline-block;
  font-size: 0.95em;
  line-height: 1;
  transform: translateY(0.5px);
  transition: transform var(--t) var(--advisory-ease);
}
.advisory-text-link:hover > span[aria-hidden="true"] { transform: translate(2px, -1.5px); }

/* --- Editorial elements inside article bodies ---------------------------
   Post content is authored in WordPress, so the reading column has to hold
   its rhythm for lists, quotes, media, tables and code, not only paragraphs. */
.growth-article-content h3 {
  margin-top: clamp(32px, 3vw, 44px);
  margin-bottom: 0;
  color: var(--brand-primary);
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: var(--ls-h3);
  line-height: var(--lh-h3);
}
.growth-article-content h4 {
  margin-top: var(--sp-8);
  margin-bottom: 0;
  color: var(--brand-primary);
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.4;
}
.growth-article-content ul,
.growth-article-content ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.growth-article-content ul > li,
.growth-article-content ol > li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--fs-read);
  line-height: var(--lh-read);
}
.growth-article-content li + li { margin-top: var(--sp-3); }
.growth-article-content ul > li::before {
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-brass);
  content: '';
}
.growth-article-content ol { counter-reset: growth-ol; }
.growth-article-content ol > li { counter-increment: growth-ol; }
.growth-article-content ol > li::before {
  position: absolute;
  left: 0;
  color: var(--accent-olive);
  content: counter(growth-ol) '.';
  font-size: var(--fs-body-sm);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: calc(var(--lh-read) * 1.06);
}
.growth-article-content li > ul,
.growth-article-content li > ol { margin-top: var(--sp-3); }

.growth-article-content blockquote {
  margin: clamp(32px, 3.5vw, 44px) 0;
  padding: 0 0 0 var(--sp-6);
  border-left: 2px solid var(--accent-brass);
  color: var(--brand-primary);
  font-size: var(--fs-lead);
  font-style: normal;
  line-height: var(--lh-lead);
}
.growth-article-content blockquote p { font-size: inherit; line-height: inherit; }
.growth-article-content blockquote > * + * { margin-top: var(--sp-3); }
.growth-article-content blockquote cite,
.growth-article-content blockquote footer {
  display: block;
  margin-top: var(--sp-4);
  color: var(--text-secondary);
  font-size: var(--fs-meta);
  font-style: normal;
  letter-spacing: 0.01em;
}

.growth-article-content figure { margin: clamp(32px, 4vw, 48px) 0; }
.growth-article-content img,
.growth-article-content video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--advisory-radius);
}
.growth-article-content figcaption,
.growth-article-content .wp-caption-text {
  margin-top: var(--sp-3);
  padding-left: var(--sp-3);
  border-left: 1px solid var(--line-light);
  color: var(--text-secondary);
  font-size: var(--fs-meta);
  line-height: 1.5;
}
.growth-article-content .alignwide,
.growth-article-content > figure.alignwide,
.growth-article-content > figure.alignfull {
  width: 100%;
  max-width: 100%;
}

.growth-article-content hr {
  height: 1px;
  margin: clamp(40px, 4.5vw, 60px) 0;
  border: 0;
  background: var(--line-light);
}

.growth-article-content .wp-block-table,
.growth-article-content figure.wp-block-table { overflow-x: auto; }
.growth-article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body-sm);
  text-align: left;
}
.growth-article-content th,
.growth-article-content td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--line-light);
  vertical-align: top;
}
.growth-article-content th {
  border-bottom-color: var(--line-strong);
  color: var(--brand-primary);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  white-space: nowrap;
}
.growth-article-content tbody tr:last-child td { border-bottom: 0; }

.growth-article-content code,
.growth-article-content kbd {
  padding: 0.15em 0.4em;
  border: 1px solid var(--line-light);
  border-radius: var(--r-xs);
  background: var(--surface-raised);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}
.growth-article-content pre {
  overflow-x: auto;
  margin: clamp(28px, 3vw, 40px) 0;
  padding: var(--sp-5);
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  background: var(--surface-card);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
}
.growth-article-content pre code { padding: 0; border: 0; background: none; font-size: inherit; }

.growth-article-content strong { color: var(--brand-primary); font-weight: 600; }
.growth-article-content > p:first-child { font-size: var(--fs-lead); line-height: var(--lh-lead); }

/* A pull-out note authored as a WordPress quote-style callout. */
.growth-article-content .is-style-callout,
.growth-article-content .wp-block-group.is-style-callout {
  margin: clamp(32px, 3.5vw, 44px) 0;
  padding: var(--sp-5) var(--sp-6);
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--accent-brass);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--surface-inset);
  font-size: var(--fs-body-sm);
}

/* --- Accordion: the panel settles in rather than snapping open ---------- */
@keyframes growth-details-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.growth-faq summary:hover { color: var(--link-hover); }
.growth-faq details[open] > *:not(summary) {
  animation: growth-details-in var(--t-slow) var(--advisory-ease) both;
}

/* --- Small screens: the card and grid tokens tighten as a system --------- */
@media (max-width: 700px) {
  :root {
    --card-pad: 22px;
    --gap-grid: 16px;
    --anchor-offset: 84px;
  }
}

/* Utilities and variants the advisory layer owns outright, so GrowthTune views
   never depend on the legacy stylesheet being present. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.advisory-button--outline-dark {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--brand-primary);
}
.advisory-button--outline-dark:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: var(--bg-primary);
}

.cpai-global-search-toolbar-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
}
.cpai-global-search-empty p {
  margin: var(--sp-3) 0 var(--sp-5);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
.cpai-global-search-empty p:last-of-type { margin-bottom: 0; }

/* --- Archive listings share the article hero's breadcrumb and the Insights
       card grid, so only the header column needs its own spacing. ---------- */
.growth-archive-hero .growth-article-breadcrumb { margin-bottom: var(--sp-6); }
.growth-archive-hero .advisory-kicker { margin-bottom: var(--sp-3); }
.growth-blog-archive .growth-blog-count { align-self: end; }
.growth-blog-empty .advisory-actions { margin-top: var(--sp-7); }

/* FAQ and legal pages inherit the shared interior hero, so the reading width
   is set alongside the body column they introduce. */
.growth-page--faq .growth-page-hero { --advisory-max: 900px; }
.growth-page--faq .growth-page-hero h1,
.growth-page--faq .growth-page-hero__lead { max-width: 100%; }

/* The answer sits directly under its question rather than being pulled up
   with a negative margin. */
.growth-faq details[open] summary { padding-bottom: var(--sp-3); }

/* --- Form details Gravity Forms brings with it -------------------------- */
.advisory-session__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin: var(--sp-6) 0 0;
  color: var(--line-strong);
}
.advisory-session .advisory-lead { margin-bottom: var(--sp-5); }
.advisory-session .advisory-session__qualifier { margin-top: var(--sp-5); }
.advisory-session__card .gform_wrapper .charleft,
.advisory-session__card .gform_wrapper .ginput_counter {
  margin: var(--sp-2) 0 0;
  color: var(--text-secondary);
  font-size: var(--fs-meta);
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}
.advisory-session__card .gform_wrapper .gform_required_legend {
  margin: 0 0 var(--sp-5);
  color: var(--text-secondary);
  font-size: var(--fs-meta);
}
.advisory-session__card .gform_wrapper .gfield_required { margin-left: 2px; }
.advisory-session__card .gform_wrapper ::placeholder {
  color: rgba(27, 36, 32, 0.45);
  opacity: 1;
}
.advisory-session__card .gform_wrapper .gform_validation_errors,
.advisory-session__card .gform_wrapper .gfield_validation_message {
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-body-sm);
  line-height: 1.5;
}
.advisory-session__card .gform_wrapper .gfield_error :is(input, select, textarea) {
  border-color: #9C4A32;
}

/* The hero's centre rule reads as texture across a wide column and as a stray
   seam on a phone, so only the horizontal rhythm survives at small widths. */
@media (max-width: 700px) {
  .advisory-hero::before,
  .growth-page-hero::before {
    background-image: linear-gradient(rgba(247, 243, 234, 0.05) 1px, transparent 1px);
    background-size: 100% 128px;
  }
}

/* The page behind the navigation panel stays put while it is open. */
@media (max-width: 900px) {
  body.menu-open { overflow: hidden; }
}

@media (max-width: 980px) {
  .advisory-footer__identity { grid-column: 1 / -1; }
}

/* A zero-specificity floor for links inside content, so anything that is not
   explicitly styled reads as brand text rather than the browser's blue.
   Component rules still win without needing to fight this. */
:where(main) a {
  color: var(--brand-primary);
  text-decoration-color: rgba(32, 57, 46, 0.32);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t) ease, text-decoration-color var(--t) ease;
}
:where(main) a:hover {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}

/* Homepage insight list: card titles are links, and the row gets the same
   hairline structure the rest of the page uses. */
.advisory-insight-card {
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-light);
}
.advisory-insight-card h3 a {
  color: var(--brand-primary);
  text-decoration: none;
}
.advisory-insight-card h3 a:hover {
  color: var(--link-hover);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Kickers sit on both light and dark surfaces. On dark, the muted body colour
   has no contrast, so every dark surface gets the brass treatment. */
.advisory-hero .advisory-kicker,
.growth-page-hero .advisory-kicker,
.growth-legal-hero .advisory-kicker,
.growth-article-hero .advisory-kicker,
.growth-error .advisory-kicker,
.cpai-global-search-hero .advisory-kicker,
.growth-section--ink .advisory-kicker { color: var(--accent-brass); }

.growth-article-breadcrumb span[aria-current="page"] { color: var(--bg-primary); }

/* On the narrowest phones the portrait leaves too little room beside it for a
   tracked-out uppercase role, so the identity stacks instead of clipping. */
@media (max-width: 420px) {
  .advisory-person-card__identity {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}
.advisory-person-card__role,
.growth-article-author__role,
.growth-blog-card__meta,
.growth-article-related-card__meta,
.advisory-kicker { overflow-wrap: break-word; }

/* Gravity Forms ships its own field shadow and focus state, in a blue tint
   that belongs to no part of this palette. These are the only declarations
   that need !important, because the plugin's own theme is the thing being
   overridden. */
.advisory-session__card .gform_wrapper :is(input, select, textarea) {
  box-shadow: none !important;
}
.advisory-session__card .gform_wrapper :is(input, select, textarea):hover {
  border-color: rgba(32, 57, 46, 0.4) !important;
}
.advisory-session__card .gform_wrapper :is(input, select, textarea):focus,
.advisory-session__card .gform_wrapper :is(input, select, textarea):focus-visible {
  border-color: var(--brand-primary) !important;
  box-shadow: none !important;
  outline: 2px solid var(--focus-ring) !important;
  outline-offset: 2px !important;
}

/* ==========================================================================
   Structure pass, 2026-09-07
   Three problem pillars, a fit page with real depth, the Results case-study
   archive, and a compact framework reference on the homepage. Everything below
   is built from the tokens already declared in :root: no new colour, no new
   radius, no new type step.
   ========================================================================== */

/* Legacy anchors kept alive after the six problem areas became three pillars.
   The alias is invisible and occupies no space; it only owns a scroll target. */
.growth-anchor-alias { display: block; width: 0; height: 0; overflow: hidden; scroll-margin-top: var(--anchor-offset); }
.growth-problem-list > article { scroll-margin-top: var(--anchor-offset); }

/* A pillar carries a number now that there are three of them rather than six. */
.growth-problem-list__index { margin: 0 0 var(--sp-3); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); }

/* Engagement context: how the work is delivered, and what it aims at. Same
   card language as the engagement formats, two across instead of three. */
.growth-context-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.growth-context-card { padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--surface-raised); scroll-margin-top: var(--anchor-offset); }
.growth-context-card__label { margin: 0 0 var(--sp-3); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-context-card h3 { margin: 0 0 var(--sp-3); }
.growth-context-card__summary { margin: 0 0 var(--sp-4); color: var(--brand-primary); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.growth-context-card p:last-child { margin: 0; font-size: var(--fs-body-sm); line-height: var(--lh-body); }

/* Who We Help: the signals, then an honest two-sided fit test. */
.growth-fit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.growth-fit-grid article { padding: var(--card-pad); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--surface-raised); }
.growth-fit-grid h3 { margin: 0 0 var(--sp-3); font-size: var(--fs-h3); line-height: var(--lh-h3); }
.growth-fit-grid p { margin: 0; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }

.growth-fit-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gap-grid); }
.growth-fit-column { padding: var(--card-pad); border: 1px solid var(--line-light); border-top-width: 3px; border-radius: var(--r-md); background: var(--white); }
.growth-fit-column--yes { border-top-color: var(--accent-brass); }
.growth-fit-column--no { border-top-color: var(--sage); }
.growth-fit-column__label { margin: 0 0 var(--sp-4); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-fit-column ul { display: grid; gap: var(--sp-3); margin: 0; padding: 0; list-style: none; }
.growth-fit-column li { position: relative; padding-left: 18px; color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-fit-column li::before { position: absolute; top: .62em; left: 0; width: 6px; height: 6px; border-radius: 50%; content: ''; }
.growth-fit-column--yes li::before { background: var(--accent-brass); }
.growth-fit-column--no li::before { background: var(--sage); }

/* Homepage: the framework is explained once, on How We Work. Here it is a
   reference strip, so the four steps stay recognisable without a second
   full explanation competing with the page they belong to. */
.advisory-process-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0 0 var(--sp-8); padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.advisory-process-strip li { display: flex; min-width: 0; align-items: baseline; gap: var(--sp-3); padding: var(--sp-5) var(--sp-6) var(--sp-5) 0; border-right: 1px solid var(--line-strong); color: var(--brand-primary); font-size: var(--fs-h4); font-weight: 600; letter-spacing: var(--ls-h3); }
.advisory-process-strip li + li { padding-left: var(--sp-6); }
.advisory-process-strip li:last-child { border-right: 0; }
.advisory-process-strip span { color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); }

/* The homepage measurement section sits on the dark green surface, so its
   read-on link needs the cream treatment the rest of that section uses. */
.advisory-results .advisory-text-link { margin-top: var(--sp-8); color: var(--accent-brass); }
.advisory-results .advisory-text-link:hover { color: var(--accent-cream); }

/* Results: the case-study archive. The card is the article card with one
   addition — the measure that moved, stated before the reader clicks. */
.growth-case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap-grid); }
.growth-case-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line-light); background: var(--white); transition: border-color var(--t) ease, box-shadow var(--t) ease, transform var(--t) var(--advisory-ease); }
.growth-case-card:hover { position: relative; z-index: 1; border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.growth-case-card__body { display: flex; flex: 1; flex-direction: column; padding: var(--card-pad); }
.growth-case-card__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); margin-bottom: var(--sp-4); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-case-card__window { color: var(--text-secondary); }
.growth-case-card h3 { margin: 0 0 var(--sp-4); font-size: var(--fs-h3); line-height: var(--lh-h3); }
.growth-case-card__link { color: var(--brand-primary); text-decoration: none; }
.growth-case-card__link:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 4px; }
.growth-case-card__movement { display: grid; gap: var(--sp-3); margin: 0 0 var(--sp-4); padding: var(--sp-4) 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.growth-case-card__movement div { display: grid; grid-template-columns: minmax(84px, 0.4fr) 1fr; gap: var(--sp-4); }
.growth-case-card__movement dt { color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-case-card__movement dd { margin: 0; color: var(--brand-primary); font-size: var(--fs-body-sm); font-weight: 600; line-height: var(--lh-body); }
.growth-case-card > .growth-case-card__body > p { margin: 0 0 var(--sp-5); color: var(--text-secondary); font-size: var(--fs-body-sm); line-height: var(--lh-body); }
.growth-case-card .growth-blog-card__read { margin-top: auto; }

/* A single case study opens with what moved, before the narrative. */
.growth-case-summary { padding: var(--section-y-sm) 0 0; }
.growth-case-summary .advisory-kicker { margin: 0 0 var(--sp-5); }
.growth-case-summary__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; margin: 0; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.growth-case-summary__grid > div { padding: var(--card-pad-sm); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--surface-raised); }
.growth-case-summary__grid dt { margin-bottom: var(--sp-2); color: var(--accent-olive); font-size: var(--fs-kicker); font-weight: 600; letter-spacing: var(--ls-kicker); text-transform: uppercase; }
.growth-case-summary__grid dd { margin: 0; color: var(--brand-primary); font-size: var(--fs-body); font-weight: 600; line-height: var(--lh-body); }
.growth-case-summary__note { max-width: var(--measure); margin: var(--sp-5) 0 0; color: var(--text-secondary); font-size: var(--fs-meta); line-height: var(--lh-body); }

.growth-case-lesson { max-width: var(--measure); margin: var(--sp-10) 0 0; padding: var(--card-pad); border-left: 3px solid var(--accent-brass); background: var(--surface-inset); }
.growth-case-lesson .advisory-kicker { margin: 0 0 var(--sp-3); }
.growth-case-lesson p:last-child { margin: 0; font-size: var(--fs-read); line-height: var(--lh-body); }

@media (max-width: 980px) {
  .growth-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .growth-fit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .advisory-process-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .advisory-process-strip li:nth-child(2) { border-right: 0; }
  .advisory-process-strip li:nth-child(n+3) { border-top: 1px solid var(--line-strong); }
  .advisory-process-strip li:nth-child(3) { padding-left: 0; }
}

@media (max-width: 700px) {
  .growth-case-grid,
  .growth-fit-grid,
  .growth-fit-split,
  .growth-context-grid { grid-template-columns: 1fr; }
  .growth-case-card__movement div { grid-template-columns: 1fr; gap: var(--sp-1); }
  .advisory-process-strip { grid-template-columns: 1fr; }
  .advisory-process-strip li,
  .advisory-process-strip li + li { padding: var(--sp-4) 0; border-right: 0; border-top: 1px solid var(--line-strong); }
  .advisory-process-strip li:first-child { border-top: 0; }
}
