/* ─────────────────────────────────────────────────────────
   IMPACT International Church — Light Mode Stylesheet
   Palette: Crimson #6B0020  Gold #9A7A10  Cream #FDFAF5
────────────────────────────────────────────────────────── */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --crimson:    #6B0020;
  --crimson-dk: #3D0012;
  --crimson-md: #8B0028;
  --crimson-lt: #F5EDF0;
  --gold:       #9A7A10;
  --gold-lt:    #C9A227;
  --gold-pale:  #F0E6C0;
  --gold-dk:    #6E5608;

  /* Light surfaces */
  --bg:         #FDFAF5;
  --bg-alt:     #F8F0F3;
  --bg-card:    #FFFFFF;

  /* Typography */
  --text:       #1A0008;
  --text-2:     #4A1428;
  --text-muted: #7A4055;

  /* Fonts */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-condensed:  'Bebas Neue', Impact, sans-serif;
  --font-body:       'Montserrat', sans-serif;
  --font-subtext:    'Outfit', system-ui, sans-serif;
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-claypert:   'Claypert', var(--font-serif);
  --font-hero:       'Clash Display', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Navbar — burgundy from brand mark */
  --nav-burgundy-dk: #2b0f14;
  --nav-burgundy: #451820;
  --nav-burgundy-lt: #5e242e;

  /* Full-screen menu accent (celebration-style pink highlight) */
  --drawer-accent: #ea6e86;
}

@font-face {
  font-family: 'Claypert';
  src: url('../fonts/Claypert-Regular.woff2') format('woff2'),
       url('../fonts/Claypert-Regular.woff') format('woff'),
       url('../fonts/Claypert-Regular.otf') format('opentype'),
       url('../fonts/Claypert.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.overline {
  display: block;
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--crimson);
}

.section-lead {
  font-family: var(--font-subtext);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .3s var(--ease-out);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold-lt);
  color: #1A0008;
}
.btn-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(154,122,16,.3);
}

.btn-outline {
  background: transparent;
  color: rgba(245,239,224,.9);
  border: 1px solid rgba(245,239,224,.6);
}
.btn-outline:hover {
  background: rgba(245,239,224,.15);
  border-color: rgba(245,239,224,.9);
  transform: translateY(-2px);
}

.btn-crimson {
  background: var(--crimson);
  color: #FDFAF5;
  border-radius: 100px;
  padding: .85rem 2.4rem;
}
.btn-crimson:hover {
  background: var(--crimson-md);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(107,0,32,.35);
}

.full-width { width: 100%; text-align: center; }

.btn-connect-submit {
  background: var(--crimson);
  color: #fdfaf5;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.btn-connect-submit:hover {
  background: var(--crimson-md);
  color: #fdfaf5;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(107, 0, 32, 0.35);
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal-fade,
.reveal-up {
  opacity: 0;
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal-fade { transform: none; }
.reveal-up   { transform: translateY(40px); }

.reveal-fade.visible,
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }
.delay-5 { transition-delay: .60s; }

/* ══════════════════════════════════════════════════════════
   NAVBAR  — in document flow (scrolls with page); stays above drawer
══════════════════════════════════════════════════════════ */
#navbar {
  position: relative;
  z-index: 1002;
  width: 100%;
  margin: 0;
  padding: 0;
  background: radial-gradient(
    ellipse 100% 200% at 50% -20%,
    var(--nav-burgundy-lt) 0%,
    var(--nav-burgundy) 45%,
    var(--nav-burgundy-dk) 100%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

/* ── Logo ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: auto;
  height: 72px;
  max-width: min(320px, 58vw);
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }

/* ── Desktop links (centred between logo & Give CTA) ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  transition: color .2s;
  padding: .25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-lt);
  transition: width .3s var(--ease-out);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-links a.is-active {
  color: var(--drawer-accent);
}
.nav-links a.is-active::after {
  background: var(--drawer-accent);
  width: 100%;
}

/* ── Desktop Give CTA (replaces hamburger slot ≥769px) ─── */
.nav-give {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.68rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fdfaf5;
  background: var(--crimson);
  border: 2px solid transparent;
  border-radius: 2px;
  transition:
    background 0.25s ease,
    color 0.2s ease,
    transform 0.28s var(--ease-out),
    box-shadow 0.28s ease;
}

.nav-give:hover {
  background: var(--crimson-md);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(107, 0, 32, 0.35);
}

.nav-give:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 3px;
}

.nav-give[aria-current='page'] {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.65);
}

/* ── Hamburger (mobile; hidden on desktop) ─ */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 1001;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  transition: all .3s var(--ease-out);
  border-radius: 1px;
}
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 24px; }

.nav-toggle:hover span { background: var(--gold-lt); width: 24px !important; }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

@media (min-width: 769px) {
  .nav-give {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   FULL-SCREEN NAV DRAWER — Celebration-style (black + mega links)
══════════════════════════════════════════════════════════ */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0s linear 0.45s;
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transition: opacity 0.4s var(--ease-out), visibility 0s;
}


.drawer-panel {
  flex: 1;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(6rem, 14vh, 7.5rem) clamp(1.5rem, 4vw, 3rem) 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.drawer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 2.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  flex: 1;
}

.drawer-primary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.drawer-main-link.drawer-link {
  font-family: var(--font-condensed);
  font-size: clamp(2rem, 3.35vw, 3.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.06;
  padding: 0.18rem 0;
  transition: color 0.22s ease, letter-spacing 0.22s ease;
}

.drawer-main-link.drawer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.drawer-main-link.drawer-link.is-active {
  color: var(--drawer-accent);
}

.drawer-subwrap {
  min-width: 0;
}

.drawer-subnav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.drawer-subcol-wide {
  grid-column: span 3;
}

.drawer-subheading {
  font-family: var(--font-hero);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.drawer-sublink {
  font-family: var(--font-subtext);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.drawer-sublink:hover {
  color: #fff;
}

.drawer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: auto;
  padding-top: clamp(2rem, 5vh, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-copy {
  font-family: var(--font-subtext);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  flex: 1;
  min-width: 200px;
}

.drawer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.drawer-social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--drawer-accent);
}

@media (max-width: 1024px) {
  .drawer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .drawer-primary-list {
    align-items: center;
    text-align: center;
  }

  .drawer-subnav {
    grid-template-columns: 1fr 1fr;
  }

  .drawer-subcol-wide {
    grid-column: span 2;
  }

  .drawer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .drawer-subnav {
    grid-template-columns: 1fr;
  }

  .drawer-subcol-wide {
    grid-column: span 1;
  }
}

/* ── Mobile drawer: simple 4-link menu ── */
@media (max-width: 768px) {
  .drawer-panel {
    padding: 5.5rem 2rem 2.5rem;
    justify-content: center;
  }

  .drawer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex: 1;
  }

  .drawer-subwrap,
  .drawer-bottom {
    display: none;
  }

  .drawer-primary-list {
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .drawer-primary-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .drawer-primary-list li:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .drawer-main-link.drawer-link {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.9);
  }

  .drawer-main-link.drawer-link:hover,
  .drawer-main-link.drawer-link:focus {
    color: #fff;
    letter-spacing: 0.16em;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO  — congregation backdrop + alternating headline reveals
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background — worship / community photo (full bleed) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, transparent 38%, rgba(0, 0, 0, 0.22) 100%),
    url('../assets/013ac8cc64524d97e0e80d31b1575b28.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Dark overlay over hero for readable type */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}


/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 960px;
  width: 100%;
}

/* ── Big condensed headline ─── */
.hero-title {
  font-family: var(--font-hero);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  line-height: 1.08;
}

.title-line {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(2.25rem, 5.4vw, 4.35rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #FFFFFF;
  display: block;
  text-shadow: 0 2px 30px rgba(0,0,0,.6);
}

.title-accent {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(2.25rem, 5.4vw, 4.35rem);
  letter-spacing: 0.02em;
  text-transform: none;
  display: block;
  color: #FFFFFF;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.75);
}

/* Staggered headline entrance: L / R / L */
@keyframes hero-slide-left {
  from {
    opacity: 0;
    transform: translateX(-3.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-slide-right {
  from {
    opacity: 0;
    transform: translateX(3.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-line-left,
.hero-line-right {
  opacity: 0;
  animation-duration: 1.05s;
  animation-timing-function: var(--ease-out);
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}

.hero-line-left {
  animation-name: hero-slide-left;
}

.hero-line-right {
  animation-name: hero-slide-right;
}

.hero-delay-1 {
  animation-delay: 0.25s;
}

.hero-delay-2 {
  animation-delay: 0.55s;
}

.hero-delay-3 {
  animation-delay: 0.85s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-line-left,
  .hero-line-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  #hero .hero-actions.reveal-up {
    transition-delay: 0s;
  }
}

/* ── Pill CTA buttons ─── */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-pill-light {
  padding: .85rem 2.4rem;
  border-radius: 100px;
  background: #FFFFFF;
  color: #0A0A0A;
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 2px solid #FFFFFF;
  transition: background .25s, color .25s, transform .25s var(--ease-out), box-shadow .25s;
  display: inline-block;
}
.btn-pill-light:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.btn-pill-dark {
  padding: .85rem 2.4rem;
  border-radius: 100px;
  background: transparent;
  color: #FFFFFF;
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.55);
  transition: background .25s, border-color .25s, transform .25s var(--ease-out);
  display: inline-block;
}
.btn-pill-dark:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}

#hero .hero-actions.reveal-up {
  transition:
    opacity 0.95s var(--ease-out),
    transform 0.95s var(--ease-out);
  transition-delay: 2.05s;
}

/* ── Scroll cue ─── */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 3;
  opacity: .4;
  animation: scrollBob 2.5s ease-in-out infinite;
}

.hero-scroll-cue span {
  font-family: var(--font-hero);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero-content .reveal-up.visible { opacity: 1; transform: none; }
.hero-content .delay-1 { transition-delay: .18s; }
.hero-content .delay-2 { transition-delay: .36s; }
.hero-content .delay-3 { transition-delay: .54s; }
.hero-content .delay-4 { transition-delay: .72s; }

/* ══════════════════════════════════════════════════════════
   DNA / ABOUT — editorial header + bento mosaic
══════════════════════════════════════════════════════════ */
.section-about {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(107, 0, 32, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    var(--bg);
}

.section-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--crimson) 22%,
    var(--gold-lt) 50%,
    var(--crimson) 78%,
    transparent
  );
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-lead { margin: 0 auto; }

.about-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-deco-1 {
  width: clamp(260px, 40vw, 420px);
  height: clamp(260px, 40vw, 420px);
  background: radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.12), transparent 70%);
  top: -8%;
  left: -6%;
}

.about-deco-2 {
  width: clamp(200px, 32vw, 340px);
  height: clamp(200px, 32vw, 340px);
  background: radial-gradient(circle at 70% 60%, rgba(107, 0, 32, 0.08), transparent 68%);
  bottom: -4%;
  right: -5%;
}

.about-inner {
  position: relative;
  z-index: 1;
}

.about-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 3.75rem);
  border-bottom: 1px solid rgba(107, 0, 32, 0.1);
}

.about-eyebrow {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.85rem;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 3.85rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--text);
  letter-spacing: 0.01em;
}

.about-heading em {
  font-style: italic;
  color: var(--crimson);
}

.about-rule {
  width: clamp(72px, 12vw, 120px);
  height: 3px;
  margin-top: 1.75rem;
  background: linear-gradient(to right, var(--gold-lt), var(--crimson));
  border-radius: 2px;
}

.about-head-body {
  padding-bottom: 0.35rem;
}

.about-lead {
  font-family: var(--font-subtext);
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  line-height: 1.82;
  color: var(--text-muted);
}

.about-kicker {
  margin-top: 1.35rem;
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.about-video-full {
  width: 100%;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.about-video-full .about-video-inner {
  position: relative;
  width: 100%;
  min-height: min(100vh, 100svh);
  max-height: 100vh;
  max-height: 100svh;
  overflow: hidden;
  background: #0c0a0b;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.about-video-full .about-video-el {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background: rgba(12, 10, 11, 0.42);
  transition:
    opacity 0.4s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    visibility 0.4s;
}

.about-video-play:focus {
  outline: none;
}

.about-video-play-focus {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 3px rgba(201, 162, 39, 0.65);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.about-video-play:focus-visible .about-video-play-focus {
  opacity: 1;
}

.about-video-play-icon {
  position: relative;
  width: clamp(76px, 14vw, 112px);
  height: clamp(76px, 14vw, 112px);
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.about-video-play-bg {
  fill: rgba(107, 0, 32, 0.85);
  stroke: rgba(201, 162, 39, 0.65);
  stroke-width: 1.5;
}

.about-video-play-triangle {
  fill: var(--gold-lt, #e8d5a3);
}

.about-video-play:hover .about-video-play-icon {
  transform: scale(1.06);
}

.about-video-full.is-playing .about-video-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  .about-video-full .about-video-inner {
    min-height: unset;
    max-height: unset;
    aspect-ratio: 16 / 9;
  }
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.about-tile {
  position: relative;
  overflow: visible;
}

.about-tile.dna-card {
  background: var(--bg-card);
  border: 1px solid rgba(107, 0, 32, 0.1);
  border-radius: 6px;
  padding: clamp(1.75rem, 4vw, 2.35rem);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 18px 40px rgba(107, 0, 32, 0.07);
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s ease, border-color 0.3s ease;
}

.about-tile.dna-card:hover {
  border-color: rgba(107, 0, 32, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 28px 56px rgba(107, 0, 32, 0.12);
}

.about-tile.dna-card::after {
  display: none;
}

.about-tile-num {
  position: absolute;
  top: clamp(1.25rem, 3vw, 1.6rem);
  right: clamp(1.25rem, 3vw, 1.6rem);
  font-family: var(--font-condensed);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: rgba(107, 0, 32, 0.1);
  letter-spacing: 0.04em;
  user-select: none;
  pointer-events: none;
}

.about-tile-body {
  position: relative;
  z-index: 1;
}

.about-tile h3 {
  font-family: var(--font-hero);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}

.about-tile--featured.dna-card h3 {
  color: rgba(253, 250, 245, 0.98);
}

.about-tile p {
  font-family: var(--font-subtext);
  font-size: 0.9rem;
  line-height: 1.73;
  color: var(--text-muted);
}

.about-tile--featured.dna-card p {
  color: rgba(253, 250, 245, 0.82);
}

.about-tile--featured {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: min(340px, 52vw);
}

.about-tile:not(.about-tile--featured):nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.about-tile:not(.about-tile--featured):nth-of-type(3) {
  grid-column: 3;
  grid-row: 1;
}

.about-tile:not(.about-tile--featured):nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.about-tile:not(.about-tile--featured):nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
}

.about-tile--wide {
  grid-column: 1 / -1;
  grid-row: 3;
}

.about-tile--featured.dna-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 162, 39, 0.2) 0%, transparent 45%),
    linear-gradient(152deg, var(--crimson-dk) 0%, var(--crimson) 48%, var(--crimson-md) 100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.about-tile--featured.dna-card .about-tile-num {
  color: rgba(255, 255, 255, 0.13);
}

.about-tile--wide.dna-card {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: flex-start;
}

.about-tile--wide .about-tile-num {
  position: static;
  flex-shrink: 0;
  font-size: clamp(3rem, 8vw, 4rem);
  line-height: 1;
  color: rgba(107, 0, 32, 0.12);
}

.about-tile--wide .about-tile-body {
  flex: 1;
  min-width: min(100%, 220px);
}

@media (max-width: 1024px) {
  .about-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-tile--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
  }

  .about-tile:not(.about-tile--featured):nth-of-type(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .about-head {
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 2.75rem;
  }

  .about-mosaic {
    grid-template-columns: 1fr;
  }

  .about-tile--wide.dna-card {
    flex-direction: column;
  }

  .about-tile--wide .about-tile-num {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   SCRIPTURE STRIP — congregation photo + dark overlay + quote
══════════════════════════════════════════════════════════ */
.scripture-bar {
  position: relative;
  padding: clamp(4rem, 10vw, 6.25rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

.scripture-bar-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(8, 4, 8, 0.25) 0%, transparent 35%, transparent 65%, rgba(8, 4, 8, 0.35) 100%),
    url('../assets/scripture-congregation.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.scripture-bar-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 70% at 50% 0%, rgba(107, 0, 32, 0.25) 0%, transparent 55%),
    linear-gradient(178deg, rgba(12, 4, 10, 0.78) 0%, rgba(26, 6, 16, 0.82) 48%, rgba(14, 4, 10, 0.88) 100%);
}

.scripture-bar-inner {
  position: relative;
  z-index: 2;
}

.scripture-panel {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.scripture-label {
  font-family: var(--font-hero);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  opacity: 0.95;
}

.scripture-panel::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  line-height: 0.65;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.22);
  margin-bottom: 0.15em;
  user-select: none;
  pointer-events: none;
}

.scripture-blockquote {
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem);
  background: rgba(4, 2, 4, 0.45);
  border: 1px solid rgba(253, 250, 245, 0.12);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.scripture-text {
  font-family: var(--font-subtext);
  font-size: clamp(1.05rem, 2.1vw, 1.42rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(253, 250, 245, 0.94);
  max-width: 52ch;
  margin: 0 auto;
}

.scripture-text::before {
  content: open-quote;
}
.scripture-text::after {
  content: close-quote;
}

.scripture-cite {
  display: block;
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  font-style: normal;
  font-family: var(--font-subtext);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

@media (max-width: 560px) {
  .scripture-blockquote {
    padding: 1.5rem 1.35rem;
  }

  .scripture-panel::before {
    font-size: 3rem;
    margin-bottom: 0;
  }

  .scripture-cite {
    letter-spacing: 0.14em;
  }
}

/* ══════════════════════════════════════════════════════════
   VISION  — white surface + card commitments + framed pullquote
══════════════════════════════════════════════════════════ */
.section-vision {
  background: #fff;
  overflow: hidden;
  color: var(--text);
}

/* ── Mission statement header ("Why We Exist") ── */
.vision-header {
  padding: clamp(5.5rem, 12vw, 8rem) 0 clamp(4rem, 8vw, 5.5rem);
  text-align: center;
}

.vision-header .vision-overline {
  color: var(--crimson);
}

.vision-statement {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.35rem;
  letter-spacing: 0.01em;
}

.vision-statement em {
  font-style: italic;
  color: var(--crimson-md);
}

.vision-sub {
  font-family: var(--font-subtext);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Decorative rule ── */
.vision-rule-wrap {
  padding: 0 2rem;
  max-width: 720px;
  margin: 0 auto clamp(4rem, 8vw, 5.75rem);
}

.vision-rule {
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 162, 39, 0.25) 20%,
    var(--crimson-md) 50%,
    rgba(201, 162, 39, 0.25) 80%,
    transparent 100%
  );
}

/* ── Commitment cards ── */
.vision-list {
  list-style: none;
  padding: 0 0 clamp(5rem, 11vw, 7rem);
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.25vw, 1.35rem);
}

.vl-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: clamp(1.35rem, 3vw, 2.25rem);
  padding: clamp(1.45rem, 3.5vw, 2.35rem);
  border: 1px solid rgba(107, 0, 32, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, var(--crimson-lt) 320%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 14px 40px rgba(26, 0, 8, 0.045);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
  cursor: default;
}

.vl-item:hover {
  border-color: rgba(107, 0, 32, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 22px 50px rgba(26, 0, 8, 0.09);
  transform: translateY(-3px);
}

.vl-num {
  font-family: var(--font-condensed);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--crimson);
  background: rgba(107, 0, 32, 0.08);
  min-width: 3.05rem;
  height: 3.05rem;
  padding: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.vl-item:hover .vl-num {
  background: var(--crimson);
  color: #fff;
}

.vl-mid {
  min-width: 0;
}

.vl-title {
  font-family: var(--font-hero);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
}

.vl-item:hover .vl-title {
  color: var(--crimson-md);
}

.vl-desc {
  font-family: var(--font-subtext);
  font-size: clamp(0.86rem, 1.65vw, 0.93rem);
  line-height: 1.76;
  color: var(--text-muted);
  max-width: 52ch;
}

.vl-ref {
  font-family: var(--font-subtext);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  opacity: 0.88;
  white-space: nowrap;
  transition: opacity 0.3s ease, color 0.3s ease;
  align-self: center;
}

.vl-item:hover .vl-ref {
  opacity: 1;
  color: var(--crimson-md);
}

/* ── Visionary Design — editorial split rail + statement ── */
.vision-pullquote {
  padding: 0 clamp(1rem, 3vw, 2rem) clamp(5rem, 12vw, 8rem);
  background:
    radial-gradient(ellipse 72% 60% at 18% 20%, rgba(107, 0, 32, 0.04), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(253, 250, 245, 0.65) 100%);
}

.vpq-card {
  display: grid;
  grid-template-columns: minmax(5px, 7px) 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: clip;
  background: #fff;
  border: 1px solid rgba(107, 0, 32, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 36px 80px rgba(26, 0, 8, 0.07),
    0 6px 20px rgba(26, 0, 8, 0.04);
}

.vpq-card-rail {
  position: relative;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: stretch;
  min-height: 100%;
  background: linear-gradient(180deg, var(--crimson-md) 0%, var(--crimson-dk) 50%, var(--crimson) 100%);
}

.vpq-rail-line {
  position: absolute;
  inset: 1.25rem 0 auto 0;
  height: calc(100% - 2.5rem);
  margin: 0 auto;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(240, 230, 192, 0) 0%,
    var(--gold-lt) 18%,
    rgba(240, 230, 192, 0.35) 50%,
    var(--gold-lt) 82%,
    rgba(240, 230, 192, 0) 100%
  );
  opacity: 0.85;
}

.vpq-label {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin: 0;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.75rem, 4.5vw, 3.25rem) 0;

  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-hero);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--crimson);
}

.vpq-label::after {
  content: '';
  flex: 1;
  min-width: 3rem;
  height: 1px;
  background: linear-gradient(to right, var(--gold-lt), transparent);
  max-width: 140px;
}

.vpq-quote {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  position: relative;
  padding:
    clamp(1rem, 2.75vw, 1.85rem)
    clamp(1.75rem, 4.5vw, 3.25rem)
    clamp(2.5rem, 5vw, 3.75rem);
  border: none;
}

.vpq-quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 9vw, 5rem);
  line-height: 0;
  position: absolute;
  top: clamp(0.85rem, 2.5vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.85rem);
  color: rgba(107, 0, 32, 0.07);
  pointer-events: none;
  user-select: none;
}

.vpq-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 3.1vw, 2.05rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--text);
  max-width: 38ch;
  margin: 0;
}

@media (max-width: 560px) {
  .vpq-label::after {
    display: none;
  }

  .vpq-quote p {
    max-width: none;
  }
}

/* ══════════════════════════════════════════════════════════
   PASTOR  — editorial portrait + typography stack
══════════════════════════════════════════════════════════ */
.section-pastor {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 92% -10%, rgba(107, 0, 32, 0.42), transparent 52%),
    radial-gradient(ellipse 65% 50% at -5% 95%, rgba(201, 162, 39, 0.09), transparent 48%),
    linear-gradient(165deg, #141110 0%, #0b0908 45%, #060504 100%);
}

.section-pastor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 162, 39, 0.35) 35%,
    rgba(107, 0, 32, 0.5) 50%,
    rgba(201, 162, 39, 0.35) 65%,
    transparent
  );
  pointer-events: none;
}

.pastor-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  min-height: min(82vh, 820px);
}

.pastor-showcase__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(2.25rem, 5vw, 4rem) clamp(1rem, 3vw, 2.5rem);
}

.pastor-showcase__frame {
  position: relative;
  flex: 0 1 auto;
  width: 100%;
  max-width: min(460px, 92%);
  border-radius: 4px 22px 22px 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.35) inset,
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.pastor-showcase__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.12) 0%,
    transparent 38%,
    transparent 72%,
    rgba(107, 0, 32, 0.18) 100%
  );
}

.pastor-showcase__img {
  width: 100%;
  height: auto;
  min-height: min(52vh, 440px);
  max-height: min(62vh, 520px);
  object-fit: cover;
  object-position: center 32%;
  display: block;
  transition: transform 0.75s var(--ease-out);
}

.pastor-showcase__visual:hover .pastor-showcase__img {
  transform: scale(1.03);
}

.pastor-showcase__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.75rem, 4vw, 3.5rem) clamp(2.5rem, 6vw, 5rem)
    clamp(1rem, 3vw, 2.5rem);
}

.pastor-showcase__inner {
  max-width: 28.5rem;
  text-align: left;
}

.pastor-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 600;
  font-family: var(--font-hero);
  margin-bottom: 1rem;
}

.pastor-title {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.06;
  color: #ffffff;
  margin: 0 0 0.65rem;
}

.pastor-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(240, 230, 192, 0.92);
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin: 0 0 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.pastor-short-bio {
  font-family: var(--font-subtext);
  font-size: clamp(0.95rem, 1.45vw, 1.08rem);
  line-height: 1.82;
  color: rgba(253, 250, 245, 0.68);
  margin: 0 0 2.25rem;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 2.1rem;
  border-radius: 2px;
  border: none;
  background: var(--crimson);
  color: #fdfaf5;
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.28s var(--ease-out),
    box-shadow 0.28s ease;
}

.btn-read-more:hover {
  background: var(--crimson-md);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(107, 0, 32, 0.35);
}

.btn-read-more:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 3px;
}

a.btn-read-more {
  text-decoration: none;
}

.pe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.pe-col {
  padding-left: 1.75rem;
  border-left: 2px solid rgba(201, 162, 39, 0.28);
}

.pe-sub {
  font-family: var(--font-hero);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 1.35rem;
}

.pe-col p {
  font-family: var(--font-subtext);
  font-size: 0.93rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1rem;
}

.pe-col strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   FOUNDATION — framed split + pillar spine list
══════════════════════════════════════════════════════════ */
.section-foundation {
  position: relative;
  padding: clamp(5.25rem, 11vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse 100% 80% at 10% -15%, rgba(107, 0, 32, 0.05), transparent 52%),
    radial-gradient(ellipse 70% 50% at 92% 100%, rgba(201, 162, 39, 0.08), transparent 48%),
    #fff;
  overflow: hidden;
  border-top: 1px solid rgba(107, 0, 32, 0.07);
  border-bottom: 1px solid rgba(107, 0, 32, 0.06);
}

.foundation-shell {
  position: relative;
  padding: clamp(2.5rem, 5.5vw, 4rem) clamp(1.5rem, 4vw, 3.25rem);
  border-radius: 22px;
  border: 1px solid rgba(107, 0, 32, 0.1);
  background: linear-gradient(
    148deg,
    #fff 0%,
    #fefdfd 52%,
    rgba(251, 248, 246, 0.85) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 32px 90px rgba(26, 0, 8, 0.07);
}

.foundation-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(2rem, 8vw, 5rem);
  width: clamp(140px, 22vw, 220px);
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(to right, var(--gold-lt), var(--crimson-md), transparent);
  opacity: 0.92;
}

.foundation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.12fr);
  gap: clamp(2.75rem, 7vw, 5.75rem);
  align-items: start;
}

.foundation-intro {
  text-align: left;
  padding-top: 0.35rem;
}

.foundation-title.section-title {
  margin-bottom: 1.35rem;
  line-height: 1.12;
}

.section-foundation .overline {
  color: var(--crimson);
}

.section-foundation .section-title {
  color: var(--text);
}

.section-foundation .foundation-title em {
  color: var(--crimson-md);
}

.foundation-lead {
  font-family: var(--font-subtext);
  font-size: clamp(0.96rem, 1.82vw, 1.06rem);
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0;
  line-height: 1.82;
}

.foundation-intro .btn-read-more {
  margin-top: 2rem;
}

.foundation-list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0;
  position: relative;
}

.foundation-row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(3.85rem, 9vw, 6.35rem) minmax(0, 1fr) 1.85rem;
  align-items: center;
  gap: clamp(1rem, 2.75vw, 1.85rem);
  padding: clamp(1.05rem, 2.75vw, 1.55rem)
    clamp(0.85rem, 2vw, 1.75rem)
    clamp(1.05rem, 2.75vw, 1.55rem)
    0;
  margin-right: clamp(-0.5rem, -1vw, 0);
  border-bottom: 1px solid rgba(107, 0, 32, 0.07);
  border-radius: 0 14px 14px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}

.foundation-row:last-child {
  border-bottom: none;
}

.foundation-row:hover {
  background: rgba(107, 0, 32, 0.035);
  box-shadow:
    inset 6px 0 0 rgba(201, 162, 39, 0.55),
    0 8px 32px rgba(26, 0, 8, 0.04);
  transform: translateX(6px);
}

.foundation-marker {
  font-family: var(--font-condensed);
  font-size: clamp(2.85rem, 7.5vw, 4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.05em;
  color: rgba(107, 0, 32, 0.12);
  text-align: center;
  transition: color 0.3s ease, transform 0.3s ease;
  justify-self: center;
}

.foundation-row:hover .foundation-marker {
  color: rgba(139, 0, 40, 0.38);
  transform: scale(1.04);
}

.foundation-name {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(1.06rem, 2.05vw, 1.42rem);
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1.35;
}

.foundation-row::after {
  content: '';
  justify-self: end;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(154, 122, 16, 0.45);
  background: radial-gradient(circle at 35% 30%, rgba(240, 230, 192, 0.9), rgba(154, 122, 16, 0.15));
  opacity: 0.55;
}

.foundation-row:hover::after {
  opacity: 1;
  border-color: var(--gold-dk);
}

@media (max-width: 960px) {
  .foundation-layout {
    grid-template-columns: 1fr;
    gap: clamp(2.75rem, 7vw, 3.75rem);
  }

  .foundation-intro {
    text-align: center;
    max-width: 36rem;
    margin-inline: auto;
  }

  .foundation-lead {
    max-width: 36rem;
    margin-inline: auto;
  }

  .foundation-shell::before {
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 55vw);
  }

  .foundation-row:hover {
    transform: none;
  }
}
/* ══════════════════════════════════════════════════════════
   CONNECT  (light alt)
══════════════════════════════════════════════════════════ */
.section-connect {
  padding: 8rem 0;
  background: var(--bg-alt);
  position: relative;
}

.section-connect::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(107,0,32,.15), transparent);
}

.connect-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.connect-text p {
  font-family: var(--font-subtext);
  font-size: .98rem;
  color: var(--text-muted);
  line-height: 1.88;
  margin-bottom: 1rem;
}

.connect-info {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px solid rgba(107,0,32,.12);
  background: var(--bg-card);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.info-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(107,0,32,.07);
}

.info-item:last-child { border-bottom: none; padding-bottom: 0; }

.info-label {
  font-family: var(--font-hero);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
}

.info-val {
  font-family: var(--font-subtext);
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
}

/* Form */
.connect-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(107,0,32,.12);
  border-top: 3px solid var(--crimson);
  border-radius: 4px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.connect-form h3 {
  font-family: var(--font-hero);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem 1rem .75rem;
  background: var(--bg);
  border: 1px solid rgba(107,0,32,.18);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-subtext);
  font-size: .88rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none;
}

.connect-form .form-group input::placeholder {
  color: rgba(26, 0, 8, 0.28);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

.form-group select { cursor: pointer; color: var(--text); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(107,0,32,.08);
}

.form-group label {
  position: absolute;
  top: .9rem; left: 1rem;
  font-family: var(--font-hero);
  font-size: .8rem;
  color: rgba(107,0,32,.4);
  pointer-events: none;
  transition: all .25s;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -0.5rem;
  font-size: .62rem;
  background: var(--bg);
  padding: 0 .25rem;
  color: var(--crimson);
  letter-spacing: .08em;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   FOOTER  (dark crimson — bookend with hero)
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--crimson-dk);
  border-top: 3px solid var(--crimson);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out);
}

.footer-logo-link:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  width: auto;
  height: 64px;
  max-width: min(220px, 50vw);
  object-fit: contain;
}

.footer-logo-text { display: flex; flex-direction: column; line-height: 1.15; }

.footer-logo-impact {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: .08em;
  color: var(--gold-lt);
  line-height: 1;
}

.footer-logo-sub {
  font-family: var(--font-hero);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(201,162,39,.6);
}

.footer-tagline {
  font-family: var(--font-subtext);
  font-style: italic;
  font-size: .95rem;
  color: rgba(253,250,245,.55);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 600;
  font-family: var(--font-hero);
  margin-bottom: 1.25rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-links a {
  font-family: var(--font-subtext);
  font-size: .82rem;
  color: rgba(253,250,245,.5);
  transition: color .25s;
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-contact p {
  font-family: var(--font-subtext);
  font-size: .85rem;
  color: rgba(253,250,245,.55);
  margin-bottom: .5rem;
}

.footer-verse {
  margin-top: 1rem !important;
  font-family: var(--font-subtext);
  font-style: italic !important;
  line-height: 1.65;
  color: rgba(253,250,245,.45) !important;
}

.footer-verse cite {
  font-style: normal;
  font-family: var(--font-subtext);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(253,250,245,.06);
}

.footer-bottom p {
  font-family: var(--font-subtext);
  font-size: .72rem;
  color: rgba(253,250,245,.3);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   GIVE PAGE — focused layout (hero CTAs + statement + channels)
══════════════════════════════════════════════════════════ */
.page-give {
  background: var(--bg);
}

.page-leadership {
  background: #f7f5f2;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 2000;
  padding: 0.65rem 1.25rem;
  background: var(--crimson);
  color: #fdfaf5;
  font-family: var(--font-subtext);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.75rem;
  outline: 2px solid var(--gold-lt);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.give-page {
  overflow-x: hidden;
}

.leadership-page {
  overflow-x: hidden;
}

.give-hero {
  position: relative;
  min-height: clamp(380px, 58vw, 560px);
  display: flex;
  align-items: flex-end;
  padding: clamp(5rem, 15vw, 8.5rem) 0 clamp(3.25rem, 9vw, 5.5rem);
}

.give-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(26, 0, 8, 0.9) 0%, rgba(107, 0, 32, 0.5) 42%, rgba(12, 10, 11, 0.94) 100%),
    url('../assets/4fdf518f854e3da9c41baea3f1ef9afd.jpg');
  background-size: cover;
  background-position: center 62%;
}

.give-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 5, 4, 0.55) 0%, transparent 50%);
  pointer-events: none;
}

.give-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.give-hero__eyebrow {
  font-family: var(--font-hero);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}

.give-hero__title {
  font-family: var(--font-hero);
  font-size: clamp(3rem, 11vw, 5.25rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 1.25rem;
}

.give-hero__lead {
  font-family: var(--font-subtext);
  font-size: clamp(1.02rem, 2.1vw, 1.18rem);
  line-height: 1.75;
  color: rgba(253, 250, 245, 0.86);
  max-width: 48ch;
  margin: 0 0 1.75rem;
}

.give-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-bottom: 1rem;
}

.give-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.75rem;
  font-family: var(--font-hero);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.28s var(--ease-out),
    box-shadow 0.28s ease;
}

.give-btn--primary {
  background: var(--crimson);
  color: #fdfaf5;
  border: 2px solid transparent;
}

.give-btn--primary:hover {
  background: var(--crimson-md);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(107, 0, 32, 0.35);
}

.give-btn--ghost {
  background: rgba(253, 250, 245, 0.08);
  color: #fdfaf5;
  border: 2px solid rgba(253, 250, 245, 0.45);
  backdrop-filter: blur(6px);
}

.give-btn--ghost:hover {
  background: rgba(253, 250, 245, 0.14);
  border-color: rgba(253, 250, 245, 0.75);
  transform: translateY(-2px);
}

.give-btn:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 3px;
}

.give-statement {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(107, 0, 32, 0.08);
}

.give-statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

.give-statement__figure {
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(165deg, var(--crimson-lt) 0%, #fff 45%);
  border: 1px solid rgba(107, 0, 32, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(107, 0, 32, 0.07);
}

.give-statement__quote {
  margin: 0;
}

.give-statement__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.give-statement__cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-hero);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
}

.give-statement__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
}

.give-statement__text {
  font-family: var(--font-subtext);
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin: 0 0 1.15rem;
}

.give-statement__text:last-child {
  margin-bottom: 0;
}

.give-statement__link {
  color: var(--crimson-md);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.give-statement__link:hover {
  color: var(--crimson);
}

.give-channels {
  padding: clamp(4rem, 9vw, 6.25rem) 0;
  background:
    linear-gradient(180deg, rgba(107, 0, 32, 0.03) 0%, transparent 45%),
    var(--bg-alt);
}

.give-channels__wrap {
  max-width: 68rem;
}

.give-channels__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.75rem, 6vw, 3.75rem);
}

.give-channels__eyebrow {
  font-family: var(--font-hero);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 0 0 0.65rem;
}

.give-channels__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.give-channels__lede {
  font-family: var(--font-subtext);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.give-channel-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

.give-channel-card {
  display: flex;
  gap: 1.1rem 1.25rem;
  align-items: flex-start;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: var(--bg);
  border: 1px solid rgba(107, 0, 32, 0.1);
  border-radius: 4px;
  box-shadow: 0 2px 0 rgba(107, 0, 32, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.28s ease,
    transform 0.28s var(--ease-out);
}

.give-channel-card:hover {
  border-color: rgba(107, 0, 32, 0.22);
  box-shadow:
    0 12px 32px rgba(107, 0, 32, 0.08),
    0 0 0 1px rgba(212, 175, 55, 0.18);
  transform: translateY(-3px);
}

.give-channel-card__index {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hero);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--crimson);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(107, 0, 32, 0.08));
  border-radius: 3px;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.give-channel-card__body {
  min-width: 0;
}

.give-channel-card__title {
  font-family: var(--font-hero);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.55rem;
}

.give-channel-card__text {
  font-family: var(--font-subtext);
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--text-muted);
  margin: 0;
}

.give-channel-card__placeholder {
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.88;
}

.give-inline-link {
  color: var(--crimson-md);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.give-inline-link:hover {
  color: var(--crimson);
}

/* ══════════════════════════════════════════════════════════
   LEADERSHIP PAGE — modern split / editorial
══════════════════════════════════════════════════════════ */
.leadership-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(100vh, 58rem);
}

.leadership-hero__media {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: #1a1516;
}

.leadership-hero__photo {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.02);
}

.leadership-hero__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(12, 10, 11, 0.22) 100%);
  pointer-events: none;
}

.leadership-hero__panel {
  display: flex;
  align-items: center;
  padding: clamp(2.75rem, 7vw, 5rem) clamp(2rem, 5vw, 5rem);
  background: #0c0a0b;
  color: #f5f2eb;
}

.leadership-hero__panel-inner {
  max-width: 29rem;
}

.leadership-hero__rule {
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-lt), transparent);
  margin: 0 0 1.85rem;
}

.leadership-hero__role {
  font-family: var(--font-hero);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 162, 39, 0.88);
  margin: 0 0 0.55rem;
}

.leadership-hero__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.16;
  color: #fff;
  margin: 0 0 0.6rem;
}

.leadership-hero__meta {
  font-family: var(--font-subtext);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(253, 250, 245, 0.42);
  font-style: italic;
  margin: 0 0 1.45rem;
}

.leadership-hero__bio {
  font-family: var(--font-subtext);
  font-size: 0.97rem;
  line-height: 1.82;
  color: rgba(253, 250, 245, 0.7);
  margin: 0;
}

.leadership-narrative {
  padding: clamp(4.25rem, 11vw, 7.25rem) 0;
  background: #f7f5f2;
}

.leadership-narrative__shell {
  max-width: 1080px;
}

.leadership-narrative__intro {
  margin-bottom: clamp(2.75rem, 6vw, 4.25rem);
  max-width: 38rem;
}

.leadership-narrative__eyebrow {
  font-family: var(--font-hero);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 0 0 0.9rem;
}

.leadership-narrative__heading {
  font-family: var(--font-hero);
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.06;
  color: var(--text);
  margin: 0 0 0.9rem;
}

.leadership-narrative__deck {
  font-family: var(--font-subtext);
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.leadership-narrative__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 4.5rem);
  position: relative;
}

.leadership-narrative__grid::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.35rem;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(107, 0, 32, 0.12) 8%,
    rgba(107, 0, 32, 0.12) 92%,
    transparent
  );
}

.leadership-chapter__index {
  display: block;
  font-family: var(--font-hero);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(107, 0, 32, 0.32);
  margin-bottom: 1.1rem;
}

.leadership-chapter__title {
  font-family: var(--font-hero);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.leadership-chapter__body {
  font-family: var(--font-subtext);
  font-size: 0.96rem;
  line-height: 1.78;
  color: var(--text-muted);
}

.leadership-chapter__body p {
  margin: 0 0 1.05rem;
}

.leadership-chapter__body p:last-child {
  margin-bottom: 0;
}

.leadership-chapter__body strong {
  color: var(--text);
  font-weight: 600;
}

.leadership-quote {
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
}

.leadership-quote__band {
  position: relative;
  background: #080707;
  padding: clamp(3.75rem, 10vw, 6.25rem) 0;
}

.leadership-quote__band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4) 50%, transparent);
}

.leadership-quote__wrap {
  max-width: 52rem;
}

.leadership-quote__inner {
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
}

.leadership-quote__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.65;
  color: rgba(201, 162, 39, 0.18);
  margin-bottom: 0.15rem;
  user-select: none;
}

.leadership-quote__inner p {
  font-family: var(--font-subtext);
  font-size: clamp(1.08rem, 2.1vw, 1.38rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.64;
  letter-spacing: -0.012em;
  color: rgba(253, 250, 245, 0.9);
  margin: 0 0 1.65rem;
  max-width: 42rem;
}

.leadership-quote__inner cite {
  font-style: normal;
  font-family: var(--font-hero);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.nav-links a[aria-current='page'] {
  color: var(--gold-lt);
}

@media (max-width: 820px) {
  .give-statement__grid {
    grid-template-columns: 1fr;
  }

  .give-channel-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .vl-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .vl-num {
    grid-row: 1 / span 2;
    align-self: start;
  }

  .vl-mid {
    grid-column: 2;
    grid-row: 1;
  }

  .vl-ref {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    white-space: normal;
    text-align: left;
    align-self: start;
    padding-top: 0;
    margin-top: 1rem;
  }

  .pastor-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pastor-showcase__visual {
    order: -1;
    padding: 0;
    justify-content: center;
  }

  .pastor-showcase__frame {
    max-width: none;
    width: 100%;
    border-radius: 0;
    margin: 0;
    border-left: none;
    border-right: none;
  }

  .pastor-showcase__img {
    min-height: 50vw;
    max-height: 400px;
  }

  .pastor-showcase__content {
    padding: clamp(3rem, 8vw, 4.5rem) clamp(1.75rem, 5vw, 2.5rem);
    justify-content: center;
  }

  .pastor-showcase__inner {
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
  }

  .leadership-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .leadership-hero__media {
    min-height: min(48vh, 26rem);
    order: -1;
  }

  .leadership-hero__media-shade {
    background: linear-gradient(180deg, transparent 45%, rgba(12, 10, 11, 0.4) 100%);
  }

  .leadership-hero__panel {
    padding: clamp(2.75rem, 8vw, 4rem) clamp(1.35rem, 5vw, 1.75rem);
  }

  .leadership-narrative__grid::after {
    display: none;
  }

  .leadership-narrative__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pe-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pe-col {
    padding-left: 0;
    border-left: none;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.18);
  }

  .pe-col:first-child {
    padding-top: 0;
    border-top: none;
  }

  .connect-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .vision-pillars { grid-template-columns: 1fr; }
  .foundation-shell {
    padding: clamp(1.85rem, 5vw, 2.6rem) clamp(1.1rem, 4vw, 1.85rem);
    border-radius: 18px;
  }

  .foundation-row {
    grid-template-columns: 3.65rem minmax(0, 1fr) 1.35rem;
    gap: 0.75rem 1.1rem;
    padding-inline: 0 clamp(0.65rem, 2vw, 1.15rem);
  }

  .foundation-marker {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
  }
  .footer-top { grid-template-columns: 1fr; }
  .connect-form-wrap { padding: 2rem 1.5rem; }
  .title-line,
  .title-accent { font-size: clamp(1.85rem, 8.5vw, 2.85rem); }
  .pastor-showcase__content {
    padding: 2.75rem 1.5rem 3.5rem;
  }
  .vl-item {
    gap: 1.25rem;
    padding: clamp(1.25rem, 4vw, 1.85rem);
  }

  .vl-num {
    min-width: 2.75rem;
    height: 2.75rem;
    font-size: 0.88rem;
  }

  .vision-header {
    padding: 5rem 0 3.25rem;
  }
}

/* ── Misc polish ─────────────────────────────────────────── */
::selection { background: var(--crimson); color: #FDFAF5; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(107,0,32,.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--crimson); }
