/* ============================================
   HAVEN 686 — Main Stylesheet
   ============================================ */

/* --- TOKENS --- */
:root {
  --charcoal:    #3A3F42;
  --stone-light: #D1CDC9;
  --orange:      #B55412;
  --stone-mid:   #B7A398;
  --olive:       #4F4E30;
  --white:       #FFFFFF;
  --off-white:   #F5F3F1;

  --font-display: "collier", sans-serif;
  --font-body:    "collier", sans-serif;

  --nav-height: 88px;
  --max-width: 1200px;
  --section-pad: 96px 32px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* --- ORPHAN PREVENTION --- */
/* Stops single words from being stranded alone on the last line of body copy.
   Chrome/Edge 130+ and Safari 17.5+ support this; Firefox falls back silently
   to normal wrapping — no breakage, just no enhancement there yet. */
p, li, blockquote {
  text-wrap: pretty;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--charcoal);
  height: var(--nav-height);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.nav-logo img {
  height: 68px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
  padding: 8px 14px;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}
.nav-link.active { color: var(--white); }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--stone-light);
  padding: 8px 14px;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-cta:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  padding: 16px 32px 24px;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { color: var(--stone-light); font-size: 0.85rem; }
.nav-mobile .nav-cta {
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover { background: #9a4610; border-color: #9a4610; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-large { padding: 18px 48px; font-size: 0.9rem; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,34,36,0.73) 0%,
    rgba(30,34,36,0.40) 60%,
    rgba(30,34,36,0.05) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px 120px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  color: var(--stone-light);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero tab bar */
.hero-tabs {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.hero-tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  padding: 20px 16px;
  transition: background 0.2s;
}
.hero-tab:nth-child(1) { background: rgba(181,84,18,0.88); }
.hero-tab:nth-child(2) { background: rgba(58,63,66,0.88); }
.hero-tab:nth-child(3) { background: rgba(79,78,48,0.88); }
.hero-tab:hover { filter: brightness(1.15); }

/* --- PROBLEM / SOLUTION --- */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  gap: 80px;
  align-items: start;
}
.stat-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--orange);
}
.stat-number-word {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  color: var(--orange);
  font-weight: 600;
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 10px;
  max-width: 320px;
  line-height: 1.3;
}
.stat-context {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  max-width: 400px;
}
.text-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.7; }

/* Divider between problem and solution */
.problem {
  padding-right: 80px;
  border-right: 1px solid var(--stone-light);
}
.solution-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.solution-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.solution-body {
  font-size: 1.1rem;
  line-height: 1.72;
  color: #555;
}

/* --- AUDIENCE CARDS --- */
.cards {
  display: flex;
  min-height: 540px;
}
.card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex: 1;
  transition: flex 0.4s ease;
  cursor: default;
}
.cards:hover .card { flex: 0.94; }
.cards .card:hover { flex: 1.12; }

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  transition: transform 0.4s ease;
}
.card:hover .card-bg { transform: scale(1.04); }
.card-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}
/* Hover overlays — 40% more opaque on each card */
.card:nth-child(1):hover .card-overlay { opacity: 1; background-color: rgba(79,78,48,0.78) !important; }
.card:nth-child(2):hover .card-overlay { opacity: 1; background-color: rgba(181,84,18,0.72) !important; }
.card:nth-child(3):hover .card-overlay { opacity: 1; background-color: rgba(58,63,66,0.90) !important; }
.card-content {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 540px;
}
.card-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.card-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.card-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.card:hover .card-body {
  opacity: 1;
  transform: translateY(0);
}
.card .btn-outline-light {
  margin-top: auto;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.card:hover .btn-outline-light {
  opacity: 1;
  transform: translateY(0);
}

/* --- CAMPUS VISION --- */
.vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  gap: 80px;
  align-items: center;
}
.vision-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  background: var(--stone-light);
  /* placeholder appearance when no image */
  min-height: 480px;
}
.vision-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.vision-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.vision-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
}
.arrow-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s;
  margin-top: 8px;
}
.arrow-link:hover { color: var(--orange); }

/* --- GIVE CTA --- */
.give-cta {
  background: var(--charcoal);
  padding: var(--section-pad);
}
.give-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.give-cta-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.give-cta-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stone-light);
  margin-bottom: 40px;
}

/* --- CARDS SECTION HEADER --- */
.cards-section {
  background: var(--white);
}
.cards-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 32px 40px;
  text-align: center;
}
.cards-verse {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--charcoal);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 8px;
}
.cards-verse-ref {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}
.cards-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.1;
}

/* --- CAROUSEL --- */
.carousel-section {
  background: var(--off-white);
  padding: var(--section-pad);
}
.carousel {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  position: relative;
}
.carousel-slide {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 360px;
}
.carousel-slide.active { display: grid; }

.carousel-stat {
  background: var(--charcoal);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.carousel-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.carousel-big-stat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.carousel-stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
  color: var(--stone-light);
  max-width: 300px;
}

/* Center photo column */
.carousel-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.carousel-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.carousel-photo-name {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(30,34,36,0.65);
  padding: 8px 14px;
  border-radius: 2px;
}

.carousel-story {
  background: var(--white);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 4px solid var(--orange);
}
.carousel-story-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.carousel-story-text {
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 16px;
}
.carousel-story-attr {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}

.carousel-controls {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.carousel-btn {
  background: none;
  border: 1.5px solid var(--stone-light);
  color: var(--charcoal);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.carousel-dots {
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stone-light);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.carousel-dot.active { background: var(--orange); }
.btn-carousel-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  padding: 12px 24px;
  border-radius: 2px;
  transition: all 0.2s;
  margin-top: 8px;
}
.btn-carousel-cta:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* --- STAT + COUNTER CAROUSEL (2-col live variant, no photo) --- */
.carousel-slide.carousel-slide-two-col { grid-template-columns: 1fr 1fr; }
.carousel-counter {
  background: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.carousel-counter-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 420px;
}
.carousel-counter .carousel-story-eyebrow {
  text-align: left;
}

/* --- SELAH --- */
.selah {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
}
.selah-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 34, 36, 0.52);
}
.selah-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.selah-pre {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.7;
  color: var(--stone-light);
  font-style: italic;
  margin-bottom: 12px;
}
.selah-main {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.selah-ref {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

/* --- FOOTER --- */
.footer {
  background: #272b2d;
  padding: 64px 32px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--stone-mid);
  font-style: italic;
}
.footer-signup-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-signup-sub {
  font-size: 0.85rem;
  color: var(--stone-mid);
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-form-row {
  display: flex;
  gap: 0;
}
.footer-input {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 2px 0 0 2px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.footer-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-input:focus { border-color: var(--orange); }
.footer-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-submit:hover { background: #9a4610; }
.footer-connect-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 0.88rem;
  color: var(--stone-mid);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .problem-solution {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 24px;
  }
  .problem {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--stone-light);
    padding-bottom: 48px;
  }

  .cards {
    flex-direction: column;
  }
  .card {
    min-height: 380px;
    flex: 1 !important;
  }
  .card-body { opacity: 1; transform: none; }
  .card .btn-outline-light { opacity: 1; transform: none; }

  .carousel-slide { grid-template-columns: 1fr; }
  .carousel-stat { padding: 40px 28px; }
  .carousel-photo { min-height: 260px; }
  .carousel-story { padding: 40px 28px; border-left: none; border-top: 4px solid var(--orange); }
  .carousel-counter { padding: 40px 28px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px 20px; }
  .hero-content { padding: 60px 20px 80px; }
  .give-cta { padding: 64px 20px; }
  .cards-header { padding: 56px 20px 32px; }
  .selah { padding: 56px 20px; }
}

/* --- PAGE HERO (interior pages) --- */
.page-hero {
  background: var(--charcoal);
  padding: 120px 32px 80px;
  margin-top: var(--nav-height);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.page-hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--stone-light);
  max-width: 560px;
}

/* --- CONTACT PAGE --- */
.contact-section {
  padding: var(--section-pad);
}
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.contact-block {
  margin-bottom: 36px;
}
.contact-block-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact-block-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-block-title {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
}
.contact-block-text {
  font-size: 0.95rem;
  color: var(--charcoal);
}
.contact-block-link {
  font-size: 0.95rem;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 1px;
  transition: opacity 0.2s;
  display: inline-block;
}
.contact-block-link:hover { opacity: 0.7; }
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- FORM --- */
.contact-form-wrap {
  background: var(--off-white);
  padding: 48px;
  border-radius: 2px;
}
.form-field {
  margin-bottom: 24px;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--stone-light);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--orange); }
.form-input::placeholder { color: #aaa; }
.form-select { cursor: pointer; }
.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  margin-top: 8px;
}
.form-success {
  display: none;
  background: var(--white);
  border: 1.5px solid var(--stone-light);
  border-radius: 2px;
  padding: 32px;
  text-align: center;
}
.form-success p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

@media (max-width: 960px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row-split { grid-template-columns: 1fr; gap: 0; }
}

/* --- ABOUT PAGE --- */
.about-story {
  padding: var(--section-pad);
  background: var(--white);
}
.about-story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-story-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}
.about-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.about-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.08;
  margin-bottom: 28px;
}
.about-body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: #555;
  margin-bottom: 18px;
}

/* --- MISSION/VISION/VALUES TABS --- */
.values-accordion-wrap {
  margin-top: 8px;
}
/* Optional scroll-capped variant — add this class alongside .values-accordion-wrap
   to restore the fixed-height internal-scroll behavior used previously. */
.values-accordion-wrap-scroll {
  max-height: 460px;
  overflow-y: auto;
}
.values-accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
}
.value-acc-item { background: var(--off-white); }
.value-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.value-acc-btn:hover { background: rgba(181,84,18,0.06); }
.value-acc-item.open .value-acc-btn { background: rgba(181,84,18,0.08); }
.value-acc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.value-acc-chevron {
  font-size: 1.2rem;
  color: var(--stone-mid);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.value-acc-item.open .value-acc-chevron { transform: rotate(180deg); }
.value-acc-panel {
  display: none;
  padding: 4px 24px 26px;
}
.value-acc-item.open .value-acc-panel { display: block; }
.value-acc-panel p {
  font-size: 1rem;
  line-height: 1.72;
  color: #555;
  margin-bottom: 14px;
}
.value-acc-verse {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--charcoal);
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin-bottom: 12px !important;
}
.value-acc-verse-ref {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
}

/* --- BOARD + LEGAL --- */
.about-board {
  background: var(--off-white);
  padding: var(--section-pad);
}
.about-board-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-legal-text {
  font-size: 0.95rem;
  line-height: 1.72;
  color: #777;
  margin-top: 8px;
}
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.board-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.board-title {
  font-size: 0.88rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
}

/* --- STONE EYEBROW (for use on charcoal backgrounds) --- */
.eyebrow-stone { color: var(--stone-light) !important; }

/* Hero headline orange variant */
.hero-headline-orange { color: var(--orange); }

/* Orange outline button for hero */
.btn-outline-orange {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--orange);
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* Dark eyebrow variant for light backgrounds */
.solution-eyebrow-dark { color: var(--charcoal) !important; }

/* About story top padding matching nav height */
.about-story { padding-top: calc(var(--nav-height) + 48px); }

/* About body emphasis — same size as body, bolder */
.about-body-emphasis {
  font-size: 1.05rem;
  line-height: 1.78;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 18px;
  margin-top: 4px;
}

/* Selah dark text variant (no overlay) */
.selah-pre-dark { color: var(--charcoal); }
.selah-main-dark { color: var(--charcoal); }
.selah-ref-dark { color: var(--charcoal); }

/* Page hero eyebrow stone variant */
.page-hero-eyebrow-stone { color: var(--stone-light) !important; }

/* About page photo name overlay */
.about-story-image { position: relative; }
.about-photo-name {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(30,34,36,0.65);
  padding: 8px 14px;
  border-radius: 2px;
}

/* Poppys selah — text in top third */
.selah-inner-top {
  align-self: flex-start;
  padding-top: 80px;
}

/* Footer simplified two-column */
.footer-inner-simple {
  grid-template-columns: 1.5fr 1fr !important;
}

/* --- FORM SUCCESS MESSAGE --- */
.form-success {
  display: none;
  padding: 40px 32px;
  text-align: center;
}
.form-success-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.form-success-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
}
@media (max-width: 960px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-image img {
    aspect-ratio: 16/9;
    object-position: center 30%;
  }
  .about-board-inner { grid-template-columns: 1fr; gap: 48px; }
  .board-grid { grid-template-columns: 1fr 1fr; }
}

/* --- GIVE PAGE --- */
.give-header {
  background: var(--charcoal);
  padding: calc(var(--nav-height) + 64px) 32px 72px;
  text-align: center;
}
.give-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.give-header-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.give-header-sub {
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--stone-light);
  max-width: 600px;
  margin: 0 auto;
}
.give-widget-section {
  background: var(--off-white);
  padding: 72px 32px;
}
.give-widget-inner {
  max-width: 780px;
  margin: 0 auto;
}
.give-fallback-text {
  text-align: center;
  font-size: 0.92rem;
  color: #777;
  margin-top: 32px;
  margin-bottom: 16px;
}
.give-fallback-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Give page — land donation callout */
.land-callout-section {
  position: relative;
  padding: 88px 32px;
  text-align: center;
  overflow: hidden;
}
.land-callout-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.land-callout-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,243,241,0.88);
}
.land-callout-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.land-callout-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.land-callout-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}
.land-callout-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.land-callout-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.land-callout-link {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Give page headline — smaller than contact page headline */
.give-page-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
}

/* Shorter selah variant for give page */
.selah-short { min-height: 64vh; }

/* --- CAMPUS PAGE --- */
.campus-section { padding: var(--section-pad); }
.campus-section-light { background: var(--white); }
.campus-section-dark { background: var(--charcoal); }
.campus-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.campus-two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.campus-two-col-gap { margin-top: 40px; }

/* Property callout — "what we're looking for" land requirements box */
.property-callout {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange);
  padding: 32px 36px;
  margin: 32px 0 40px;
}
.property-callout-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 16px;
}
.property-callout-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.property-callout-list li {
  color: var(--stone-light);
  font-size: 1.05rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.property-callout-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--stone-light);
}
.property-callout-list li strong {
  color: var(--white);
  font-weight: 600;
}
.property-callout-cta {
  color: var(--stone-light);
  font-size: 0.98rem;
  font-style: italic;
}

/* Campus stat block */
.campus-stat-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}
.campus-stat-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.campus-stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.4;
}

/* Status section */
.campus-status-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.campus-status-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Checklist */
.campus-checklist-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.campus-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.campus-checklist-item {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.campus-checklist-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--stone-light);
}
.campus-checklist-done {
  color: var(--charcoal);
}
.campus-checklist-done::before {
  background: var(--orange);
  border-color: var(--orange);
}
.campus-checklist-pending {
  color: #999;
}

/* Campus responsive */
@media (max-width: 960px) {
  .campus-two-col,
  .campus-status-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .campus-stat-block { flex-direction: row; flex-wrap: wrap; gap: 28px; }
}

/* Page hero color variants */
.page-hero-olive { background: var(--olive); }
.page-hero-orange { background: var(--orange); }

/* --- NAV DROPDOWN --- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
  padding: 8px 14px;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  min-width: 180px;
  z-index: 100;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
  padding: 10px 20px;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Hero button semi-transparent fill */
.btn-hero-fill {
  background: rgba(255,255,255,0.15) !important;
}
.btn-hero-fill:hover {
  background: var(--orange) !important;
}

/* --- FAMILIES PAGE --- */
.families-section { padding: var(--section-pad); }
.families-section-light { background: var(--white); }
.families-section-dark { background: var(--charcoal); }
.families-section-stone { background: var(--off-white); }
.families-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.families-two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.families-intro-body {
  max-width: 700px;
  margin-bottom: 40px;
}

/* Wrap team grid */
/* wrap-team-grid defined above with wrap-team-bar */
.wrap-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.wrap-card-body {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--stone-light);
}
.wrap-team-note {
  margin-top: 40px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stone-light);
  font-style: italic;
  max-width: 680px;
}

/* Levels accordion */
.levels-accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.level-item { background: var(--off-white); }
.level-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.level-btn:hover { background: rgba(181,84,18,0.06); }
.level-item.open .level-btn { background: rgba(181,84,18,0.08); }
.level-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  min-width: 60px;
}
.level-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  flex: 1;
}
.level-chevron {
  font-size: 1.2rem;
  color: var(--stone-mid);
  transition: transform 0.2s;
}
.level-item.open .level-chevron { transform: rotate(180deg); }
.level-panel {
  display: none;
  padding: 16px 28px 28px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
}
.level-item.open .level-panel { display: block; }

/* Agencies accordion */
.agencies-accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.agency-item { background: var(--white); }
.agency-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.agency-btn:hover { background: rgba(181,84,18,0.04); }
.agency-item.open .agency-btn { background: rgba(181,84,18,0.06); }
.agency-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  flex: 1;
}
.agency-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}
.agency-chevron {
  font-size: 1.2rem;
  color: var(--stone-mid);
  transition: transform 0.2s;
}
.agency-item.open .agency-chevron { transform: rotate(180deg); }
/* agency-panel redefined in families section below */
.agency-panel-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-top: 8px;
}
.agency-details {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
}
.agency-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* agency-meta-row redefined in families section below */
.agency-meta-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  min-width: 120px;
}
.agency-meta-val { color: #666; }
.agency-link {
  margin-top: 8px;
  align-self: flex-start;
  font-size: 0.78rem !important;
  padding: 10px 20px !important;
}
.agency-disclaimer {
  margin-top: 32px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #999;
  font-style: italic;
}

/* Families responsive */
@media (max-width: 960px) {
  .families-two-col { grid-template-columns: 1fr; gap: 32px; }
@media (max-width: 768px) {
  .wrap-team-grid {
    grid-template-columns: 1fr;
  }
  .wrap-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .wrap-card:last-child { border-bottom: none; }
}
  .agency-panel-inner { grid-template-columns: 1fr; gap: 24px; }
  .agency-tag { display: none; }
}

/* --- FAMILIES HERO (photo-based) --- */
.families-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.families-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.families-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,34,36,0.82) 0%,
    rgba(30,34,36,0.50) 60%,
    rgba(30,34,36,0.15) 100%
  );
}
.families-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.families-hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.families-hero-pinstripe {
  height: 4px;
  background: var(--orange);
  width: 100%;
}

/* --- CAMPUS HERO (mirrors families-hero pattern) --- */
.campus-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.campus-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.campus-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,34,36,0.66) 0%,
    rgba(30,34,36,0.40) 60%,
    rgba(30,34,36,0.12) 100%
  );
}
.campus-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.campus-hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.campus-hero-pinstripe {
  height: 4px;
  background: var(--orange);
  width: 100%;
}
.campus-hero-sub {
  font-family: var(--font-display);
  font-weight: 600;
}

/* Callout cards in start here section */
.families-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.families-callout {
  background: var(--off-white);
  padding: 36px 32px;
  border-top: 3px solid var(--stone-light);
}
.families-callout-rule {
  border-top-color: var(--orange);
}
.families-callout-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.families-callout-body {
  font-size: 1rem;
  line-height: 1.72;
  color: #555;
}

/* Wrap team bar */
.wrap-team-bar {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  margin-top: 48px;
  margin-bottom: 0;
}
.wrap-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 0;
}
.wrap-card {
  background: rgba(255,255,255,0.06);
  padding: 36px 32px;
  border-top: none;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.wrap-card:last-child { border-right: none; }

/* Wrap lead note — semibold */
.families-wrap-lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.72;
  margin-top: 20px;
}

/* Agencies accordion — stone fill default, olive on open */
.agency-btn { background: #e8e5e3; border-left: none; }
.agency-item { background: var(--white); margin-bottom: 2px; }
.agency-item.open .agency-btn { background: var(--olive); border-left: none; }
.agency-item.open .agency-name { color: var(--white); }
.agency-item.open .agency-tag { color: rgba(255,255,255,0.7); }
.agency-item.open .agency-chevron { color: var(--white); }
.agency-btn:hover { background: #dddad7; }

/* Agency panel — top padding to match level panels */
.agency-panel {
  display: none;
  padding: 16px 28px 28px;
}
.agency-item.open .agency-panel { display: block; }

/* Agency meta row alignment fix */
.agency-meta-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  align-items: baseline;
}

/* Selah olive overlay */
.selah-overlay-olive {
  position: absolute;
  inset: 0;
  background: rgba(79,78,48,0.62);
}

/* Families responsive additions */
@media (max-width: 960px) {
  .families-callout-grid { grid-template-columns: 1fr; gap: 2px; }
  .families-hero { min-height: 400px; }
  .families-hero-content { padding: 60px 20px; }
  .campus-hero { min-height: 400px; }
  .campus-hero-content { padding: 60px 20px; }
}

/* Families hero subhead — semibold */
.families-hero-sub {
  font-family: var(--font-display);
  font-weight: 600;
}

/* Agency tag dark (charcoal in closed state) */
.agency-tag-dark { color: var(--charcoal); }

/* Wrap lead — stone color to match section body */
.families-wrap-lead { color: var(--stone-light) !important; }

/* --- CHURCHES: COMPARE & CONTRAST STATS --- */
.compare-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 32px 0;
  text-align: center;
}
.compare-header .about-headline { margin-bottom: 0; }
.churches-compare .problem-solution { padding: 48px 32px 64px; }
.compare-footnote {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 64px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #888;
}
@media (max-width: 800px) {
  .churches-compare .problem-solution { grid-template-columns: 1fr; gap: 40px; }
  .churches-compare .problem { padding-right: 0; border-right: none; padding-bottom: 32px; border-bottom: 1px solid var(--stone-light); }
}

/* Selah inner bottom — text in bottom third */
.selah-inner-bottom {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
  margin-top: auto;
  padding-bottom: 80px;
}
.selah:has(.selah-inner-bottom) {
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}
