/* ═══════════════════════════════════════════════════════════════
   BDUSA.CSS — Global Light Mode Stylesheet
   Version 1.0 | bridgingdividesusa.com
   Pair with bdusa-dark.css for full mode support.

   Structure:
   1.  Reset & Design Tokens
   2.  Base Typography
   3.  Navigation
   4.  Page Hero (inner pages)
   5.  Site Hero (homepage full-screen)
   6.  Utility Classes
   7.  Buttons
   8.  Section Layouts
   9.  Cards
   10. Footer
   11. Animations
   12. Responsive
═══════════════════════════════════════════════════════════════ */


/* ───────────────────────────────────────────────────────────────
   1. RESET & DESIGN TOKENS
─────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand palette ── */
  --navy:           #0B1D3A;
  --navy-mid:       #162D55;
  --navy-light:     #1E3F6F;
  --gold:           #B8841F;    /* AA-compliant on light bg */
  --gold-light:     #D4A535;
  --gold-bright:    #E8B84B;    /* display / on-dark use only */
  --gold-pale:      #F0DFA8;    /* bg tint only */
  --red:            #8B1515;
  --white:          #FFFFFF;

  /* ── Light mode surfaces ── */
  --bg-base:        #FAFAF7;    /* page background */
  --bg-section:     #F2EDE3;    /* alternate section bg */
  --bg-card:        #FFFFFF;    /* card bg */
  --bg-gold:        #F0DFA8;    /* covenant / callout bg */

  /* ── Light mode text ── */
  --text-heading:   #111827;    /* 16:1 on bg-base */
  --text-body:      #1F2937;    /* 12:1 on bg-base */
  --text-secondary: #374151;    /* 8.9:1 on bg-base */
  --text-tertiary:  #4B5563;    /* 6.4:1 on bg-base */
  --text-ghost:     #6B7280;    /* 4.6:1 — large text only */

  /* ── On-dark text (navy / ink bg) ── */
  --on-dark-h:      #FFFFFF;
  --on-dark-body:   rgba(255,255,255,0.88);   /* 8.2:1 on navy */
  --on-dark-sub:    rgba(255,255,255,0.70);   /* 5.4:1 on navy */
  --on-dark-muted:  rgba(255,255,255,0.50);   /* decorative only */

  /* ── On-gold-pale text ── */
  --on-gold-h:      #2D2000;    /* 9.4:1 on gold-pale */
  --on-gold-body:   #3D2C00;    /* 7.8:1 on gold-pale */
  --on-gold-label:  #5A3E00;    /* 5.8:1 on gold-pale */

  /* ── Borders ── */
  --border:         #C4B8A8;
  --border-strong:  #A09585;

  /* ── Typography ── */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Source Sans 3', system-ui, sans-serif;

  /* ── Layout ── */
  --max:    1180px;
  --r:      6px;
  --r-lg:   12px;
  --r-xl:   16px;
  --shadow: 0 4px 28px rgba(11,29,58,0.10);
  --shadow-hover: 0 10px 36px rgba(11,29,58,0.14);
}


/* ───────────────────────────────────────────────────────────────
   2. BASE TYPOGRAPHY
─────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background: var(--bg-base);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  color: var(--text-heading);
  line-height: 1.1;
}

p { line-height: 1.85; }

/* Display / serif utility */
.ff-serif  { font-family: var(--ff-serif); }
.ff-sans   { font-family: var(--ff-sans); }
.italic    { font-style: italic; }


/* ───────────────────────────────────────────────────────────────
   3. NAVIGATION
─────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(11,29,58,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold-bright);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1.5rem;
}

.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-name {
  font-family: var(--ff-display); font-weight: 900; font-size: 1rem;
  color: var(--white); letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-brand-tag {
  font-family: var(--ff-sans); font-weight: 400; font-size: 0.62rem;
  color: var(--gold-bright); letter-spacing: 0.2em; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links li { white-space: nowrap; }
.nav-links a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--on-dark-sub);
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover       { color: var(--gold-bright); }
.nav-links a.active      { color: var(--gold-bright); font-weight: 700; }
.nav-links .nav-cta {
  background: var(--gold-bright); color: var(--navy) !important;
  padding: 0.5rem 1.25rem; border-radius: var(--r);
  font-weight: 700; transition: background 0.2s, color 0.2s;
  white-space: nowrap; text-align: center; line-height: 1.2;
}
.nav-links .nav-cta:hover { background: #F5C85A; color: var(--navy) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 190; padding: 6rem 2rem 2rem;
  flex-direction: column; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 700;
  color: var(--white); border-bottom: 1px solid rgba(232,184,75,0.2);
  padding-bottom: 1rem; transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold-bright); }


/* ───────────────────────────────────────────────────────────────
   4. PAGE HERO (inner pages — about, workshops, etc.)
─────────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 148px 2rem 88px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(232,184,75,0.018) 2px, rgba(232,184,75,0.018) 3px
  );
  pointer-events: none;
}
/* Watermark text — set via data attribute in HTML: data-watermark="ABOUT" */
.page-hero::after {
  content: attr(data-watermark);
  position: absolute; right: -1rem; bottom: -2rem;
  font-family: var(--ff-display); font-size: 11rem; font-weight: 900;
  color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none;
  letter-spacing: 0.05em;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900; color: var(--on-dark-h);
  line-height: 1.08; margin-bottom: 1.5rem; max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-bright); }

.page-hero .hero-sub {
  font-size: 1.15rem; font-weight: 400;
  color: var(--on-dark-body); max-width: 600px; line-height: 1.82;
}

/* Flag stripe eyebrow */
.flag-eyebrow {
  display: flex; gap: 5px; margin-bottom: 1.5rem; align-items: center;
}
.flag-eyebrow .stripe { height: 3px; border-radius: 2px; width: 32px; }
.flag-eyebrow .stripe-r { background: #C84040; }
.flag-eyebrow .stripe-w { background: rgba(255,255,255,0.55); }
.flag-eyebrow .stripe-b { background: #3B6FBF; }
.flag-eyebrow .eyebrow-text {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-bright); margin-left: 0.6rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.75rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.breadcrumb a           { color: var(--on-dark-sub); transition: color 0.2s; }
.breadcrumb a:hover     { color: var(--gold-bright); }
.breadcrumb .sep        { color: rgba(255,255,255,0.3); }
.breadcrumb .current    { color: var(--gold-bright); }


/* ───────────────────────────────────────────────────────────────
   5. SITE HERO (homepage — full viewport)
─────────────────────────────────────────────────────────────── */
.site-hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.site-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(232,184,75,0.015) 2px, rgba(232,184,75,0.015) 3px
  );
  pointer-events: none;
}
.site-hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 5rem 2rem;
  width: 100%; position: relative; z-index: 1;
}
.site-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 900; color: var(--on-dark-h);
  line-height: 1.05; margin-bottom: 1.5rem;
}
.site-hero h1 em { font-style: italic; color: var(--gold-bright); display: block; }
.site-hero .hero-deck {
  font-size: 1.08rem; font-weight: 300;
  color: var(--on-dark-body); max-width: 520px; line-height: 1.8;
  margin-bottom: 2.5rem;
}
.site-hero .hero-deck strong { color: var(--on-dark-h); font-weight: 500; }

/* Scripture callout */
.hero-scripture {
  border-left: 3px solid rgba(232,184,75,0.5);
  padding-left: 1.25rem;
}
.hero-scripture blockquote {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1.05rem; color: var(--on-dark-muted); line-height: 1.55;
}
.hero-scripture cite {
  display: block; margin-top: 0.5rem;
  font-family: var(--ff-sans); font-style: normal;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-bright);
}


/* ───────────────────────────────────────────────────────────────
   6. UTILITY CLASSES
─────────────────────────────────────────────────────────────── */
.container     { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.container-sm  { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
.container-xs  { max-width: 640px; margin: 0 auto; padding: 0 2rem; }

/* Section wrappers */
.section        { padding: 5.5rem 0; }
.section-sm     { padding: 4rem 0; }
.section-lg     { padding: 7rem 0; }
.section-navy   { background: var(--navy); }
.section-cream  { background: var(--bg-base); }
.section-parch  { background: var(--bg-section); }
.section-gold   { background: var(--bg-gold); }
.section-ink    { background: var(--text-heading); }

/* Section dividers */
.border-top     { border-top: 1px solid var(--border); }
.border-bottom  { border-bottom: 1px solid var(--border); }

/* Section label (— LABEL TEXT) */
.section-label {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.5rem;
}
.section-label-line {
  width: 36px; height: 2px; background: var(--gold); flex-shrink: 0;
}
.section-label span {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: #7A5C10;
}
/* On dark backgrounds */
.section-label.on-dark .section-label-line { background: var(--gold-bright); }
.section-label.on-dark span               { color: var(--gold-bright); }
/* Center variant */
.section-label.center { justify-content: center; }

/* Section heading styles */
.section-h {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 900; color: var(--text-heading);
  margin-bottom: 1rem; line-height: 1.1;
}
.section-h em          { font-style: italic; color: var(--gold); }
.section-h.on-dark     { color: var(--on-dark-h); }
.section-h.on-dark em  { color: var(--gold-bright); }
.section-h.center      { text-align: center; }

.section-deck {
  font-size: 1.05rem; color: var(--text-body);
  line-height: 1.85; max-width: 62ch;
  margin-bottom: 2.5rem;
}
.section-deck.center   { text-align: center; margin-left: auto; margin-right: auto; }
.section-deck.on-dark  { color: var(--on-dark-body); }

/* Marquee strip */
.marquee-strip {
  overflow: hidden; position: relative;
  padding: 1.25rem 0;
}
.marquee-inner {
  display: flex; gap: 4rem; align-items: center;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-inner span {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 4rem;
}
.marquee-inner span::after {
  content: '✦'; font-style: normal; font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scripture / quote block */
.scripture-block {
  border-left: 3px solid rgba(232,184,75,0.4);
  padding-left: 1.25rem;
}
.scripture-block blockquote {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1.1rem; line-height: 1.6;
}
.scripture-block cite {
  display: block; margin-top: 0.5rem;
  font-family: var(--ff-sans); font-style: normal;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* Scroll hint arrow */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(232,184,75,0.6), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}


/* ───────────────────────────────────────────────────────────────
   7. BUTTONS
─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.9rem; border-radius: var(--r);
  font-family: var(--ff-sans); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: background 0.2s, transform 0.15s, color 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold    { background: var(--gold-bright); color: var(--navy); font-weight: 700; }
.btn-gold:hover { background: #F5C85A; }

.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent; color: var(--on-dark-body);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.btn-ghost { background: transparent; color: var(--text-body); }
.btn-ghost:hover { color: var(--text-heading); }

/* CTA row */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row.center { justify-content: center; }


/* ───────────────────────────────────────────────────────────────
   8. SECTION LAYOUTS
─────────────────────────────────────────────────────────────── */

/* Two-column: text + sidebar */
.layout-2col {
  display: grid; grid-template-columns: 1fr 360px; gap: 5rem; align-items: start;
}
.layout-2col-even {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.layout-2col-wide {
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}

/* Three-column grid */
.layout-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.layout-3col-wide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

/* Pyramid / stacked centered */
.layout-pyramid {
  display: flex; flex-direction: column; align-items: center; max-width: 680px; margin: 0 auto;
}

/* Sidebar sticky */
.sticky-sidebar { position: sticky; top: 96px; }

/* Approach pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.pillar {
  border-top: 3px solid var(--gold);
  padding-top: 1.75rem;
}
.pillar-num {
  font-family: var(--ff-display); font-size: 2.8rem; font-weight: 900;
  color: rgba(184,132,31,0.18); line-height: 1; margin-bottom: 0.75rem;
}
.pillar h3 {
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700;
  color: var(--text-heading); margin-bottom: 0.75rem;
}
.pillar h3 .pillar-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.3rem; font-family: var(--ff-sans);
}
.pillar p { font-size: 0.97rem; color: var(--text-body); line-height: 1.8; }

/* Covenant grid */
.covenant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.covenant-point { display: flex; gap: 1rem; align-items: flex-start; }
.covenant-num {
  font-family: var(--ff-display); font-size: 1.8rem; font-weight: 900;
  color: var(--on-gold-label); opacity: 0.55;
  line-height: 1; flex-shrink: 0; width: 36px; margin-top: 4px;
}
.covenant-point h4 {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.06rem;
  color: var(--on-gold-h); margin-bottom: 0.45rem;
}
.covenant-point p { font-size: 0.95rem; color: var(--on-gold-body); line-height: 1.72; }

/* Covenant callout section */
.callout-gold {
  background: var(--bg-gold);
  border: 1px solid #D4BC7A;
  border-radius: var(--r-xl);
  padding: 4rem;
  position: relative; overflow: hidden;
}
.callout-gold::before {
  content: '"';
  position: absolute; top: -1.5rem; left: 1.5rem;
  font-family: var(--ff-display); font-size: 14rem; font-weight: 900;
  color: rgba(90,62,0,0.07); line-height: 1; pointer-events: none;
}
.callout-gold-inner { position: relative; z-index: 1; }
.callout-gold h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900; color: var(--on-gold-h);
  margin-bottom: 1rem; line-height: 1.18;
}
.callout-gold .intro {
  font-size: 1.05rem; color: var(--on-gold-body);
  max-width: 680px; line-height: 1.85; margin-bottom: 0.5rem;
}
.callout-gold .intro strong { color: var(--on-gold-h); font-weight: 700; }

/* Contrast strip (vs section) */
.contrast-strip {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 4rem; align-items: start;
}
.contrast-col h3 {
  font-family: var(--ff-sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.contrast-col.theirs h3 { color: var(--red); }
.contrast-col.ours h3   { color: var(--navy); }
.contrast-col ul        { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contrast-col li        { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; line-height: 1.55; }
.contrast-col.theirs li { color: var(--text-secondary); }
.contrast-col.theirs li::before { content: '—'; color: rgba(139,21,21,0.4); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.contrast-col.ours li   { color: var(--text-heading); font-weight: 500; }
.contrast-col.ours li::before  { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; margin-top: 5px; }
.contrast-divider { width: 1px; background: var(--border); }
.contrast-vs { text-align: center; }
.contrast-vs .big-vs {
  font-family: var(--ff-display); font-size: 3rem; font-weight: 900;
  color: var(--navy); line-height: 1; margin-bottom: 0.5rem;
}
.contrast-vs p { font-size: 0.78rem; color: var(--text-ghost); letter-spacing: 0.1em; text-transform: uppercase; }


/* ───────────────────────────────────────────────────────────────
   9. CARDS
─────────────────────────────────────────────────────────────── */

/* Standard card */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card-body { padding: 2rem; }
.card-stripe { height: 4px; }
.card-stripe-gold  { background: var(--gold); }
.card-stripe-navy  { background: var(--navy); }
.card-stripe-red   { background: var(--red); }
.card-icon         { font-size: 1.75rem; margin-bottom: 1rem; }
.card h3 {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-heading); margin-bottom: 0.6rem;
}
.card p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.72; }
.card-tag {
  display: inline-block; margin-top: 1.1rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-gold-label);
  background: var(--gold-pale); border: 1px solid #C8A84A;
  padding: 0.3rem 0.75rem; border-radius: 100px;
}
.card-footer {
  padding: 1rem 2rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-base);
}
.card-footer span  { font-size: 0.75rem; font-weight: 500; color: var(--text-ghost); letter-spacing: 0.06em; }
.card-link {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: var(--gold-light);
  transition: gap 0.2s;
}
.card-link:hover   { gap: 0.7rem; }

/* Dark callout card (navy) */
.card-dark {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.25rem;
}
.card-dark .card-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1rem;
}
.card-dark blockquote {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1.35rem; color: var(--on-dark-h);
  line-height: 1.55; margin-bottom: 1rem;
}
.card-dark cite {
  font-family: var(--ff-sans); font-style: normal;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--on-dark-sub);
}
.card-dark-divider { width: 100%; height: 1px; background: rgba(232,184,75,0.2); margin: 1.5rem 0; }
.card-dark p { font-size: 0.9rem; color: var(--on-dark-body); line-height: 1.75; }
.card-dark p strong { color: var(--gold-bright); }

/* Manifesto / centred quote */
.manifesto-block { text-align: center; max-width: 760px; margin: 0 auto; }
.manifesto-ornament { font-size: 1.2rem; color: var(--gold); letter-spacing: 0.4em; margin-bottom: 1.5rem; }
.manifesto-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700;
  color: var(--text-heading); line-height: 1.4; margin-bottom: 1.5rem;
}
.manifesto-quote em { color: var(--red); font-style: normal; }
.manifesto-sub {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 560px; margin: 0 auto 2rem;
}

/* Path / join option */
.join-path {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--r); background: rgba(255,255,255,0.03);
  font-size: 0.9rem; color: var(--on-dark-body);
  transition: border-color 0.2s, background 0.2s, color 0.2s; cursor: pointer;
}
.join-path:hover { border-color: var(--gold-bright); background: rgba(232,184,75,0.07); color: var(--on-dark-h); }
.join-path-icon { font-size: 1.25rem; flex-shrink: 0; }
.join-path-text { flex: 1; }
.join-path-text strong { display: block; font-weight: 600; margin-bottom: 0.1rem; }
.join-path-text span { font-size: 0.78rem; color: var(--on-dark-sub); }
.join-path-arrow { color: var(--gold-bright); font-size: 0.9rem; }

/* ── Join section grid ───────────────────────────────────── */
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .join-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* Founder block */
.founder-avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.avatar-circle {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border: 3px solid var(--gold-bright);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.founder-name { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--on-dark-h); text-align: center; }
.founder-title { font-size: 0.8rem; font-weight: 400; color: var(--on-dark-sub); text-align: center; line-height: 1.55; }
.founder-credentials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.credential {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem; border: 1px solid rgba(232,184,75,0.35);
  border-radius: 100px; font-size: 0.78rem; font-weight: 500;
  color: var(--on-dark-body); letter-spacing: 0.03em;
}
.credential::before { content: '✦'; font-size: 0.45rem; color: var(--gold-bright); }

/* Cross symbol */
.cross-symbol { width: 110px; height: 110px; position: relative; margin-bottom: 2rem; }
.cross-v {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 12px; height: 100%;
  background: linear-gradient(to bottom, var(--gold-light), rgba(184,132,31,0.2));
  border-radius: 6px;
}
.cross-h {
  position: absolute; top: 30%; left: 0; right: 0; height: 12px;
  background: linear-gradient(to right, rgba(184,132,31,0.2), var(--gold-light), rgba(184,132,31,0.2));
  border-radius: 6px;
}

/* Email capture form */
.email-form { display: flex; flex-direction: column; gap: 0.85rem; }
.email-form input,
.email-form select {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  font-family: var(--ff-sans); font-size: 0.9rem;
  color: var(--on-dark-h); outline: none;
  transition: border-color 0.2s;
}
.email-form input::placeholder { color: rgba(255,255,255,0.35); }
.email-form input:focus,
.email-form select:focus { border-color: var(--gold-bright); }
.email-form select { appearance: none; cursor: pointer; color: rgba(255,255,255,0.78); }
.email-form select option { background: var(--navy); color: var(--on-dark-h); }
.form-note { font-size: 0.68rem; color: var(--on-dark-muted); text-align: center; letter-spacing: 0.05em; }


/* ───────────────────────────────────────────────────────────────
   10. FOOTER
─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-heading);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem; color: rgba(255,255,255,0.78);
  line-height: 1.72; margin-top: 0.75rem; max-width: 280px;
}
.footer-scripture {
  margin-top: 1.25rem; font-family: var(--ff-serif); font-style: italic;
  font-size: 0.92rem; color: rgba(255,255,255,0.72); line-height: 1.55;
}
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.65); }


/* ───────────────────────────────────────────────────────────────
   11. ANIMATIONS
─────────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }


/* ───────────────────────────────────────────────────────────────
   12. RESPONSIVE
─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .layout-2col        { grid-template-columns: 1fr; gap: 3rem; }
  .layout-2col-wide   { grid-template-columns: 1fr; gap: 3rem; }
  .sticky-sidebar     { position: static; }
  .pillars            { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links          { display: none; }
  .hamburger          { display: flex; }
  .layout-2col-even   { grid-template-columns: 1fr; gap: 3rem; }
  .layout-3col        { grid-template-columns: 1fr 1fr; }
  .layout-3col-wide   { grid-template-columns: 1fr 1fr; }
  .covenant-grid      { grid-template-columns: 1fr; }
  .callout-gold       { padding: 2.5rem; }
  .contrast-strip     { grid-template-columns: 1fr; gap: 2rem; }
  .contrast-divider   { display: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .founder-avatar-wrap { flex-direction: row; justify-content: flex-start; }
}

@media (max-width: 600px) {
  .layout-3col        { grid-template-columns: 1fr; }
  .layout-3col-wide   { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .site-hero h1       { font-size: 2.5rem; }
  .page-hero h1       { font-size: 2.2rem; }
  .btn-row            { flex-direction: column; }
}
