/*
Theme Name: REO Ministries
Theme URI: https://reoministries.org
Author: REO Ministries Team
Author URI: https://reoministries.org
Description: Premium, editorial, modern WordPress theme for Rural Evangelical Outreach (R.E.O. Ministries Inc. RC 15903). Reaching neglected rural communities across Africa with the Gospel.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reo-ministries
*/

/* ==========================================================================
   1. BRAND COLOR SYSTEM & DESIGN TOKENS
   ========================================================================== */
:root {
  /* Official Brand Palette */
  --reo-deep-forest: #123B2A;      /* Primary brand colour (25%) */
  --reo-darkgreen: #123B2A;
  --reo-mission-green: #1E6045;    /* Secondary green (10%) */
  --reo-green: #1E6045;
  --reo-kingdom-gold: #C89B3C;     /* Premium accent (5% sparingly) */
  --reo-gold: #C89B3C;
  --reo-lightgold: #DFBA6B;
  --reo-warm-ivory: #F7F4EA;       /* Primary light background (60%) */
  --reo-bg: #F7F4EA;
  --reo-stone: #DCD8CC;            /* Borders, dividers, subtle surfaces */
  --reo-charcoal: #17201C;         /* Primary text colour on light bg */
  --reo-darkgreen-black: #081C14;  /* Deep sections, footer */
  --reo-black: #081C14;
  --reo-white: #FFFFFF;            /* Contrast & dark backgrounds */
  
  --reo-muted: #526058;
  --reo-card-border: #DCD8CC;
  
  /* Typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(18, 59, 42, 0.06);
  --shadow-md: 0 12px 36px rgba(18, 59, 42, 0.10);
  --shadow-lg: 0 24px 64px rgba(18, 59, 42, 0.16);
  --shadow-cinematic: 0 25px 60px rgba(8, 28, 20, 0.35);
  
  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Container & Spacing */
  --container-max-width: 1320px;
  --section-padding-y: clamp(70px, 7vw, 110px);
  --section-padding-x: clamp(20px, 4vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--reo-warm-ivory);
  color: var(--reo-charcoal);
  line-height: 1.75;
  overflow-x: clip;
}

html, body, #page, .site, #primary, #content, .site-content, .entry-content {
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }
button { font-family: inherit; cursor: pointer; border: none; background: none; transition: var(--transition-smooth); }

/* Progress bar & back to top */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--reo-deep-forest), var(--reo-kingdom-gold));
  width: 0%;
  z-index: 3000;
  transition: width 0.1s linear;
}

.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--reo-deep-forest);
  color: var(--reo-kingdom-gold);
  border: 1.5px solid rgba(200, 155, 60, 0.4);
  box-shadow: 0 6px 20px rgba(8, 28, 20, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  z-index: 999;
}

.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--reo-mission-green);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.05);
}

/* Reveals & Animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-35px); transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(35px); transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* Layout Containers */
.elementor-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

/* Badges, Typography & Lines */
.badge-pill-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: rgba(200, 155, 60, 0.12);
  color: var(--reo-kingdom-gold);
  border: 1px solid rgba(200, 155, 60, 0.35);
  margin-bottom: 14px;
}

.h2-section {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--reo-deep-forest);
  line-height: 1.18;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.gold-accent-line {
  width: 52px;
  height: 3px;
  background: var(--reo-kingdom-gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.section-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.2rem auto;
}

.scripture-banner {
  background: rgba(18, 59, 42, 0.05);
  border-left: 3.5px solid var(--reo-kingdom-gold);
  padding: 14px 20px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--reo-deep-forest);
  margin-top: 20px;
}

/* Buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--reo-deep-forest);
  box-shadow: 0 6px 20px rgba(18, 59, 42, 0.25);
  transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
  background: var(--reo-mission-green);
  border-color: var(--reo-mission-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(18, 59, 42, 0.35);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--reo-deep-forest);
  border: 1.5px solid var(--reo-stone);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  border-color: var(--reo-kingdom-gold);
  color: var(--reo-kingdom-gold);
  background: var(--reo-warm-ivory);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(18, 59, 42, 0.08);
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background: rgba(247, 244, 234, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18, 59, 42, 0.08);
}

#site-header.scrolled {
  background: rgba(10, 35, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 48px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--reo-deep-forest);
  letter-spacing: 0.05em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--reo-kingdom-gold);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
}

.desktop-nav a {
  color: var(--reo-charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 0;
  white-space: nowrap;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--reo-kingdom-gold);
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--reo-deep-forest);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-pill-header {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--reo-deep-forest);
  box-shadow: 0 4px 14px rgba(18, 59, 42, 0.2);
}

.btn-pill-header:hover {
  background: var(--reo-mission-green);
  border-color: var(--reo-mission-green);
  transform: translateY(-2px);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(18, 59, 42, 0.08);
}

.hamburger-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--reo-deep-forest);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .hamburger-btn { display: flex; }
}

/* Mobile Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 20, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  z-index: 2500;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open { right: 0; }

.drawer-header-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(200, 155, 60, 0.25);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.mobile-nav-links a:hover {
  color: var(--reo-kingdom-gold);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

/* ==========================================================================
   3. SECTION 01: BESPOKE HERO (EXACTLY 2-SLIDE AUTOMATIC FEATURE SLIDER)
   ========================================================================== */
.bespoke-hero-section {
  padding-top: 120px;
  padding-bottom: 50px;
  background: radial-gradient(circle at 50% 15%, #FAF7F0 0%, var(--reo-warm-ivory) 80%);
  position: relative;
  overflow: hidden;
}

.bespoke-hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-editorial-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .hero-editorial-header { grid-template-columns: 1fr; gap: 20px; }
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--reo-stone);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-deep-forest);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.hero-cinematic-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--reo-deep-forest);
  letter-spacing: 0.02em;
}

.hero-cinematic-title .italic-gold {
  font-style: italic;
  color: var(--reo-kingdom-gold);
}

.hero-narrative-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-narrative-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--reo-muted);
  border-left: 3.5px solid var(--reo-kingdom-gold);
  padding-left: 18px;
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Cinematic Hero Stage (2 Slides) */
.hero-cinematic-stage {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-cinematic);
  border: 4px solid #FFFFFF;
  background: var(--reo-deep-forest);
}

.hero-slider-container {
  position: relative;
  width: 100%;
  min-height: 540px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
}

/* Slide 1: Frontier Calling */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 20, 0.35) 0%, rgba(8, 28, 20, 0.75) 50%, rgba(8, 28, 20, 0.95) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  padding: clamp(32px, 5vw, 56px);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 28, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--reo-kingdom-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(200, 155, 60, 0.35);
  margin-bottom: 16px;
  align-self: flex-start;
}

.hero-slide-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.18;
  max-width: 860px;
  margin-bottom: 12px;
}

.hero-slide-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin-bottom: 28px;
}

/* Mission Statistics HUD */
.hero-stats-hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(8, 28, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 18px;
  padding: 16px 24px;
  max-width: 920px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-stats-hud { grid-template-columns: repeat(2, 1fr); }
}

.hud-stat-box {
  display: flex;
  flex-direction: column;
}

.hud-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  line-height: 1.1;
}

.hud-stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

/* Slide 2: Authentic Testimony Feature */
.hero-testimony-split-stage {
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--reo-darkgreen-black) 0%, var(--reo-deep-forest) 100%);
  min-height: 540px;
  color: #FFFFFF;
}

@media (max-width: 960px) {
  .hero-testimony-split-stage { grid-template-columns: 1fr; }
}

.hero-testimony-video-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(200, 155, 60, 0.4);
  background: #000000;
  box-shadow: var(--shadow-lg);
  height: 280px;
}

.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(8, 28, 20, 0.88);
  backdrop-filter: blur(8px);
  color: var(--reo-kingdom-gold);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid rgba(200, 155, 60, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.hero-video-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.5;
  border-left: 3.5px solid var(--reo-kingdom-gold);
  padding-left: 14px;
}

.hero-testimony-support-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-supporting-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 155, 60, 0.3);
  padding-bottom: 8px;
}

.hero-supporting-header-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--reo-kingdom-gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-supporting-header-note {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.hero-support-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 155, 60, 0.25);
  border-radius: 16px;
  padding: 12px;
  align-items: center;
  transition: var(--transition-smooth);
}

.hero-support-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--reo-kingdom-gold);
  transform: translateY(-2px);
}

.hero-support-card-img {
  width: 110px;
  height: 85px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.hero-support-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-support-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-support-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
}

.hero-support-card-title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: #FFFFFF;
}

/* Hero Bottom Navigation Bar */
.hero-bottom-bar {
  background: rgba(8, 28, 20, 0.95);
  border-top: 1px solid rgba(200, 155, 60, 0.25);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav-tabs {
  display: flex;
  gap: 12px;
}

.hero-nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-nav-tab:hover {
  color: #FFFFFF;
  border-color: var(--reo-kingdom-gold);
}

.hero-nav-tab.active {
  background: var(--reo-kingdom-gold);
  color: var(--reo-darkgreen-black);
  border-color: var(--reo-kingdom-gold);
  font-weight: 800;
}

.tab-index {
  font-family: var(--font-display);
  font-weight: 800;
}

/* ==========================================================================
   4. SECTION 02: VISION & SCRIPTURAL CHARTER
   ========================================================================== */
.scriptural-vision-chamber {
  background: var(--reo-warm-ivory);
  padding: var(--section-padding-y) 0;
}

.vision-card-master {
  background: #FFFFFF;
  border-radius: 28px;
  border: 1.5px solid var(--reo-stone);
  box-shadow: var(--shadow-md);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

.vision-gold-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
  background: rgba(200, 155, 60, 0.12);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.vision-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--reo-deep-forest);
  margin-bottom: 20px;
}

.vision-core-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.7;
  color: var(--reo-deep-forest);
  font-style: italic;
  max-width: 880px;
  margin: 0 auto;
}

.vision-expansion-para {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--reo-charcoal);
  max-width: 820px;
  margin: 0 auto 28px auto;
}

.vision-pillars-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--reo-warm-ivory);
  color: var(--reo-deep-forest);
  border: 1px solid var(--reo-stone);
}

/* ==========================================================================
   5. SECTION 03: OUR HISTORY (HIGH-CONTRAST 5-EPOCH TIMELINE ODYSSEY)
   ========================================================================== */
.cine-history-section {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  padding: var(--section-padding-y) 0;
  position: relative;
}

.cine-history-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .cine-history-header { grid-template-columns: 1fr; }
}

.cine-history-lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 10px;
}

.cine-scripture-card {
  background: rgba(8, 28, 20, 0.85);
  border: 1px solid rgba(200, 155, 60, 0.4);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.scripture-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--reo-kingdom-gold);
  background: rgba(200, 155, 60, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.scripture-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

.cine-odyssey-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .cine-odyssey-grid { grid-template-columns: 1fr; }
}

.cine-timeline-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.cine-track-line {
  display: none;
}

.cine-epoch-nodes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cine-epoch-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cine-epoch-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--reo-kingdom-gold);
  transform: translateX(4px);
}

.cine-epoch-btn.active {
  background: rgba(200, 155, 60, 0.18);
  border-color: var(--reo-kingdom-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.node-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--reo-kingdom-gold);
  margin-bottom: 4px;
}

.node-year {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  line-height: 1.2;
}

.node-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.cine-milestones-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cine-milestone-card {
  background: #FFFFFF;
  color: var(--reo-charcoal);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: none;
}

.cine-milestone-card.active {
  display: block;
  border-color: var(--reo-kingdom-gold);
  animation: fadeIn 0.4s ease;
}

.cine-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--reo-stone);
  padding-bottom: 10px;
}

.cine-card-epoch {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--reo-deep-forest);
  letter-spacing: 0.06em;
}

.cine-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cine-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--reo-deep-forest);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cine-card-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--reo-charcoal);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cine-quote-highlight {
  background: var(--reo-warm-ivory);
  border-left: 4px solid var(--reo-kingdom-gold);
  padding: 14px 20px;
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--reo-deep-forest);
  margin: 10px 0;
}

.cine-card-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--reo-stone);
}

.cine-footer-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--reo-mission-green);
  background: rgba(30, 96, 69, 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   6. SECTION 04: WHAT WE DO (STRATEGIC FRAMEWORK FOR RURAL TRANSFORMATION)
   ========================================================================== */
.wwd-showcase-section,
.wwd-prominent-section {
  background-color: #FFFFFF;
  padding: clamp(90px, 9vw, 130px) 0 var(--section-padding-y) 0;
  position: relative;
}

.wwd-header-flex,
.wwd-editorial-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

@media (max-width: 860px) {
  .wwd-header-flex,
  .wwd-editorial-header { grid-template-columns: 1fr; gap: 16px; }
}

.wwd-lede-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--reo-muted);
}

.wwd-nav-scroller-wrapper {
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 24px;
  scrollbar-width: thin;
}

.wwd-nav-track {
  display: flex;
  gap: 8px;
  min-width: max-content;
}

.wwd-nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--reo-warm-ivory);
  color: var(--reo-charcoal);
  border: 1px solid var(--reo-stone);
  transition: var(--transition-smooth);
}

.wwd-nav-pill.active,
.wwd-nav-pill:hover {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-color: var(--reo-deep-forest);
}

.wwd-pill-num {
  color: var(--reo-kingdom-gold);
  font-family: var(--font-display);
  font-weight: 800;
}

.wwd-slider-stage {
  position: relative;
  background: var(--reo-warm-ivory);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--reo-stone);
  padding: clamp(24px, 4vw, 44px);
}

.wwd-slide {
  display: none;
}

.wwd-slide.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wwd-split-grid-70-30 {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

@media (max-width: 900px) {
  .wwd-split-grid-70-30 { grid-template-columns: 1fr; }
}

.wwd-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.wwd-tag-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--reo-kingdom-gold);
  text-transform: uppercase;
}

.wwd-counter-badge {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--reo-deep-forest);
}

.wwd-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--reo-deep-forest);
  margin-bottom: 8px;
  line-height: 1.25;
}

.wwd-slide-sub {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--reo-mission-green);
  margin-bottom: 16px;
}

.wwd-brief-body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--reo-charcoal);
  margin-bottom: 24px;
}

.wwd-photo-col-70 {
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: var(--shadow-md);
  height: 380px;
}

.wwd-photo-col-70 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wwd-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--reo-stone);
}

.wwd-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wwd-cur-num, .wwd-total-num {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--reo-deep-forest);
}

.wwd-progress-bar-bg {
  width: 160px;
  height: 4px;
  background: rgba(18, 59, 42, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.wwd-progress-bar-fill {
  height: 100%;
  background: var(--reo-kingdom-gold);
  transition: width 0.3s ease;
}

.wwd-btn-group {
  display: flex;
  gap: 10px;
}

.wwd-ctrl-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.wwd-ctrl-btn:hover {
  background: var(--reo-kingdom-gold);
  color: var(--reo-darkgreen-black);
}

/* ==========================================================================
   LIVE PULSING INDICATOR (Global Status & Accent System)
   ========================================================================== */
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--reo-kingdom-gold);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}

.live-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--reo-kingdom-gold);
  animation: liveDotPulse 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.live-dot.live-dot-green {
  background-color: var(--reo-mission-green);
}
.live-dot.live-dot-green::after {
  border-color: var(--reo-mission-green);
}

@keyframes liveDotPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot::after {
    animation: none;
    opacity: 0.35;
  }
}

/* ==========================================================================
   7. SECTION 05: VALUES (11 CORE CONVICTIONS) — EDITORIAL MONOGRAM SYSTEM
   ========================================================================== */
.modern-values-section {
  background-color: var(--reo-warm-ivory);
  padding: var(--section-padding-y) 0;
}

.values-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.value-editorial-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--reo-stone);
  border-radius: 22px;
  padding: 32px 28px 28px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  z-index: 1;
}

.value-editorial-card:hover {
  transform: translateY(-6px);
  border-color: var(--reo-kingdom-gold);
  box-shadow: var(--shadow-md);
}

/* Large Typographic Initial Monogram Watermark */
.value-watermark-initial {
  position: absolute;
  top: -12px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(18, 59, 42, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.4s ease, transform 0.4s ease;
}

.value-editorial-card:hover .value-watermark-initial {
  color: rgba(200, 155, 60, 0.12);
  transform: scale(1.06) rotate(-2deg);
}

.value-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.value-badge-num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  background: rgba(200, 155, 60, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

.value-cat-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-mission-green);
}

.value-card-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.value-card-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--reo-charcoal);
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   8. SECTION 06: LEADERSHIP
   ========================================================================== */
.leadership-section {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  padding: var(--section-padding-y) 0;
}

.founder-spotlight-card {
  background: rgba(8, 28, 20, 0.85);
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .founder-spotlight-card { grid-template-columns: 1fr; }
}

.founder-visual-frame {
  position: relative;
  height: 100%;
  min-height: 340px;
}

.founder-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(8, 28, 20, 0.9);
  color: var(--reo-kingdom-gold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.founder-bio-col {
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.founder-lead-quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--reo-kingdom-gold);
  margin-bottom: 14px;
  border-left: 2.5px solid var(--reo-kingdom-gold);
  padding-left: 14px;
}

.founder-bio-body {
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.founder-traits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-trait-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.3);
  color: var(--reo-kingdom-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
}

.gov-structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gov-col-card {
  background: rgba(8, 28, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  transition: var(--transition-smooth);
}

.gov-col-card:hover {
  background: rgba(8, 28, 20, 0.9);
  border-color: var(--reo-kingdom-gold);
  transform: translateY(-4px);
}

.gov-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gov-card-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   9. SECTION 07: WHERE WE WORK (EDITORIAL GEOGRAPHICAL SHOWCASE)
   ========================================================================== */
.www-showcase-section {
  background-color: #FFFFFF;
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

.www-showcase-header {
  margin-bottom: 40px;
}

/* 3-Column Editorial Geography Showcase Grid */
.www-editorial-geography-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 1080px) {
  .www-editorial-geography-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.www-territory-card {
  position: relative;
  background: var(--reo-warm-ivory);
  border: 1px solid var(--reo-stone);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.www-territory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--reo-kingdom-gold);
}

.www-territory-card.featured-anchor {
  background: radial-gradient(circle at 80% 20%, #FAF7F0 0%, #F1EDE2 100%);
  border: 1.5px solid rgba(200, 155, 60, 0.4);
}

.www-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.www-flag-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--reo-stone);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--reo-charcoal);
  box-shadow: var(--shadow-sm);
}

.www-flag-img {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.www-mandate-badge {
  background: var(--reo-deep-forest);
  color: var(--reo-kingdom-gold);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.www-card-headline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--reo-deep-forest);
  margin-bottom: 8px;
  line-height: 1.2;
}

.www-card-role-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--reo-mission-green);
  margin-bottom: 16px;
}

.www-card-visual-frame {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
  background: #081C14;
}

.www-card-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.www-territory-card:hover .www-card-visual-frame img {
  transform: scale(1.05);
}

.www-map-overlay-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(8, 28, 20, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(200, 155, 60, 0.3);
}

.www-regions-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.www-region-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--reo-charcoal);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(220, 216, 204, 0.6);
}

.www-region-row strong {
  color: var(--reo-deep-forest);
  font-weight: 700;
}

.www-card-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.www-card-action-btn:hover {
  background: var(--reo-kingdom-gold);
  color: var(--reo-darkgreen-black);
  transform: translateY(-2px);
}


/* ==========================================================================
   10. SECTION 08: HOMEPAGE GALLERY — EDITORIAL COLLAGE
   (INSPIRATION: BIBLEPROJECT | ROTATIONS -4deg to +4deg | 24px CORNERS)
   ========================================================================== */
.gallery-preview-section {
  background-color: var(--reo-warm-ivory);
  padding: var(--section-padding-y) 0;
  overflow: hidden;
}

.gallery-collage-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

@media (max-width: 860px) {
  .gallery-collage-header { grid-template-columns: 1fr; gap: 18px; }
}

.gallery-lede-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--reo-muted);
  margin-bottom: 16px;
}

.btn-gallery-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--reo-deep-forest);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--reo-kingdom-gold);
  padding-bottom: 4px;
}

.btn-gallery-viewall:hover {
  color: var(--reo-mission-green);
  gap: 12px;
}

/* Editorial Staggered Collage Wall */
.editorial-collage-wall {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.collage-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

@media (max-width: 1100px) {
  .collage-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 600px) {
  .collage-row { grid-template-columns: 1fr; gap: 20px; }
}

/* Base Collage Card */
.collage-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-lg); /* 24px rounded corners */
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #FFFFFF;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

/* Hover Interaction: Straightens to 0deg, scales 1.04, rises */
.collage-card:hover {
  transform: rotate(0deg) scale(1.04) translateY(-8px) !important;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  border-color: var(--reo-kingdom-gold);
}

.collage-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-card:hover img {
  transform: scale(1.06);
}

/* Multi-Aspect Card Dimensions */
.card-size-wide .collage-img-wrap { height: 260px; }
.card-size-tall .collage-img-wrap { height: 340px; }
.card-size-square .collage-img-wrap { height: 280px; }
.card-size-medium .collage-img-wrap { height: 270px; }
.card-size-panoramic .collage-img-wrap { height: 290px; }

/* Varied Organic Rotations between -4deg and +4deg */
.card-rotate-neg-4 { transform: rotate(-4deg); }
.card-rotate-neg-35 { transform: rotate(-3.5deg); }
.card-rotate-neg-3 { transform: rotate(-3deg); }
.card-rotate-neg-25 { transform: rotate(-2.5deg); }
.card-rotate-neg-2 { transform: rotate(-2deg); }
.card-rotate-neg-18 { transform: rotate(-1.8deg); }

.card-rotate-pos-15 { transform: rotate(1.5deg); }
.card-rotate-pos-18 { transform: rotate(1.8deg); }
.card-rotate-pos-25 { transform: rotate(2.5deg); }
.card-rotate-pos-28 { transform: rotate(2.8deg); }
.card-rotate-pos-32 { transform: rotate(3.2deg); }
.card-rotate-pos-35 { transform: rotate(3.5deg); }

@media (max-width: 768px) {
  /* On mobile: reduce rotation angles */
  .card-rotate-neg-4, .card-rotate-neg-35, .card-rotate-neg-3, .card-rotate-neg-25, .card-rotate-neg-2, .card-rotate-neg-18 {
    transform: rotate(-1deg);
  }
  .card-rotate-pos-15, .card-rotate-pos-18, .card-rotate-pos-25, .card-rotate-pos-28, .card-rotate-pos-32, .card-rotate-pos-35 {
    transform: rotate(1deg);
  }
}

/* Tag derived cleanly from filenames (No descriptions) */
.collage-card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(8, 28, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 155, 60, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   11. SECTION 09: 3-FOLD FRONTIER MANDATE
   ========================================================================== */
.frontier-mandate-chamber {
  background: var(--reo-darkgreen-black);
  color: #FFFFFF;
  padding: var(--section-padding-y) 0;
}

.mandate-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 960px) {
  .mandate-pillars-grid { grid-template-columns: 1fr; }
}

.mandate-col-box {
  background: #FFFFFF;
  color: var(--reo-charcoal);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 36px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.mandate-col-box:hover {
  transform: translateY(-6px);
  border-color: var(--reo-kingdom-gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.mandate-step-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
  background: rgba(200, 155, 60, 0.12);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(200, 155, 60, 0.35);
  margin-bottom: 16px;
}

.mandate-col-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  margin-bottom: 12px;
  line-height: 1.25;
}

.mandate-col-desc {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--reo-muted);
  margin-bottom: 20px;
}

.mandate-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--reo-stone);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
}

.mandate-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mandate-features-list li::before {
  content: '•';
  color: var(--reo-kingdom-gold);
  font-weight: 900;
  font-size: 1.1rem;
}

/* ==========================================================================
   12. SECTION 10: COVENANT PARTNERSHIP & GIVING
   ========================================================================== */
.giving-sanctuary-section {
  background: var(--reo-warm-ivory);
  padding: var(--section-padding-y) 0;
}

.giving-inner-card {
  background: var(--reo-deep-forest);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 60px);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(200, 155, 60, 0.35);
}

.giving-header-area {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px auto;
}

.giving-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin: 12px 0;
}

.giving-hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.giving-breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .giving-breakdown-grid { grid-template-columns: 1fr; }
}

.giving-impact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.giving-subheading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--reo-kingdom-gold);
}

.giving-impact-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.giving-impact-points li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  transition: var(--transition-smooth);
}

.giving-impact-points li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--reo-kingdom-gold);
  transform: translateX(4px);
}

.giving-impact-points li strong {
  color: var(--reo-kingdom-gold);
  font-weight: 800;
}

.giving-action-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.giving-bank-box {
  background: rgba(8, 28, 20, 0.88);
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.bank-box-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.bank-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
}

.bank-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.bank-val {
  color: #FFFFFF;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */
#site-footer {
  background: var(--reo-darkgreen-black);
  color: #FFFFFF;
  padding: clamp(60px, 6vw, 80px) 0 30px 0;
  border-top: 1px solid rgba(200, 155, 60, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.footer-rc-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--reo-kingdom-gold);
  background: rgba(200, 155, 60, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin: 6px 0 10px 0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--reo-kingdom-gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   14. MODAL DIALOGS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.6rem;
  color: var(--reo-muted);
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--reo-deep-forest);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  margin-bottom: 6px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--reo-stone);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--reo-charcoal);
  background: var(--reo-warm-ivory);
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--reo-kingdom-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
}

/* ==========================================================================
   15. GALLERY PAGE SPECIFIC STYLES
   ========================================================================== */
.gallery-page-hero {
  padding-top: 130px;
  padding-bottom: 40px;
  background: radial-gradient(circle at 50% 15%, #FAF7F0 0%, var(--reo-warm-ivory) 75%);
  text-align: center;
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 28px 0;
}

.gallery-filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  background: #FFFFFF;
  color: var(--reo-charcoal);
  border: 1.5px solid var(--reo-stone);
  transition: var(--transition-smooth);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-color: var(--reo-deep-forest);
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.gallery-item-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 3px solid #FFFFFF;
  transition: var(--transition-smooth);
  position: relative;
  cursor: pointer;
}

.gallery-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--reo-kingdom-gold);
}

.gallery-item-img-frame {
  height: 240px;
  overflow: hidden;
}

.gallery-item-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-card:hover .gallery-item-img-frame img {
  transform: scale(1.05);
}

.gallery-item-tag {
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  background: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--reo-stone);
}

/* ==========================================================================
   16. WHERE WE WORK PAGE SPECIFIC STYLES (COMPLETE EDITORIAL SUITE)
   ========================================================================== */
.where-we-work-page {
  background-color: var(--reo-warm-ivory);
}

.www-hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 50% 15%, #FAF7F0 0%, var(--reo-warm-ivory) 80%);
  text-align: center;
  position: relative;
}

.www-hero-badge-wrap {
  margin-bottom: 16px;
}

.www-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--reo-deep-forest);
  line-height: 1.1;
  margin-bottom: 10px;
}

.www-hero-title .italic-gold {
  font-style: italic;
  color: var(--reo-kingdom-gold);
}

.www-hero-subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--reo-mission-green);
  margin-bottom: 30px;
}

/* Strategic Mandate Card */
.www-mandate-card {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  border: 1.5px solid var(--reo-stone);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

@media (max-width: 768px) {
  .www-mandate-card { grid-template-columns: 1fr; text-align: center; }
}

.www-mandate-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.www-mandate-stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.www-mandate-stat-caption {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.www-mandate-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.www-mandate-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
}

.www-mandate-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--reo-charcoal);
}

.www-mandate-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--reo-mission-green);
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--reo-stone);
}

/* Continental Nexus Hero Visual */
.www-continental-nexus {
  max-width: 1080px;
  margin: 36px auto 0 auto;
  background: linear-gradient(135deg, #091D13 0%, #132A1C 50%, #08160E 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(212, 175, 55, 0.25);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.www-continental-nexus::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.www-nexus-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px auto;
  position: relative;
  z-index: 1;
}

.www-nexus-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 12px 0 10px 0;
}

.www-nexus-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.www-nexus-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .www-nexus-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.www-nexus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.www-nexus-card:hover {
  transform: translateY(-4px);
  border-color: var(--reo-kingdom-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.www-nexus-card-media {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.www-nexus-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.www-nexus-card:hover .www-nexus-card-media img {
  transform: scale(1.06);
}

.www-nexus-card-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
}

.www-nexus-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.www-nexus-region-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--reo-kingdom-gold);
  margin: 0;
}

.www-nexus-countries {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}

.www-nexus-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin-top: 4px;
}

.www-nexus-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 6px;
}

@media (max-width: 992px) {
  .www-nexus-connector {
    flex-direction: row;
    padding: 6px 0;
  }
}

.www-nexus-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), var(--reo-kingdom-gold), rgba(212, 175, 55, 0.2));
  position: relative;
}

@media (max-width: 992px) {
  .www-nexus-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), var(--reo-kingdom-gold), rgba(212, 175, 55, 0.2));
  }
}

.www-nexus-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--reo-kingdom-gold);
  box-shadow: 0 0 10px var(--reo-kingdom-gold);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 16px var(--reo-kingdom-gold); }
}

.www-nexus-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.www-nexus-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
}

.www-country-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Territories Section */
.www-territories-section {
  padding: var(--section-padding-y) 0;
  background: #FFFFFF;
}

.www-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px auto;
}

/* Navigation Tabs */
.www-country-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 44px 0;
}

.www-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--reo-warm-ivory);
  color: var(--reo-charcoal);
  border: 1.5px solid var(--reo-stone);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.www-tab-btn:hover {
  border-color: var(--reo-kingdom-gold);
  transform: translateY(-2px);
}

.www-tab-btn.active {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-color: var(--reo-deep-forest);
  box-shadow: var(--shadow-md);
}

.www-country-pane {
  display: none;
}

.www-country-pane.active {
  display: block;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Country Header Banner */
.www-country-header {
  background: var(--reo-warm-ivory);
  border: 1.5px solid var(--reo-stone);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .www-country-header { grid-template-columns: 1fr; }
}

.www-country-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
  background: rgba(200, 155, 60, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.www-country-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--reo-deep-forest);
  margin-bottom: 12px;
  line-height: 1.2;
}

.www-country-intro {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--reo-charcoal);
}

.www-country-media {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-md);
  height: 240px;
  background: #081C14;
}

.www-country-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* Regions Grid */
.www-regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.www-region-box {
  background: var(--reo-warm-ivory);
  border: 1.5px solid var(--reo-stone);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.www-region-box:hover {
  transform: translateY(-6px);
  border-color: var(--reo-kingdom-gold);
  box-shadow: var(--shadow-lg);
}

.www-region-top {
  padding: 24px 24px 16px 24px;
}

.www-region-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
  margin-bottom: 6px;
}

.www-region-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  line-height: 1.3;
}

.www-region-img-frame {
  height: 200px;
  overflow: hidden;
  margin: 0 20px;
  border-radius: 16px;
  border: 2px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.www-region-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.www-region-box:hover .www-region-img-frame img {
  transform: scale(1.06);
}

.www-region-activities {
  padding: 20px 24px 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.www-activities-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--reo-mission-green);
  margin-bottom: 12px;
}

.www-activities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.www-activities-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--reo-charcoal);
}

/* Photo Evidence Grid */
.www-gallery-peek {
  background: var(--reo-warm-ivory);
  padding: var(--section-padding-y) 0;
}

.www-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .www-evidence-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .www-evidence-grid { grid-template-columns: 1fr; }
}

.www-evidence-card {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.www-evidence-card:hover {
  transform: translateY(-5px);
  border-color: var(--reo-kingdom-gold);
  box-shadow: var(--shadow-lg);
}

.www-evidence-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.www-evidence-card:hover img {
  transform: scale(1.08);
}

.www-evidence-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(8, 28, 20, 0.92) 0%, rgba(8, 28, 20, 0) 100%);
  padding: 30px 16px 14px 16px;
  color: #FFFFFF;
}

.evidence-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
  margin-bottom: 2px;
}

.evidence-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Call To Action Strip */
.www-cta-strip {
  background: var(--reo-darkgreen-black);
  padding: clamp(60px, 6vw, 90px) 0;
  color: #FFFFFF;
  text-align: center;
}

.www-cta-inner {
  max-width: 840px;
  margin: 0 auto;
}

.www-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.2;
}

.www-cta-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

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

/* ==========================================================================
   17. WORK WITH US PAGE & HOMEPAGE PREVIEW (EDITORIAL SYSTEM)
   ========================================================================== */
.work-with-us-page {
  background-color: var(--reo-warm-ivory);
}

.wwu-hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 50% 15%, #FAF7F0 0%, var(--reo-warm-ivory) 80%);
  text-align: center;
  position: relative;
}

.wwu-hero-badge-wrap {
  margin-bottom: 16px;
}

.wwu-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--reo-deep-forest);
  line-height: 1.1;
  margin-bottom: 10px;
}

.wwu-hero-title .italic-gold {
  font-style: italic;
  color: var(--reo-kingdom-gold);
}

.wwu-hero-subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--reo-mission-green);
  margin-bottom: 30px;
}

.wwu-mandate-card {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  border: 1.5px solid var(--reo-stone);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

@media (max-width: 768px) {
  .wwu-mandate-card { grid-template-columns: 1fr; text-align: center; }
}

.wwu-mandate-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.wwu-mandate-stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.wwu-mandate-stat-caption {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.wwu-mandate-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wwu-mandate-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
}

.wwu-mandate-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--reo-charcoal);
}

.wwu-mandate-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--reo-mission-green);
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--reo-stone);
}

/* Why Rural Section */
.wwu-why-rural-section {
  padding: var(--section-padding-y) 0;
  background: #FFFFFF;
}

.wwu-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

@media (max-width: 960px) {
  .wwu-reasons-grid { grid-template-columns: 1fr; }
}

.wwu-reason-card {
  background: var(--reo-warm-ivory);
  border: 1.5px solid var(--reo-stone);
  border-radius: 22px;
  padding: clamp(24px, 3.5vw, 32px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.wwu-reason-card:hover {
  transform: translateY(-5px);
  border-color: var(--reo-kingdom-gold);
  box-shadow: var(--shadow-md);
}

.wwu-reason-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.wwu-reason-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  margin-bottom: 12px;
  line-height: 1.3;
}

.wwu-reason-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--reo-muted);
}

/* Scriptural Container */
.wwu-scripture-container {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-radius: 26px;
  padding: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .wwu-scripture-container { grid-template-columns: 1fr; }
}

.wwu-scripture-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwu-scripture-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--reo-kingdom-gold);
  text-transform: uppercase;
}

.wwu-scripture-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.wwu-scripture-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwu-scripture-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.wwu-scripture-list li strong {
  display: block;
  font-family: var(--font-display);
  color: var(--reo-kingdom-gold);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.wwu-scripture-list li p {
  font-style: italic;
}

/* Why REO 8 Pillars */
.wwu-why-reo-section {
  background: var(--reo-darkgreen-black);
  padding: var(--section-padding-y) 0;
  color: #FFFFFF;
}

.wwu-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.wwu-pillar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.25);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.wwu-pillar-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--reo-kingdom-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.wwu-pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.wwu-pillar-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
}

.wwu-pillar-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.wwu-pillar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}

.wwu-pillar-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* 14 Ways to Serve */
.wwu-ways-section {
  padding: var(--section-padding-y) 0;
  background: #FFFFFF;
}

.wwu-ways-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
}

.wwu-way-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--reo-warm-ivory);
  border: 1.5px solid var(--reo-stone);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.wwu-way-badge:hover {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-color: var(--reo-deep-forest);
  transform: translateY(-2px);
}

/* Field Vacancies Grid */
.wwu-vacancies-section {
  background: var(--reo-warm-ivory);
  padding: var(--section-padding-y) 0;
}

.wwu-vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.wwu-vacancy-card {
  background: #FFFFFF;
  border: 1.5px solid var(--reo-stone);
  border-radius: 24px;
  padding: clamp(24px, 3.5vw, 32px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.wwu-vacancy-card:hover {
  transform: translateY(-6px);
  border-color: var(--reo-kingdom-gold);
  box-shadow: var(--shadow-lg);
}

.wwu-vacancy-top {
  margin-bottom: 14px;
}

.wwu-vacancy-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
  margin-bottom: 6px;
}

.wwu-vacancy-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  line-height: 1.25;
}

.wwu-vacancy-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--reo-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.wwu-vacancy-body strong {
  color: var(--reo-deep-forest);
}

.wwu-vacancy-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--reo-stone);
}

/* Call to Action Strip */
.wwu-cta-strip {
  background: var(--reo-darkgreen-black);
  padding: clamp(60px, 6vw, 90px) 0;
  color: #FFFFFF;
  text-align: center;
}

.wwu-cta-inner {
  max-width: 860px;
  margin: 0 auto;
}

.wwu-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 12px 0 16px 0;
  line-height: 1.2;
}

.wwu-cta-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

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

/* Homepage Work With Us Preview Section */
.homepage-wwu-preview-section {
  background: var(--reo-warm-ivory);
  padding: var(--section-padding-y) 0;
}

.wwu-preview-card {
  background: var(--reo-deep-forest);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 60px);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 960px) {
  .wwu-preview-card { grid-template-columns: 1fr; }
}

.wwu-preview-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 12px 0;
  line-height: 1.15;
}

.wwu-preview-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.wwu-preview-stats-bar {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.wwu-stat-unit {
  display: flex;
  flex-direction: column;
}

.wwu-stat-unit-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  line-height: 1;
}

.wwu-stat-unit-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.wwu-preview-roles-box {
  background: rgba(8, 28, 20, 0.85);
  border: 1.5px solid rgba(200, 155, 60, 0.3);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wwu-preview-roles-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.wwu-preview-roles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.wwu-preview-roles-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   18. TESTIMONIES PAGE SYSTEM
   ========================================================================== */
.testimonies-page {
  background-color: var(--reo-warm-ivory);
}

.testi-hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 50% 15%, #FAF7F0 0%, var(--reo-warm-ivory) 80%);
  text-align: center;
  position: relative;
}

.testi-hero-badge-wrap {
  margin-bottom: 16px;
}

.testi-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--reo-deep-forest);
  line-height: 1.1;
  margin-bottom: 10px;
}

.testi-hero-title .italic-gold {
  font-style: italic;
  color: var(--reo-kingdom-gold);
}

.testi-hero-subtitle {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--reo-mission-green);
  margin-bottom: 30px;
}

.testi-mandate-card {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  border: 1.5px solid var(--reo-stone);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

@media (max-width: 768px) {
  .testi-mandate-card { grid-template-columns: 1fr; text-align: center; }
}

.testi-mandate-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testi-mandate-stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.testi-mandate-stat-caption {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.testi-mandate-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testi-mandate-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
}

.testi-mandate-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--reo-charcoal);
}

.testi-mandate-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--reo-mission-green);
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--reo-stone);
}

/* Spotlight Video Chamber */
.testi-spotlight-section {
  background: var(--reo-darkgreen-black);
  padding: var(--section-padding-y) 0;
  color: #FFFFFF;
}

.testi-video-chamber {
  max-width: 980px;
  margin: 0 auto;
  background: #081C14;
  border: 1.5px solid rgba(200, 155, 60, 0.4);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.testi-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.testi-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-video-info {
  padding: clamp(24px, 4vw, 36px);
}

.testi-video-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--reo-kingdom-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.testi-video-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 12px;
}

.testi-video-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
}

.testi-video-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--reo-kingdom-gold);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  width: 100%;
}

/* Testimony Grid */
.testi-grid-section {
  padding: var(--section-padding-y) 0;
  background: var(--reo-warm-ivory);
}

.testi-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testi-card {
  background: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid var(--reo-stone);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--reo-kingdom-gold);
  box-shadow: var(--shadow-lg);
}

.testi-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #081C14;
}

.testi-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card:hover .testi-card-media img {
  transform: scale(1.05);
}

.testi-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(8, 28, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--reo-kingdom-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(200, 155, 60, 0.4);
}

.testi-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.testi-card-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-mission-green);
}

.testi-card-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
  line-height: 1.35;
}

.testi-card-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--reo-muted);
}

/* Testimony CTA */
.testi-cta-strip {
  background: var(--reo-darkgreen-black);
  padding: clamp(60px, 6vw, 90px) 0;
  color: #FFFFFF;
  text-align: center;
}

.testi-cta-inner {
  max-width: 840px;
  margin: 0 auto;
}

.testi-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 12px 0 16px 0;
  line-height: 1.2;
}

.testi-cta-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

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

/* ==========================================================================
   19. WHAT WE DO PAGE SYSTEM (16 EDITORIAL PILLARS)
   ========================================================================== */
.what-we-do-page {
  background-color: var(--reo-warm-ivory);
}

.wwdp-hero-section {
  padding-top: 140px;
  padding-bottom: 40px;
  background: radial-gradient(circle at 50% 15%, #FAF7F0 0%, var(--reo-warm-ivory) 80%);
  text-align: center;
  position: relative;
}

.wwdp-hero-badge-wrap {
  margin-bottom: 16px;
}

.wwdp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--reo-deep-forest);
  line-height: 1.1;
  margin-bottom: 10px;
}

.wwdp-hero-title .italic-gold {
  font-style: italic;
  color: var(--reo-kingdom-gold);
}

.wwdp-hero-subtitle {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--reo-mission-green);
  margin-bottom: 30px;
}

.wwdp-mandate-card {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  border: 1.5px solid var(--reo-stone);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

@media (max-width: 768px) {
  .wwdp-mandate-card { grid-template-columns: 1fr; text-align: center; }
}

.wwdp-mandate-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.wwdp-mandate-stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--reo-kingdom-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.wwdp-mandate-stat-caption {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.wwdp-mandate-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wwdp-mandate-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--reo-deep-forest);
}

.wwdp-mandate-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--reo-charcoal);
}

.wwdp-mandate-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--reo-mission-green);
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--reo-stone);
}

/* Pillar Quick Navigation Bar */
.wwdp-nav-bar-section {
  position: sticky;
  top: 80px;
  z-index: 90;
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--reo-stone);
  border-bottom: 1px solid var(--reo-stone);
  padding: 12px 0;
  margin-bottom: 40px;
}

.wwdp-nav-scroller {
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 4px 0;
}

.wwdp-nav-track {
  display: flex;
  gap: 8px;
  min-width: max-content;
}

.wwdp-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--reo-stone);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--reo-deep-forest);
  transition: var(--transition-smooth);
}

.wwdp-nav-pill:hover {
  background: var(--reo-deep-forest);
  color: #FFFFFF;
  border-color: var(--reo-deep-forest);
}

.wwdp-nav-pill .pill-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--reo-kingdom-gold);
}

/* Pillars List */
.wwdp-pillars-section {
  padding-bottom: var(--section-padding-y);
}

.wwdp-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wwdp-pillar-card {
  scroll-margin-top: 100px;
  background: #FFFFFF;
  border-radius: 26px;
  border: 1.5px solid var(--reo-stone);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.wwdp-pillar-card:hover {
  border-color: var(--reo-kingdom-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.wwdp-pillar-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: stretch;
}

@media (max-width: 900px) {
  .wwdp-pillar-grid { grid-template-columns: 1fr; }
}

.wwdp-pillar-media {
  position: relative;
  min-height: 280px;
  background: #081C14;
  overflow: hidden;
}

.wwdp-pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwdp-pillar-card:hover .wwdp-pillar-media img {
  transform: scale(1.05);
}

.wwdp-pillar-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(8, 28, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--reo-kingdom-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(200, 155, 60, 0.4);
}

.wwdp-pillar-info {
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wwdp-pillar-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
  margin-bottom: 4px;
}

.wwdp-pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--reo-deep-forest);
  margin-bottom: 12px;
  line-height: 1.25;
}

.wwdp-pillar-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--reo-charcoal);
  margin-bottom: 18px;
}

.wwdp-pillar-features {
  background: var(--reo-warm-ivory);
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid var(--reo-stone);
}

.wwdp-features-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-mission-green);
  margin-bottom: 10px;
}

.wwdp-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wwdp-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--reo-deep-forest);
  font-weight: 600;
}

/* What We Do CTA */
.wwdp-cta-strip {
  background: var(--reo-darkgreen-black);
  padding: clamp(60px, 6vw, 90px) 0;
  color: #FFFFFF;
  text-align: center;
}

.wwdp-cta-inner {
  max-width: 840px;
  margin: 0 auto;
}

.wwdp-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 12px 0 16px 0;
  line-height: 1.2;
}

.wwdp-cta-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

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

/* ==========================================================================
   20. GLOBAL CONTACT SECTION (ABOVE FOOTER ON ALL PAGES)
   ========================================================================== */
.global-contact-section {
  background: var(--reo-warm-ivory);
  padding: clamp(70px, 8vw, 100px) 0;
  position: relative;
  border-top: 1px solid var(--reo-stone);
}

.contact-card-chamber {
  background: var(--reo-deep-forest);
  border-radius: 30px;
  padding: clamp(32px, 5vw, 60px);
  color: #FFFFFF;
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

@media (max-width: 960px) {
  .contact-card-chamber { grid-template-columns: 1fr; }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-top: 4px;
}

.contact-hero-title .italic-gold {
  font-style: italic;
  color: var(--reo-kingdom-gold);
}

.contact-hero-lede {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .contact-details-grid { grid-template-columns: 1fr; }
}

.contact-detail-box {
  background: rgba(8, 28, 20, 0.85);
  border: 1px solid rgba(200, 155, 60, 0.25);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition-smooth);
}

.contact-detail-box:hover {
  border-color: var(--reo-kingdom-gold);
  background: rgba(8, 28, 20, 0.95);
  transform: translateY(-2px);
}

.contact-box-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-kingdom-gold);
}

.contact-box-val {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.contact-form-col {
  background: rgba(8, 28, 20, 0.95);
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.contact-form-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

.contact-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-input-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.contact-input-group input,
.contact-input-group select,
.contact-input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.92rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.contact-input-group input:focus,
.contact-input-group select:focus,
.contact-input-group textarea:focus {
  outline: none;
  border-color: var(--reo-kingdom-gold);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.2);
}

.contact-input-group select option {
  background: #081C14;
  color: #FFFFFF;
}

.contact-input-group textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px 28px;
  background: var(--reo-kingdom-gold);
  color: var(--reo-deep-forest);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
  margin-top: 6px;
  box-shadow: 0 4px 18px rgba(200, 155, 60, 0.35);
}

.contact-submit-btn:hover {
  background: #E5B450;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 155, 60, 0.5);
}

/* ==========================================================================
   SECTION 21: REDESIGNED FORMS & DYNAMIC TRIGGER INTERACTION STATES
   ========================================================================== */
.reo-ajax-form {
  position: relative;
  transition: var(--transition-smooth);
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: 24px;
  max-width: 580px;
  width: 92%;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 30px 90px rgba(8, 28, 20, 0.45);
  border: 1px solid rgba(200, 155, 60, 0.3);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--reo-darkgreen);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: #FAF8F5;
  border: 1.5px solid rgba(56, 48, 32, 0.16);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--reo-darkgreen);
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--reo-kingdom-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.18);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C89B3C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
  padding-right: 38px;
  appearance: none;
  -webkit-appearance: none;
}

.reo-form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  animation: fadeInDown 0.35s ease forwards;
}

/* =========================================================
   REO MINISTRIES
   FINAL HEADER + NAVIGATION OVERRIDE
   ========================================================= */


/* =========================================================
   1. MAIN HEADER
   ========================================================= */

#site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    z-index: 2000;

    background: rgba(10, 35, 24, 0.95);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#site-header.scrolled {
    background: rgba(10, 35, 24, 0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


#site-header .header-inner {
    width: 100%;
    max-width: 1440px;

    min-height: 76px;

    margin: 0 auto;

    padding: 0 clamp(18px, 3.5vw, 48px);

    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================================================
   2. BRAND
   ========================================================= */

#site-header .site-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    flex: 0 0 auto;

    min-width: 0;

    text-decoration: none;
}


#site-header .site-brand img,
#site-header .site-brand .custom-logo,
#site-header .brand-logo-img {
    width: auto;
    height: 44px;

    max-width: 160px;

    object-fit: contain;

    flex: 0 0 auto;
}


#site-header .brand-text-lockup {
    display: flex;
    flex-direction: column;

    justify-content: center;

    min-width: 0;
}


#site-header .brand-name,
#site-header .brand-title {
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.15;

    white-space: nowrap;
}


#site-header .brand-tagline,
#site-header .brand-sub {
    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;

    line-height: 1.2;

    margin-top: 3px;

    white-space: nowrap;
}


/* =========================================================
   3. DESKTOP NAVIGATION
   ========================================================= */

#site-header .desktop-nav {
    display: flex;
    align-items: center;

    flex: 0 1 auto;

    min-width: 0;

    margin-left: auto;
}


#site-header .desktop-nav > ul {
    display: flex;
    align-items: center;

    list-style: none;

    margin: 0;
    padding: 0;

    gap: clamp(8px, 0.9vw, 15px);

    width: auto;
}


#site-header .desktop-nav > ul > li {
    list-style: none;

    margin: 0;
    padding: 0;

    flex: 0 0 auto;
}


#site-header .desktop-nav > ul > li > a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.88);

    font-size: clamp(10px, 0.72vw, 12px);

    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    padding: 9px 3px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


#site-header .desktop-nav > ul > li > a:hover,
#site-header .desktop-nav > ul > li.current-menu-item > a,
#site-header .desktop-nav > ul > li.current_page_item > a {
    color: #ffffff;
}


/* =========================================================
   4. ONLY FIRST 6 MENUS ON LARGE DESKTOP
   ========================================================= */

@media (min-width: 1201px) {

    #site-header .desktop-nav > ul > li:nth-child(n + 7) {
        display: none !important;
    }

}


/* =========================================================
   5. HEADER ACTIONS

   ORDER IS:

   MORE → JOIN OUTREACH

   Since .header-actions comes AFTER .desktop-nav,
   More automatically comes immediately after the
   sixth visible menu.
   ========================================================= */

#site-header .header-actions {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    gap: 10px;

    margin-left: 0;
}


/* =========================================================
   6. MORE BUTTON
   ========================================================= */

#site-header .more-menu-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    height: 40px;

    padding: 0 11px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.06);

    color: #ffffff;

    cursor: pointer;

    flex: 0 0 auto;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


#site-header .more-menu-btn:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.3);

    transform: translateY(-1px);
}


#site-header .more-menu-label {
    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;
}


/* HAMBURGER ICON */

#site-header .more-menu-icon {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 4px;

    width: 18px;
}


#site-header .more-menu-icon span {
    display: block;

    width: 17px;
    height: 2px;

    border-radius: 2px;

    background: #ffffff;
}


/* =========================================================
   7. JOIN OUTREACH
   ========================================================= */

#site-header .btn-pill-header {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 17px;

    border-radius: 999px;

    background: #c89b3c;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    flex: 0 0 auto;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.14);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


#site-header .btn-pill-header:hover {
    background: #d7ab4b;

    transform: translateY(-1px);
}


/* =========================================================
   8. TABLET

   Hide text navigation and use More button.
   ========================================================= */

@media (max-width: 1200px) {

    #site-header .desktop-nav {
        display: none !important;
    }

    #site-header .header-actions {
        margin-left: auto;
    }

    #site-header .more-menu-btn {
        display: flex !important;
    }

}


/* =========================================================
   9. MOBILE HEADER
   ========================================================= */

@media (max-width: 767px) {

    #site-header .header-inner {
        height: 64px;

        min-height: 64px;

        padding-left: 16px;
        padding-right: 16px;

        gap: 9px;
    }


    /*
     * Logo = 50% of original 44px.
     */
    #site-header .site-brand img,
    #site-header .site-brand .custom-logo,
    #site-header .brand-logo-img {

        height: 22px;

        width: auto;

        max-width: 80px;
    }


    /*
     * ORGANIZATION NAME REMAINS VISIBLE.
     */

    #site-header .brand-text-lockup {
        display: flex !important;

        min-width: 0;
    }


    #site-header .brand-name,
    #site-header .brand-title {

        font-size: 10px;

        line-height: 1.1;

        white-space: nowrap;
    }


    /*
     * Hide secondary tagline on mobile.
     */
    #site-header .brand-tagline,
    #site-header .brand-sub {
        display: none;
    }


    #site-header .header-actions {

        margin-left: auto;

        gap: 7px;
    }


    /*
     * On mobile the "More" text disappears,
     * leaving the familiar hamburger icon.
     */

    #site-header .more-menu-btn {

        width: 36px;
        height: 36px;

        padding: 0;

        border-radius: 9px;
    }


    #site-header .more-menu-label {
        display: none;
    }


    #site-header .more-menu-icon {
        width: 18px;
    }


    #site-header .more-menu-icon span {
        width: 17px;
    }


    #site-header .btn-pill-header {

        min-height: 34px;

        padding: 0 11px;

        font-size: 9px;
    }

}


/* =========================================================
   10. MOBILE DRAWER
   ========================================================= */

#mobile-drawer {

    position: fixed;

    top: 0;
    right: -320px;

    width: min(320px, 88vw);

    height: 100dvh;

    background: var(
        --reo-deep-forest,
        #0a2318
    );

    z-index: 2500;

    padding: 22px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    transition: right 0.3s ease;

    box-shadow:
        -12px 0 40px rgba(0, 0, 0, 0.28);
}


#mobile-drawer.open {
    right: 0;
}


/* =========================================================
   11. SCROLLABLE DRAWER CONTENT
   ========================================================= */

#mobile-drawer > div:first-child {

    min-height: 0;

    flex: 1 1 auto;

    overflow-y: auto;

    overflow-x: hidden;

    padding-right: 5px;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(200, 155, 60, 0.65)
        transparent;
}


#mobile-drawer > div:first-child::-webkit-scrollbar {
    width: 4px;
}


#mobile-drawer > div:first-child::-webkit-scrollbar-track {
    background: transparent;
}


#mobile-drawer > div:first-child::-webkit-scrollbar-thumb {

    background:
        rgba(200, 155, 60, 0.65);

    border-radius: 10px;
}


/* =========================================================
   12. DRAWER HEADER
   ========================================================= */

#mobile-drawer .drawer-header-brand {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding-bottom: 16px;

    margin-bottom: 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);

    position: sticky;

    top: 0;

    background:
        var(
            --reo-deep-forest,
            #0a2318
        );

    z-index: 2;
}


#mobile-drawer .drawer-brand-left {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;
}


#mobile-drawer .drawer-logo-img {

    width: auto;

    height: 22px;

    max-width: 80px;

    object-fit: contain;

    flex: 0 0 auto;
}


#mobile-drawer .drawer-brand-text {

    display: flex;

    flex-direction: column;

    min-width: 0;
}


#mobile-drawer .drawer-brand-title {

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.1;

    white-space: nowrap;
}


#mobile-drawer .drawer-brand-sub {

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 8px;

    line-height: 1.2;

    margin-top: 3px;

    white-space: nowrap;
}


/* =========================================================
   13. CLOSE BUTTON
   ========================================================= */

#mobile-drawer .close-drawer-btn {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    border-radius: 9px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    font-size: 25px;

    line-height: 1;

    cursor: pointer;
}


#mobile-drawer .close-drawer-btn:hover {

    background:
        rgba(255, 255, 255, 0.13);
}


/* =========================================================
   14. MOBILE NAVIGATION
   ========================================================= */

#mobile-drawer .mobile-nav-links {

    display: flex;

    flex-direction: column;

    gap: 4px;

    padding-bottom: 14px;
}


#mobile-drawer .mobile-nav-links a {

    display: flex;

    align-items: center;

    min-height: 42px;

    padding: 9px 11px;

    border-radius: 8px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 12px;

    font-weight: 600;

    line-height: 1.3;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


#mobile-drawer .mobile-nav-links a:hover {

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    padding-left: 15px;
}


/* =========================================================
   15. DRAWER ACTION BUTTONS
   ========================================================= */

#mobile-drawer .drawer-actions {

    flex: 0 0 auto !important;

    display: flex;

    flex-direction: column;

    gap: 10px;

    padding-top: 12px;

    margin-top: 8px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    background:
        var(
            --reo-deep-forest,
            #0a2318
        );
}


/* =========================================================
   16. BACKDROP
   ========================================================= */

#drawer-backdrop {

    position: fixed;

    inset: 0;

    z-index: 2400;

    background:
        rgba(0, 0, 0, 0.48);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


#drawer-backdrop.open {

    opacity: 1;

    visibility: visible;
}


/* =========================================================
   17. VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    #site-header .header-inner {

        padding-left: 12px;

        padding-right: 12px;
    }


    #site-header .brand-name,
    #site-header .brand-title {

        font-size: 9px;
    }


    #site-header .btn-pill-header {

        padding: 0 9px;

        font-size: 8px;
    }


    #mobile-drawer {

        padding: 18px;
    }

}.reo-form-feedback.success {
  background: rgba(43, 76, 40, 0.12);
  color: #1A2F1C;
  border: 1.5px solid #2B4C28;
}

.reo-form-feedback.error {
  background: rgba(214, 90, 36, 0.12);
  color: #D65A24;
  border: 1.5px solid #D65A24;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   REO MINISTRIES
   FINAL HEADER + NAVIGATION OVERRIDE
   ========================================================= */


/* =========================================================
   1. MAIN HEADER
   ========================================================= */

#site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    z-index: 2000;

    background: rgba(10, 35, 24, 0.95);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


#site-header .header-inner {
    width: 100%;
    max-width: 1440px;

    min-height: 76px;

    margin: 0 auto;

    padding: 0 clamp(18px, 3.5vw, 48px);

    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================================================
   2. BRAND
   ========================================================= */

#site-header .site-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    flex: 0 0 auto;

    min-width: 0;

    text-decoration: none;
}


#site-header .site-brand img,
#site-header .site-brand .custom-logo,
#site-header .brand-logo-img {
    width: auto;
    height: 44px;

    max-width: 160px;

    object-fit: contain;

    flex: 0 0 auto;
}


#site-header .brand-text-lockup {
    display: flex;
    flex-direction: column;

    justify-content: center;

    min-width: 0;
}


#site-header .brand-name,
#site-header .brand-title {
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.15;

    white-space: nowrap;
}


#site-header .brand-tagline,
#site-header .brand-sub {
    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;

    line-height: 1.2;

    margin-top: 3px;

    white-space: nowrap;
}


/* =========================================================
   3. DESKTOP NAVIGATION
   ========================================================= */

#site-header .desktop-nav {
    display: flex;
    align-items: center;

    flex: 0 1 auto;

    min-width: 0;

    margin-left: auto;
}


#site-header .desktop-nav > ul {
    display: flex;
    align-items: center;

    list-style: none;

    margin: 0;
    padding: 0;

    gap: clamp(8px, 0.9vw, 15px);

    width: auto;
}


#site-header .desktop-nav > ul > li {
    list-style: none;

    margin: 0;
    padding: 0;

    flex: 0 0 auto;
}


#site-header .desktop-nav > ul > li > a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.88);

    font-size: clamp(10px, 0.72vw, 12px);

    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    padding: 9px 3px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


#site-header .desktop-nav > ul > li > a:hover,
#site-header .desktop-nav > ul > li.current-menu-item > a,
#site-header .desktop-nav > ul > li.current_page_item > a {
    color: #ffffff;
}


/* =========================================================
   4. ONLY FIRST 6 MENUS ON LARGE DESKTOP
   ========================================================= */

@media (min-width: 1201px) {

    #site-header .desktop-nav > ul > li:nth-child(n + 7) {
        display: none !important;
    }

}


/* =========================================================
   5. HEADER ACTIONS

   ORDER IS:

   MORE → JOIN OUTREACH

   Since .header-actions comes AFTER .desktop-nav,
   More automatically comes immediately after the
   sixth visible menu.
   ========================================================= */

#site-header .header-actions {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    gap: 10px;

    margin-left: 0;
}


/* =========================================================
   6. MORE BUTTON
   ========================================================= */

#site-header .more-menu-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    height: 40px;

    padding: 0 11px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.06);

    color: #ffffff;

    cursor: pointer;

    flex: 0 0 auto;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


#site-header .more-menu-btn:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.3);

    transform: translateY(-1px);
}


#site-header .more-menu-label {
    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;
}


/* HAMBURGER ICON */

#site-header .more-menu-icon {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 4px;

    width: 18px;
}


#site-header .more-menu-icon span {
    display: block;

    width: 17px;
    height: 2px;

    border-radius: 2px;

    background: #ffffff;
}


/* =========================================================
   7. JOIN OUTREACH
   ========================================================= */

#site-header .btn-pill-header {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 17px;

    border-radius: 999px;

    background: #c89b3c;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    flex: 0 0 auto;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.14);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


#site-header .btn-pill-header:hover {
    background: #d7ab4b;

    transform: translateY(-1px);
}


/* =========================================================
   8. TABLET

   Hide text navigation and use More button.
   ========================================================= */

@media (max-width: 1200px) {

    #site-header .desktop-nav {
        display: none !important;
    }

    #site-header .header-actions {
        margin-left: auto;
    }

    #site-header .more-menu-btn {
        display: flex !important;
    }

}


/* =========================================================
   9. MOBILE HEADER
   ========================================================= */

@media (max-width: 767px) {

    #site-header .header-inner {
        height: 64px;

        min-height: 64px;

        padding-left: 16px;
        padding-right: 16px;

        gap: 9px;
    }


    /*
     * Logo = 50% of original 44px.
     */
    #site-header .site-brand img,
    #site-header .site-brand .custom-logo,
    #site-header .brand-logo-img {

        height: 22px;

        width: auto;

        max-width: 80px;
    }


    /*
     * ORGANIZATION NAME REMAINS VISIBLE.
     */

    #site-header .brand-text-lockup {
        display: flex !important;

        min-width: 0;
    }


    #site-header .brand-name,
    #site-header .brand-title {

        font-size: 10px;

        line-height: 1.1;

        white-space: nowrap;
    }


    /*
     * Hide secondary tagline on mobile.
     */
    #site-header .brand-tagline,
    #site-header .brand-sub {
        display: none;
    }


    #site-header .header-actions {

        margin-left: auto;

        gap: 7px;
    }


    /*
     * On mobile the "More" text disappears,
     * leaving the familiar hamburger icon.
     */

    #site-header .more-menu-btn {

        width: 36px;
        height: 36px;

        padding: 0;

        border-radius: 9px;
    }


    #site-header .more-menu-label {
        display: none;
    }


    #site-header .more-menu-icon {
        width: 18px;
    }


    #site-header .more-menu-icon span {
        width: 17px;
    }


    #site-header .btn-pill-header {

        min-height: 34px;

        padding: 0 11px;

        font-size: 9px;
    }

}


/* =========================================================
   10. MOBILE DRAWER
   ========================================================= */

#mobile-drawer {

    position: fixed;

    top: 0;
    right: -320px;

    width: min(320px, 88vw);

    height: 100dvh;

    background: var(
        --reo-deep-forest,
        #0a2318
    );

    z-index: 2500;

    padding: 22px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    transition: right 0.3s ease;

    box-shadow:
        -12px 0 40px rgba(0, 0, 0, 0.28);
}


#mobile-drawer.open {
    right: 0;
}


/* =========================================================
   11. SCROLLABLE DRAWER CONTENT
   ========================================================= */

#mobile-drawer > div:first-child {

    min-height: 0;

    flex: 1 1 auto;

    overflow-y: auto;

    overflow-x: hidden;

    padding-right: 5px;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(200, 155, 60, 0.65)
        transparent;
}


#mobile-drawer > div:first-child::-webkit-scrollbar {
    width: 4px;
}


#mobile-drawer > div:first-child::-webkit-scrollbar-track {
    background: transparent;
}


#mobile-drawer > div:first-child::-webkit-scrollbar-thumb {

    background:
        rgba(200, 155, 60, 0.65);

    border-radius: 10px;
}


/* =========================================================
   12. DRAWER HEADER
   ========================================================= */

#mobile-drawer .drawer-header-brand {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding-bottom: 16px;

    margin-bottom: 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);

    position: sticky;

    top: 0;

    background:
        var(
            --reo-deep-forest,
            #0a2318
        );

    z-index: 2;
}


#mobile-drawer .drawer-brand-left {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;
}


#mobile-drawer .drawer-logo-img {

    width: auto;

    height: 22px;

    max-width: 80px;

    object-fit: contain;

    flex: 0 0 auto;
}


#mobile-drawer .drawer-brand-text {

    display: flex;

    flex-direction: column;

    min-width: 0;
}


#mobile-drawer .drawer-brand-title {

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.1;

    white-space: nowrap;
}


#mobile-drawer .drawer-brand-sub {

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 8px;

    line-height: 1.2;

    margin-top: 3px;

    white-space: nowrap;
}


/* =========================================================
   13. CLOSE BUTTON
   ========================================================= */

#mobile-drawer .close-drawer-btn {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    border-radius: 9px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    font-size: 25px;

    line-height: 1;

    cursor: pointer;
}


#mobile-drawer .close-drawer-btn:hover {

    background:
        rgba(255, 255, 255, 0.13);
}


/* =========================================================
   14. MOBILE NAVIGATION
   ========================================================= */

#mobile-drawer .mobile-nav-links {

    display: flex;

    flex-direction: column;

    gap: 4px;

    padding-bottom: 14px;
}


#mobile-drawer .mobile-nav-links a {

    display: flex;

    align-items: center;

    min-height: 42px;

    padding: 9px 11px;

    border-radius: 8px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 12px;

    font-weight: 600;

    line-height: 1.3;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


#mobile-drawer .mobile-nav-links a:hover {

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    padding-left: 15px;
}


/* =========================================================
   15. DRAWER ACTION BUTTONS
   ========================================================= */

#mobile-drawer .drawer-actions {

    flex: 0 0 auto !important;

    display: flex;

    flex-direction: column;

    gap: 10px;

    padding-top: 12px;

    margin-top: 8px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    background:
        var(
            --reo-deep-forest,
            #0a2318
        );
}


/* =========================================================
   16. BACKDROP
   ========================================================= */

#drawer-backdrop {

    position: fixed;

    inset: 0;

    z-index: 2400;

    background:
        rgba(0, 0, 0, 0.48);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


#drawer-backdrop.open {

    opacity: 1;

    visibility: visible;
}


/* =========================================================
   17. VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    #site-header .header-inner {

        padding-left: 12px;

        padding-right: 12px;
    }


    #site-header .brand-name,
    #site-header .brand-title {

        font-size: 9px;
    }


    #site-header .btn-pill-header {

        padding: 0 9px;

        font-size: 8px;
    }


    #mobile-drawer {

        padding: 18px;
    }

}
/* =========================================================
   FINAL HEADER BRAND FIX
   Uses the same logo asset as the working footer.
   ========================================================= */

#site-header .site-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

#site-header .site-brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    text-decoration: none;
}

#site-header .brand-logo-img {
    display: block !important;
    width: auto !important;
    height: 44px !important;
    max-width: none !important;
    object-fit: contain;
    visibility: visible !important;
    opacity: 1 !important;
}

#site-header .brand-text-lockup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    text-decoration: none;
}

#site-header .brand-name {
    display: block;
    white-space: nowrap;
}

#site-header .brand-tagline {
    display: block;
    white-space: nowrap;
}


/* =========================================================
   MOBILE HEADER BRAND
   ========================================================= */

@media (max-width: 1024px) {

    #site-header .site-brand {
        display: flex !important;
        align-items: center !important;
    }

    #site-header .site-brand-logo-link {
        display: flex !important;
        flex: 0 0 auto !important;
    }

    #site-header .brand-logo-img {
        display: block !important;
        width: auto !important;
        height: 22px !important;
        max-width: none !important;
    }

    #site-header .brand-text-lockup {
        display: flex !important;
        min-width: 0;
    }

    #site-header .brand-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #site-header .brand-tagline {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    /* Mobile drawer logo */
    #mobile-drawer .drawer-logo-link {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
    }

    #mobile-drawer .drawer-logo-img {
        display: block !important;
        width: auto !important;
        height: 22px !important;
        max-width: none !important;
        object-fit: contain;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #mobile-drawer .drawer-brand-left {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    #mobile-drawer .drawer-brand-text {
        min-width: 0;
    }

    #mobile-drawer .drawer-brand-title,
    #mobile-drawer .drawer-brand-sub {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* =========================================================
   KEEP HEADER FIXED WHILE SCROLLING
   ========================================================= */

#site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2000 !important;
}

/* Keep header contents stable */
#site-header .header-inner {
    position: relative;
    z-index: 2001;
}

/* Keep mobile drawer above the header */
#mobile-drawer {
    z-index: 2500 !important;
}

#drawer-backdrop {
    z-index: 2400 !important;
}

/* ==========================================================================
   OUTREACHES SUB-HERO & EXPEDITION MAP DIAGRAM
   ========================================================================== */
.wwdp-outreaches-hub {
  background: linear-gradient(135deg, #051810 0%, #0A271B 50%, #071C13 100%);
  border-radius: 28px;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  padding: clamp(30px, 4vw, 50px);
  color: #FFFFFF;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.wwdp-outreaches-hub::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.outreaches-hub-header {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
}

@media (max-width: 1024px) {
  .outreaches-hub-header {
    grid-template-columns: 1fr;
  }
}

.outreaches-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--reo-kingdom-gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.outreaches-hub-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.outreaches-hub-title .gold-text {
  color: var(--reo-kingdom-gold);
  font-style: italic;
}

.outreaches-hub-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.outreaches-hub-editorial p {
  font-size: 1.02rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
}

.outreaches-destinations-legend {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 24px;
}

.legend-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--reo-kingdom-gold);
  margin-bottom: 10px;
}

.legend-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legend-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.legend-chip:hover {
  background: var(--reo-kingdom-gold);
  color: var(--reo-deep-forest);
  border-color: var(--reo-kingdom-gold);
  transform: translateY(-2px);
}

.legend-chip .chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--reo-kingdom-gold);
  display: inline-block;
}

.legend-chip:hover .chip-dot {
  background: var(--reo-deep-forest);
}

.outreaches-hub-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-subhero-jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.btn-subhero-jump:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--reo-kingdom-gold);
  border-color: var(--reo-kingdom-gold);
}

/* Map Column & Diagram Container */
.outreaches-hub-map-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.expedition-map-card {
  width: 100%;
  background: #04140D;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.7), 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.map-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.map-card-topbar .live-coords {
  color: var(--reo-kingdom-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-svg-wrap {
  width: 100%;
  padding: 8px;
}

.map-svg-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

/* SVG Node Link Interactivity */
.map-node-link {
  cursor: pointer;
  text-decoration: none;
}

.map-node-link rect.node-box {
  transition: fill 0.3s ease, stroke 0.3s ease, filter 0.3s ease;
}

.map-node-link:hover rect.node-box {
  fill: #0F3827;
  stroke: #D4AF37;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.map-node-link:hover text.node-title {
  fill: #FFD700;
}

/* Sub-sections cluster styling */
.outreaches-subsections-cluster {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .outreaches-subsections-cluster {
    padding-left: 10px;
    border-left-width: 2px;
  }
}

.cluster-header-bar {
  margin-bottom: 24px;
  padding: 14px 20px;
  background: rgba(18, 59, 42, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(18, 59, 42, 0.12);
}

.cluster-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--reo-deep-forest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cluster-caption {
  font-size: 0.88rem;
  color: var(--reo-muted);
  margin: 0;
}

.cluster-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wwdp-sub-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reo-darkgreen);
  margin-bottom: 6px;
  display: block;
}

.wwdp-sub-kicker .kicker-parent {
  color: var(--reo-kingdom-gold);
  font-weight: 800;
}

/* Cluster Transition */
.wwdp-cluster-transition {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0 36px 0;
}

.transition-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(18, 59, 42, 0.15), transparent);
}

.transition-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 20px;
  background: var(--reo-stone);
  border: 1px solid rgba(18, 59, 42, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--reo-deep-forest);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav Bar Cluster Pill */
.nav-pill-cluster {
  background: var(--reo-deep-forest) !important;
  color: #FFFFFF !important;
  border-color: var(--reo-deep-forest) !important;
}

.nav-pill-sub {
  border-style: dashed !important;
  background: rgba(212, 175, 55, 0.07) !important;
  font-size: 0.78rem !important;
}

.nav-pill-sub .pill-arrow {
  color: var(--reo-kingdom-gold);
  font-weight: 800;
  margin-right: 3px;
}