/* =================================================================
   corporatetrainer.com  —  shared design system
   Used by all 9 pages. Edit here to update site-wide.
   ================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Colours */
  --navy: #0F172A;
  --navy-soft: #1E293B;
  --off-white: #F5F4EE;
  --warm-paper: #FAFAF7;
  --burnt-orange: #B45309;
  --burnt-orange-hover: #9A4408;
  --terracotta: #92400E;
  --sage: #5A7A60;
  --text-primary: #1C1917;
  --text-muted: #57534E;
  --rule: #D6D3D1;
  --rule-soft: #E7E5E4;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Layout */
  --content-max: 1200px;
  --content-narrow: 760px;
  --content-prose: 680px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--off-white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--burnt-orange); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: var(--space-sm); }

p { margin: 0 0 var(--space-md); max-width: var(--content-prose); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 var(--space-md); padding: 0; list-style: none; }
li { margin-bottom: var(--space-sm); padding-left: var(--space-md); position: relative; }
li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 8px;
  background: var(--terracotta);
}

/* ---------- 3. Layout primitives ---------- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container-narrow { max-width: var(--content-narrow); margin: 0 auto; padding: 0 var(--space-md); }

.section { padding: var(--space-2xl) 0; }
.section-tight { padding: var(--space-xl) 0; }
.section-large { padding: var(--space-3xl) 0; }

.section-paper { background: var(--warm-paper); }
.section-rule-top { border-top: 1px solid var(--rule); }

@media (min-width: 768px) {
  .section { padding: var(--space-3xl) 0; }
}

/* ---------- 4. Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
  display: block;
}

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.muted { color: var(--text-muted); }

.divider {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ---------- 5. Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 244, 238, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.wordmark:hover { color: var(--navy); }
.wordmark-footer { color: #fff !important; }

.nav { display: none; }
.nav-list { display: flex; gap: var(--space-lg); margin: 0; padding: 0; }
.nav-list li { margin: 0; padding: 0; }
.nav-list li::before { display: none; }
.nav-list a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}
.nav-list a:hover { color: var(--terracotta); }

@media (min-width: 1024px) {
  .nav { display: block; }
}

.menu-toggle {
  display: block;
  background: none;
  border: 1px solid var(--rule);
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 2px;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Hide the desktop nav CTA on mobile - it appears in the mobile menu instead */
.site-header .nav-cta { display: none !important; }
@media (min-width: 1024px) { .site-header .nav-cta { display: inline-block !important; } }

.mobile-nav { display: none; padding: var(--space-md); border-top: 1px solid var(--rule-soft); background: var(--off-white); }
.mobile-nav.is-open { display: block; }
.mobile-nav .nav-list { flex-direction: column; gap: var(--space-md); }
.mobile-nav .btn { margin-top: var(--space-md); width: 100%; }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  text-align: center;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--burnt-orange);
  color: #fff;
}
.btn-primary:hover { background: var(--burnt-orange-hover); color: #fff; }
.btn-primary:active { transform: translateY(1px); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-small { padding: 10px 18px; font-size: 0.875rem; }

/* ---------- 7. Hero — full-bleed image, text overlay ---------- */
.hero {
  position: relative;
  padding: 0;
  min-height: calc(100vh - 73px);
  background: var(--off-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  display: block;
}
/* Subtle gradient on the right to ensure text readability over the light wall area */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245, 244, 238, 0) 0%,
    rgba(245, 244, 238, 0) 40%,
    rgba(245, 244, 238, 0.85) 65%,
    rgba(245, 244, 238, 0.96) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: var(--space-lg) var(--space-xl);
}
@media (min-width: 768px) {
  .hero-content { padding: var(--space-xl) var(--space-2xl); }
}
.hero-text {
  max-width: 620px;
  width: 100%;
}
.hero-text h1 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  line-height: 1.15;
}
.hero-text .lead {
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
}
.hero-text .cta-line { font-family: var(--font-body); font-style: italic; color: var(--text-muted); margin-top: var(--space-sm); font-size: 0.9rem; }

/* On mobile, the gradient covers more so text is readable */
@media (max-width: 767px) {
  .hero-bg img { object-position: 30% top; }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(245, 244, 238, 0) 0%,
      rgba(245, 244, 238, 0) 35%,
      rgba(245, 244, 238, 0.95) 55%,
      rgba(245, 244, 238, 1) 70%
    );
  }
  .hero-content {
    align-items: flex-end;
    justify-content: flex-start;
    padding: var(--space-md) var(--space-md) var(--space-xl);
    padding-top: 45vh;
  }
  .hero-text h1 { font-size: 1.75rem; line-height: 1.2; }
  .hero-text .lead { font-size: 1rem; }
}

/* ---------- Four ways banner image (heading above, full image, smaller) ---------- */
.four-ways-banner {
  margin: var(--space-xl) auto var(--space-2xl);
  max-width: 720px;
}
.four-ways-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* ---------- Four ways with full-section background image ---------- */
.section-fourways {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  padding: var(--space-3xl) 0;
}
.section-fourways .fw-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-fourways .fw-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.35;
}
.section-fourways .fw-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 250, 247, 0.55) 0%,
    rgba(250, 250, 247, 0.7) 50%,
    rgba(250, 250, 247, 0.85) 100%
  );
}
.section-fourways .container {
  position: relative;
  z-index: 1;
}
.section-fourways .section-intro {
  max-width: 900px;
  margin-bottom: var(--space-2xl);
}
.section-fourways .section-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

/* ---------- Authority section restructure ---------- */
.authority-section .container > .eyebrow {
  display: block;
  margin-bottom: var(--space-md);
}
.authority-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}
@media (min-width: 1024px) {
  .authority-grid-v2 {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-2xl);
  }
}
.authority-grid-v2 .authority-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: var(--space-lg);
  /* Force a line break that prevents 'work.' orphan */
  max-width: 12ch;
}
@media (min-width: 1024px) {
  .authority-grid-v2 .authority-text h2 { max-width: 14ch; }
}
.authority-image-large {
  border: 1px solid var(--rule-soft);
  padding: var(--space-xs);
  background: var(--warm-paper);
}
.authority-image-large img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.authority-closing {
  font-size: 1.0625rem;
  max-width: 100%;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--rule);
}

/* ---------- 8. Logo strip ---------- */
.logo-strip {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #ffffff;
}
.logo-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.logo-strip img {
  width: 100%;
  height: auto;
  display: block;
  /* Source image is already pre-processed black-on-white */
}

/* ---------- 9. Two-column section ---------- */
.two-col {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* ---------- 10. Authority section (with portrait) ---------- */
.authority-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 1024px) {
  .authority-grid { grid-template-columns: 1.3fr 1fr; gap: var(--space-2xl); }
}
.authority-quote {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  border-left: 3px solid var(--terracotta);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 600;
}
.authority-image {
  border: 1px solid var(--rule-soft);
  padding: var(--space-sm);
  background: var(--warm-paper);
}

/* ---------- 11. Card grid (2/3/4 cols) ---------- */
.card-grid {
  display: grid;
  gap: var(--space-md);
}
.card-grid-2 { grid-template-columns: 1fr; }
.card-grid-3 { grid-template-columns: 1fr; }
.card-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 600px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  border: 1px solid var(--rule);
  background: var(--warm-paper);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--terracotta); transform: translateY(-2px); }
.card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}
.card p { font-size: 1rem; color: var(--text-muted); flex: 1; }
.card-link {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burnt-orange);
  margin-top: var(--space-md);
  display: inline-block;
}
.card-link::after { content: ' →'; transition: transform 0.2s ease; display: inline-block; }
.card:hover .card-link::after { transform: translateX(4px); }

/* ---------- 12. Outcomes / case tiles ---------- */
.case-tile {
  background: var(--warm-paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.case-tile:hover { border-color: var(--navy); }
.case-tile-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.case-tile-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.case-tile-body p {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  flex: 1;
}
.case-tile-body .case-link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--burnt-orange);
  margin-top: auto;
}

/* ---------- 13. Testimonials ---------- */
.testimonials {
  display: grid;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}
.testimonial {
  background: var(--warm-paper);
  border-left: 4px solid var(--terracotta);
  padding: var(--space-lg);
}
.testimonial blockquote {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 var(--space-md);
  line-height: 1.6;
}
.testimonial cite {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- 14. Sage section (retreats) — image fills left ---------- */
.section-sage {
  background: #EAEFE9;
  border-top: 1px solid #C4D2C3;
  border-bottom: 1px solid #C4D2C3;
  padding: 0;
}
.section-sage .eyebrow { color: var(--sage); }
.sage-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 480px;
}
@media (min-width: 1024px) {
  .sage-grid { grid-template-columns: 1fr 1fr; }
}
.sage-image {
  position: relative;
  margin: 0;
  min-height: 320px;
  display: flex;
}
.sage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 80%;  /* compass + hand fully in frame */
  border: none;
  display: block;
}
.sage-text {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}
@media (min-width: 1024px) {
  .sage-text { padding: var(--space-3xl) var(--space-2xl); }
}
.sage-link {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--sage);
}

/* ---------- 15. Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--off-white);
  padding: var(--space-3xl) 0;
}
.final-cta h2 { color: #fff; max-width: 720px; margin-bottom: var(--space-lg); }
.final-cta p { color: rgba(245, 244, 238, 0.85); max-width: 620px; }
.final-cta .btn-primary { margin-top: var(--space-lg); }
.final-cta-meta {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(245, 244, 238, 0.65);
  margin-top: var(--space-md);
}

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(245, 244, 238, 0.7);
  padding: var(--space-xl) 0 var(--space-lg);
  font-family: var(--font-ui);
  font-size: 0.875rem;
}
.site-footer .container { display: flex; flex-direction: column; gap: var(--space-lg); }
@media (min-width: 768px) {
  .site-footer .container { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.site-footer a { color: rgba(245, 244, 238, 0.85); }
.site-footer a:hover { color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-lg); }
.footer-meta { font-size: 0.8rem; color: rgba(245, 244, 238, 0.5); margin-top: var(--space-md); }

/* ---------- 17. Utilities ---------- */
.text-center { text-align: center; }
.no-bullets { list-style: none; padding-left: 0; }
.no-bullets li { padding-left: 0; }
.no-bullets li::before { display: none; }
.intro-block { max-width: 720px; margin-bottom: var(--space-xl); }
.intro-block h2 { margin-bottom: var(--space-md); }

/* Section heading + intro pattern */
.section-intro {
  max-width: var(--content-prose);
  margin-bottom: var(--space-xl);
}
.section-intro h2 { margin-bottom: var(--space-md); }
.section-intro p { font-size: 1.0625rem; }

/* ============================================================
   ABOUT PAGE  —  v3
   - Hero: lifted above-fold, flush-top side-by-side
   - Split layouts (text + image), image flush at top of copy
   - Story section: full-width, centred
   - Beyond the boardroom: faded full-bleed image, text in foreground
   ============================================================ */

/* ---- HERO ---- */
.about-hero {
  background: var(--off-white);
  /* tighter padding so headline+lead+CTA+image fit above 13" MBP fold */
  padding: var(--space-xl) 0 var(--space-2xl);
}
@media (min-width: 1024px) {
  .about-hero { padding: var(--space-xl) 0 var(--space-xl); }
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start; /* heading + image flush at top */
}
@media (min-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-2xl);
  }
}
.about-hero-text { padding-top: 0; }
.about-hero-text h1 {
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: var(--space-md);
}
.about-hero-text .lead {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  line-height: 1.55;
  margin-bottom: var(--space-md);
  max-width: 60ch;
}
.about-hero-text .cta-line {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  font-size: 0.9rem;
}
.about-hero-portrait {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: var(--space-xs);
  /* No aspect-ratio forced — image keeps natural ratio, flush at top */
}
.about-hero-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- BODY SECTIONS ---- */
.about-section {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}
.about-section + .about-section,
.about-section + .about-story,
.about-story + .about-section,
.about-story + .about-sage,
.about-section + .about-sage {
  border-top: 1px solid var(--rule-soft);
}
@media (min-width: 1024px) {
  .about-section { padding: 5.5rem 0; }
}
.about-section h2 {
  margin-bottom: var(--space-lg);
  max-width: 22ch;
}

/* Single-column prose (used by Background-Craft fallback if needed) */
.about-prose {
  max-width: 68ch;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.about-prose p { margin-bottom: var(--space-md); }
.about-prose .emphasis {
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin: var(--space-lg) 0;
  padding-left: var(--space-md);
  border-left: 3px solid var(--terracotta);
  font-size: 1.0625rem;
  line-height: 1.55;
}
.about-prose ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.about-prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}
.about-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.5rem;
  height: 1px;
  background: var(--terracotta);
}

/* ---- SPLIT LAYOUT (text + image side-by-side, flush at top)
   Universal rule: the eyebrow sits ABOVE the grid (full width), so the
   heading text and the image both start at the same top edge. ---- */
.about-section .eyebrow,
.about-hero .eyebrow {
  /* Eyebrow when sitting above a split-grid behaves as a full-width row */
  display: block;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start; /* heading + image flush at top */
}
@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-2xl);
  }
}
.split-text { padding-top: 0; }
.split-text h2 {
  margin-top: 0;
  margin-bottom: var(--space-lg);
}
.split-image {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: var(--space-xs);
  margin-top: 0; /* flush top with heading */
}
.split-image img {
  width: 100%;
  height: auto;
  display: block;
}
.split-image--portrait img {
  /* For tall portrait-orientation images, keep natural ratio */
  width: 100%;
}

/* Stretch modifier: image fills the full height of the text column */
.split-image--stretch {
  align-self: stretch;
  display: flex;
}
.split-image--stretch img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  flex: 1;
}

/* Reverse on desktop: image left, text right */
@media (min-width: 1024px) {
  .split-grid--reverse { grid-template-columns: 1fr 1.1fr; }
  .split-grid--reverse .split-image { order: 1; }
  .split-grid--reverse .split-text  { order: 2; }
}

/* ---- WHERE I'VE WORKED  banner image ---- */
.about-where-banner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
  box-sizing: border-box;
}
.about-where-banner img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule-soft);
}

/* Inline logo strip (kept) */
.about-logo-strip {
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.about-logo-strip img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.85;
}

/* ---- STORY SECTION (full-width, centred heading + text) ---- */
.about-story {
  padding: var(--space-2xl) 0;
  background: var(--warm-paper);
  text-align: center;
}
@media (min-width: 1024px) {
  .about-story { padding: 5.5rem 0; }
}
.about-story .eyebrow { display: block; margin-bottom: var(--space-md); }
.about-story h2 {
  text-align: center;
  margin: 0 auto var(--space-xl);
  max-width: 28ch;
}
.about-story-prose {
  max-width: 68ch;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  text-align: center;
}
.about-story-prose p {
  margin: 0 auto var(--space-md);
  max-width: 68ch;
}
.about-story-prose p:last-child { margin-bottom: 0; }

/* ---- BEYOND THE BOARDROOM  full-bleed faded image, text foreground ---- */
.about-sage {
  position: relative;
  background: #EAEFE9;
  border-top: 1px solid #C4D2C3;
  border-bottom: 1px solid #C4D2C3;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 1024px) {
  .about-sage { padding: 7rem 0; }
}
.about-sage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about-sage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.55; /* faded but clearly visible */
}
/* Light wash to keep text legible without burying the image */
.about-sage-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(234,239,233,0.20) 0%, rgba(234,239,233,0.10) 50%, rgba(234,239,233,0.25) 100%);
}
.about-sage > .container { position: relative; z-index: 1; }
.about-sage .eyebrow { color: var(--sage); }
.about-sage h2 { color: var(--navy); margin-bottom: var(--space-lg); max-width: 26ch; }
.about-sage-content {
  max-width: 68ch;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.about-sage-content .sage-link {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--sage);
}

/* ---- CLOSE (typographic pull quote) ---- */
.about-close {
  background: var(--off-white);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--rule-soft);
}
@media (min-width: 1024px) {
  .about-close { padding: 6rem 0; }
}
.about-close h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: none;
}
.about-pullquote {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.about-pullquote blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.45;
  color: var(--navy);
}
.about-pullquote cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---- ABOUT CTA ---- */
.about-cta {
  background: var(--warm-paper);
  padding: var(--space-3xl) 0;
  text-align: center;
}
.about-cta h2 {
  max-width: 24ch;
  margin: 0 auto var(--space-md);
  text-align: center;
}
.about-cta p {
  max-width: 60ch;
  margin: 0 auto var(--space-lg);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.about-cta .meta {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: var(--space-md);
}
