/* ============================================
   The Lookout — Shared Styles
   ============================================ */

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

:root {
  --cream: #FAF8F4;
  --warm-white: #FFFFFF;
  --sand: #F0EBE1;
  --gold: #B8943E;
  --gold-light: #D4B563;
  --gold-dark: #8A6E2F;
  --navy: #1A2332;
  --charcoal: #2C3540;
  --slate: #4A5568;
  --muted: #7B8794;
  --light-border: #E8E2D8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ——— SKIP TO CONTENT ——— */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ——— FOCUS STYLES ——— */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ——— NAV ——— */
header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
  transition: all 0.3s;
}

header.transparent {
  background: rgba(26,35,50,0.3);
  border-bottom-color: transparent;
}

header.transparent .nav-logo { color: var(--warm-white); }
header.transparent .nav-logo span { color: var(--gold-light); }
header.transparent .nav-links a { color: rgba(255,255,255,0.8); }
header.transparent .nav-links a:hover { color: var(--warm-white); }
header.transparent .nav-cta { background: var(--gold) !important; color: var(--navy) !important; }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold);
  font-weight: 400;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1.5px solid var(--light-border);
}

header.transparent .nav-logo span {
  border-left-color: rgba(255,255,255,0.3);
}

.nav-links { display: flex; gap: 32px; align-items: center; }

.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--slate); text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--warm-white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--charcoal) !important; }

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  color: var(--navy);
  align-items: center;
  justify-content: center;
}

header.transparent .nav-toggle { color: var(--warm-white); }

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  display: block;
}

/* ——— MOBILE MENU OVERLAY ——— */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--cream);
  padding: 20px 24px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  margin-bottom: 40px;
  min-height: 48px;
}

.mobile-menu-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.mobile-menu-logo span {
  color: var(--gold);
  font-weight: 400;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1.5px solid var(--light-border);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin: -12px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}

.mobile-menu-links a {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 18px 4px;
  border-bottom: 1px solid var(--light-border);
  min-height: 44px;
  display: flex;
  align-items: center;
  letter-spacing: -0.3px;
  transition: color 0.2s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  color: var(--gold-dark);
}

.mobile-menu-links a.mobile-menu-cta {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-white);
  background: var(--navy);
  border-radius: 6px;
  padding: 18px 24px;
  justify-content: center;
  margin-top: 28px;
  border-bottom: none;
  letter-spacing: 0.3px;
}

.mobile-menu-links a.mobile-menu-cta:hover,
.mobile-menu-links a.mobile-menu-cta:focus-visible {
  background: var(--charcoal);
  color: var(--warm-white);
}

/* Prevent body scroll when menu is open */
body.menu-open { overflow: hidden; }

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none; }
}

/* ——— HERO ——— */
.hero {
  padding: 160px 32px 100px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero wrapper dark overlay styles */
.hero-wrapper {
  position: relative;
}

.hero-wrapper .hero-eyebrow { color: var(--gold-light); }
.hero-wrapper .hero h1 { color: var(--warm-white); }
.hero-wrapper .hero h1 em { color: var(--gold-light); }
.hero-wrapper .hero-sub { color: rgba(255,255,255,0.85); }

/* ——— BUTTONS ——— */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--warm-white);
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-primary:hover { background: var(--charcoal); transform: translateY(-1px); }

.hero-wrapper .btn-primary { background: var(--gold); color: var(--navy); }
.hero-wrapper .btn-primary:hover { background: var(--gold-light); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid var(--light-border);
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-secondary:hover { border-color: var(--navy); }

.hero-wrapper .btn-secondary { color: var(--warm-white); border-color: rgba(255,255,255,0.3); }
.hero-wrapper .btn-secondary:hover { border-color: var(--warm-white); }

.btn-dark {
  display: inline-block; background: var(--navy); color: var(--warm-white);
  padding: 14px 36px; border-radius: 6px; text-decoration: none;
  font-size: 0.92rem; font-weight: 600; transition: all 0.2s;
  cursor: pointer; font-family: var(--sans); border: none;
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }

.btn-gold {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: 14px 36px; border-radius: 6px; text-decoration: none;
  font-size: 0.92rem; font-weight: 600; transition: all 0.2s;
  cursor: pointer; font-family: var(--sans); border: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ——— SCRIPTURE BAR ——— */
.scripture-bar {
  text-align: center;
  padding: 48px 32px;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.scripture-bar blockquote {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--slate);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
}

.scripture-bar cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ——— SECTION BASICS ——— */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}

.section-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ——— STORY / ABOUT SECTION (Homepage) ——— */
.story-section {
  background: var(--warm-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.story-text p {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.75;
}

.story-text .highlight {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold-light);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.65;
}

.story-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.story-visual {
  background: var(--sand);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.story-stats-inner {
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-stat { text-align: center; }

.story-stat .stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.story-stat .stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  max-width: 280px;
  margin: 6px auto 0;
  line-height: 1.45;
}

.stat-divider {
  height: 1px;
  background: var(--light-border);
  width: 60%;
  margin: 0 auto;
}

.stat-source {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* ——— SEVEN STREAMS (Homepage) ——— */
.streams-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.stream-item {
  text-align: center;
  padding: 32px 12px;
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  transition: all 0.3s;
}

.stream-item:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.stream-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.stream-item h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.stream-item p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ——— HOW IT WORKS (Homepage) ——— */
.how-section { background: var(--navy); color: var(--warm-white); }
.how-section .section-eyebrow { color: var(--gold-light); }
.how-section .section-header h2 { color: var(--warm-white); }
.how-section .section-header p { color: rgba(255,255,255,0.65); }

.how-diagram-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.how-diagram-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.how-diagram-visual img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.how-diagram-text h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.how-diagram-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 12px;
}

.how-diagram-text .diagram-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.how-diagram-text .diagram-detail .dd-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(184,148,62,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
}

.how-diagram-text .diagram-detail p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.how-card {
  padding: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: all 0.2s;
}

.how-card:hover { background: rgba(255,255,255,0.08); }

.how-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.how-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.how-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ——— INITIATIVES / FRAMEWORK (Homepage) ——— */
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.initiative-card {
  padding: 36px;
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  transition: all 0.2s;
}

.initiative-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.initiative-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.initiative-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.initiative-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ——— MULTIPLIERS CTA (Homepage) ——— */
.multipliers-section {
  background: var(--sand);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.multipliers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.multipliers-text h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.multipliers-text p {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.75;
}

.multipliers-text .btn-primary { margin-top: 12px; }

.multipliers-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.multipliers-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mf-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--warm-white);
  border-radius: 8px;
  border: 1px solid var(--light-border);
}

.mf-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.mf-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.mf-item p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ——— SUBSTACK PRIMARY (Homepage) ——— */
.substack-section {
  text-align: center;
  background: var(--navy);
  padding: 0;
}

.substack-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.substack-copy .section-eyebrow { color: var(--gold-light); }

.substack-copy h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.substack-copy > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.75;
}

.substack-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
}

.substack-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.92rem;
  background: rgba(255,255,255,0.08);
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.2s;
}

.substack-form input:focus { border-color: var(--gold); }
.substack-form input::placeholder { color: rgba(255,255,255,0.45); }

.substack-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}

.substack-previews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.substack-preview-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px 28px;
  transition: background 0.2s;
}

.substack-preview-card:hover { background: rgba(255,255,255,0.1); }

.substack-preview-card .preview-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.substack-preview-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 6px;
}

.substack-preview-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ——— SUBSCRIBE BOTTOM (secondary) ——— */
.subscribe-section {
  text-align: center;
  background: var(--sand);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.subscribe-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}

.subscribe-section .subscribe-desc {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto 32px;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--light-border);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.92rem;
  background: var(--warm-white);
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-form input:focus { border-color: var(--gold); }
.subscribe-form input::placeholder { color: var(--muted); }

.subscribe-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ——— VALUES (Homepage) ——— */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.65;
}

.value-divider {
  width: 32px; height: 2px;
  background: var(--gold-light);
  margin: 0 auto 18px;
}

/* ——— PHOTO STRIP (Homepage) ——— */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  overflow: hidden;
  width: 100%;
}

.photo-strip picture { display: block; }

.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ——— PROBLEM SECTION (Multipliers) ——— */
.problem-section {
  background: var(--warm-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}

.problem-card { text-align: center; padding: 24px; }

.problem-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  background: var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.problem-icon svg {
  width: 26px; height: 26px;
  stroke: var(--navy);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  font-family: var(--serif); font-size: 1.15rem;
  font-weight: 500; color: var(--navy); margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.9rem; color: var(--slate); line-height: 1.65;
}

/* ——— WHAT IT IS (Multipliers) ——— */
.what-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.what-text h2 {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 500;
  color: var(--navy); letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 24px;
}

.what-text p {
  font-size: 1rem; color: var(--slate); margin-bottom: 16px; line-height: 1.75;
}

.what-text .highlight {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  color: var(--gold-dark); border-left: 3px solid var(--gold-light);
  padding-left: 20px; margin: 28px 0; line-height: 1.65;
}

.what-photo {
  width: 100%; border-radius: 12px;
  object-fit: cover; height: 480px;
}

/* ——— EXPERIENCE (Multipliers) ——— */
.experience-section { background: var(--navy); color: var(--warm-white); }
.experience-section .section-eyebrow { color: var(--gold-light); }
.experience-section .section-header h2 { color: var(--warm-white); }
.experience-section .section-header p { color: rgba(255,255,255,0.65); }

.experience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

.exp-card {
  padding: 32px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; transition: all 0.2s;
  display: flex; gap: 20px; align-items: flex-start;
}

.exp-card:hover { background: rgba(255,255,255,0.08); }

.exp-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(212,181,99,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.exp-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.exp-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--warm-white); margin-bottom: 6px; }
.exp-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ——— CURRICULUM (Multipliers) ——— */
.curriculum-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.curr-card {
  padding: 32px; background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 10px; transition: all 0.2s;
}

.curr-card:hover { border-color: var(--gold-light); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

.curr-number {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 10px;
}

.curr-card h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--navy); margin-bottom: 8px;
}

.curr-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

/* ——— TESTIMONIALS (Multipliers) ——— */
.testimonial-section {
  background: var(--sand);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.testimonial-card {
  background: var(--warm-white); border-radius: 10px;
  padding: 32px; border: 1px solid var(--light-border);
}

.testimonial-quote {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: var(--charcoal); line-height: 1.65; margin-bottom: 20px;
}

.testimonial-quote::before {
  content: '\201C'; font-size: 2.5rem; color: var(--gold-light);
  display: block; line-height: 0.8; margin-bottom: 8px;
}

.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}

.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-family: var(--serif);
  font-size: 1.1rem; font-weight: 600; flex-shrink: 0;
}

.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--muted); }

/* ——— MENTORS (Multipliers) ——— */
.mentors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.mentor-card { text-align: center; }

.mentor-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 14px;
  background: var(--navy); border: 3px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-family: var(--serif);
  font-size: 2rem; font-weight: 600;
}

.mentor-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.mentor-card p { font-size: 0.8rem; color: var(--muted); }

/* ——— PRICING (Multipliers) ——— */
.pricing-section {
  background: var(--warm-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.pricing-card {
  max-width: 560px; margin: 0 auto;
  background: var(--cream); border: 2px solid var(--gold-light);
  border-radius: 14px; padding: 48px; text-align: center;
}

.pricing-card .price-tag {
  font-family: var(--serif); font-size: 3.4rem; font-weight: 600;
  color: var(--navy); line-height: 1;
}

.pricing-card .price-period {
  font-size: 0.92rem; color: var(--muted); margin-top: 6px; margin-bottom: 8px;
}

.pricing-card .price-monthly {
  font-size: 1rem; color: var(--slate); margin-bottom: 28px;
}

.pricing-includes { text-align: left; margin-bottom: 32px; }

.pricing-includes .pi-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--light-border);
  font-size: 0.9rem; color: var(--charcoal);
}

.pi-check { color: var(--gold); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ——— FAQ (Multipliers) ——— */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--light-border);
  padding: 24px 0;
}

.faq-question {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--navy); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  background: none; border: none; width: 100%;
  text-align: left; padding: 0;
}

.faq-toggle {
  font-size: 1.4rem; color: var(--gold); transition: transform 0.3s;
  font-weight: 300;
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.92rem; color: var(--slate); line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; padding-top: 14px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ——— CTA SECTION (Multipliers) ——— */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 500;
  color: var(--warm-white); margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  max-width: 540px; margin: 0 auto 32px;
}

.cta-section .section-eyebrow { color: var(--gold-light); }

.cta-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ——— FOOTER (Homepage — 4-column) ——— */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 32px 40px;
}

.footer-inner-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--warm-white); }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-location { font-style: italic; }

/* ——— FOOTER (Multipliers — simple) ——— */
.footer-inner-simple {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}

.footer-inner-simple .footer-brand {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.footer-inner-simple .footer-brand span {
  color: var(--gold-light);
  font-weight: 400;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.footer-links {
  display: flex; gap: 24px;
}

.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}

.footer-links a:hover { color: var(--warm-white); }

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ——— ANIMATIONS ——— */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .streams-grid { grid-template-columns: repeat(4, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .footer-inner-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .curriculum-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .mentors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 130px 24px 80px; }
  .hero h1 { font-size: 2.6rem; }
  .section, .section-narrow { padding: 72px 24px; }
  .story-grid, .multipliers-grid, .substack-inner, .how-diagram-row { grid-template-columns: 1fr; gap: 40px; }
  .substack-inner { text-align: center; }
  .substack-form { max-width: 100%; margin: 0 auto; }
  .substack-copy > p { margin-left: auto; margin-right: auto; }
  .streams-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stream-item { padding: 20px 8px; }
  .initiatives-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid, .experience-grid, .curriculum-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .mentors-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header h2, .story-text h2, .multipliers-text h2, .what-text h2, .cta-section h2 { font-size: 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .substack-form { flex-direction: column; }
  .substack-form input,
  .substack-form button { width: 100%; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input,
  .subscribe-form button { width: 100%; }
  .photo-strip { grid-template-columns: 1fr; gap: 4px; }
  .photo-strip img { height: 200px; }
  .footer-inner-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner-simple { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
