/* ==========================================================================
   FPO Theme - Finding Purpose Outdoors Foundation
   Main Stylesheet — rebuilt from HTML mockup source of truth
   Design tokens (custom properties) and reset live in style.css.
   ========================================================================== */


/* ===== SKIP NAV (ADA) ===== */
.skip-nav {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
  z-index: 10000;
  background: var(--gold); color: var(--navy);
  padding: 12px 24px; font-weight: 700;
  text-decoration: none;
}
.skip-nav:focus {
  position: fixed; left: 50%; top: 10px;
  transform: translateX(-50%);
  width: auto; height: auto;
  border-radius: 4px;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: var(--navy-deep);
  padding: 8px 20px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,148,30,0.2);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(27,42,61,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar.scrolled .top-banner { display: none; }

.nav-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(200,148,30,0.4);
  transition: border-color 0.3s;
}
.nav-logo:hover img { border-color: var(--gold); }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); line-height: 1.3;
}
.nav-logo-text span { color: var(--gold); display: block; font-size: 11px; letter-spacing: 3px; font-weight: 500; }

.nav-links {
  display: flex; gap: 8px; list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none; padding: 8px 16px;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; width: 0;
  height: 2px; background: var(--gold);
  transition: all 0.3s; transform: translateX(-50%);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 60%; }

.nav-donate {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 12px 28px; border: none; cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.nav-donate:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(200,148,30,0.4);
}

/* ===== MOBILE NAV ===== */
.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
  flex-direction: column; justify-content: space-between;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white); transition: all 0.3s;
}

/* ===== MOBILE MENU (WP Overlay) ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(15, 29, 51, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 36px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu a {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}
.hero-slide:nth-child(2) img { animation-delay: -5s; animation-direction: alternate-reverse; }
.hero-slide:nth-child(3) img { animation-delay: -10s; }
.hero-slide:nth-child(4) img { animation-delay: -3s; }
.hero-slide:nth-child(5) img { animation-delay: -8s; animation-direction: alternate-reverse; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17,28,42,0.6) 0%,
    rgba(17,28,42,0.4) 40%,
    rgba(17,28,42,0.7) 80%,
    rgba(17,28,42,0.95) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px; padding: 0 40px;
}
.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.8s forwards;
}
.hero-title em {
  font-style: italic; color: var(--gold);
}
.hero-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto 40px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s 1.1s forwards;
}
.hero-ctas {
  display: flex; gap: 20px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s 1.4s forwards;
}
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 16px 40px; border: none;
  cursor: pointer; text-decoration: none;
  transition: all 0.4s;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,148,30,0.4);
}
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer; text-decoration: none;
  transition: all 0.4s;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute; bottom: 40px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 2s forwards;
}
.hero-scroll span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MISSION STRIP ===== */
.mission-strip {
  background: var(--navy-deep);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.mission-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* Floating ambient particles - container for JS-driven particles */
.mission-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
  animation: floatUp linear forwards;
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.4); }
  10%  { opacity: 0.8; transform: translateY(-30px) translateX(calc(var(--drift, 20px) * 0.2)) scale(1); }
  50%  { opacity: 0.55; transform: translateY(-150px) translateX(calc(var(--drift, 20px) * 0.6)) scale(0.9); }
  80%  { opacity: 0.2; transform: translateY(-260px) translateX(var(--drift, 20px)) scale(0.6); }
  100% { opacity: 0; transform: translateY(-350px) translateX(var(--drift, 20px)) scale(0.3); }
}

.mission-inner {
  max-width: 1200px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.mission-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}
.mission-quote strong {
  color: var(--gold); font-style: normal;
}
.mission-subtext {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px; color: rgba(255,255,255,0.45);
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}
.mission-badges {
  display: flex; justify-content: center;
  gap: 50px; flex-wrap: wrap;
}
.badge {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  cursor: default;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.badge.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.badge:nth-child(1) { transition-delay: 0.1s; }
.badge:nth-child(2) { transition-delay: 0.25s; }
.badge:nth-child(3) { transition-delay: 0.4s; }
.badge:nth-child(4) { transition-delay: 0.55s; }
.badge:nth-child(5) { transition-delay: 0.7s; }

.badge-icon {
  width: 64px; height: 64px;
  border: 2px solid rgba(200,148,30,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold);
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(200,148,30,0.05);
}
/* Pulse ring on hover */
.badge-icon::before {
  content: '';
  position: absolute; inset: -6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}
.badge:hover .badge-icon::before {
  opacity: 0.4;
  transform: scale(1);
  animation: ringPulse 1.5s ease-out infinite;
}
@keyframes ringPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
.badge:hover .badge-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 8px 25px rgba(200,148,30,0.35);
}
.badge-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.badge:hover .badge-label {
  color: var(--gold);
}

/* Connecting line between badges */
.mission-divider {
  width: 60%; max-width: 500px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,148,30,0.3), transparent);
  margin: 0 auto 50px;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 40px;
  background: var(--cream);
  position: relative;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images {
  position: relative;
  height: 550px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.about-img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-tag {
  position: absolute;
  top: 20px; right: 40px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 20px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; line-height: 1.25;
  color: var(--navy);
  margin-bottom: 24px;
}
.section-text {
  font-size: 17px; line-height: 1.8;
  color: #555; margin-bottom: 20px;
}
.about-list {
  list-style: none;
  margin: 30px 0;
}
.about-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 16px; color: #555;
  font-weight: 400;
}
.about-list li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 14px; height: 2px;
  background: var(--gold);
}

/* ===== IMPACT STATS ===== */
.impact {
  background: var(--navy);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/fog2.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.impact-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.impact-header {
  text-align: center;
  margin-bottom: 60px;
}
.impact-header .section-label { color: var(--gold); }
.impact-header .section-title { color: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(200,148,30,0.15);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  transition: all 0.4s;
}
.stat-card:hover {
  border-color: rgba(200,148,30,0.4);
  background: rgba(200,148,30,0.05);
  transform: translateY(-6px);
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  transition: transform 0.3s;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
/* $0 bounce animation */
.stat-card.bounce-in {
  animation: zeroBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes zeroBounce {
  0% { transform: scale(0.3) translateY(40px); opacity: 0; }
  50% { transform: scale(1.15) translateY(-10px); opacity: 1; }
  70% { transform: scale(0.9) translateY(4px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
/* Glow flash when counter finishes */
.stat-number.counted {
  animation: goldFlash 0.6s ease;
}
@keyframes goldFlash {
  0% { text-shadow: none; }
  50% { text-shadow: 0 0 20px rgba(200,148,30,0.6), 0 0 40px rgba(200,148,30,0.3); }
  100% { text-shadow: none; }
}

/* ===== GALLERY / PHOTO MOSAIC ===== */
.gallery {
  padding: 100px 40px;
  background: var(--stone);
}
.gallery-inner {
  max-width: 1400px; margin: 0 auto;
}
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
}
.photo-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.photo-item::after {
  content: attr(data-label);
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.photo-item:hover::after {
  transform: translateY(0);
}
.photo-item.tall { grid-row: span 2; }
.photo-item.wide { grid-column: span 2; }

/* ===== SCRIPTURE PARALLAX ===== */
.scripture-band {
  position: relative;
  height: 450px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.scripture-bg {
  position: absolute; inset: -50px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.scripture-overlay {
  position: absolute; inset: 0;
  background: rgba(17,28,42,0.75);
}
.scripture-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 800px; padding: 0 40px;
}
.scripture-text {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400; font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}
.scripture-ref {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.scripture-crosses {
  display: flex; justify-content: center;
  gap: 12px; margin-bottom: 30px;
}
.cross {
  color: var(--gold);
  font-size: 28px;
  opacity: 0.7;
}
.cross:nth-child(2) { font-size: 36px; opacity: 1; }

/* ===== SPONSORSHIP TIERS ===== */
.sponsorship {
  padding: 100px 40px;
  background: var(--cream);
}
.sponsorship-inner {
  max-width: 1200px; margin: 0 auto;
}
.sponsorship-header {
  text-align: center;
  margin-bottom: 60px;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tier-card {
  background: var(--white);
  border: 1px solid var(--stone-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: var(--gold);
}
.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(200,148,30,0.15);
}
.tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 16px; right: -30px;
  background: var(--gold); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 40px;
  transform: rotate(45deg);
}
.tier-image {
  height: 200px;
  overflow: hidden;
}
.tier-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.tier-card:hover .tier-image img {
  transform: scale(1.06);
}
.tier-body {
  padding: 30px;
  text-align: center;
}
.tier-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.tier-price span {
  font-size: 20px; color: var(--text-light);
  font-weight: 400;
}
.tier-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--forest);
  margin: 8px 0 16px;
}
.tier-desc {
  font-size: 15px; color: #666;
  line-height: 1.6; margin-bottom: 24px;
}
.tier-cta {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.tier-cta-gold {
  background: var(--gold); color: var(--navy);
}
.tier-cta-gold:hover { background: var(--gold-light); }
.tier-cta-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.tier-cta-outline:hover {
  background: var(--navy); color: var(--white);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/trees.jpg') center/cover no-repeat;
  opacity: 0.06;
}
.testimonials-inner {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
  text-align: center;
}
.testimonials-header {
  margin-bottom: 60px;
}
.testimonials-header .section-label { color: var(--gold); }
.testimonials-header .section-title { color: var(--white); }

.testimonial-card {
  display: none;
  flex-direction: column; align-items: center;
}
.testimonial-card.active { display: flex; }
.testimonial-quote-mark {
  font-family: 'Libre Baskerville', serif;
  font-size: 80px; line-height: 1;
  color: var(--gold); opacity: 0.4;
  margin-bottom: -20px;
}
.testimonial-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px; font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 700px;
}
.testimonial-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.testimonial-dots {
  display: flex; gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.dot {
  width: 10px; height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===== EVENTS PREVIEW ===== */
.events {
  padding: 100px 40px;
  background: var(--cream);
}
.events-inner {
  max-width: 1200px; margin: 0 auto;
}
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.event-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s;
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.event-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.event-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.event-card:hover .event-image img {
  transform: scale(1.06);
}
.event-type {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.event-body {
  padding: 24px;
}
.event-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.event-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.event-desc {
  font-size: 15px; color: #666;
  line-height: 1.5; margin-bottom: 16px;
}
.event-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.3s;
}
.event-link:hover { color: var(--gold); }
.event-link::after {
  content: '\2192';
  transition: transform 0.3s;
}
.event-link:hover::after {
  transform: translateX(4px);
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  padding: 100px 40px;
  background: var(--stone);
}
.blog-inner {
  max-width: 1200px; margin: 0 auto;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}
.blog-body {
  padding: 24px;
}
.blog-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px; font-weight: 700;
  color: var(--navy); line-height: 1.4;
  margin-bottom: 12px;
}
.blog-excerpt {
  font-size: 14px; color: #777;
  line-height: 1.6;
}

/* ===== DONATION CTA ===== */
.donate-cta {
  padding: 100px 40px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.donate-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/lake3.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.donate-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.donate-inner .section-label { color: var(--gold); }
.donate-inner .section-title {
  color: var(--white);
  margin-bottom: 20px;
}
.donate-text {
  font-size: 18px; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 16px;
}
.donate-tax {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
  margin-bottom: 40px;
}
.donate-buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.donate-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: 2px solid rgba(200,148,30,0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.donate-amount:hover, .donate-amount.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.donate-main-btn {
  margin-top: 30px;
  display: inline-block;
}

/* ===== SPONSOR LOGO BAR ===== */
.sponsor-bar {
  background: var(--cream);
  padding: 50px 20px 40px;
  border-top: 1px solid #e0ddd6;
}
.sponsor-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.sponsor-bar-label {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.sponsor-bar-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.sponsor-tier {
  margin-bottom: 2rem;
}
.sponsor-tier-label {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: #999;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.sponsor-tier-label::before,
.sponsor-tier-label::after {
  content: '';
  height: 1px;
  width: 60px;
  background: #ddd;
}
.sponsor-tier-label.legacy { color: var(--gold); }
.sponsor-tier-label.legacy::before,
.sponsor-tier-label.legacy::after { background: var(--gold-light); }
.sponsor-tier-label.summit { color: #888; }
.sponsor-tier-label.trailblazer { color: #a0785a; }
.sponsor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, transform 0.3s;
}
.sponsor-logo:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.sponsor-logo img {
  max-height: 55px;
  width: auto;
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.sponsor-logo:hover img {
  filter: grayscale(0%);
}
.sponsor-tier.legacy .sponsor-logo img { max-height: 70px; filter: grayscale(0%); }
.sponsor-tier.summit .sponsor-logo img { max-height: 55px; }
.sponsor-tier.trailblazer .sponsor-logos {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: #777;
  gap: 1.5rem;
}
.sponsor-tier.trailblazer .sponsor-name {
  padding: 6px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s;
}
.sponsor-tier.trailblazer .sponsor-name:hover {
  border-color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
}
.footer-main {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand img {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(200,148,30,0.3);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-newsletter p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.6; margin-bottom: 16px;
}
.newsletter-form {
  display: flex; gap: 0;
}
.newsletter-form input {
  flex: 1; padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.3);
}
.newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy);
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 40px;
  max-width: 1200px; margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.footer-crisis {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
}
.footer-crisis a {
  color: var(--gold); font-weight: 600;
}

.footer-scripture {
  text-align: center;
  padding: 24px 40px;
  background: var(--navy-deep);
}
.footer-scripture p {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,0.3);
}

.footer-designer {
  text-align: center;
  padding: 16px 40px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-designer p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
}
.footer-designer a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-designer a:hover { color: var(--gold); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== FLOATING DONATE BUTTON ===== */
.floating-donate {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  opacity: 0; transform: translateY(20px);
  transition: all 0.4s;
  pointer-events: none;
}
.floating-donate.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}
.floating-donate a {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(200,148,30,0.4);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.3s;
}
.floating-donate a:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,148,30,0.5);
}


/* ==========================================================================
   WordPress-Specific: Front-page navbar transparency
   ========================================================================== */

body.front-page .navbar {
  background: transparent;
}
body.front-page .navbar.scrolled {
  background: rgba(27,42,61,0.97);
}


/* ==========================================================================
   CTA Buttons (old-theme compat for interior pages)
   ========================================================================== */

.cta-primary {
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.cta-secondary {
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.cta-outline {
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.cta-outline:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}


/* ==========================================================================
   Section subtitle (used on interior pages)
   ========================================================================== */

.section-subtitle {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
}


/* ==========================================================================
   Page Hero (Interior Pages)
   ========================================================================== */

.page-hero {
  position: relative;
  height: 40vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 95px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 28, 42, 0.7) 0%, rgba(17, 28, 42, 0.5) 40%, rgba(17, 28, 42, 0.8) 80%, rgba(17, 28, 42, 0.95) 100%);
}
.page-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  text-align: center;
}
.page-hero-breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  text-align: center;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-hero-breadcrumb a:hover {
  color: var(--gold);
}
.page-hero-breadcrumb span {
  color: var(--gold);
}
.page-hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title em {
  color: var(--gold);
  font-style: italic;
}
.page-hero-subtitle {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ==========================================================================
   Interior Hero (::before pattern)
   ========================================================================== */

.sponsors-hero,
.donate-hero,
.blog-hero,
.application-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 95px 40px 40px;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.application-hero {
  min-height: 40vh;
}
.sponsors-hero::before,
.donate-hero::before,
.blog-hero::before,
.application-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 28, 42, 0.7) 0%, rgba(17, 28, 42, 0.5) 40%, rgba(17, 28, 42, 0.8) 80%, rgba(17, 28, 42, 0.95) 100%);
  z-index: 1;
}
.sponsors-hero > *,
.donate-hero > *,
.blog-hero > *,
.application-hero > * {
  position: relative;
  z-index: 2;
}


/* ==========================================================================
   About Page — rebuilt from FPO_About.html mockup
   ========================================================================== */

/* -- Mission Section -- */
.about-mission {
  padding: 100px 40px;
  background: var(--cream);
  text-align: center;
}
.about-mission-inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-mission-text {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}
.mission-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 40px auto 0;
  border-radius: 2px;
}

/* -- Timeline Section (navy background) -- */
.about-timeline {
  padding: 100px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/trees.jpg') center/cover no-repeat;
  opacity: 0.06;
}
.about-timeline > * {
  position: relative;
  z-index: 1;
}
.about-timeline .section-label { color: var(--gold); }
.about-timeline .section-title { color: var(--white); }
.about-timeline .section-text {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 70px;
}
.about-timeline .timeline { text-align: left; }

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,148,30,0.2));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 3px solid var(--navy);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(200,148,30,0.2);
  transition: all 0.4s;
}
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 8px rgba(200,148,30,0.3);
  transform: translateX(-50%) scale(1.2);
}
.timeline-content { flex: 1; }
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-content h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* -- Team Section -- */
.about-team {
  padding: 100px 40px;
  background: var(--stone);
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.team-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.4s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.team-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--stone-dark);
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s;
}
.team-card:hover .team-card-image img {
  transform: scale(1.06);
}
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--gold);
}
.team-photo-placeholder .initials {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 8px;
}
.team-photo-placeholder .placeholder-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
}
.team-card-body {
  padding: 24px 20px;
}
.team-card-body h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.team-card-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.team-card-location {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
}
.team-card-body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* -- Values Section -- */
.about-values {
  padding: 100px 40px;
  background: var(--cream);
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.value-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border: 1px solid var(--stone-dark);
  border-radius: 4px;
  transition: all 0.4s;
  position: relative;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.value-icon {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(200,148,30,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 20px;
  background: rgba(200,148,30,0.05);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.value-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}
.value-card:hover .value-icon::before {
  opacity: 0.4;
  transform: scale(1);
  animation: ringPulse 1.5s ease-out infinite;
}
@keyframes ringPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
.value-card:hover .value-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 25px rgba(200,148,30,0.35);
}
.value-card h3,
.value-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p,
.value-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* -- Partners Strip -- */
.about-partners {
  padding: 60px 40px;
  background: var(--stone);
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
  text-align: center;
}
.about-partners .section-label {
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.about-partners .section-title {
  font-size: 22px;
  margin-bottom: 32px;
}
.about-partners .partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.partner-name {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: #666;
  padding: 10px 22px;
  border: 1px solid var(--stone-dark);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.3s;
}
.partner-name:hover {
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* -- Partners logos (sponsors page) -- */
.partner-logo {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: grayscale(0.5);
}
.partner-logo:hover {
  opacity: 1;
  filter: none;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* -- About CTA Section -- */
.about-cta {
  padding: 100px 40px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/lake3.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.about-cta > * {
  position: relative;
  z-index: 1;
}
.about-cta .section-label { color: var(--gold); }
.about-cta .section-title,
.about-cta h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
}
.about-cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-tax {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 40px;
}
.reveal-delay-4 { transition-delay: 0.4s; }


/* ==========================================================================
   Events Page Specifics
   ========================================================================== */

.events-filter {
  padding: 40px;
  text-align: center;
}
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-btn {
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: transparent;
  border: 2px solid rgba(27, 42, 74, 0.2);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.events-enhanced-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.event-enhanced-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-enhanced-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-enhanced-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.event-enhanced-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.edb-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}
.edb-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.event-enhanced-body {
  padding: 24px;
}
.event-enhanced-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.event-type-badge {
  background: rgba(27, 42, 74, 0.1);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.event-status-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.event-enhanced-body h3 {
  margin: 0;
}
.event-enhanced-body h3 a {
  color: var(--navy);
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.event-enhanced-body h3 a:hover {
  color: var(--gold);
}
.event-enhanced-location {
  font-size: 14px;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.event-enhanced-excerpt {
  font-size: 15px;
  color: var(--text-body);
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}
.event-enhanced-link {
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 16px;
  display: inline-block;
  transition: color 0.3s ease;
}
.event-enhanced-link:hover {
  color: var(--gold-light);
}
.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 40px;
}
.past-event-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.past-event-image {
  width: 200px;
  flex-shrink: 0;
  position: relative;
}
.past-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.6);
}
.past-event-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--warm-gray);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.past-event-body {
  padding: 20px;
}
.past-event-body h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 4px;
  font-family: 'Libre Baskerville', serif;
}
.past-event-date,
.past-event-location {
  font-size: 13px;
  color: var(--warm-gray);
  margin-top: 4px;
}
.events-cta {
  position: relative;
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.events-cta .section-label {
  color: var(--gold);
}
.events-cta .section-title {
  color: #fff;
}
.events-cta-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.events-cta > * {
  position: relative;
  z-index: 1;
}
.events-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}


/* ==========================================================================
   Sponsors Page — rebuilt from FPO_Sponsors.html mockup
   ========================================================================== */

/* -- Why Sponsor -- */
.sponsors-why {
  padding: 80px 40px;
  text-align: center;
}
.sponsors-why-inner {
  max-width: 900px;
  margin: 0 auto;
}
.sponsors-why-inner .section-subtitle {
  margin: 0 auto 32px;
}
.sponsors-why-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 740px;
  margin: 0 auto;
}

/* -- Impact Stats -- */
.sponsors-impact {
  background: var(--navy-deep);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.sponsors-impact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sponsors-impact::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sponsors-impact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.sponsors-impact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.sponsors-impact-card .impact-number {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.sponsors-impact-card .impact-suffix {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.sponsors-impact-card p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* -- Sponsorship Tiers -- */
.sponsors-tiers {
  padding: 80px 40px;
  background: var(--stone);
  text-align: center;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 48px auto 0;
  align-items: start;
}
.tier-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.tier-card.tier-featured {
  border: 2px solid var(--gold);
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(200,148,30,0.2);
  z-index: 1;
}
.tier-card.tier-featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 16px 50px rgba(200,148,30,0.3);
}
.tier-featured-label {
  position: absolute;
  top: 16px; right: -34px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  z-index: 2;
}
.tier-header {
  padding: 36px 28px 24px;
  text-align: center;
}
.tier-header h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.tier-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.tier-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
}
.tier-benefits {
  padding: 24px 28px 32px;
  text-align: left;
  list-style: none;
}
.tier-benefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-benefits li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.tier-card .cta-primary {
  margin: 0 28px 32px;
  display: block;
  text-align: center;
}

/* Tier-specific colors */
.tier-legacy { border-top: 3px solid var(--gold); }
.tier-summit { border-top: 3px solid #8E8E8E; }
.tier-trailblazer { border-top: 3px solid #8B5E3C; }

/* -- Current Sponsors -- */
.sponsors-current {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.sponsor-tier-group {
  margin-bottom: 48px;
  text-align: center;
}
.sponsor-tier-group:last-child { margin-bottom: 0; }
.sponsor-tier-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.sponsor-tier-label::before,
.sponsor-tier-label::after {
  content: '';
  width: 60px;
  height: 1px;
}
.tier-label-legacy { color: var(--gold); }
.tier-label-legacy::before,
.tier-label-legacy::after { background: var(--gold); opacity: 0.3; }
.tier-label-summit { color: #8E8E8E; }
.tier-label-summit::before,
.tier-label-summit::after { background: #8E8E8E; opacity: 0.3; }
.tier-label-trailblazer { color: #8B5E3C; }
.tier-label-trailblazer::before,
.tier-label-trailblazer::after { background: #8B5E3C; opacity: 0.3; }

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.sponsor-logo-item {
  background: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sponsor-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.sponsor-logo-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* -- Sponsors Partners -- */
.sponsors-partners {
  padding: 80px 40px;
  background: var(--stone);
  text-align: center;
}
.sponsors-partners .partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* -- Sponsors CTA -- */
.sponsors-cta {
  padding: 80px 40px;
  background: var(--navy-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.sponsors-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sponsors-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sponsors-cta .section-label { color: var(--gold); }
.sponsors-cta .section-title,
.sponsors-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.sponsors-cta p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.sponsors-cta-email {
  margin-bottom: 32px;
}
.sponsors-cta-email a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.sponsors-cta-email a:hover { color: var(--gold-light); }
.sponsors-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==========================================================================
   Donate Page Specifics
   ========================================================================== */

.donate-main {
  padding: 80px 40px;
  text-align: center;
}
.donate-main-inner {
  max-width: 600px;
  margin: 0 auto;
}
.donate-heart {
  margin-bottom: 24px;
}
.donate-zeffy-btn {
  display: inline-block;
  font-size: 18px;
  padding: 16px 40px;
}
.donate-main .donate-note {
  font-size: 14px;
  color: var(--warm-gray);
  margin-top: 12px;
}
.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 40px;
}
.donate-impact-card {
  background: #fff;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.donate-impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.donate-impact-icon {
  margin-bottom: 16px;
  font-size: 32px;
}
.donate-impact-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 12px;
}
.donate-impact-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}
.donate-other {
  padding: 80px 40px;
  background: var(--cream-dark);
  text-align: center;
}
.donate-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.donate-other-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.donate-other-icon {
  margin-bottom: 16px;
  font-size: 32px;
}
.donate-other-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.donate-other-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}
.donate-tax-section {
  padding: 60px 40px;
}
.donate-tax-box {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--forest);
  box-shadow: var(--shadow-sm);
}
.donate-tax-box h3 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
}
.donate-tax-box p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}
.donate-tax-box a {
  color: var(--forest);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.donate-tax-box a:hover {
  color: var(--forest-dark);
}
.donate-amounts {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.donate-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}


/* ==========================================================================
   Contact Page — rebuilt from FPO_Contact.html mockup
   ========================================================================== */

.contact-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

/* -- Contact Form -- */
.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.contact-form-wrap h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.5;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label span {
  color: var(--gold);
}
.form-group label .optional {
  font-weight: 400;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D0CEC7;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,148,30,0.15);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form .cta-primary {
  margin-top: 8px;
}

/* -- Contact Sidebar -- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.contact-info-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-item a,
.contact-info-item span {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.contact-info-item a {
  text-decoration: none;
  color: var(--blue);
  transition: color 0.3s;
}
.contact-info-item a:hover { color: var(--gold); }

.contact-response-note {
  background: var(--stone);
  padding: 20px 24px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-response-note svg {
  flex-shrink: 0;
}
.contact-response-note p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

/* -- Get Involved -- */
.contact-involved {
  padding: 80px 40px;
  background: var(--stone);
  text-align: center;
}
.involved-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 48px auto 0;
}
.involved-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.involved-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.involved-icon {
  width: 64px;
  height: 64px;
  background: var(--stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.involved-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}
.involved-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.involved-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* -- Map Section -- */
.contact-map {
  padding: 80px 40px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.map-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.map-text { color: #fff; }
.map-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 12px;
}
.map-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.map-graphic svg {
  max-width: 100%;
  height: auto;
  opacity: 0.6;
}
.map-marker {
  animation: markerPulse 2s infinite;
}
@keyframes markerPulse {
  0% { r: 8; opacity: 1; }
  50% { r: 14; opacity: 0.4; }
  100% { r: 8; opacity: 1; }
}
.map-pulse {
  animation: mapPulse 2s infinite;
}
@keyframes mapPulse {
  0%, 100% { r: 16; opacity: 0.5; }
  50% { r: 24; opacity: 0; }
}


/* ==========================================================================
   Blog Page Specifics
   ========================================================================== */

.blog-filter {
  padding: 40px 40px 0;
  text-align: center;
}
.blog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-pill {
  background: transparent;
  border: 1px solid rgba(27, 42, 74, 0.2);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.blog-featured {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.featured-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  display: block;
}
.featured-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
}
.featured-content .category-tag {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}
.featured-content h2 {
  margin: 0;
}
.featured-content h2 a {
  color: var(--navy);
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 32px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.featured-content h2 a:hover {
  color: var(--gold);
}
.featured-date {
  font-size: 14px;
  color: var(--warm-gray);
  margin: 8px 0 16px;
}
.featured-excerpt {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}
.featured-content .cta-primary {
  margin-top: 24px;
}
.blog-newsletter {
  background: var(--navy-deep);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}
.blog-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}
.blog-newsletter-inner .section-label {
  color: var(--gold);
}
.blog-newsletter-inner .section-title {
  color: #fff;
}
.blog-newsletter-inner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.blog-nl-form {
  max-width: 400px;
  margin: 0 auto;
}
.category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  background: rgba(27, 42, 74, 0.8);
  color: #fff;
}
.category-tag--news {
  background: var(--gold);
  color: var(--navy-deep);
}
.category-tag--adventure {
  background: var(--forest);
  color: #fff;
}
.category-tag--wellness {
  background: #2196F3;
  color: #fff;
}
.category-tag--team {
  background: var(--navy);
  color: var(--gold);
}


/* ==========================================================================
   Application Page — rebuilt from FPO_Application_Mockup.html
   ========================================================================== */

.reassurance-strip {
  background: var(--stone);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 4px solid var(--gold);
  border-bottom: 3px solid var(--forest);
}
.reassurance-quote p {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.reassurance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.reassurance-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 110px;
}
.reassurance-badge svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.reassurance-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.application-form-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}


/* ==========================================================================
   Single Event Specifics
   ========================================================================== */

.event-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.event-hero-bg {
  position: absolute;
  inset: 0;
}
.event-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 29, 51, 0.3) 0%, rgba(15, 29, 51, 0.65) 50%, rgba(15, 29, 51, 0.95) 100%);
}
.event-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
}
.event-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.event-breadcrumb {
  font-size: 14px;
  margin-bottom: 12px;
}
.event-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.event-breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}
.breadcrumb-current {
  color: #fff;
}
.event-hero-content h1 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 44px;
  color: #fff;
  margin: 16px 0;
  line-height: 1.2;
}
.event-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}
.event-status-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: statusPulse 2s infinite;
  display: inline-block;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.event-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
}
.event-section {
  margin-bottom: 48px;
}
.event-section:last-child {
  margin-bottom: 0;
}
.event-section h2 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(200, 148, 30, 0.2);
}
.event-description p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.event-description p:last-child {
  margin-bottom: 0;
}
.event-diamond-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.event-diamond-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}
.event-diamond-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.event-timeline {
  list-style: none;
  padding-left: 0;
  position: relative;
  margin: 0;
}
.event-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(200, 148, 30, 0.2);
}
.event-timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}
.event-timeline-time {
  width: 80px;
  text-align: right;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  flex-shrink: 0;
}
.event-timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.event-timeline-text {
  font-size: 15px;
  color: var(--text-body);
}
.event-quick-facts {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 120px;
}
.quick-facts-header {
  background: var(--navy);
  padding: 20px 24px;
  color: #fff;
}
.quick-facts-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
}
.quick-facts-body {
  padding: 0;
}
.fact-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.fact-row:last-child {
  border-bottom: none;
}
.fact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--warm-gray);
  letter-spacing: 0.5px;
}
.fact-value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}
.quick-facts-footer {
  padding: 20px 24px;
}
.quick-facts-footer .cta-primary {
  display: block;
  text-align: center;
  width: 100%;
}
.event-flyer {
  margin-top: 24px;
}
.event-flyer h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
}
.flyer-lightbox-trigger {
  display: block;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
}
.flyer-lightbox-trigger img {
  width: 100%;
  display: block;
}
.flyer-zoom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 42, 74, 0.8);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: 'Barlow Condensed', sans-serif;
}
.flyer-lightbox-trigger:hover .flyer-zoom {
  opacity: 1;
}
.event-share {
  margin-top: 24px;
}
.event-share h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
}
.share-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.share-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  border: 1px solid #ddd;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
}
.share-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.share-facebook {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
}
.share-facebook:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}
.event-gallery {
  padding: 0 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.event-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.event-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.event-gallery-item:hover img {
  transform: scale(1.05);
}
.pro-staff-spotlight {
  background: var(--navy);
  padding: 80px 40px;
  color: #fff;
}
.pro-staff-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.pro-staff-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pro-staff-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(200, 148, 30, 0.3);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.pro-staff-image img {
  width: 100%;
  display: block;
}
.pro-staff-content .section-label {
  text-align: left;
}
.pro-staff-content h2 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  margin-bottom: 16px;
  text-align: left;
}
.pro-staff-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
}
.more-events {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.more-events h2 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
}
.more-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.more-event-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.more-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-bottom-cta {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}
.event-bottom-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.event-bottom-cta-content {
  position: relative;
  z-index: 1;
}
.event-bottom-cta .section-label {
  color: var(--gold);
}
.event-bottom-cta .section-title {
  color: #fff;
}
.status-open {
  background: #e8f5e9;
  color: #2e7d32;
}
.status-filling {
  background: #fff3e0;
  color: #e65100;
}
.status-limited {
  background: #fce4ec;
  color: #c62828;
}


/* ==========================================================================
   Single Post Specifics
   ========================================================================== */

.single-post .post-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
}
.post-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(15, 29, 51, 0.85));
}
.post-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.post-hero-content h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}
.post-hero-content .category-tag {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}
.post-meta {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  flex-wrap: wrap;
}
.post-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
}
.post-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
}
.post-body h2,
.post-body h3,
.post-body h4 {
  color: var(--navy);
  margin: 32px 0 16px;
  font-family: 'Libre Baskerville', serif;
}
.post-body h2 {
  font-size: 28px;
}
.post-body h3 {
  font-size: 22px;
}
.post-body h4 {
  font-size: 18px;
}
.post-body p {
  margin-bottom: 20px;
}
.post-body img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 24px 0;
  height: auto;
}
.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--cream-dark);
  margin: 24px 0;
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-body blockquote p {
  margin-bottom: 0;
}
.post-body ul,
.post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-body li {
  margin-bottom: 8px;
}
.post-body a {
  color: var(--forest);
  text-decoration: underline;
}
.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.post-tag {
  background: var(--cream-dark);
  color: var(--navy);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.post-tag:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.post-share {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.post-share h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 16px;
}
.post-author-bio {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding: 24px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  align-items: center;
}
.post-author-bio img {
  border-radius: 50%;
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}
.post-author-bio strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}
.post-author-bio p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}
.post-navigation {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.post-nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.post-nav-link {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: block;
}
.post-nav-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.post-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
}
.post-nav-title {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.4;
}
.post-nav-next {
  text-align: right;
}
.related-posts {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.related-posts h2 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 32px;
}


/* ==========================================================================
   Search Form
   ========================================================================== */

.search-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
.search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 15px;
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
}
.search-field:focus {
  outline: none;
  border-color: var(--gold);
}
.search-submit {
  clip-path: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-submit:hover {
  background: var(--gold-light);
}


/* ==========================================================================
   Flyer Lightbox
   ========================================================================== */

.flyer-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.flyer-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.flyer-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.flyer-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.flyer-lightbox-close:hover {
  color: var(--gold);
}


/* ==========================================================================
   Focus Visible (ADA)
   ========================================================================== */

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}


/* ==========================================================================
   Generic Page Content (Privacy Policy, Terms of Use, etc.)
   ========================================================================== */

.page-content-wrap {
  padding: 80px 24px;
  background: var(--cream);
}
.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--navy);
}
.page-content-inner h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.page-content-inner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin: 32px 0 12px;
}
.page-content-inner p {
  margin-bottom: 16px;
}
.page-content-inner ul,
.page-content-inner ol {
  margin: 0 0 16px 24px;
  padding: 0;
}
.page-content-inner li {
  margin-bottom: 8px;
}
.page-content-inner a {
  color: var(--blue);
  text-decoration: underline;
}
.page-content-inner a:hover {
  color: var(--forest);
}
.page-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.page-content-inner th,
.page-content-inner td {
  border: 1px solid #d1cdc7;
  padding: 10px 14px;
  text-align: left;
}
.page-content-inner th {
  background: var(--stone);
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
}
.page-content-inner strong {
  font-weight: 600;
}


/* ==========================================================================
   RESPONSIVE — Mockup breakpoints (homepage)
   ========================================================================== */

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }

  /* Interior page overrides */
  .navbar .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .about-inner { grid-template-columns: 1fr; }
  .events-enhanced-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .event-layout { grid-template-columns: 1fr; }
  .event-quick-facts { position: static; }
  .pro-staff-inner { grid-template-columns: 1fr; text-align: center; }
  .pro-staff-content .section-label,
  .pro-staff-content h2 { text-align: center; }
  .pro-staff-image { max-width: 300px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .involved-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-other-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .featured-grid { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; text-align: center; }
  .more-events-grid { grid-template-columns: repeat(2, 1fr); }
  .past-events-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors-impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .about-inner { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .event-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 40px; }
  .footer-main { grid-template-columns: 1fr; }
  .events-header, .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .donate-buttons { flex-direction: column; align-items: center; }

  /* Interior page responsive */
  .page-hero-title,
  .event-hero-content h1 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .events-enhanced-grid { grid-template-columns: 1fr; }
  .past-events-grid { grid-template-columns: 1fr; }
  .past-event-card { flex-direction: column; }
  .past-event-image { width: 100%; height: 160px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-impact-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .involved-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .more-events-grid { grid-template-columns: 1fr; }
  .post-nav-inner { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }

  /* Scripture band */
  .scripture-band { height: auto; padding: 60px 20px; }
  .scripture-content p { font-size: 24px; }

  /* Timeline: single column */
  .timeline::before { left: 8px; }
  .timeline-item { margin-bottom: 40px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-dot {
    left: 0 !important;
    transform: translateX(0) !important;
  }

  /* Padding reductions */
  .mission-strip { padding: 40px 20px; }
  .contact-section { padding: 60px 20px; }
  .contact-map { padding: 40px 20px; }
  .page-hero { padding-bottom: 40px; }
  .page-hero-content { padding: 0 20px; }
  .event-hero-content { padding: 0 20px 40px; }
  .event-layout { padding: 32px 20px; }
  .event-gallery { padding: 0 20px 40px; }
  .pro-staff-spotlight { padding: 60px 20px; }
  .more-events { padding: 40px 20px; }
  .event-bottom-cta { padding: 60px 20px; }
  .post-article { padding: 40px 20px; }
  .post-navigation { padding: 0 20px 40px; }
  .related-posts { padding: 40px 20px; }
  .blog-featured { padding: 20px; }
  .blog-newsletter { padding: 60px 20px; }
  .donate-main,
  .donate-other,
  .donate-tax-section { padding: 60px 20px; }
  .donate-impact-grid { padding: 0 20px; }
  .sponsors-why { padding: 60px 20px; }
  .sponsors-impact-grid { padding: 20px; grid-template-columns: 1fr; }
  .events-enhanced-grid { padding: 0 20px 40px; }
  .past-events-grid { padding: 0 20px; }
  .footer-bottom { padding: 24px 20px; }
  .footer-main { padding: 0 20px 40px; }
  .application-form-section { padding: 40px 20px; }
  .navbar .nav-main { padding: 12px 20px; }
  .about-mission,
  .about-timeline,
  .about-team,
  .about-values,
  .about-partners,
  .contact-involved,
  .about-cta,
  .events-cta,
  .sponsors-cta,
  .sponsors-partners,
  .sponsors-tiers,
  .sponsors-current { padding: 60px 20px; }
  .sponsors-hero,
  .donate-hero,
  .blog-hero,
  .application-hero { padding: 0 20px 40px; }

  .event-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .event-timeline::before { left: 80px; }
  .featured-content h2 a { font-size: 24px; }

  /* Page content */
  .page-content-wrap { padding: 48px 16px; }
  .page-content-inner h2 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .section-title { font-size: 24px; }
  .page-hero-title { font-size: 28px; }
  .event-hero-content h1 { font-size: 26px; }
  .navbar .nav-main { padding: 12px 16px; }
  .navbar .nav-logo img { width: 40px; height: 40px; }
  .navbar .nav-logo-text { font-size: 13px; }
  .donate-amounts,
  .donate-buttons { flex-direction: column; max-width: 200px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .reassurance-badges { gap: 16px; }
  .hero-scroll { display: none; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-item.tall { grid-row: span 1; }
  .photo-item.wide { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .mission-badges { flex-direction: column; align-items: center; }
  .tier-price { font-size: 36px; }
  .tier-price span { font-size: 16px; }
  .section-subtitle { font-size: 16px; }
  .top-banner { font-size: 11px; padding: 6px 12px; }
  .filter-bar,
  .blog-filter-bar { gap: 8px; }
  .filter-btn,
  .filter-pill { font-size: 12px; padding: 8px 16px; }
  .contact-form-wrap h2 { font-size: 24px; }
  .donate-impact-amount { font-size: 28px; }
  .donate-tax-box { padding: 24px; }
  .event-gallery-grid { grid-template-columns: 1fr; }
  .share-links { flex-direction: column; }
  .about-cta-btns,
  .events-cta-btns,
  .sponsors-cta-btns { flex-direction: column; align-items: center; }
  .event-timeline-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .event-timeline::before { display: none; }
  .event-hero-meta { gap: 12px; }
  .sponsor-logos { gap: 16px; }
  .sponsor-logo-item { width: 120px; height: 80px; padding: 12px; }
  .pro-staff-content h2 { font-size: 24px; }
  .event-section h2 { font-size: 22px; }
  .post-hero-content h1 { font-size: 28px; }
  .post-body { font-size: 16px; }
  .featured-content h2 a { font-size: 22px; }
  .scripture-content p { font-size: 20px; }
}


/* ==========================================================================
   PREFERS REDUCED MOTION (ADA)
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide img { animation: none; }
  .scripture-bg { background-attachment: scroll; }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
