/*
  HOUSE LEADERSHIP GROUP
  Shared Stylesheet — Brand Kit v1
  ────────────────────────────────────────
*/

/* ── CSS VARIABLES ───────────────────────────────────── */
:root {
  --navy:        #1A2340;
  --charcoal:    #2C3040;
  --forest:      #2D4038;
  --brass:       #9A7B4F;
  --brass-light: #B8965E;
  --warm-white:  #F5F2EC;
  --warm-gray:   #E8E4DC;
  --stone:       #C4BFB5;
  --slate:       #4A4A4A;
  --muted:       #7A7570;
  --sage-soft:   #E8F0EE;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVIGATION ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.nav-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo em { font-style: italic; color: var(--brass-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--warm-white); }
.nav-cta {
  background: var(--brass) !important;
  color: var(--warm-white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}
.nav-cta:hover {
  background: var(--brass-light) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--stone);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  background: var(--brass);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--stone);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--warm-white); }
.btn-ghost::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.2s;
}
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost-navy {
  color: var(--slate);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.btn-ghost-navy:hover { color: var(--navy); }
.btn-ghost-navy::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.2s;
}
.btn-ghost-navy:hover::after { transform: translateX(4px); }
.btn-outline {
  background: transparent;
  color: var(--brass);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--brass);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--brass);
  color: var(--warm-white);
}

/* ── SECTION SHARED ───────────────────────────────────── */
section { position: relative; }
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 48px;
}
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--brass);
  transform-origin: left;
}
.section-label.light { color: var(--brass-light); }
.section-label.light::after { background: var(--brass-light); }
.section-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-heading em {
  font-style: italic;
  color: var(--brass);
}
.section-heading.light { color: var(--warm-white); }
.section-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
  max-width: 560px;
}
.section-sub.light { color: var(--stone); }

/* ── PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 148px 48px 96px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 20px;
  animation: fadeIn 0.8s ease both;
}
.page-hero-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.1s both;
  max-width: 760px;
}
.page-hero-heading em {
  font-style: italic;
  color: var(--brass-light);
}
.page-hero-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
  max-width: 540px;
  animation: fadeUp 0.9s ease 0.2s both;
}

/* ── HOME HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.hero-bg-pillars {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
}
.hero-bg-pillars svg { width: 600px; height: 600px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 48px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease both;
}
.hero-heading {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-heading em {
  font-style: italic;
  color: var(--brass-light);
}
.hero-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
  max-width: 440px;
  margin-bottom: 44px;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.9s ease 0.3s both;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease 0.4s both;
}
.hero-mark-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero-mark-svg { width: 220px; height: 220px; }
.hero-pillars-label {
  display: flex;
  gap: 48px;
}
.hero-pillar-item { text-align: center; }
.hero-pillar-word {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--brass-light);
  display: block;
  margin-bottom: 4px;
}
.hero-pillar-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(154, 123, 79, 0.3);
  align-self: center;
}

/* ── ABOUT SECTION ────────────────────────────────────── */
.about { background: var(--warm-white); border-top: 1px solid var(--warm-gray); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-quote {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  border-left: 2px solid var(--brass);
  padding-left: 28px;
  margin: 36px 0;
}
.about-quote span {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-style: normal;
  margin-top: 14px;
}
.about-body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
}
.about-body p + p { margin-top: 18px; }

/* ── STATS ────────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.stat-box { background: var(--warm-gray); padding: 28px 24px; }
.stat-box.dark { background: var(--navy); }
.stat-box.forest { background: var(--forest); }
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--brass-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.dark .stat-label,
.forest .stat-label { color: var(--stone); }

/* ── SERVICES ─────────────────────────────────────────── */
.services { background: var(--charcoal); position: relative; overflow: hidden; }
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  padding: 44px 36px;
  border-top: 2px solid var(--brass);
  transition: background 0.25s;
}
.service-card:hover { background: rgba(255,255,255,0.07); }
.service-icon { margin-bottom: 24px; }
.service-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.service-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--stone);
}
.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(184, 150, 94, 0.3);
  padding: 5px 12px;
}

/* ── PILLARS ──────────────────────────────────────────── */
.pillars { background: var(--warm-white); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.pillar-card {
  background: var(--warm-gray);
  padding: 48px 40px;
  position: relative;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-number {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(154, 123, 79, 0.15);
  line-height: 1;
  margin-bottom: 8px;
  user-select: none;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 16px;
}
.pillar-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
}

/* ── BOOK BANNER ──────────────────────────────────────── */
.book-banner { background: var(--forest); position: relative; overflow: hidden; }
.book-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 48px;
}
.book-eyebrow {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(184,150,94,0.8);
  margin-bottom: 16px;
}
.book-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.book-title em { font-style: italic; color: var(--brass-light); }
.book-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(196, 191, 181, 0.85);
  max-width: 500px;
  margin-bottom: 32px;
}
.book-cover {
  width: 180px;
  background: var(--navy);
  border: 1px solid rgba(154,123,79,0.3);
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  gap: 16px;
  position: relative;
  flex-shrink: 0;
}
.book-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
}
.book-cover-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  text-align: center;
  line-height: 1.3;
}
.book-cover-title em { color: var(--brass-light); font-style: normal; }
.book-cover-sub {
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  font-weight: 300;
  line-height: 1.8;
}
.book-cover-author {
  position: absolute;
  bottom: 20px;
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

/* ── AUDIENCE ─────────────────────────────────────────── */
.audience { background: var(--warm-white); border-top: 1px solid var(--warm-gray); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  margin-top: 56px;
}
.audience-list { list-style: none; display: flex; flex-direction: column; }
.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--warm-gray);
}
.audience-item:first-child { border-top: 1px solid var(--warm-gray); }
.audience-num {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--brass);
  flex-shrink: 0;
  padding-top: 2px;
  font-weight: 300;
}
.audience-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.6;
}
.audience-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}
.audience-visual {
  background: var(--navy);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.audience-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.audience-quote {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.5;
  margin-bottom: 24px;
}
.audience-quote em { color: var(--brass-light); font-style: normal; }
.audience-attr {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section { background: var(--navy); position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 48px;
  text-align: center;
}
.cta-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-heading em { font-style: italic; color: var(--brass-light); }
.cta-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
  text-align: left;
}
.contact-box {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
  border-top: 1px solid rgba(154,123,79,0.3);
}
.contact-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.contact-value {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--warm-white);
  font-style: italic;
}
.contact-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--brass-light); }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 56px 60px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(154,123,79,0.15);
}
.footer-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.footer-brand em { font-style: italic; color: var(--brass-light); }
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  line-height: 1.6;
}
.footer-heading {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass-light);
  margin-bottom: 20px;
}
footer a {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--stone);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}
footer a:hover { color: var(--warm-white); }
.footer-copy {
  max-width: 1100px;
  margin: 24px auto 0;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(196,191,181,0.5);
  text-align: center;
}

/* ── CONTACT FORM ─────────────────────────────────────── */
.contact-form-section { background: var(--warm-white); border-top: 1px solid var(--warm-gray); }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--warm-gray);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--brass); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.info-block { margin-bottom: 48px; }
.info-block-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.info-block-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.4;
}
.info-block-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.6;
}
.info-block-sub a { color: var(--brass); text-decoration: none; }
.info-block-sub a:hover { color: var(--brass-light); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section { background: var(--warm-gray); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}
.faq-item {
  background: var(--warm-white);
  padding: 28px 36px;
  border-left: 2px solid transparent;
  transition: border-color 0.2s;
}
.faq-item:hover { border-left-color: var(--brass); }
.faq-q {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.75;
}

/* ── PODCAST PAGE ─────────────────────────────────────── */
.episode-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}
.episode-card {
  background: var(--warm-gray);
  padding: 32px 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  transition: background 0.2s;
}
.episode-card:hover { background: var(--warm-white); }
.episode-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 100%;
  background: transparent;
  transition: background 0.3s;
}
.episode-card:hover::before { background: var(--brass); }
.episode-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: rgba(154, 123, 79, 0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  text-align: right;
}
.episode-content { flex: 1; }
.episode-tag {
  font-family: var(--sans);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.episode-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.episode-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.75;
}
.episode-meta {
  font-family: var(--sans);
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-top: 12px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.platform-card {
  background: var(--warm-white);
  padding: 36px 28px;
  text-align: center;
  border-top: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: block;
}
.platform-card:hover { border-top-color: var(--brass); background: var(--warm-gray); }
.platform-icon {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  color: var(--brass);
  margin-bottom: 14px;
  display: block;
}
.platform-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.platform-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.5;
}

/* ── BOOK DETAIL PAGE ─────────────────────────────────── */
.book-detail-section { background: var(--warm-white); }
.book-detail-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.book-cover-large {
  width: 240px;
  background: var(--navy);
  border: 1px solid rgba(154,123,79,0.3);
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  gap: 20px;
  position: relative;
  flex-shrink: 0;
}
.book-cover-large::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
}
.book-detail-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 12px;
}
.book-detail-title em { font-style: italic; color: var(--brass); }
.book-detail-sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 28px;
}
.chapter-list-section { background: var(--warm-gray); }
.chapter-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}
.chapter-item {
  background: var(--warm-white);
  padding: 24px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border-left: 2px solid transparent;
  transition: border-color 0.2s;
}
.chapter-item:hover { border-left-color: var(--brass); }
.chapter-num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--brass);
  flex-shrink: 0;
  padding-top: 2px;
  font-weight: 300;
  width: 32px;
}
.chapter-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 6px;
}
.chapter-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
}

/* ── ABOUT PAGE ───────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.founder-photo {
  background: var(--warm-gray);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.founder-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
}
.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
}
.founder-photo-label {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.credentials-section { background: var(--navy); position: relative; }
.credentials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.credential-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}
.credential-item {
  background: rgba(255,255,255,0.04);
  padding: 28px 36px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  border-left: 2px solid transparent;
  transition: border-color 0.2s;
}
.credential-item:hover { border-left-color: var(--brass); }
.credential-year {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--brass);
  flex-shrink: 0;
  font-weight: 300;
  width: 60px;
  padding-top: 2px;
}
.credential-role {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  margin-bottom: 4px;
}
.credential-org {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.05em;
}
.philosophy-section { background: var(--warm-gray); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.philosophy-card {
  background: var(--warm-white);
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-top-color 0.3s;
}
.philosophy-card:hover { border-top-color: var(--brass); }
.philosophy-card-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(154, 123, 79, 0.12);
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
}
.philosophy-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 14px;
}
.philosophy-card-body {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
}

/* ── OFFERS PAGE ──────────────────────────────────────── */
.navigator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.navigator-card {
  background: var(--warm-gray);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  transition: border-top-color 0.25s, background 0.25s;
  text-decoration: none;
  display: block;
}
.navigator-card:hover {
  border-top-color: var(--brass);
  background: var(--warm-white);
}
.navigator-card-tier {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.navigator-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.navigator-card-for {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 14px;
}
.navigator-card-transform {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--warm-white);
}
.navigator-card-transform em {
  font-style: normal;
  color: var(--brass);
  font-weight: 500;
}
.offer-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.tier-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(184, 150, 94, 0.35);
  padding: 6px 16px;
  margin-bottom: 20px;
}
.offer-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.offer-heading em { font-style: italic; color: var(--brass); }
.offer-heading.light { color: var(--warm-white); }
.offer-heading.light em { color: var(--brass-light); }
.offer-for {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}
.offer-for.light { color: var(--stone); }
.fear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}
.fear-item {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.fear-item::before {
  content: '×';
  position: absolute;
  left: 0;
  color: rgba(154, 123, 79, 0.5);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 300;
}
.fear-item.light { color: var(--stone); }
.offer-promise {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  border-left: 2px solid var(--brass);
  padding-left: 24px;
  margin-top: 24px;
}
.offer-promise.light { color: var(--warm-white); }
.outcomes-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.outcomes-label.light { color: var(--brass-light); }
.outcome-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(154, 123, 79, 0.12);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--slate);
}
.outcome-item::before {
  content: '✓';
  color: var(--brass);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 600;
}
.outcome-item.light {
  color: var(--stone);
  border-bottom-color: rgba(154, 123, 79, 0.1);
}
.outcome-item.light::before { color: var(--brass-light); }
.identity-shift {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 2px solid var(--brass);
}
.identity-shift-label {
  font-family: var(--sans);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.identity-shift-label.light { color: var(--brass-light); }
.identity-shift-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}
.identity-shift-text.light { color: var(--warm-white); }
.offer-note {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}
.offer-note.light { color: rgba(196, 191, 181, 0.55); }

/* ── CLIENT LOGO STRIP ────────────────────────────────── */
.client-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(154,123,79,0.2);
  border-bottom: 1px solid rgba(154,123,79,0.2);
  padding: 36px 48px;
  overflow: hidden;
}
.client-strip-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}
.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.client-logo-item {
  padding: 12px 32px;
  border-right: 1px solid rgba(154,123,79,0.15);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.client-logo-item:last-child { border-right: none; }
.client-logo-item:hover { opacity: 1; color: var(--brass-light); }

/* ── HOOK SECTION ─────────────────────────────────────── */
.hook-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.hook-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light), var(--brass));
}
.hook-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 48px;
  text-align: center;
}
.hook-eyebrow {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
}
.hook-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hook-heading em { font-style: italic; color: var(--brass-light); }
.hook-body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 48px;
}
.hook-body strong { color: var(--warm-white); font-weight: 500; }
.hook-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-align: left;
  margin: 40px auto 48px;
  max-width: 680px;
}
.hook-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(154,123,79,0.15);
  border-right: 1px solid rgba(154,123,79,0.15);
}
.hook-check:nth-child(even) { border-right: none; }
.hook-check:nth-last-child(-n+2) { border-bottom: none; }
.hook-check-mark {
  color: var(--brass-light);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hook-check-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}
.hook-check-text strong {
  display: block;
  font-weight: 500;
  color: var(--warm-white);
  font-size: 11px;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}

/* ── PROBLEM SECTION ──────────────────────────────────── */
.problem-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light), var(--brass));
}
.problem-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 48px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition: padding-left 0.2s;
}
.problem-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.problem-item:hover { padding-left: 8px; }
.problem-check {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s;
}
.problem-item:hover .problem-check { background: var(--brass); }
.problem-check-inner {
  width: 8px;
  height: 8px;
  background: var(--brass-light);
  opacity: 0;
  transition: opacity 0.2s;
}
.problem-item:hover .problem-check-inner { opacity: 1; }
.problem-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
}
.problem-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 3px;
}
.problem-right {
  position: sticky;
  top: 100px;
}
.problem-callout {
  background: var(--navy);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--brass);
}
.problem-callout-quote {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.4;
  margin-bottom: 28px;
}
.problem-callout-quote em { color: var(--brass-light); font-style: normal; }
.problem-callout-body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 32px;
}

/* ── BUYER JOURNEY ────────────────────────────────────── */
.journey-section {
  background: var(--warm-white);
  border-top: 1px solid var(--warm-gray);
  position: relative;
  overflow: hidden;
}
.journey-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 48px;
}
.journey-intro {
  text-align: center;
  margin-bottom: 80px;
}
.journey-intro-eyebrow {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  display: block;
}
.journey-intro-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.journey-intro-heading em { font-style: italic; color: var(--brass); }
.journey-intro-body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 8px;
}
.journey-intro-body strong { font-weight: 500; color: var(--navy); }
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 72px;
  bottom: 72px;
  width: 1px;
  background: linear-gradient(180deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
  z-index: 0;
}
.journey-step {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--warm-gray);
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}
.journey-step:last-child { border-bottom: none; }
.journey-step:hover { background: rgba(154,123,79,0.03); }
.journey-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
  position: relative;
  z-index: 2;
}
.journey-step-circle {
  width: 56px;
  height: 56px;
  border: 2px solid var(--brass);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.journey-step:hover .journey-step-circle { background: var(--navy); }
.journey-step-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--brass);
  line-height: 1;
  transition: color 0.25s;
}
.journey-step:hover .journey-step-num { color: var(--brass-light); }
.journey-step-tag {
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.journey-step-content { padding-top: 6px; }
.journey-step-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.journey-step-heading {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.journey-step-heading em { font-style: italic; color: var(--brass); }
.journey-step-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 20px;
}
.journey-step-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.journey-step-link:hover { color: var(--brass); }
.journey-step-link::after { content: '→'; font-size: 14px; transition: transform 0.2s; }
.journey-step-link:hover::after { transform: translateX(4px); }
.journey-step.journey-cta-step {
  background: var(--navy);
  margin: 48px -48px -100px;
  padding: 56px 48px 80px;
  border-bottom: none;
}
.journey-cta-step .journey-step-circle { background: var(--brass); border-color: var(--brass-light); }
.journey-cta-step .journey-step-num { color: var(--warm-white); }
.journey-cta-step .journey-step-tag { color: var(--stone); }
.journey-cta-step .journey-step-label { color: var(--brass-light); }
.journey-cta-step .journey-step-heading { color: var(--warm-white); }
.journey-cta-step .journey-step-heading em { color: var(--brass-light); }
.journey-cta-step .journey-step-body { color: var(--stone); }
.journey-cta-step:hover { background: var(--navy); }

/* ── FOUNDER SECTION ──────────────────────────────────── */
.founder-section {
  background: var(--warm-white);
  border-top: 1px solid var(--warm-gray);
}
.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
}
.founder-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: var(--navy);
}
.founder-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s;
}
.founder-image-wrap:hover img { filter: grayscale(0%) contrast(1.0); }
.founder-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brass), var(--brass-light), var(--brass));
  z-index: 2;
}
.founder-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(transparent, rgba(26,35,64,0.92));
  z-index: 1;
}
.founder-name-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
}
.founder-name-badge-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.founder-name-badge-name em { font-style: italic; font-weight: 300; color: var(--brass-light); }
.founder-name-badge-title {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 5px;
}
.founder-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--charcoal) 100%);
}
.founder-placeholder-monogram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
}
.founder-content {
  background: var(--navy);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.founder-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light), transparent);
}
.founder-eyebrow {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder-eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--brass); }
.founder-heading {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.founder-heading em { font-style: italic; color: var(--brass-light); }
.founder-body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--stone);
}
.founder-body p + p { margin-top: 16px; }
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.founder-cred {
  font-family: var(--sans);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(184,150,94,0.35);
  padding: 6px 14px;
}

/* ── PRODUCT LADDER ───────────────────────────────────── */
.ladder-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.ladder-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light), var(--brass));
}
.ladder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.ladder-card {
  padding: 44px 32px;
  background: rgba(255,255,255,0.03);
  border-top: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  cursor: default;
}
.ladder-card:hover { background: rgba(255,255,255,0.07); border-top-color: var(--brass); }
.ladder-step-label {
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.ladder-card:hover .ladder-step-label { color: var(--brass); }
.ladder-price {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--brass-light);
  letter-spacing: 0.05em;
}
.ladder-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.2;
}
.ladder-title em { font-style: italic; color: var(--brass-light); }
.ladder-body {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--stone);
  flex: 1;
}
.ladder-divider { width: 32px; height: 1px; background: rgba(154,123,79,0.4); }
.ladder-link {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.ladder-link:hover { color: var(--brass-light); }
.ladder-link::after { content: '→'; font-size: 12px; }
.ladder-arrow {
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 24px;
  height: 24px;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--warm-white);
}
.ladder-card:last-child .ladder-arrow { display: none; }

/* ── TESTIMONIAL SECTION ──────────────────────────────── */
.testimonial-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.testimonial-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 48px;
  text-align: center;
  position: relative;
}
.testimonial-mark {
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 600;
  font-style: italic;
  color: rgba(184,150,94,0.15);
  line-height: 0.7;
  margin-bottom: -16px;
  display: block;
  user-select: none;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.5;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.testimonial-quote em { font-style: normal; color: var(--brass-light); font-weight: 400; }
.testimonial-rule { width: 48px; height: 2px; background: var(--brass); margin: 0 auto 20px; }
.testimonial-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 5px;
}
.testimonial-title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
}

/* ── VIDEO TESTIMONIALS ───────────────────────────────── */
.video-testimonials {
  background: var(--warm-gray);
  border-top: 1px solid var(--stone);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.video-card {
  position: relative;
  aspect-ratio: 9/10;
  background: var(--charcoal);
  overflow: hidden;
  cursor: pointer;
}
.video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-bg-initial {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: rgba(154,123,79,0.15);
  user-select: none;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.video-card:hover .video-play-btn { background: var(--brass); transform: translate(-50%, -50%) scale(1.08); }
.video-play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--brass-light);
  margin-left: 4px;
  transition: border-left-color 0.2s;
}
.video-card:hover .video-play-icon { border-left-color: var(--warm-white); }
.video-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(transparent, rgba(26,35,64,0.95));
  z-index: 2;
}
.video-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 3px;
}
.video-role {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.video-coming-soon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid rgba(154,123,79,0.4);
  padding: 4px 10px;
  background: rgba(26,35,64,0.7);
  z-index: 2;
}

/* ── PROCESS STEPS ────────────────────────────────────── */
.process-section {
  background: var(--warm-white);
  border-top: 1px solid var(--warm-gray);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light), var(--brass));
  z-index: 0;
}
.process-step {
  padding: 0 28px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border: 2px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: background 0.25s;
}
.process-step:hover .step-number { background: var(--brass); }
.step-number-text {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--brass-light);
  line-height: 1;
  transition: color 0.25s;
}
.process-step:hover .step-number-text { color: var(--warm-white); }
.step-title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-body {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
}

/* ── IMPACT STATEMENT ─────────────────────────────────── */
.impact-statement {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.impact-statement::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 50%, var(--brass) 100%);
}
.impact-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.impact-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.impact-heading em { font-style: italic; color: var(--brass-light); }
.impact-right {
  border-left: 1px solid rgba(154,123,79,0.3);
  padding-left: 64px;
}
.impact-stat-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.impact-stat {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.impact-stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--brass-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.impact-stat-text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
  padding-top: 6px;
}
.impact-stat-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 4px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(26, 35, 64, 0.99);
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(154, 123, 79, 0.2);
    list-style: none;
    z-index: 99;
  }
  .nav-links.open a { font-size: 11px; padding: 4px 0; }
  .nav-hamburger { display: flex; }
  .hero-grid,
  .about-grid,
  .audience-grid,
  .contact-form-grid,
  .about-story-grid,
  .book-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid,
  .pillars-grid,
  .contact-grid,
  .platform-grid,
  .philosophy-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-mark-svg { width: 160px; height: 160px; }
  .hero-pillars-label { gap: 24px; }
  .hero-pillar-word { font-size: 15px; }
  .section-inner { padding: 72px 24px; }
  .page-hero { padding: 120px 24px 72px; }
  .book-grid { grid-template-columns: 1fr; padding: 64px 24px; }
  .book-cover { display: none; }
  .book-cover-large { width: 160px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 40px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { padding: 80px 24px; }
  .episode-card { flex-direction: column; gap: 8px; padding: 24px; }
  .episode-num { width: auto; text-align: left; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .navigator-grid { grid-template-columns: 1fr 1fr; }
  .offer-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .impact-inner { grid-template-columns: 1fr; }
  .impact-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(154,123,79,0.3); padding-top: 40px; }
  .client-logos { gap: 0; }
  .client-logo-item { padding: 10px 16px; font-size: 9px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-image-wrap { min-height: 400px; }
  .founder-content { padding: 48px 28px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-right { position: static; }
  .journey-steps::before { display: none; }
  .journey-step { grid-template-columns: 1fr; gap: 16px; }
  .journey-step-marker { flex-direction: row; justify-content: flex-start; }
  .journey-step.journey-cta-step { margin: 48px -24px -100px; padding: 48px 24px 80px; }
  .ladder-grid { grid-template-columns: 1fr 1fr; }
  .ladder-arrow { display: none; }
  .video-grid { grid-template-columns: 1fr; }
  .hook-checks { grid-template-columns: 1fr; }
  .hook-check { border-right: none; }
  .hook-check:nth-last-child(-n+2) { border-bottom: 1px solid rgba(154,123,79,0.15); }
  .hook-check:last-child { border-bottom: none; }
  .hook-inner { padding: 72px 24px; }
}
@media (max-width: 500px) {
  .navigator-grid { grid-template-columns: 1fr; }
}

/* ── AUDIENCE ITEM IMAGES ────────────────────────────── */
.audience-item { flex-wrap: nowrap; align-items: flex-start; }
.audience-img { flex: 0 0 25%; max-width: 25%; }
@media (max-width: 900px) {
  .audience-item { flex-wrap: wrap; }
  .audience-img { flex: 0 0 100%; max-width: 100%; }
}

/* ── HERO PROOF STRIP ─────────────────────────────────── */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: fadeUp 0.9s ease 0.4s both;
}
.hero-proof span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-proof-dot {
  color: var(--brass) !important;
  letter-spacing: 0 !important;
  font-size: 12px !important;
}

/* ── HERO FOUNDER PHOTO ───────────────────────────────── */
.hero-founder-photo {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.hero-founder-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(26,35,64,0.95) 0%, transparent 100%);
}
@media (max-width: 768px) {
  .hero-founder-photo { max-width: 100%; aspect-ratio: 4 / 3; }
}

