/* ============================================================
   EPSU GHANA  -  Main Stylesheet
   Brand: Crimson Red | Deep Navy Blue | Gold | White
   Font:  Playfair Display (headings) | Inter (body) | Montserrat (accent)
   ============================================================ */

/* ─── Custom Properties ──────────────────────────────────── */
:root {
  /* Brand Colors  -  Wine/Blood · Navy · Gold · Cyan (E.P. Church) */
  --wine:         #8B1A2E;
  --wine-dark:    #6b1221;
  --wine-light:   #b02238;
  --crimson:      #8B1A2E;
  --crimson-dark: #6b1221;
  --crimson-light:#b02238;
  --navy:       #0d1b4b;
  --navy-mid:   #1a2d6e;
  --navy-light: #2a3f8a;
  --gold:       #d4a017;
  --gold-light: #f5c842;
  --gold-dark:  #b8860b;
  --cyan:       #008B8B;
  --cyan-light: #00AAAA;

  /* Neutrals */
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --gray-100:   #f1f3f7;
  --gray-200:   #e2e6ee;
  --gray-400:   #9ca3b8;
  --gray-600:   #5a6480;
  --gray-800:   #2d3350;
  --dark:       #111827;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Montserrat', sans-serif;

  /* Spacing */
  --container: 1240px;
  --gap:       2rem;
  --section-y: 5rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(13,27,75,.08);
  --shadow-md:  0 6px 24px rgba(13,27,75,.12);
  --shadow-lg:  0 16px 48px rgba(13,27,75,.18);
  --shadow-xl:  0 32px 80px rgba(13,27,75,.22);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--gray-800); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  font-style: italic;
  color: var(--gray-600);
  background: var(--gray-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: .925rem;
  letter-spacing: .03em;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,35,53,.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,75,.3);
}
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-sm { padding: .55rem 1.25rem; font-size: .825rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ─── Section Headings ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}
.title-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: .75rem;
}
.section-header.centered .title-underline {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Top Bar ────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: .4rem 0;
  font-family: var(--font-accent);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar-left { display: flex; gap: 1.5rem; }
.topbar-left span { display: flex; align-items: center; gap: .4rem; }
.topbar-left i { color: var(--gold); font-size: .75rem; }
.topbar-right { display: flex; gap: .75rem; }
.topbar-right a {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}
.topbar-right a:hover { color: var(--gold); border-color: var(--gold); }

/* ─── Header / Navigation ────────────────────────────────── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(13,27,75,.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(13,27,75,.14);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.site-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .02em;
}
.logo-sub {
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav list */
.site-nav {}
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: .6rem .9rem;
  font-family: var(--font-accent);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--navy);
  background: var(--gray-100);
}
.nav-list > li > a.active {
  color: var(--gold-dark);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 100;
  border-top: 3px solid var(--gold);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: .6rem 1.25rem;
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: background var(--transition), color var(--transition), padding var(--transition);
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  background: var(--gray-100);
  color: var(--navy);
  border-left-color: var(--gold);
  padding-left: 1.5rem;
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-cta { flex-shrink: 0; }

/* Hide mobile-only elements on desktop */
.nav-close, .nav-overlay { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  transition: background var(--transition);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:hover { background: var(--gray-200); }

/* ─── Flash Messages ─────────────────────────────────────── */
.flash {
  padding: .75rem 0;
  font-family: var(--font-accent);
  font-size: .9rem;
  font-weight: 500;
}
.flash .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.flash-success { background: #d1fae5; color: #065f46; }
.flash-error   { background: #fee2e2; color: #991b1b; }
.flash-info    { background: #dbeafe; color: #1e40af; }
.flash-close   { cursor: pointer; font-size: 1.25rem; color: inherit; opacity: .6; }
.flash-close:hover { opacity: 1; }

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
/* ── Hero Slider backgrounds ─────────────────────────────── */
.hero-slides-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,75,.82) 0%,
    rgba(13,27,75,.55) 60%,
    rgba(13,27,75,.70) 100%
  );
}
.hero-slide-bg.active {
  opacity: 1;
}
/* Fallback gradient when no image set */
.hero-slide-bg:not([style*="background-image"]) {
  background: linear-gradient(135deg, #0d1b4b 0%, #1a2d6e 50%, #0d1b4b 100%);
}

/* ── Hero Slider text panels ─────────────────────────────── */
.hero-slide-content {
  display: none;
  animation: heroFadeIn .7s ease forwards;
}
.hero-slide-content.active {
  display: block;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Slider dots ─────────────────────────────────────────── */
.hero-slider-dots {
  display: flex;
  gap: .6rem;
  margin-top: 2.5rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .3s, border-color .3s, transform .2s;
}
.hero-dot.active,
.hero-dot:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,124,140,.08) 0%, transparent 50%);
}

/* Kente-inspired decorative element */
.hero-kente {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: .06;
}
.hero-kente::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    var(--gold) 0, var(--gold) 4px,
    transparent 4px, transparent 24px
  ),
  repeating-linear-gradient(
    -45deg,
    var(--cyan) 0, var(--cyan) 4px,
    transparent 4px, transparent 24px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(155,35,53,.2);
  border: 1px solid rgba(196,45,66,.4);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f9a8b4;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson-light);
  animation: pulse 2s infinite;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 900;
  line-height: 1.15;
}
.hero h1 .gold { color: var(--gold-light); }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.25rem;
  max-width: 580px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-verse {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  font-style: italic;
}
.hero-verse strong { color: var(--gold-light); font-style: normal; }

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  font-family: var(--font-accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.1rem; }

/* Hero Stats Strip */
.hero-stats {
  background: var(--white);
  padding: 2rem 0;
  box-shadow: 0 8px 32px rgba(13,27,75,.1);
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  padding: .5rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: .25rem;
}

/* ─── Sections ───────────────────────────────────────────── */
section { padding: var(--section-y) 0; }

/* ─── Mission Section ────────────────────────────────────── */
.mission-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.06) 0%, transparent 70%);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission-content .section-label { color: var(--gold-light); }
.mission-content .section-title { color: var(--white); }
.mission-content p { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.mission-content .title-underline { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.mission-pillars {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(155,35,53,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #f9a8b4;
  flex-shrink: 0;
}
.pillar-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .2rem;
}
.pillar-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.mission-image {
  position: relative;
}
.mission-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.mission-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.mission-badge-year {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.mission-badge-text {
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .2rem;
}

/* ─── News Section ───────────────────────────────────────── */
.news-section { background: var(--off-white); }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.post-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.post-card:hover .post-card-image img { transform: scale(1.06); }
.post-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-400);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}
.post-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
}
.post-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--gray-400);
  font-family: var(--font-accent);
  margin-bottom: .75rem;
}
.post-card-meta i { font-size: .7rem; }
.post-card-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.4;
}
.post-card-title a:hover { color: var(--gold-dark); }
.post-card-excerpt {
  font-size: .9rem;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1.25rem;
}
.post-card-link {
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition), color var(--transition);
}
.post-card-link:hover { color: var(--gold-dark); gap: .7rem; }
.section-more {
  text-align: center;
  margin-top: 3rem;
}

/* ─── Events Section ─────────────────────────────────────── */
.events-section { background: var(--white); }
.events-list { display: grid; gap: 1.5rem; }
.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.event-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.event-date-box {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  min-width: 68px;
  flex-shrink: 0;
}
.event-date-day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-light);
}
.event-date-month {
  font-family: var(--font-accent);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: .2rem;
}
.event-info {}
.event-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .35rem;
  font-family: var(--font-heading);
}
.event-title a:hover { color: var(--gold-dark); }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--gray-600);
  font-family: var(--font-accent);
}
.event-meta span { display: flex; align-items: center; gap: .35rem; }
.event-meta i { color: var(--gold-dark); font-size: .75rem; }
.event-cta {}
.event-zone-badge {
  display: inline-block;
  background: rgba(0,124,140,.1);
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
  border: 1px solid rgba(0,124,140,.2);
}

/* ─── Gallery Preview ────────────────────────────────────── */
.gallery-section { background: var(--navy); }
.gallery-section .section-label { color: var(--gold-light); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,.65); }
.gallery-section .title-underline { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--navy-mid);
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform var(--transition);
}
.gallery-item:first-child img { aspect-ratio: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,27,75,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: var(--white);
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 500;
}

/* ─── Leadership Preview ─────────────────────────────────── */
.leadership-section { background: var(--off-white); }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.leader-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.leader-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
}
.leader-photo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold-light);
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
}
.leader-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.leader-position {
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,.1) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── Contact Section ────────────────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-cards { display: grid; gap: 1.25rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card-title {
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .3rem;
}
.contact-card-body {
  font-size: .95rem;
  color: var(--gray-800);
}
.contact-card-body a { color: var(--navy); }
.contact-card-body a:hover { color: var(--gold-dark); text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: .4rem;
}
.form-group label .required { color: var(--wine); }
.form-control {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,27,75,.08);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; cursor: pointer; }

/* ─── Page Hero (Inner Pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,160,23,.08) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-accent);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--gold-light); }
.page-hero-breadcrumb i { font-size: .65rem; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 600px; }

/* ─── About Page ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border-left: 4px solid var(--gold);
}
.value-card h4 {
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.value-card p {
  font-size: .85rem;
  color: var(--gray-600);
  margin: 0;
}

/* ─── History Page ───────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--cyan), var(--navy));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: .35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .4rem;
}
.timeline-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.timeline-content p {
  font-size: .95rem;
  color: var(--gray-600);
}

/* ─── Camp Meetings Table ────────────────────────────────── */
.camps-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.camps-table thead tr { background: var(--navy); color: var(--white); }
.camps-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.camps-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800);
}
.camps-table tr:hover td { background: var(--gray-100); }
.camps-table tr:last-child td { border-bottom: none; }
.camps-table .year-cell {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

/* ─── Leadership Page ────────────────────────────────────── */
.leadership-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.leader-card-full {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--gold);
}
.leader-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.leader-photo-lg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  margin: 0 auto 1.25rem;
}
.leader-photo-placeholder-lg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-light);
  border: 4px solid var(--gold);
  margin: 0 auto 1.25rem;
}
.leader-sort-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: .75rem;
}

/* ─── Zones Page ─────────────────────────────────────────── */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.zone-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.zone-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zone-card-header::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: .75rem;
}
.zone-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.zone-region {
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.zone-card-body { padding: 1.75rem; }
.zone-card-body p { font-size: .9rem; color: var(--gray-600); }

/* ─── Gallery Page ───────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.gallery-filter-btn {
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-masonry-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
  cursor: zoom-in;
}
.gallery-masonry-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-masonry-item:hover img { transform: scale(1.08); }
.gallery-masonry-item:nth-child(5n+1) img { height: 260px; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(13,27,75,.8) 0%, transparent 100%);
  padding: 1rem .75rem .75rem;
  color: var(--white);
  font-size: .8rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-masonry-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ─── Resources Page ─────────────────────────────────────── */
.resources-list { display: grid; gap: 1rem; }
.resource-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.resource-card:hover {
  border-color: var(--navy);
  transform: translateX(4px);
}
.resource-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--wine), #8b2540);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.resource-icon.pdf-icon { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.resource-icon.doc-icon { background: linear-gradient(135deg, #2980b9, #3498db); }
.resource-info { flex: 1; }
.resource-title {
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font-heading);
  margin-bottom: .3rem;
}
.resource-desc {
  font-size: .875rem;
  color: var(--gray-600);
  margin: 0;
}
.resource-meta {
  display: flex;
  gap: 1rem;
  font-size: .78rem;
  color: var(--gray-400);
  font-family: var(--font-accent);
  margin-top: .4rem;
}

/* ─── Blog / News Single ─────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.post-article {}
.post-featured-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  object-fit: cover;
  max-height: 480px;
}
.post-header { margin-bottom: 2rem; }
.post-header h1 { color: var(--navy); margin-bottom: 1rem; }
.post-meta {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-accent);
  font-size: .82rem;
  color: var(--gray-400);
  flex-wrap: wrap;
}
.post-meta i { color: var(--gold-dark); }
.post-body {
  line-height: 1.85;
  color: var(--gray-800);
  font-size: 1.02rem;
}
.post-body h2, .post-body h3 { margin: 2rem 0 1rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { padding-left: 1.75rem; margin-bottom: 1.25rem; }
.post-body li { margin-bottom: .4rem; }
.post-body img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

/* Sidebar */
.sidebar {}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.sidebar-widget-title {
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
}

/* ─── Pagination ─────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
}
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
}
.page-link:hover, .page-link.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  position: relative;
}
.footer-wave { line-height: 0; margin-top: -2px; }
.footer-wave svg { height: 80px; width: 100%; }
.footer-main { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.footer-logo img { width: 100px; height: 100px; object-fit: contain; display: block; }
.footer-logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
}
.footer-logo-tagline {
  display: block;
  font-family: var(--font-accent);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-about {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-motto {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  border-left: 3px solid var(--gold);
  padding: .6rem 1rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.footer-motto em { display: block; margin-bottom: .25rem; }
.footer-motto cite {
  font-style: normal;
  font-size: .78rem;
  font-family: var(--font-accent);
  color: var(--gold);
}
.footer-socials {
  display: flex;
  gap: .6rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-heading {
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: .35rem; }
.footer-news li { margin-bottom: 1rem; }
.footer-news a { display: block; }
.footer-news a span {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  display: block;
  line-height: 1.4;
  transition: color var(--transition);
}
.footer-news a:hover span { color: var(--gold-light); }
.footer-news small {
  display: block;
  font-family: var(--font-accent);
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  margin-top: .2rem;
}
.footer-empty { font-size: .875rem; color: rgba(255,255,255,.35); }
.footer-contact li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .85rem;
}
.footer-contact li i {
  color: var(--gold);
  font-size: .85rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-cta { margin-top: 1.25rem; border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.7); }
.footer-cta:hover { background: var(--white); border-color: var(--white); color: var(--navy); }

.footer-bottom {
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── Utility Classes ────────────────────────────────────── */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-white { background: var(--white); }
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Hero Split Layout ──────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 4rem;
}
.hero-split .hero-content {
  padding: 0;
  max-width: none;
}

/* Hero Right Card */
.hero-card { position: relative; z-index: 2; }
.hero-card-inner {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
}
.hero-card-motto { text-align: center; margin-bottom: 1.5rem; }
.hero-card-cross {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: .75rem;
}
.hero-card-motto-text {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}
.hero-card-motto-sub {
  font-family: var(--font-accent);
  font-size: .72rem;
  color: var(--gold-light);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .4rem;
}
.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 1.5rem 0;
}
.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  text-align: center;
}
.hero-card-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.hero-card-stat-label {
  display: block;
  font-family: var(--font-accent);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
}
.hero-card-pillars {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.hero-card-pillars span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  padding: .35rem .7rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-card-pillars span i { color: var(--gold-light); font-size: .7rem; }

/* ─── Who We Are Section ─────────────────────────────────── */
.who-section { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: .5rem;
}
.who-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.who-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.who-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.who-card-icon.faith {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
}
.who-card-icon.fellowship {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  color: #ffd0d8;
}
.who-card-icon.leadership {
  background: linear-gradient(135deg, #b8860b, var(--gold));
  color: var(--navy);
}
.who-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: .75rem; }
.who-card p  { font-size: .95rem; color: var(--gray-600); margin: 0; }

/* ─── Mission Vision Motto ───────────────────────────────── */
.mvv-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.mvv-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.07) 0%, transparent 70%);
  pointer-events: none;
}
.mvv-section .section-label  { color: var(--gold-light); }
.mvv-section .section-title  { color: var(--white); }
.mvv-section .title-underline { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.mvv-section .section-header.centered { margin-bottom: 3rem; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mvv-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.mvv-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(212,160,23,.45);
  transform: translateY(-4px);
}
.mvv-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.mvv-card-label {
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .5rem;
}
.mvv-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.mvv-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin: 0;
}

/* ─── What We Do Section ─────────────────────────────────── */
.what-section { background: var(--off-white); }
.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: .5rem;
}
.what-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
}
.what-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.what-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 1.25rem;
}
.what-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.what-card p  { font-size: .85rem; color: var(--gray-600); margin: 0; line-height: 1.65; }

/* ─── EPSU Across Ghana / Zones ──────────────────────────── */
.zones-hp-section { background: var(--white); }
.zones-hp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.zones-hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.zone-hp-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(13,27,75,.08);
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(13,27,75,.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  overflow: hidden;
}
.zone-hp-card::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.12) 0%, transparent 70%);
  pointer-events: none;
}
.zone-hp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(13,27,75,.13);
  border-top-color: var(--crimson);
}
.zone-hp-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .4rem;
  flex-shrink: 0;
}
.zone-hp-icon i { font-size: 1.1rem; color: var(--gold); }
.zone-hp-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.zone-hp-region {
  font-family: var(--font-accent);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gray-600);
  text-transform: uppercase;
}
.zones-hp-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.zones-hp-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(212,160,23,.07);
  pointer-events: none;
}
.zones-hp-banner-text h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.4rem; }
.zones-hp-banner-text p  { color: rgba(255,255,255,.65); margin: 0; font-size: .95rem; max-width: 520px; }

/* ─── Resources Preview ──────────────────────────────────── */
.resources-hp-section { background: var(--white); }
.resources-hp-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.resource-cat-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
.resource-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.resource-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  color: var(--white);
}
.resource-cat-icon.constitution { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--gold-light); }
.resource-cat-icon.study        { background: linear-gradient(135deg, #15803d, #22c55e); }
.resource-cat-icon.devotional   { background: linear-gradient(135deg, var(--crimson-dark), var(--crimson)); }
.resource-cat-icon.forms        { background: linear-gradient(135deg, #6d28d9, #a78bfa); }
.resource-cat-icon.reports      { background: linear-gradient(135deg, #b45309, #f59e0b); }
.resource-cat-icon.downloads    { background: linear-gradient(135deg, #0e7490, #22d3ee); }
.resource-cat-title {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .2rem;
}
.resource-cat-desc {
  display: block;
  font-size: .8rem;
  color: var(--gray-600);
}
.resources-hp-recent { margin-top: 0; }

/* ─── National Leadership (Homepage) ────────────────────── */
.leadership-hp-section { background: var(--off-white); }
.leadership-hp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: .5rem;
}
.leader-hp-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.leader-hp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.leader-hp-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  margin: 0 auto 1.25rem;
  display: block;
}
.leader-hp-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-light);
  border: 4px solid var(--gold);
  margin: 0 auto 1.25rem;
}
.leader-hp-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .3rem;
}
.leader-hp-position {
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .3rem;
}
.leader-hp-tenure {
  font-size: .78rem;
  color: var(--gray-400);
  font-family: var(--font-accent);
}
.leader-hp-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray-400);
}
.leader-hp-empty i { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: .5; }
.leader-hp-empty p { margin: 0; }

/* ─── Empty State ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray-400);
}
.empty-state i { font-size: 3rem; margin-bottom: 1rem; display: block; opacity: .5; }
.empty-state p { margin: 0; }

/* ─── About Page  -  Tab Navigation ───────────────────────── */
.about-tab-nav-wrap {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(13,27,75,.25);
}
.about-tab-nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.about-tab-nav::-webkit-scrollbar { display: none; }
.about-tab-btn {
  flex: none;
  padding: 1rem 1.75rem;
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}
.about-tab-btn:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,.06);
}
.about-tab-btn.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,.08);
}

/* ─── History Timeline ───────────────────────────────────── */
.history-timeline {
  position: relative;
}
.history-timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy-light));
}
.history-item {
  display: grid;
  grid-template-columns: 64px 28px 1fr;
  column-gap: 1rem;
  align-items: start;
  margin-bottom: 2.25rem;
  position: relative;
}
.history-year {
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-align: right;
  padding-top: .15rem;
  line-height: 1.4;
}
.history-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  margin-top: .25rem;
  justify-self: center;
}
.history-content {
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.75;
}

/* ─── Leader Card  -  About page photo wrap ────────────────── */
.leader-photo-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.25rem;
  position: relative;
}
.leader-photo-wrap img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  display: block;
}
.leader-photo-fallback {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-light);
  border: 4px solid var(--gold);
}
.leader-info { text-align: center; }
.leader-info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .3rem;
}
.leader-position {
  font-family: var(--font-accent);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .3rem;
}
.leader-tenure {
  font-size: .78rem;
  color: var(--gray-400);
  font-family: var(--font-accent);
  margin-bottom: .5rem;
}
.leader-bio {
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ─── Zone Card  -  elements used on About page ────────────── */
.zone-hp-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: .75rem;
}
.zone-region {
  font-family: var(--font-accent);
  font-size: .74rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: .5rem;
}
.zone-desc {
  font-size: .87rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: .75rem;
}
.zone-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 999px;
}

/* ─── Bible Quiz Page ────────────────────────────────────── */
.quiz-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--section-y) 1.5rem;
}
.quiz-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}
.quiz-progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  border-radius: 999px;
  transition: width .4s ease;
}
.quiz-question-num {
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}
.quiz-question-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--white);
  text-align: left;
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--dark);
  width: 100%;
}
.quiz-option:hover { border-color: var(--navy-light); background: var(--off-white); }
.quiz-option.selected { border-color: var(--navy); background: rgba(13,27,75,.05); }
.quiz-option.correct  { border-color: #16a34a; background: rgba(22,163,74,.08); color: #15803d; }
.quiz-option.wrong    { border-color: var(--crimson); background: rgba(212,160,23,.07); color: var(--crimson-dark); }
.quiz-option-letter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-600);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.quiz-option.selected .quiz-option-letter { background: var(--navy); color: var(--white); }
.quiz-option.correct  .quiz-option-letter { background: #16a34a; color: var(--white); }
.quiz-option.wrong    .quiz-option-letter { background: var(--crimson); color: var(--white); }
.quiz-explanation {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: none;
}
.quiz-score-card {
  text-align: center;
  padding: 1rem 0;
}
.quiz-score-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 8px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  background: var(--off-white);
}
.quiz-score-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.quiz-score-label {
  font-family: var(--font-accent);
  font-size: .72rem;
  color: var(--gray-600);
  font-weight: 600;
}
.quiz-breakdown {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}
.quiz-breakdown-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}
.quiz-breakdown-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.quiz-breakdown-key {
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp .6s ease both;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-y: 4rem; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  /* New sections */
  .hero-split { grid-template-columns: 1fr 300px; gap: 2rem; }
  .what-grid { grid-template-columns: repeat(3, 1fr); }
  .leadership-hp-grid { grid-template-columns: repeat(3, 1fr); }
  .zones-hp-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-hp-cats { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { gap: 1.5rem; }
}

@media (max-width: 900px) {
  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .site-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--white);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right .35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }
  .site-nav.open { right: 0; }
  .nav-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 40px; height: 40px;
    border: none; background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.5rem; line-height: 1;
    color: var(--navy);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 10;
  }
  .nav-close:hover { background: var(--gray-200); }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
    transition: opacity .35s;
  }
  .nav-overlay.open { display: block; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list > li > a { padding: .85rem .5rem; font-size: .95rem; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--gray-100);
    padding: .25rem 0;
    border-left: 3px solid var(--gold);
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding-left: 1.5rem; }

  /* Grid adjustments */
  .mission-grid,
  .mvv-about-grid { grid-template-columns: 1fr; }
  .about-tab-btn { padding: .85rem 1.25rem; font-size: .76rem; }
  .quiz-breakdown { grid-template-columns: 1fr; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .zones-grid,
  .leadership-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
  /* New sections at 900px */
  .hero-split { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .hero-split .hero-content { padding: 4rem 0 3rem; }
  .who-grid  { grid-template-columns: 1fr; gap: 1.5rem; }
  .mvv-grid  { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-hp-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-hp-cats { grid-template-columns: repeat(2, 1fr); }
  .leadership-hp-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-hp-banner { flex-direction: column; align-items: flex-start; padding: 2rem 1.75rem; }
}

@media (max-width: 640px) {
  :root { --section-y: 2.5rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .zones-grid,
  .leadership-full-grid { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-left { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: auto 1fr; gap: .75rem; }
  .event-cta { display: none; }
  .camps-table { font-size: .8rem; }
  .camps-table th, .camps-table td { padding: .65rem .75rem; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 4rem 0 3rem; }
  .hero-verse { font-size: .8rem; }
  .mission-pillars { gap: 1.25rem; }
  .pillar-icon { width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }
  .section-label { font-size: .7rem; }
  .stat-item { padding: 1rem .5rem; }
  /* New sections at 640px */
  .who-grid  { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .zones-hp-grid { grid-template-columns: 1fr; }
  .resources-hp-cats { grid-template-columns: 1fr; }
  .leadership-hp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .leader-hp-photo, .leader-hp-placeholder { width: 90px; height: 90px; font-size: 2rem; }
  .mvv-grid { gap: 1rem; }
  .zones-hp-banner { padding: 1.75rem 1.25rem; }
  .zones-hp-banner-text h3 { font-size: 1.2rem; }
  .stat-number { font-size: 1.6rem; }
  .contact-card { padding: 1rem; }
  .site-logo img { width: 68px; height: 68px; }
}

/* ─── Print ──────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .topbar, .hero-scroll { display: none; }
  body { font-size: 12pt; }
  h1, h2, h3 { page-break-after: avoid; }
}
