/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --sand:        #f5ede0;
  --sand-dark:   #ecddd0;
  --cream:       #fdf9f4;
  --terracotta:  #c8593a;
  --terra-light: #e07a5f;
  --terra-pale:  #fbeae4;
  --gold:        #d4922a;
  --gold-light:  #f0b84a;
  --gold-pale:   #fef3dc;
  --sage:        #5a8a6a;
  --sage-light:  #7aaa88;
  --sage-pale:   #eaf4ee;
  --navy:        #1e3a5f;
  --navy-light:  #2d5585;
  --brown:       #6b3f2a;
  --brown-light: #a06040;
  --white:       #ffffff;
  --text:        #3d2b1f;
  --text-mid:    #6b4f3a;
  --text-light:  #9a7a68;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-full: 999px;

  --shadow-warm-sm: 0 2px 12px rgba(107,63,42,0.10);
  --shadow-warm-md: 0 8px 32px rgba(107,63,42,0.14);
  --shadow-warm-lg: 0 20px 60px rgba(107,63,42,0.18);

  --max-w: 1160px;
  --nav-h: 80px;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   UTILITY
   ============================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.tag-terra  { background: var(--terra-pale);  color: var(--terracotta); }
.tag-gold   { background: var(--gold-pale);   color: var(--gold); }
.tag-sage   { background: var(--sage-pale);   color: var(--sage); }
.tag-navy   { background: rgba(30,58,95,0.1); color: var(--navy); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  text-wrap: pretty;
}
.section-title em { font-style: italic; color: var(--terracotta); font-weight: 600; }
.section-title .gold { color: var(--gold); font-style: italic; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 12px;
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--r-full);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-terra {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-terra:hover {
  background: var(--terra-light);
  border-color: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,89,58,0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,146,42,0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,95,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--sand-dark);
}
.btn-outline:hover {
  background: var(--sand);
  border-color: var(--brown-light);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav .container { height: 100%; }
.nav.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 24px rgba(107,63,42,0.12);
}
.nav.solid {
  position: sticky;
  top: 0;
  background: var(--cream);
  box-shadow: 0 2px 24px rgba(107,63,42,0.12);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s;
}
.nav.scrolled .nav-logo-name,
.nav.solid .nav-logo-name { color: var(--text); }
.nav:not(.scrolled):not(.solid) .nav-logo-name { color: var(--white); }
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav:not(.scrolled):not(.solid) .nav-logo-sub { color: rgba(255,255,255,0.6); }
.nav.scrolled .nav-logo-sub,
.nav.solid .nav-logo-sub { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: all 0.2s;
}
.nav:not(.scrolled):not(.solid) .nav-links a { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled):not(.solid) .nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.nav.scrolled .nav-links a,
.nav.solid .nav-links a { color: var(--text-mid); }
.nav.scrolled .nav-links a:hover,
.nav.solid .nav-links a:hover { background: var(--sand); color: var(--text); }
.nav-links a.active { color: var(--terracotta) !important; }

.nav-donate-btn {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border-radius: var(--r-full);
  padding: 9px 20px !important;
  font-weight: 800 !important;
}
.nav-donate-btn:hover {
  background: var(--terra-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,89,58,0.35);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  transition: background 0.3s;
}
.nav:not(.scrolled):not(.solid) .nav-hamburger span { background: var(--white); }
.nav.scrolled .nav-hamburger span,
.nav.solid .nav-hamburger span { background: var(--text); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 16px 24px 28px;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(107,63,42,0.12);
  border-top: 2px solid var(--sand-dark);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 0;
  border-bottom: 1px solid var(--sand-dark);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--terracotta); }
.mobile-menu a:hover { color: var(--terracotta); }

/* =============================================
   HERO (Homepage)
   ============================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy);
  min-height: 100svh;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background: var(--navy) center 30%/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,20,10,0.72) 0%,
    rgba(50,30,15,0.55) 50%,
    rgba(200,89,58,0.30) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  max-width: 720px;
  flex: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stats-bar {
  position: relative;
  background: var(--white);
  z-index: 3;
}
.hero-stats-inner {
  display: flex;
  border-top: 3px solid var(--terracotta);
}
.hero-stat {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid var(--sand-dark);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* =============================================
   PAGE HERO (Inner pages)
   ============================================= */
.page-hero {
  padding: 36px 0 52px;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,63,42,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 520px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }

/* =============================================
   ABOUT SECTION (Homepage)
   ============================================= */
.about { padding: 100px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photos {
  position: relative;
  padding-top: 32px;
  padding-right: 32px;
}
.about-photo-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: var(--shadow-warm-md);
}
.about-photo-inset {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-warm-md);
}
.about-year-badge {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-warm-md);
  z-index: 2;
}
.about-year-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-year-badge .lbl {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--r-md);
  transition: background 0.2s;
}
.about-pillar:hover { background: var(--sand); }
.about-pillar-dot {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-pillar h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.about-pillar p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* =============================================
   PHOTO WALL (Gallery)
   ============================================= */
.life { padding: 90px 0; background: var(--sand); overflow: hidden; }
.life-header { text-align: center; margin-bottom: 48px; }
.life-header .section-sub { margin: 12px auto 0; max-width: 480px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo-cell {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--sand-dark);
}
.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-cell:hover img { transform: scale(1.04); }
.photo-cell-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-cell:hover .photo-cell-caption { opacity: 1; }
.photo-cell-caption span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.photo-cell-tall { grid-row: span 2; }
.photo-cell-wide { grid-column: span 2; }
.photo-cell-sq { aspect-ratio: 1; }
.photo-cell:not(.photo-cell-tall):not(.photo-cell-wide) { aspect-ratio: 4/3; }
.photo-cell.photo-cell-tall { aspect-ratio: auto; min-height: 420px; }
.photo-cell.photo-cell-wide { aspect-ratio: 16/9; }

/* =============================================
   HOW TO HELP
   ============================================= */
.help { padding: 100px 0; background: var(--cream); }
.help-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.help-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.help-sticky .section-sub { max-width: 320px; margin-top: 14px; }
.help-photo {
  margin-top: 32px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm-md);
}
.help-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.help-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.help-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  border: 2px solid var(--sand-dark);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.help-card:hover {
  border-color: var(--terracotta);
  background: var(--terra-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm-sm);
}
.help-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.help-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.help-cta-strip {
  margin-top: 20px;
  grid-column: 1 / -1;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.help-cta-strip h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.help-cta-strip p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* =============================================
   QUOTES / FAITH
   ============================================= */
.faith { padding: 100px 0; background: var(--terracotta); position: relative; overflow: hidden; }
.faith::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 36rem;
  color: rgba(255,255,255,0.05);
  top: -60px;
  left: -40px;
  line-height: 1;
  pointer-events: none;
}
.faith-header { text-align: center; margin-bottom: 56px; }
.faith-header .section-title { color: var(--white); }
.faith-header .section-title em { color: var(--gold-light); }
.faith-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faith-card {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.faith-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.faith-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-4px);
}
.faith-quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.8;
}
.faith-quote-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 24px;
}
.faith-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.faith-author-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.faith-author-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
}
.faith-author-title {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* =============================================
   NEWS
   ============================================= */
.news { padding: 100px 0; background: var(--sand); }
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm-sm);
  border: 2px solid transparent;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-warm-md);
  transform: translateY(-4px);
}
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.news-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}
.news-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; flex: 1; }
.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--sand-dark);
}
.news-date { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
.news-more {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--terracotta);
  transition: gap 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-card:hover .news-more { gap: 8px; }
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-card-mini {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm-sm);
  border: 2px solid transparent;
  transition: all 0.25s ease;
  display: flex;
}
.news-card-mini:hover {
  border-color: var(--terracotta);
  transform: translateX(4px);
}
.news-mini-img {
  width: 96px;
  flex-shrink: 0;
  object-fit: cover;
}
.news-mini-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-mini-body h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
}

/* =============================================
   FULL DONATE PAGE
   ============================================= */
.donate-page { padding: 80px 0; background: var(--cream); }
.donate-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.donate-method {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 2px solid var(--sand-dark);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.donate-method::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.donate-method.terra::before { background: var(--terracotta); }
.donate-method.gold::before  { background: var(--gold); }
.donate-method.sage::before  { background: var(--sage); }
.donate-method.navy::before  { background: var(--navy); }
.donate-method:hover { box-shadow: var(--shadow-warm-md); transform: translateY(-2px); }
.donate-method-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.donate-method h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.donate-method p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}
.donate-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-size: 0.88rem;
}
.donate-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.donate-detail-label { color: var(--text-light); font-weight: 600; }
.donate-detail-value { color: var(--text); font-weight: 700; text-align: right; }

.donate-sponsorship {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.donate-sponsorship::before {
  content: '♥';
  position: absolute;
  font-size: 22rem;
  right: -40px;
  bottom: -60px;
  color: rgba(255,255,255,0.03);
  font-family: var(--font-display);
  line-height: 1;
}
.donate-sponsorship h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.donate-sponsorship h2 em { color: var(--gold-light); font-style: italic; }
.donate-sponsorship p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.75; }
.sponsorship-price {
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  padding: 36px 28px;
}
.sponsorship-price .num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.sponsorship-price .per {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 4px 0 20px;
}
.sponsorship-price ul { text-align: left; display: flex; flex-direction: column; gap: 10px; }
.sponsorship-price li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.sponsorship-price li::before { content: '✦'; color: var(--gold-light); font-size: 0.65rem; flex-shrink: 0; margin-top: 4px; }

.wish-list {
  background: var(--sand);
  border-radius: var(--r-xl);
  padding: 48px;
}
.wish-list h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.wish-list > p { color: var(--text-mid); margin-bottom: 32px; }
.wish-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wish-category h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.wish-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wish-tag {
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page { padding: 80px 0; background: var(--cream); }

.mission-block {
  background: var(--terracotta);
  border-radius: var(--r-xl);
  padding: 60px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
.mission-block::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 28rem;
  color: rgba(255,255,255,0.05);
  top: -80px; left: -20px;
  line-height: 1;
  pointer-events: none;
}
.mission-block blockquote {
  position: relative;
  z-index: 1;
}
.mission-block p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 20px;
}
.mission-block cite {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.overview-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm-md);
}
.overview-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.overview-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.overview-text h2 em { color: var(--terracotta); font-style: italic; }
.overview-text p { color: var(--text-mid); font-size: 1rem; line-height: 1.8; margin-bottom: 12px; }

.pillars-section { margin-bottom: 80px; }
.pillars-section-header { text-align: center; margin-bottom: 48px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  border: 2px solid var(--sand-dark);
  text-align: center;
  transition: all 0.25s ease;
}
.pillar-card:hover { border-color: var(--terracotta); transform: translateY(-4px); box-shadow: var(--shadow-warm-md); }
.pillar-icon {
  width: 68px; height: 68px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.pillar-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* Timeline */
.history-section { margin-bottom: 80px; }
.history-header { text-align: center; margin-bottom: 56px; }
.timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--sand-dark);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 24px;
  align-items: start;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-left { text-align: right; padding-top: 6px; }
.timeline-right { padding-top: 6px; }
.timeline-left:empty,
.timeline-right:empty { }
.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 6px var(--terracotta);
}
.timeline-line {
  flex: 1;
  width: 2px;
  background: var(--sand-dark);
  margin-top: 8px;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Board & Staff */
.board-section { margin-bottom: 60px; }
.board-header { margin-bottom: 36px; }
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.board-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 2px solid var(--sand-dark);
  transition: all 0.2s ease;
}
.board-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.board-role {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.board-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

/* =============================================
   TESTIMONIALS PAGE
   ============================================= */
.testimonials-page { padding: 80px 0 100px; background: var(--cream); }
.testimonials-intro {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}
.testimonials-intro p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 2px solid var(--sand-dark);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-warm-md);
  transform: translateY(-4px);
}
.testimonial-card:nth-child(1),
.testimonial-card:nth-child(6) { border-color: var(--terra-pale); }
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--terracotta);
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.25;
}
.testimonial-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.82;
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--sand-dark);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--terracotta);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.testimonials-cta {
  background: var(--terracotta);
  border-radius: var(--r-xl);
  padding: 56px;
  text-align: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
.testimonials-cta::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(255,255,255,0.05);
  top: -60px; right: -20px;
  line-height: 1;
}
.testimonials-cta h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.testimonials-cta h2 em { color: var(--gold-light); font-style: italic; }
.testimonials-cta p {
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-cta .btn-group {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-page { padding: 80px 0 100px; background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: var(--shadow-warm-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-warm-md);
  transform: translateY(-4px);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-card h2 a { transition: color 0.2s; }
.blog-card h2 a:hover { color: var(--terracotta); }
.blog-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; flex: 1; margin-bottom: 20px; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--sand-dark);
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 8px; }

.blog-sanity-note {
  background: var(--sand);
  border-radius: var(--r-xl);
  padding: 40px;
  margin-top: 56px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.blog-sanity-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.blog-sanity-note h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.blog-sanity-note p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* =============================================
   BLOG POST (Single article)
   ============================================= */
.post-article { padding: 56px 0 90px; background: var(--cream); }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.post-featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-warm-md);
  margin-bottom: 40px;
}
.post-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 24px;
}
.post-content p:first-of-type {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
}
.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--sand-dark);
}
.post-footer .news-date { font-size: 0.9rem; color: var(--text-light); font-weight: 700; }
.post-back {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.post-back:hover { gap: 10px; }
.post-notfound { text-align: center; padding: 40px 0; }
.post-notfound h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text); margin-bottom: 12px; }
.post-notfound p { color: var(--text-mid); margin-bottom: 24px; }

.related-posts {
  max-width: var(--max-w);
  margin: 20px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--sand-dark);
}
.related-posts-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  text-align: center;
}
.related-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-grid .blog-card-body { padding: 20px; }
.related-grid .blog-card h2 { font-size: 1.05rem; }
.related-grid .blog-card p { display: none; }

/* =============================================
   ACTIVITIES PAGE
   ============================================= */
.activities-page { padding: 80px 0 100px; background: var(--cream); }
.activities-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.activities-intro-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm-md);
}
.activities-intro-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.activity-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  border: 2px solid var(--sand-dark);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.activity-card:hover {
  border-color: var(--terracotta);
  background: var(--terra-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-md);
}
.activity-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}
.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.activity-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

.activities-gallery { margin-bottom: 80px; }
.activities-gallery-header { margin-bottom: 32px; }

/* =============================================
   ENVIRONMENT PAGE
   ============================================= */
.environment-page { padding: 80px 0 100px; background: var(--cream); }
.environment-hero-section {
  background: var(--sage);
  border-radius: var(--r-xl);
  padding: 60px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.environment-hero-section::before {
  content: '🌱';
  position: absolute;
  font-size: 16rem;
  opacity: 0.06;
  right: -20px;
  bottom: -20px;
  line-height: 1;
}
.environment-hero-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.environment-hero-section h2 em { color: var(--gold-light); font-style: italic; }
.environment-hero-section p {
  position: relative;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.env-grid img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-warm-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.env-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.env-text h2 em { color: var(--sage); font-style: italic; }
.env-text p { font-size: 0.98rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.env-stat {
  background: var(--sage-pale);
  border-radius: var(--r-md);
  padding: 14px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.env-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage);
  flex-shrink: 0;
}
.env-stat-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--brown); padding: 72px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-verse { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-style: italic; }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,43,31,0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 48px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-warm-lg);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--sand);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--sand-dark); }
.modal h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.modal-sub { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 28px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--terracotta); }
.form-row textarea { min-height: 90px; resize: vertical; }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success .icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-mid); font-size: 0.9rem; }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photos { max-width: 480px; margin: 0 auto; }
  .help-layout { grid-template-columns: 1fr; gap: 48px; }
  .help-sticky { position: static; }
  .faith-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-cell.photo-cell-tall { grid-row: span 1; min-height: 0; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .donate-page-grid { grid-template-columns: 1fr; }
  .donate-sponsorship { grid-template-columns: 1fr; gap: 28px; }
  .overview-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .activities-intro { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .env-grid { grid-template-columns: 1fr; }
  .mission-block { padding: 48px 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .faith-grid { grid-template-columns: 1fr; }
  .donate-inner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-sidebar { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .help-cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: calc(var(--nav-h) + 32px) 0 48px; max-width: 100%; }
  .hero-title { font-size: 2.4rem; margin-bottom: 16px; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 28px; max-width: 100%; }
  .hero-eyebrow { font-size: 0.7rem; margin-bottom: 16px; }
  .hero-stats-bar { position: static; }
  .hero-stats-inner { flex-direction: row; overflow-x: auto; scrollbar-width: none; }
  .hero-stats-inner::-webkit-scrollbar { display: none; }
  .hero-stat { flex: 0 0 auto; min-width: 120px; padding: 18px 20px; }
  .hero-stat-num { font-size: 1.7rem; }
  .about { padding: 64px 0; }
  .about-photos { padding-bottom: 48px; padding-right: 40px; }
  .about-year-badge { left: 0; }
  .life { padding: 64px 0; }
  .help { padding: 64px 0; }
  .faith { padding: 64px 0; }
  .news { padding: 64px 0; }
  .donate { padding: 64px 0; }
  .footer { padding: 52px 0 28px; }
  .help-photo { display: none; }
  .news-grid { gap: 16px; }
  .board-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .donate-sponsorship { padding: 36px 24px; }
  .wish-categories { grid-template-columns: 1fr; }
  .timeline::before { left: 22px; }
  .timeline-item { grid-template-columns: 22px 1fr; grid-template-rows: auto auto; }
  .timeline-left { display: none; }
  .timeline-center { grid-column: 1; grid-row: 1 / 3; }
  .timeline-right { grid-column: 2; }
  .timeline-line { display: none; }
  .mission-block { padding: 36px 24px; }
  .environment-hero-section { padding: 40px 24px; }
  .testimonials-cta { padding: 40px 24px; }
  .page-hero { padding: 28px 0 40px; }
}

@media (min-width: 769px) {
  .hero { min-height: 100vh; }
  .hero-content { padding-bottom: 120px; }
}

@media (max-width: 500px) {
  .hero-content { padding: calc(var(--nav-h) + 24px) 0 40px; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .donate-chips { gap: 8px; }
  .modal { padding: 28px 20px; }
  .photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .blog-sanity-note { flex-direction: column; }
}
