/* ============================================================
   PR Leadership & HR Consulting - editorial design system v2
   Rebuilt 6 Jul 2026. Agency-grade pass: display serif
   (Playfair Display, self-hosted), hairline rules instead of
   card boxes, asymmetric editorial composition, no icon chips.
   Identity v3: Paula's client-supplied palette (7 Jan 2026) - 
   blood red / blushed brick / sand dune / dusty taupe / mauve
   bark on warm ink. Resolves REQ-002 from the client register.
   ============================================================ */

@font-face {
  font-family: 'Playfair Display';
  src: url("https://pr-leadership-hr-consulting-services.1wp.site/wp-content/uploads/g29-designer-sites/d7c08456-8477-4a03-82a6-e4526e881ff4/assets/fonts/playfair-normal-latin.woff2") format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url("https://pr-leadership-hr-consulting-services.1wp.site/wp-content/uploads/g29-designer-sites/d7c08456-8477-4a03-82a6-e4526e881ff4/assets/fonts/playfair-italic-latin.woff2") format('woff2');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Palette */
  --ink: #14100d;
  --charcoal: #201713;
  --accent: #8c1c13;
  --accent-light: #bf4342;
  --muted: #735751;
  --taupe: #a78a7f;
  --sand: #e7d7c1;
  --paper: #f5efe7;
  --paper-2: #ecdfc9;
  --silver: #e7d7c1;
  --silver-mute: rgba(245, 239, 231, 0.68);
  --line-gold: rgba(140, 28, 19, 0.28);
  --line-gold-strong: rgba(191, 67, 66, 0.4);
  --line-dark: rgba(245, 239, 231, 0.14);
  --line-ink: rgba(20, 16, 13, 0.14);

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Aptos, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --section-py: clamp(4.5rem, 9vw, 8.5rem);
  --content-max: 42rem;
  --page-max: 1320px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: rgba(140, 28, 19, 0.85); color: #f5efe7; }
:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
.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;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 10000;
  background: var(--accent); color: #fff; padding: 0.75rem 1.25rem;
  font-weight: 500; font-size: 0.875rem;
}
.skip-link:focus { top: 0.75rem; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.12; letter-spacing: -0.008em; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); line-height: 1.25; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.eyebrow::before { content: ''; width: 2.25rem; height: 1px; background: var(--accent); flex-shrink: 0; }
.px-center .eyebrow, .eyebrow--center { justify-content: center; }
.section--charcoal .eyebrow, .dark-band .eyebrow { color: var(--accent-light); }
.section--charcoal .eyebrow::before, .dark-band .eyebrow::before { background: var(--accent-light); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--muted); }

/* ---- Buttons & links ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border-radius: 2px;
  white-space: nowrap; min-width: fit-content;
}
.btn--primary {
  background: var(--accent); color: #fff;
  transition: background 300ms var(--ease);
}
.btn--primary:hover { background: var(--accent-light); }
.btn--outline {
  background: transparent; color: var(--accent-light);
  border: 1px solid var(--accent);
  transition: background 200ms var(--ease);
}
.btn--outline:hover { background: rgba(140, 28, 19, 0.12); }
.btn--white-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.btn--white-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }

.text-link {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 200ms var(--ease); position: relative;
  padding-bottom: 2px;
}
.text-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: var(--line-gold); transition: background 200ms var(--ease);
}
.text-link:hover::after { background: var(--accent); }
.text-link:hover { gap: 0.75rem; }
.text-link--light { color: var(--accent-light); }

/* ---- Layout ---- */
.container { max-width: var(--page-max); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.section { padding: var(--section-py) 0; }
.section--charcoal { background: var(--charcoal); color: #fff; }
.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }
.section--compact { padding: 3rem 0; }
.section--headroom { padding-top: calc(104px + var(--section-py)); }
.section--diagnostic-lenses { padding-bottom: 0; }
.px-narrow { max-width: var(--content-max); margin: 0 auto; }
.px-wide { max-width: 56rem; margin: 0 auto; }
.px-center { text-align: center; }
.px-intro { color: var(--muted); max-width: 36rem; margin-bottom: 2.5rem; }
.px-center .px-intro { margin-left: auto; margin-right: auto; }
.px-h2-gap { margin-bottom: 1.25rem; }
.px-coda {
  margin-top: 2.25rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line-gold);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; line-height: 1.65; color: var(--muted);
  max-width: 36rem;
}
.px-tile p a { color: var(--accent); border-bottom: 1px solid var(--line-gold); }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 104px; display: flex; align-items: center;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.site-header.scrolled {
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(16px);
}
.header-inner {
  max-width: 1760px; width: 100%; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem); display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 72px; width: auto; }
.desktop-nav { display: none; align-items: center; gap: clamp(1.35rem, 1.7vw, 2.25rem); }
.nav-item { position: relative; }
.nav-link {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--silver-mute);
  transition: color 200ms var(--ease); position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 100%; height: 1px;
  background: var(--accent);
}
.nav-link--services {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}
.nav-link__chevron {
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.8;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-item--services:hover .nav-link__chevron,
.nav-item--services:focus-within .nav-link__chevron {
  transform: translateY(1px) rotate(225deg);
  opacity: 1;
}
.services-dropdown {
  position: absolute;
  top: calc(100% + 1.25rem);
  left: 50%;
  z-index: 120;
  width: 21rem;
  padding: 1rem 0;
  background: var(--ink);
  border: 1px solid var(--line-gold-strong);
  box-shadow: 0 24px 60px rgba(20, 16, 13, 0.42);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
}
.services-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1.35rem;
  height: 1.35rem;
}
.services-dropdown__eyebrow {
  padding: 0 1.2rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.services-dropdown__link {
  display: flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0 1.2rem;
  border-top: 1px solid rgba(245, 239, 231, 0.08);
  color: var(--silver-mute);
  font-size: 0.8125rem;
  line-height: 1.25;
  transition: color 180ms var(--ease), background 180ms var(--ease), padding 180ms var(--ease);
}
.services-dropdown__link span {
  display: block;
}
.services-dropdown__link:hover,
.services-dropdown__link:focus,
.services-dropdown__link.active {
  color: var(--paper);
  background: rgba(140, 28, 19, 0.18);
  padding-left: 1.45rem;
}
.nav-item--services:hover .services-dropdown,
.nav-item--services:focus-within .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-cta {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--accent);
  color: #fff; background: var(--accent); border-radius: 2px;
  white-space: nowrap;
  transition: background 250ms var(--ease), color 250ms var(--ease);
}
.nav-cta:hover { background: var(--accent-light); color: #fff; border-color: var(--accent-light); }
.mobile-header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: auto; margin-right: 0.5rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--accent); border-radius: 2px;
  color: #fff; background: var(--accent);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
}

/* ---- Mobile drawer ---- */
.drawer-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  padding: 10px; z-index: 200;
}
.drawer-toggle span {
  display: block; width: 22px; height: 1px; background: var(--accent-light);
  transition: transform 300ms var(--ease), opacity 200ms;
}
.drawer-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.drawer-toggle.open span:nth-child(2) { opacity: 0; }
.drawer-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer-backdrop { display: none; position: fixed; inset: 0; z-index: 150; background: rgba(0,0,0,0.5); }
.drawer-backdrop.open { display: block; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; width: min(85vw, 360px); height: 100%;
  z-index: 160; background: var(--ink);
  transform: translateX(100%); transition: transform 300ms var(--ease);
  display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--line-dark); min-height: 88px;
}
.drawer-brand .brand-logo { height: 40px; }
.drawer-close {
  font-size: 1.5rem; color: var(--accent-light); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms;
}
.drawer-close:hover { background: rgba(255,255,255,0.06); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; }
.drawer-primary {
  display: flex; align-items: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: var(--paper); min-height: 52px; padding: 0 0.75rem;
  transition: background 150ms;
  border-left: 1px solid transparent;
  border-bottom: 1px solid rgba(245,239,231,0.08);
}
.drawer-primary:hover, .drawer-primary.active { background: rgba(255,255,255,0.04); }
.drawer-primary.active { border-left-color: var(--accent); }
.drawer-services-title { justify-content: space-between; }
.drawer-services-title em { font-style: normal; font-size: 1.125rem; color: var(--accent-light); transition: transform 200ms; }
.drawer-services-title.open em { transform: rotate(45deg); }
.drawer-services { display: none; flex-direction: column; padding-left: 1.5rem; }
.drawer-services.open { display: flex; }
.drawer-sub-link {
  font-size: 0.9375rem; font-weight: 400; color: var(--silver-mute);
  display: flex; align-items: center; min-height: 44px; padding: 0 0.75rem;
  transition: color 150ms; border-left: 1px solid transparent;
}
.drawer-sub-link:hover, .drawer-sub-link.active { color: var(--paper); }
.drawer-sub-link.active { border-left-color: var(--accent); }
.drawer-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 0.75rem; }
.drawer-foot .btn { width: 100%; text-align: center; }
.drawer-phone {
  font-size: 0.8125rem; letter-spacing: 0.08em; color: var(--silver-mute);
  text-align: center; min-height: 44px; display: flex; align-items: center; justify-content: center;
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 2.4vw, 2rem);
  bottom: clamp(1rem, 2.4vw, 2rem);
  z-index: 95;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(32, 23, 19, 0.94);
  border: 1px solid rgba(245, 239, 231, 0.1);
  box-shadow: 0 18px 42px rgba(20, 16, 13, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  border-color: rgba(191, 67, 66, 0.36);
  background: rgba(20, 16, 13, 0.97);
}
.back-to-top:focus-visible { outline-offset: 4px; }
.back-to-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.back-to-top__track,
.back-to-top__progress {
  fill: none;
  stroke-width: 2.5;
}
.back-to-top__track { stroke: rgba(255, 255, 255, 0.72); }
.back-to-top__progress {
  stroke: var(--accent-light);
  stroke-linecap: round;
  stroke-dasharray: 175.929;
  stroke-dashoffset: 175.929;
  transition: stroke-dashoffset 120ms linear;
}
.back-to-top__mark {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: visible;
}
.back-to-top__icon {
  fill: none;
  stroke: #d85b5a;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(191, 67, 66, 0.18));
  vector-effect: non-scaling-stroke;
}

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--ink); color: #fff; overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.9) contrast(1.22) saturate(0.98);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(20,16,13,0.93) 0%, rgba(20,16,13,0.72) 46%, rgba(20,16,13,0.4) 100%),
    linear-gradient(to top, rgba(20,16,13,0.55) 0%, transparent 30%);
}
.hero__inner {
  position: relative; z-index: 2; max-width: var(--page-max); width: 100%;
  margin: 0 auto; padding: 130px clamp(1.5rem, 4vw, 3rem) 4rem;
}
.hero__text { max-width: 46rem; }
.hero__kicker {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
  color: var(--accent-light);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
}
.hero__kicker::before { content: ''; width: 2.75rem; height: 1px; background: var(--accent); flex-shrink: 0; }
.hero__text h1 {
  margin-bottom: 1.4rem; color: #fff;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: 1.04; letter-spacing: -0.012em;
  text-wrap: balance; max-width: 15ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero__sub {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem); line-height: 1.65;
  color: rgba(248,246,240,0.82);
  max-width: 34rem; margin-bottom: 2.25rem;
}
.hero__actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero__note {
  color: rgba(245,239,231,0.62); font-size: 0.78rem; letter-spacing: 0.06em;
}

/* ---- Credentials ledger (home, under hero) ---- */
.cred-ledger {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(245,239,231,0.06);
  padding: clamp(2.35rem, 3.6vw, 3.25rem) 0;
}
.cred-ledger__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}
.cred {
  position: relative;
  padding: 0 clamp(1.2rem, 2.4vw, 2.25rem);
  border-left: 1px solid rgba(245,239,231,0.08);
}
.cred:first-child { border-left: 0; }
.cred__label {
  display: block;
  font-size: 0.66rem; font-weight: 650; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.86rem;
}
.cred__value {
  display: block;
  font-family: var(--font-display); font-weight: 450;
  font-size: clamp(2.2rem, 3.05vw, 2.95rem); line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: oldstyle-nums tabular-nums;
  color: rgba(245,239,231,0.9);
  margin-bottom: 0.95rem;
}
.cred__plus {
  position: relative;
  top: -0.34em;
  margin-left: 0.08em;
  font-family: var(--font-body);
  font-size: 0.38em;
  font-weight: 600;
  color: var(--accent-light);
}
.cred p { font-size: 0.9rem; line-height: 1.55; color: rgba(245,239,231,0.54); max-width: 16.5rem; }

/* ---- Founder section ---- */
.founder-section {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.founder-section__image img { width: 100%; height: auto; }
.founder-section__image figcaption {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 2.4rem;
}

/* Offset hairline frame - anchored to the photo itself, not the figure */
.px-frame { position: relative; }
.px-frame::after {
  content: ''; position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--line-gold); z-index: -1; pointer-events: none;
}
.founder-section__text h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 1rem; }
.founder-section__text p { margin-bottom: 1.5rem; color: var(--muted); max-width: 34rem; font-size: 1.05rem; line-height: 1.7; }
.trust-markers { border-top: 1px solid var(--line-ink); max-width: 30rem; }
.trust-markers span {
  display: block; padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-ink);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}

/* ---- Confidentiality note ---- */
.confidential-note { text-align: center; }
.confidential-note p {
  display: inline-flex; align-items: center; gap: 1.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); max-width: 100%;
}
.confidential-note p::before, .confidential-note p::after {
  content: ''; width: clamp(2rem, 8vw, 4.5rem); height: 1px; background: var(--line-gold); flex-shrink: 0;
}

/* ---- Situations (dark, asymmetric editorial list) ---- */
.dark-band {
  background:
    radial-gradient(circle at 82% 8%, rgba(140,28,19,0.14), transparent 36%),
    linear-gradient(150deg, #191310, #241b15);
}
.situations {
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(3rem, 7vw, 7rem); align-items: start;
}
.situations__head h2 { color: #fff; margin-bottom: 1.25rem; }
.situations__head .lead { color: var(--silver-mute); font-size: 1.05rem; }
.situation-entry {
  display: grid; grid-template-columns: 4rem 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: 2.1rem 0;
  border-top: 1px solid var(--line-dark);
}
.situation-entry:last-child { border-bottom: 1px solid var(--line-dark); }
.situation-entry__num {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.3rem; line-height: 1.5;
  color: var(--accent-light);
}
.situation-entry h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.55rem; }
.situation-entry p { font-size: 0.9375rem; color: var(--silver-mute); line-height: 1.6; max-width: 30rem; }

/* ---- Services index list (home) ---- */
.svc-index { max-width: 58rem; margin: 0 auto; }
.svc-index__head { margin-bottom: 3rem; max-width: 34rem; }
.svc-index__head h2 { margin-bottom: 0.75rem; }
.svc-index__head p { color: var(--muted); }
.svc-row {
  display: grid; grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  align-items: center; column-gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 2rem 0;
  border-top: 1px solid var(--line-ink);
  transition: background 300ms var(--ease);
}
.svc-row:last-of-type { border-bottom: 1px solid var(--line-ink); }
.svc-row__num {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.05rem; color: var(--accent);
}
.svc-row__name {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.3rem;
  transition: color 250ms var(--ease);
}
.svc-row:hover .svc-row__name { color: var(--accent); }
.svc-row__desc { display: block; font-size: 0.9375rem; color: var(--muted); max-width: 36rem; }
.svc-row__arrow {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--accent);
  transition: transform 300ms var(--ease);
}
.svc-row:hover .svc-row__arrow { transform: translateX(8px); }

/* ---- Statement (dark, full-bleed) ---- */
.statement__grid {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(2.5rem, 6vw, 6rem); align-items: end;
}
.statement h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  line-height: 1.08; letter-spacing: -0.01em;
  text-wrap: balance;
}
.statement h2 em { font-style: italic; color: var(--accent-light); }
.statement__side p { color: rgba(245,239,231,0.72); font-size: 1.02rem; line-height: 1.7; }
.statement__list {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.statement__list > div { border-top: 1px solid var(--line-gold); padding-top: 1.4rem; }
.statement__list b {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.2rem; color: #fff;
  margin-bottom: 0.6rem;
}
.statement__list p { font-size: 0.9rem; color: rgba(245,239,231,0.64); line-height: 1.6; }

/* ---- Split 2-col ---- */
.split-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem); align-items: center;
}
.split-2col--left-40 { grid-template-columns: 2fr 3fr; }
.split-2col--about { grid-template-columns: 2fr 3fr; align-items: start; }
.split-2col__image img { width: 100%; height: auto; }
.split-2col__text { max-width: var(--content-max); }
.split-2col__text h2 { margin-bottom: 0.9rem; }
.split-2col__text p { margin-bottom: 1.25rem; color: var(--muted); }
.section--charcoal .split-2col__text p { color: var(--silver-mute); }

/* ---- Method timeline (compact) ---- */
.method-timeline { display: flex; flex-direction: column; margin-top: 0.5rem; }
.method-step { display: flex; gap: 1.5rem; position: relative; padding-bottom: 2rem; }
.method-step:last-child { padding-bottom: 0; }
.method-step__marker { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; position: relative; }
.method-step__circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line-gold);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 0.9rem; z-index: 1;
}
.method-step__line {
  position: absolute; top: 34px; bottom: -2rem; width: 1px;
  background: var(--line-gold); left: 50%; transform: translateX(-50%);
}
.method-step__text h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.method-step__text p { font-size: 0.9375rem; line-height: 1.55; color: var(--muted); }
.section--charcoal .method-step__text p { color: var(--silver-mute); }

/* ---- Method stages (approach page) ---- */
.method-section { max-width: var(--content-max); margin: 0 auto; }
.method-stage { display: flex; gap: 2rem; position: relative; padding-bottom: 3.25rem; }
.method-stage:last-child { padding-bottom: 0; }
.method-stage__marker { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; position: relative; width: 4rem; }
.method-stage__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(3rem, 5vw, 3.6rem); height: clamp(3rem, 5vw, 3.6rem);
  border-radius: 999px;
  background: transparent; border: 1px solid var(--line-gold-strong);
  color: var(--accent);
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1; z-index: 1;
}
.method-stage__num::before { content: '0'; }
.method-stage__line {
  position: absolute; top: calc(clamp(3rem, 5vw, 3.6rem) + 0.85rem); bottom: 0; width: 1px;
  background: linear-gradient(to bottom, rgba(140,28,19,0.45), rgba(140,28,19,0.06));
  left: 50%; transform: translateX(-50%);
}
.method-stage:last-child .method-stage__line { display: none; }
.method-stage__text { padding-top: 0.3rem; }
.method-stage__text h2 { font-size: 1.6rem; margin-bottom: 0.6rem; color: var(--ink); }
.method-stage__text p { font-size: 1rem; line-height: 1.7; color: var(--muted); max-width: 32rem; }

/* ---- Outcomes editorial (home + outcomes page) ---- */
.outcomes-ed {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(3rem, 7vw, 7rem); align-items: center;
}
.outcomes-ed blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.5;
  color: var(--paper); text-wrap: balance;
}
.quote-attribution {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 1.75rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-light);
}
.quote-attribution::before { content: ''; width: 2.25rem; height: 1px; background: var(--accent); flex-shrink: 0; }
.outcomes-ed__stats .stat {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-dark);
}
.outcomes-ed__stats .stat:last-child { border-bottom: 1px solid var(--line-dark); }
.stat__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.1rem, 3vw, 2.8rem); line-height: 1;
  color: var(--sand);
}
.stat__label {
  font-style: normal; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,239,231,0.55); text-align: right;
}

/* ---- Quote (testimonials) ---- */
.px-quote-card { max-width: 44rem; margin: 0 auto; }
.px-quote-card blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem); line-height: 1.6;
  color: var(--ink);
}
.px-quote-card figcaption {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 1.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.px-quote-card figcaption::before { content: ''; width: 2.25rem; height: 1px; background: var(--accent); flex-shrink: 0; }
.px-quote-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.px-quote-pair .px-quote-card { border-top: 1px solid var(--line-gold); padding-top: 1.75rem; margin: 0; }
.px-quote-pair .px-quote-card blockquote { font-size: 1.15rem; }

/* ---- CTA dock ---- */
.cta-dock { text-align: center; max-width: 38rem; margin: 0 auto; }
.cta-dock h2 { margin-bottom: 1rem; }
.cta-dock p { color: var(--muted); margin-bottom: 2rem; }

/* ---- Service narrative ---- */
.service-narrative { max-width: var(--content-max); margin: 0 auto; }
.service-narrative h2 { margin-bottom: 1.25rem; }
.service-narrative p { margin-bottom: 1.1rem; font-size: 1.05rem; line-height: 1.75; color: #33383e; }

/* ---- Engagement list (service pages) ---- */
.engagement-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(2.5rem, 5vw, 4rem); row-gap: 0;
  max-width: 56rem; margin: 0 auto;
}
.engagement-item {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-ink);
}
.engagement-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.engagement-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: 26rem; }

/* ---- Editorial tiles (replaces card grids) ---- */
.px-grid { display: grid; column-gap: clamp(2rem, 4vw, 3.5rem); row-gap: 0; }
.px-grid--2 { grid-template-columns: 1fr 1fr; }
.px-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.px-tile {
  padding: 1.6rem 0 1.9rem;
  border-top: 1px solid var(--line-ink);
  text-align: left;
  background: transparent;
}
.px-tile--topline { border-top-color: var(--line-gold); }
.px-tile__num {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.1rem; color: var(--accent);
  margin-bottom: 0.7rem;
}
.px-tile__kicker {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.6rem;
}
.px-tile h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 0.45rem; }
.px-tile p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ---- Diagnostic lenses ---- */
.diagnostic-lenses {
  max-width: 66rem;
  margin: 0 auto;
}
.diagnostic-lenses__head {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.diagnostic-lenses__head h2 {
  margin: 0;
  max-width: 13ch;
  text-wrap: balance;
}
.diagnostic-lenses__head p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.65;
}
.diagnostic-lenses__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(4rem, 9vw, 8.15rem);
}
.diagnostic-lens {
  padding: clamp(1.65rem, 3vw, 2.35rem) clamp(1.2rem, 2.5vw, 2rem) clamp(1.85rem, 3vw, 2.55rem);
  border-left: 1px solid rgba(140, 28, 19, 0.18);
  text-align: center;
}
.diagnostic-lens:first-child { border-left: 0; padding-left: 0; }
.diagnostic-lens:last-child { padding-right: 0; }
.diagnostic-lens__top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.65rem;
}
.diagnostic-lens__icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.diagnostic-lens h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1.15;
}
.diagnostic-lens p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.7;
  max-width: 19rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Coaching arc ---- */
.coaching-arc-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 2.5rem;
}
.coaching-arc-card { border-top: 1px solid var(--line-gold); padding: 1.6rem 0 0; }
.coaching-arc-number {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.1rem; color: var(--accent);
  margin-bottom: 0.7rem;
}
.coaching-arc-card h3 { font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--ink); }
.coaching-arc-card p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ---- Room principles ---- */
.room-principles-list { display: flex; flex-direction: column; margin-top: 2.5rem; }
.room-principle {
  display: grid; grid-template-columns: minmax(10rem, 0.36fr) minmax(0, 1fr);
  column-gap: clamp(1.5rem, 3vw, 2.5rem); row-gap: 0.5rem;
  align-items: start;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-ink);
}
.room-principle:last-child { border-bottom: 1px solid var(--line-ink); }
.room-principle h3 {
  margin: 0;
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: 1.15rem; line-height: 1.3;
  color: var(--accent);
}
.room-principle p { margin: 0; color: var(--muted); font-size: 0.9375rem; line-height: 1.6; max-width: 30rem; }

/* ---- About page ---- */
.about-portrait-frame img { filter: contrast(1.06) saturate(0.97); }
.about-proof-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1.5rem;
  margin-top: 2rem;
}
.about-proof-strip span {
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line-gold);
  color: var(--muted); font-size: 0.74rem; line-height: 1.4;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.about-proof-strip strong {
  display: block; color: var(--ink);
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.55rem; line-height: 1.05; margin-bottom: 0.4rem;
  letter-spacing: 0; text-transform: none;
}
.about-principle-panel {
  margin-top: 2.25rem;
  border-left: 1px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.75rem;
}
.about-principle-panel p {
  margin: 0; color: var(--ink);
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.5;
}
.who-works-list { display: flex; flex-direction: column; margin-top: 1.5rem; }
.who-works-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-size: 0.9375rem; color: var(--muted); line-height: 1.55;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line-ink);
}
.who-works-item::before { content: '\2014'; color: var(--accent); flex-shrink: 0; }
.credential-lattice {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-ink);
}
.credential-panel { padding: 2.25rem 3rem 0 0; }
.credential-panel + .credential-panel {
  border-left: 1px solid var(--line-ink);
  padding-left: 3rem; padding-right: 0;
}
.credential-panel__kicker {
  margin: 0 0 0.75rem; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.68rem; font-weight: 600;
}
.credential-panel h3 { margin: 0 0 1.25rem; color: var(--ink); font-size: clamp(1.35rem, 2.6vw, 1.7rem); line-height: 1.15; }
.credential-panel ul { display: grid; gap: 0.7rem; }
.credential-panel li {
  position: relative; padding-left: 1.2rem;
  color: var(--muted); font-size: 0.9375rem; line-height: 1.5;
}
.credential-panel li::before {
  content: ''; position: absolute; left: 0; top: 0.65em;
  width: 0.5rem; height: 1px; background: var(--accent);
}

/* ---- Service cards (services index page) ---- */
.service-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(2.5rem, 5vw, 4.5rem); row-gap: 0;
  max-width: 58rem; margin: 0 auto;
}
.service-card {
  padding: 2rem 0 2.25rem;
  border-top: 1px solid var(--line-ink);
  display: flex; flex-direction: column; align-items: flex-start;
}
.service-card__kicker {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); font-weight: 600; margin-bottom: 0.7rem;
}
.service-card h2 { font-size: 1.5rem; margin-bottom: 0.55rem; color: var(--ink); }
.service-card p { font-size: 0.9375rem; line-height: 1.6; color: var(--muted); margin-bottom: 1.25rem; flex: 1; max-width: 26rem; }
.service-card--full { grid-column: 1 / -1; }

/* ---- Services choice guide ---- */
.service-choice {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.service-choice__head {
  position: static;
}
.service-choice__head h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}
.service-choice__head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 22rem;
}
.service-choice__list {
  border-top: 1px solid var(--line-ink);
}
.service-choice__item {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: clamp(1.35rem, 3vw, 2.35rem);
  padding: clamp(1.65rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line-ink);
}
.service-choice__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--accent);
}
.service-choice__item h3 {
  max-width: 28rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.16;
}
.service-choice__item p {
  max-width: 35rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---- Contact ---- */
.contact-summary,
.contact-expect {
  max-width: 70rem;
}
.contact-summary .px-grid--3 {
  grid-template-columns: minmax(15rem, 1.1fr) minmax(9rem, 0.7fr) minmax(24rem, 1.7fr);
}
.contact-expect .px-grid--3 {
  column-gap: clamp(2.5rem, 4.5vw, 4.5rem);
}
.contact-expect .px-tile p {
  max-width: 20rem;
}
.contact-intro { text-align: center; max-width: 32rem; margin: 0 auto 3rem; }
.contact-intro p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.contact-form-card {
  max-width: 600px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line-ink);
  padding: clamp(2rem, 4vw, 3rem);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 0.5rem;
}
.form-required { color: var(--accent); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: none; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; font: inherit; font-size: 0.9375rem;
  border: 1px solid var(--line-ink); border-radius: 0;
  background: var(--paper); color: var(--ink);
  transition: border-color 200ms var(--ease); resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { min-height: 130px; }
.form-note {
  text-align: center; max-width: 480px; margin: 2rem auto 0;
  font-size: 0.8125rem; color: var(--muted); line-height: 1.6;
}
.form-note a { color: var(--accent); border-bottom: 1px solid var(--line-gold); }

/* ---- Privacy ---- */
.privacy-content { max-width: var(--content-max); margin: 0 auto; }
.privacy-content h2 { margin-top: 3rem; margin-bottom: 0.85rem; font-size: 1.5rem; }
.privacy-content h2:first-of-type { margin-top: 0; }
.privacy-content p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.75; color: var(--muted); }
.privacy-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; list-style: disc; }
.privacy-content ul li { margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.6; color: var(--muted); }
.last-updated {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2.5rem;
}
.privacy-badge {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold);
  margin-bottom: 2.5rem;
}
.privacy-badge svg { color: var(--accent); flex-shrink: 0; }
.privacy-badge strong { font-weight: 600; font-size: 0.8125rem; color: var(--ink); display: block; }
.privacy-badge small { font-size: 0.75rem; color: var(--muted); }

/* ---- 404 ---- */
.notfound { text-align: center; max-width: 30rem; margin: 0 auto; }
.notfound h1 { margin-bottom: 1rem; }
.notfound p { color: var(--muted); margin-bottom: 2rem; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: var(--silver-mute); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand { max-width: 24rem; }
.footer-brand .brand-logo { height: 54px; width: auto; max-width: min(100%, 360px); margin-bottom: 1.5rem; }
.footer-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; line-height: 1.6; color: var(--silver); max-width: 20rem;
}
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--taupe);
  margin-bottom: 1.25rem;
}
.footer-col a { display: block; font-size: 0.8125rem; color: var(--silver-mute); padding: 0.3rem 0; transition: color 150ms; }
.footer-col a:hover { color: var(--paper); }
.footer-cta-col { display: flex; flex-direction: column; align-items: stretch; gap: 1rem; }
.footer-contact {
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 239, 231, 0.1);
}
.footer-contact span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}
.footer-phone { font-size: 0.875rem; letter-spacing: 0.06em; color: var(--silver); }
.footer-phone:hover { color: var(--paper); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(245,239,231,0.45);
}

/* ---- Scroll reveal ---- */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ---- Responsive ---- */
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .drawer-toggle { display: none; }
  .mobile-header-cta { display: none; }
  .hero__inner { padding-left: clamp(4rem, 7vw, 8rem); padding-right: clamp(4rem, 7vw, 8rem); }
}

@media (max-width: 1023px) {
  .site-header { height: 88px; }
  .brand-logo { height: 60px; }
  .desktop-nav { display: none; }
  .split-2col, .split-2col--left-40, .split-2col--about { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-section { grid-template-columns: 1fr; gap: 3rem; }
  .situations { grid-template-columns: 1fr; gap: 2.5rem; }
  .statement__grid { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
  .outcomes-ed { grid-template-columns: 1fr; gap: 3rem; }
  .engagement-grid { grid-template-columns: 1fr; max-width: var(--content-max); }
  .hero__overlay {
    background:
      linear-gradient(to bottom, rgba(20,16,13,0.85) 0%, rgba(20,16,13,0.66) 45%, rgba(20,16,13,0.55) 100%);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-cta-col { grid-column: 1 / -1; align-items: stretch; }
  .px-quote-pair { grid-template-columns: 1fr; }
  .service-choice { grid-template-columns: 1fr; gap: 2.25rem; }
  .service-choice__head { position: static; max-width: 36rem; }
  .diagnostic-lenses__head { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .diagnostic-lenses__head h2 { max-width: none; }
  .diagnostic-lenses__grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .diagnostic-lens {
    border-left: 0;
    border-top: 1px solid rgba(140, 28, 19, 0.18);
    padding-left: 0;
    padding-right: 0;
  }
  .diagnostic-lens:first-child { border-top: 0; }
  .diagnostic-lens__top {
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 900px) {
  .contact-summary .px-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
  .contact-summary .px-tile:last-child {
    grid-column: 1 / -1;
  }
  .cred-ledger__grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .cred:nth-child(odd) { border-left: 0; }
  .statement__list { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 760px) {
  .contact-summary .px-grid--3 {
    grid-template-columns: 1fr;
  }
  .contact-summary .px-tile:last-child {
    grid-column: auto;
  }
  .coaching-arc-grid { grid-template-columns: 1fr; row-gap: 0; }
  .coaching-arc-card { padding-bottom: 1.75rem; }
  .room-principle { grid-template-columns: 1fr; }
  .method-stage { gap: 1.25rem; }
  .method-stage__marker { width: 3.25rem; }
  .about-proof-strip { grid-template-columns: 1fr 1fr; row-gap: 1.5rem; }
  .credential-lattice { grid-template-columns: 1fr; }
  .credential-panel { padding: 2.25rem 0 0; }
  .credential-panel + .credential-panel { border-left: 0; padding-left: 0; margin-top: 2.5rem; }
  .px-grid--2, .px-grid--3 { grid-template-columns: 1fr; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .service-card--full { grid-column: auto; }
  .service-choice__item { grid-template-columns: 2.5rem minmax(0, 1fr); gap: 1rem; }
  .svc-row { grid-template-columns: 2.25rem minmax(0, 1fr) auto; column-gap: 1rem; padding: 1.6rem 0; }
}

@media (max-width: 639px) {
  .site-header { height: 80px; }
  .brand-logo { height: 52px; max-width: 210px; }
  .header-inner { padding: 0 1.25rem; }
  .back-to-top { width: 56px; height: 56px; right: 1rem; bottom: 1rem; }
  .back-to-top__mark { width: 36px; height: 36px; }
  .section { padding: 4.5rem 0; }
  .section--compact { padding: 2.75rem 0; }
  .btn { width: 100%; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .hero__text { text-align: left; }
  .hero__text h1 { font-size: clamp(2.2rem, 10vw, 2.9rem); }
  .hero__kicker { font-size: 0.62rem; letter-spacing: 0.16em; }
  .hero__kicker::before { width: 1.75rem; }
  .hero__sub { font-size: 0.95rem; line-height: 1.6; }
  .hero__note { font-size: 0.72rem; }
  .cred-ledger__grid { grid-template-columns: 1fr; row-gap: 0; }
  .cred {
    border-left: 0; padding: 1.25rem 0;
    border-top: 1px solid rgba(245,239,231,0.08);
  }
  .cred:first-child { border-top: 0; padding-top: 0; }
  .cred__label { font-size: 0.64rem; margin-bottom: 0.72rem; }
  .cred__value { font-size: 2.2rem; margin-bottom: 0.8rem; }
  .cred p { font-size: 0.88rem; }
  .situation-entry { grid-template-columns: 2.75rem 1fr; gap: 1rem; padding: 1.75rem 0; }
  .stat__num { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 1.5rem; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  .svc-row__arrow, .svc-row:hover .svc-row__arrow { transition: none; transform: none; }
}

/* Outcomes slimline editorial profile - client feedback 2026-07-21 */
.learning-experience {
  overflow: hidden;
  padding-block: clamp(3.75rem, 5vw, 5rem);
}
.learning-experience__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3.5rem, 7vw, 6.5rem);
  align-items: center;
}
.learning-experience__intro {
  max-width: 34rem;
}
.learning-experience__intro h2 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
}
.learning-experience__copy {
  max-width: 32rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.learning-experience__media {
  width: min(100%, 36rem);
  justify-self: end;
  margin: 0;
}
.learning-experience__portrait img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.learning-experience__portrait {
  margin: 0;
}
.learning-experience__portrait img {
  aspect-ratio: 16 / 9;
  object-position: center center;
}
.learning-experience__portrait figcaption {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-ink);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .learning-experience { padding-block: 4.75rem; }
  .learning-experience__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .learning-experience__intro {
    max-width: 38rem;
  }
  .learning-experience__intro h2 { max-width: none; }
}
@media (max-width: 560px) {
  .learning-experience { padding-block: 4.25rem; }
  .learning-experience__layout { gap: 2.5rem; }
  .learning-experience__portrait img { aspect-ratio: 4 / 3; }
}


/* Client brand mark: a contained footer signature; no section or palette changes. */
.footer-brandmark { display: block; width: min(100%, 13rem); margin: 0 0 1.15rem; line-height: 0; text-decoration: none; }
.footer-brandmark__image { display: block; width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; border: 1px solid rgba(245, 239, 231, 0.16); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22); }
@media (max-width: 720px) { .footer-brandmark { margin-inline: auto; } }
.footer-brandmark{width:min(100%,17.5rem)}
.footer-brandmark__image{display:block;width:100%;height:auto;aspect-ratio:auto;object-fit:contain;border:0;box-shadow:none}
@media (max-width:720px){.footer-brandmark{width:min(100%,15rem);margin-inline:auto}}
