/* ============================================================
   SALT OF THE EARTH FOOD BLESSING — styles.css
   Approved Brand Palette (v2 — palette-aligned):
     --sote-green:  #2F4A27   primary green (headings, buttons, nav brand)
     --sote-gold:   #C89B3C   harvest gold (accents, stats, eyebrows)
     --sote-cream:  #F8F2E8   warm cream background
     --sote-sage:   #A8B39A   soft sage (subtle accents, borders)
     --body-text:   #4A4A4A   neutral warm-dark body text
     --parchment:   #F3E8D7   slightly deeper cream for alt sections
     --wheat:       #DCC9A8   warm border / divider tone
     --gold-dark:   #8A6A28   darker gold for hover states
     --green-mid:   #3d5c30   mid green for interactive states
     --white:       #ffffff
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --sote-green:  #2F4A27;
  --sote-gold:   #C89B3C;
  --sote-cream:  #F8F2E8;
  --sote-sage:   #A8B39A;
  --body-text:   #4A4A4A;
  --parchment:   #F3E8D7;
  --wheat:       #DCC9A8;
  --gold-dark:   #8A6A28;
  --green-mid:   #3d5c30;
  --white:       #ffffff;

  /* Legacy aliases — kept for backward compat with any inline references */
  --cream:       var(--sote-cream);
  --gold:        var(--sote-gold);
  --olive:       var(--green-mid);
  --olive-dark:  var(--sote-green);
  --walnut:      var(--body-text);
  --walnut-dark: var(--sote-green);  /* was #2a1f0f — replaced with sote-green */

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  --radius:     8px;
  --radius-sm:  4px;
  --radius-lg:  12px;
  /* Shadows now green-tinted instead of heavy brown */
  --shadow-sm:  0 1px 4px rgba(47,74,39,0.10);
  --shadow-md:  0 4px 16px rgba(47,74,39,0.13);
  --shadow-lg:  0 8px 32px rgba(47,74,39,0.16);

  --max-w: 1140px;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body-text);        /* #4A4A4A — neutral, not brown */
  background: var(--sote-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sote-green);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--green-mid); }

ul { list-style: none; }

/* Headings: sote-green per spec */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--sote-green);       /* #2F4A27 — approved */
}

h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); margin-bottom: 12px; }

p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

/* ── Eyebrow label ────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sote-gold);
  margin-bottom: 10px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary,
.btn-gold,
.btn-outline,
.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  min-height: 50px;
}

/* Green solid — primary action */
.btn-primary {
  background-color: var(--sote-green);
  color: var(--sote-cream);
  border-color: var(--sote-green);
}
.btn-primary:hover {
  background-color: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--sote-cream);
}

/* Gold solid — text is sote-green (warm, not near-black) */
.btn-gold {
  background-color: var(--sote-gold);
  color: var(--sote-green);
  border-color: var(--sote-gold);
}
.btn-gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* Outlined green */
.btn-outline {
  background-color: transparent;
  color: var(--sote-green);
  border-color: var(--sote-green);
}
.btn-outline:hover {
  background-color: var(--sote-green);
  color: var(--sote-cream);
}

/* Outlined cream — for dark/green backgrounds */
.btn-outline-cream {
  background-color: transparent;
  color: var(--sote-cream);
  border-color: rgba(248,242,232,0.6);
}
.btn-outline-cream:hover {
  background-color: rgba(248,242,232,0.15);
  color: var(--sote-cream);
  border-color: var(--sote-cream);
}

/* Focus visible */
.btn-primary:focus-visible,
.btn-gold:focus-visible,
.btn-outline:focus-visible,
.btn-outline-cream:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47,74,39,0.40);
}

/* ════════════════════════════════════════════════════════════
   UTILITY BAR
════════════════════════════════════════════════════════════ */
.util-bar {
  width: 100%;
  background: var(--sote-green);
  color: rgba(248,242,232,0.90);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.util-bar a {
  color: rgba(248,242,232,0.90);
  text-decoration: none;
}
.util-bar a:hover { color: var(--sote-cream); }

.util-sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sote-cream);
  border-bottom: 1px solid var(--wheat);
  box-shadow: var(--shadow-sm);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  font-size: 1.6rem;
  line-height: 1;
}

.nav-brand-text { line-height: 1.2; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sote-green);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sote-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--body-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.18s ease, background-color 0.18s ease;
  white-space: nowrap;
}

.nav-links > li > a:hover {
  color: var(--sote-green);
  background-color: rgba(47,74,39,0.07);
}

.nav-need-food {
  color: var(--sote-green) !important;
  font-weight: 700 !important;
}

.nav-donate {
  background-color: var(--sote-gold) !important;
  color: var(--sote-green) !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
}
.nav-donate:hover {
  background-color: var(--gold-dark) !important;
  color: var(--white) !important;
}

.caret {
  font-size: 0.65rem;
  margin-left: 2px;
  opacity: 0.6;
}

/* ── Dropdowns ────────────────────────────────────────────── */
.nav-dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--wheat);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  z-index: 200;
}

.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body-text);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.dropdown-menu a:hover {
  background-color: rgba(47,74,39,0.07);
  color: var(--sote-green);
}

.dropdown-divider {
  height: 1px;
  background: var(--wheat);
  margin: 4px 0;
}

/* ════════════════════════════════════════════════════════════
   PILLARS BAR
════════════════════════════════════════════════════════════ */
.pillars {
  background: var(--sote-green);
  padding: 18px 24px;
}

.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248,242,232,0.92);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 24px;
}

.pillar-icon { font-size: 1rem; }

.pillar-div {
  width: 1px;
  height: 20px;
  background: rgba(248,242,232,0.25);
}

/* ════════════════════════════════════════════════════════════
   IMPACT SECTION
════════════════════════════════════════════════════════════ */
.impact-section {
  background: var(--parchment);
  padding: 80px 24px;
}

.impact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.impact-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.impact-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.impact-desc {
  font-size: 1rem;
  color: rgba(74,74,74,0.80);
  line-height: 1.7;
}

.stats-primary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--wheat);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease;
}
.stat-card:hover { box-shadow: var(--shadow-md); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--sote-gold);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--body-text);
}

.stat-note {
  font-size: 0.8rem;
  color: rgba(74,74,74,0.65);
  line-height: 1.55;
  margin-top: 4px;
}

.stats-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.stat-sm {
  background: var(--white);
  border: 1px solid var(--wheat);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-sm .stat-num { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.stat-sm .stat-label { font-size: 0.68rem; }

.stat-sm-special {
  font-size: 0.68rem;
  color: rgba(74,74,74,0.55);
  font-style: italic;
  margin-top: 2px;
}

.impact-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   REPORT STRIP
════════════════════════════════════════════════════════════ */
.report-strip {
  background: var(--sote-green);
  color: rgba(248,242,232,0.90);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 12px 24px;
  letter-spacing: 0.03em;
}

.report-strip a {
  color: var(--sote-gold);
  text-decoration: none;
  margin-left: 8px;
  font-weight: 700;
}
.report-strip a:hover { color: #ddb84e; }

/* ════════════════════════════════════════════════════════════
   FOUNDING SECTION
════════════════════════════════════════════════════════════ */
.founding-section {
  background: var(--sote-cream);
  padding: 80px 24px;
  border-top: 1px solid var(--wheat);
}

.founding-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
}

.founding-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex-shrink: 0;
}

.founding-year {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--sote-gold);
  line-height: 1;
}

.founding-year-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(74,74,74,0.55);
  max-width: 100px;
  text-align: center;
  line-height: 1.4;
}

.founding-text p {
  font-size: 1rem;
  color: rgba(74,74,74,0.85);
  line-height: 1.75;
  margin-bottom: 14px;
}

.founding-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sote-green);
  text-decoration: none;
  border-bottom: 2px solid var(--sote-gold);
  padding-bottom: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.founding-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ════════════════════════════════════════════════════════════
   WELCOME SECTION
   Was: dark brown (#4A3C2A) — heavy, disconnected
   Now: warm parchment — welcoming, faith-centered, light
════════════════════════════════════════════════════════════ */
.welcome-section {
  background: #F3E8D7;           /* warm parchment — approved replacement */
  padding: 64px 24px;
  text-align: center;
  border-top: 1px solid var(--wheat);
  border-bottom: 1px solid var(--wheat);
}

.welcome-inner {
  max-width: 680px;
  margin: 0 auto;
}

.welcome-section h2 {
  color: var(--sote-green);      /* heading green per spec */
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 20px;
}

.welcome-section p {
  color: var(--body-text);       /* #4A4A4A — readable on light bg */
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Scripture remains gold accent per spec */
.welcome-section .scripture {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sote-gold);
  margin-top: 24px;
}

/* ════════════════════════════════════════════════════════════
   EXPANSION SECTION
════════════════════════════════════════════════════════════ */
.expansion-section {
  background: var(--parchment);
  padding: 80px 24px;
  border-top: 1px solid var(--wheat);
}

.expansion-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.expansion-content h2 { margin-bottom: 20px; }

.expansion-content p {
  font-size: 1rem;
  color: rgba(74,74,74,0.85);
  line-height: 1.75;
  margin-bottom: 16px;
}

.expansion-content blockquote {
  border-left: 3px solid var(--sote-gold);
  padding: 12px 20px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sote-green);
  background: rgba(200,155,60,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.needs-list { margin: 28px 0; }

.needs-list h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sote-green);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--wheat);
}

.need-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(220,201,168,0.4);
  align-items: flex-start;
}

.need-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}

.need-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.need-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sote-green);
}

.need-desc {
  font-size: 0.83rem;
  color: rgba(74,74,74,0.72);
  line-height: 1.55;
}

.needs-list-ops { margin-top: 32px; }

.ops-desc {
  font-size: 0.9rem;
  color: rgba(74,74,74,0.75);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Goal sidebar — sote-green (approved primary) */
.expansion-goal {
  background: var(--sote-green);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.goal-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,242,232,0.75);
}

.goal-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sote-gold);
  line-height: 1;
}

.goal-sub {
  font-size: 0.82rem;
  color: rgba(248,242,232,0.80);
  margin-bottom: 8px;
}

.goal-note {
  font-size: 0.72rem;
  color: rgba(248,242,232,0.55);
  line-height: 1.55;
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   VIDEO SECTION
   Was: near-black #2a1f0f — too heavy
   Now: deep sote-green — warm, on-brand
════════════════════════════════════════════════════════════ */
.video-section {
  background: #1e3319;           /* deep forest green — warm, not black */
  padding: 72px 24px;
  text-align: center;
}

.video-inner {
  max-width: 800px;
  margin: 0 auto;
}

.video-section .eyebrow { color: var(--sote-gold); }

.video-section h2 {
  color: var(--sote-cream);
  margin-bottom: 12px;
}

.video-section p {
  color: rgba(248,242,232,0.75);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ── Video poster — replaces iframe ──────────────────────── */
.video-poster {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;          /* clips play button — must stay */
  box-shadow: var(--shadow-lg);
  line-height: 0;            /* eliminates phantom space below img */
  text-decoration: none;
  font-size: 0;              /* belt-and-suspenders against extra space */
}

.video-poster__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  transition: filter 0.22s ease;
}

.video-poster:hover .video-poster__img,
.video-poster:focus-visible .video-poster__img {
  filter: brightness(0.85);
}


.video-poster:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(200,155,60,0.55), var(--shadow-lg);
}

/* ════════════════════════════════════════════════════════════
   LOCATIONS SECTION
════════════════════════════════════════════════════════════ */
.locations-section {
  background: var(--sote-cream);
  padding: 80px 24px;
  border-top: 1px solid var(--wheat);
}

.locations-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-header h2 { margin-bottom: 12px; }

.section-header p {
  font-size: 1rem;
  color: rgba(74,74,74,0.78);
  line-height: 1.7;
}

.no-docs-banner {
  background: rgba(47,74,39,0.07);
  border: 1px solid rgba(47,74,39,0.18);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--sote-green);
  margin-bottom: 36px;
  line-height: 1.6;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--wheat);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  position: relative;
}
.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.arlington-home {
  border-color: var(--sote-gold);
  border-width: 2px;
}

.arlington-badge {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--sote-gold);
  color: var(--sote-green);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.loc-day {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}

.loc-city {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sote-green);
  margin: 2px 0;
}

.loc-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sote-green);
}

.loc-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-top: 2px;
}

.loc-venue {
  font-size: 0.8rem;
  color: rgba(74,74,74,0.72);
  line-height: 1.5;
  margin-top: 6px;
  flex: 1;
}

.loc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.loc-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sote-green);
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid rgba(47,74,39,0.25);
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.loc-link:hover {
  background-color: var(--sote-green);
  color: var(--sote-cream);
  border-color: var(--sote-green);
}

/* ════════════════════════════════════════════════════════════
   GALLERY SECTION
   Was: near-black #2a1f0f — too heavy
   Now: deep sote-green — consistent with video section
════════════════════════════════════════════════════════════ */
.gallery-section {
  background: #1e3319;
  padding: 72px 24px;
}

.gallery-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.gallery-section .eyebrow { color: var(--sote-gold); }

.gallery-section h2 {
  color: var(--sote-cream);
  margin-bottom: 36px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-thumb {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(248,242,232,0.07);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.04);
}

/* ════════════════════════════════════════════════════════════
   PARTNERS SECTION
════════════════════════════════════════════════════════════ */
.partners-section {
  background: var(--parchment);
  padding: 64px 24px;
  text-align: center;
  border-top: 1px solid var(--wheat);
}

.partners-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.partners-section h2 { margin-bottom: 32px; }

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.partner-logo {
  background: var(--white);
  border: 1px solid var(--wheat);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--body-text);
  box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--sote-cream);
  padding: 80px 24px;
  border-top: 1px solid var(--wheat);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-info p {
  font-size: 0.95rem;
  color: rgba(74,74,74,0.82);
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--sote-green);
  font-weight: 600;
  text-decoration: none;
}
.contact-info a:hover { text-decoration: underline; }

.contact-form-wrap h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.form-field { margin-bottom: 14px; }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--wheat);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--body-text);
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--sote-green);
  box-shadow: 0 0 0 3px rgba(47,74,39,0.12);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* ════════════════════════════════════════════════════════════
   FINAL CTA
   Was: dark brown #4A3C2A — same heavy feel as welcome section
   Now: sote-green — warm, hopeful, on-brand
════════════════════════════════════════════════════════════ */
.final-cta {
  background: var(--sote-green);
  padding: 80px 24px;
  text-align: center;
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--sote-cream);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.final-cta h2 em {
  color: var(--sote-gold);
  font-style: italic;
}

.final-cta p {
  color: rgba(248,242,232,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   Was: near-black #2a1f0f — too heavy, corporate
   Now: deep sote-green — warm, anchors the page naturally
════════════════════════════════════════════════════════════ */
footer {
  background: #1e3319;
  color: rgba(248,242,232,0.68);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.8;
}

.footer-trust {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--sote-gold);
  margin-bottom: 10px;
}

footer a {
  color: rgba(248,242,232,0.78);
  text-decoration: none;
  transition: color 0.18s ease;
}
footer a:hover { color: var(--sote-cream); }

/* ════════════════════════════════════════════════════════════
   TRUST BADGE
════════════════════════════════════════════════════════════ */
.trust-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(47,74,39,0.07);
  border: 1px solid rgba(47,74,39,0.16);
  border-radius: 40px;
  padding: 10px 20px;
  max-width: 580px;
}

.trust-dot {
  color: var(--sote-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-text {
  font-size: 0.82rem;
  color: var(--body-text);
  line-height: 1.5;
}

.trust-text strong {
  display: block;
  font-weight: 700;
  color: var(--sote-green);
  margin-bottom: 2px;
}

/* ════════════════════════════════════════════════════════════
   HERO NO-DOCS / CHECK
════════════════════════════════════════════════════════════ */
.hero-no-docs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sote-green);
  margin-bottom: 32px;
}

.check { font-size: 1rem; }

/* ════════════════════════════════════════════════════════════
   HERO CTAs row
════════════════════════════════════════════════════════════ */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1023px)
════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  .expansion-inner { grid-template-columns: 1fr; }

  .expansion-goal {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founding-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founding-marker {
    flex-direction: row;
    gap: 16px;
    align-items: baseline;
  }

  .founding-year-sub { max-width: 160px; text-align: left; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .util-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }

  .pillars-inner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .pillar-div { display: none; }

  .impact-section,
  .founding-section,
  .welcome-section,
  .expansion-section,
  .video-section,
  .locations-section,
  .gallery-section,
  .partners-section,
  .contact-section,
  .final-cta {
    padding: 52px 20px;
  }

  .stats-primary-grid { grid-template-columns: 1fr 1fr; }
  .stats-secondary { gap: 8px; }
  .locations-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .final-cta-btns,
  .impact-ctas,
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-gold,
  .btn-outline,
  .btn-outline-cream {
    width: 100%;
    justify-content: center;
  }
}
