/* ============================================
   SCFHE WordPress Theme - Main Stylesheet
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --forest: #2d5016;
  --forest-light: #3a6b1e;
  --forest-dark: #234012;
  --sage: #e8ede4;
  --cream: #faf8f3;
  --warm-beige: #f0ebe0;
  --gold: #b8960c;
  --dark: #2c2c2c;
  --white: #ffffff;
  --border-color: #ddd5c8;
  --text-muted: #6b6b6b;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--forest-light); }

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* --- Section Label --- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}

/* --- Accent Bar --- */
.accent-bar {
  width: 3rem;
  height: 0.25rem;
  background: var(--forest);
  border-radius: 9999px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--forest);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.site-logo .logo-text h1 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}

.site-logo .logo-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Desktop Nav */
.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.main-nav a,
.main-nav button {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  background: none;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-sans);
}
.main-nav a:hover,
.main-nav button:hover {
  background: var(--sage);
  color: var(--forest);
}

.header-actions {
  display: none;
}
@media (min-width: 1024px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: all 0.3s;
}
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: currentColor;
  transition: all 0.3s;
}
.mobile-menu-toggle span::before { top: -6px; }
.mobile-menu-toggle span::after { top: 6px; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.mobile-nav.active { display: flex; }

.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-family: var(--font-sans);
}
.mobile-nav a:hover,
.mobile-nav button:hover {
  background: var(--sage);
  color: var(--forest);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 8rem 0 4rem;
  color: var(--white);
}

.hero-content .section-label {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-content h1 em {
  color: var(--sage);
  font-style: italic;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.hero-content p strong {
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.hero-stat h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
}
.hero-stat p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 6rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-text .section-label { margin-bottom: 1rem; }
.about-text .accent-bar { margin-bottom: 1.5rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; color: var(--text-muted); }

.about-features {
  list-style: none;
  margin: 1.5rem 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.about-features li .check-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.about-quote {
  background: var(--sage);
  border-left: 4px solid var(--forest);
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 2rem 0;
}

.about-quote p {
  font-style: italic;
  color: var(--dark);
  font-size: 0.95rem;
}

.about-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest);
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
}

.about-stat-card {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1.25rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  white-space: nowrap;
}

.about-stat-card h3 {
  font-size: 2rem;
  color: var(--forest);
}

.about-stat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-stat-card small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
  padding: 6rem 0;
  background: var(--white);
}

.programs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.programs-header .section-label { margin-bottom: 0.75rem; }
.programs-header h2 { margin-bottom: 1rem; }
.programs-header p { color: var(--text-muted); }

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

.program-card {
  background: var(--cream);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.program-card.featured {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .program-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.program-card.featured h3,
.program-card.featured h4 {
  color: var(--white);
}

.program-card.featured p {
  color: rgba(255,255,255,0.85);
}

.program-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.program-badge.featured-badge {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.program-badge.default-badge {
  background: var(--sage);
  color: var(--forest);
}

.program-card h3 { margin-bottom: 0.25rem; }
.program-card h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.program-card p { margin-bottom: 1rem; font-size: 0.9rem; }

.program-features {
  list-style: none;
  margin: 1rem 0;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.85rem;
}

.program-features li .check {
  color: var(--forest);
  font-size: 0.8rem;
}

.program-card.featured .program-features li .check {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
  padding: 6rem 0;
  background: var(--forest);
  color: var(--white);
}

.impact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.impact-header .section-label { color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.impact-header h2 { color: var(--white); margin-bottom: 1rem; }
.impact-header p { color: rgba(255,255,255,0.8); }

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .impact-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.impact-quote {
  text-align: center;
  max-width: 600px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.impact-quote p {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}

.impact-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   MARATHON SECTION
   ============================================ */
.marathon-section {
  padding: 6rem 0;
  background: var(--cream);
}

.marathon-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.marathon-header .section-label { margin-bottom: 0.75rem; }
.marathon-header h2 { margin-bottom: 1rem; }
.marathon-header p { color: var(--text-muted); }

.marathon-highlight {
  text-align: center;
  margin-bottom: 3rem;
}

.marathon-highlight .big-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--forest);
  line-height: 1;
}

.marathon-highlight .big-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.marathon-highlight .big-sublabel {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.marathon-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .marathon-steps { grid-template-columns: repeat(4, 1fr); }
}

.marathon-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
}

.marathon-step .step-number {
  width: 2rem;
  height: 2rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.marathon-step p {
  font-size: 0.9rem;
  color: var(--dark);
}

.marathon-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.pricing-card h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--forest);
}

.marathon-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .marathon-features { grid-template-columns: repeat(4, 1fr); }
}

.marathon-feature {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}

.marathon-feature .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.marathon-feature h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.marathon-feature p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.marathon-cta {
  background: var(--forest);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 4rem;
}

.marathon-cta h3 { color: var(--white); margin-bottom: 0.75rem; }
.marathon-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

/* Hall of Champions */
.champions-header {
  text-align: center;
  margin-bottom: 2rem;
}

.champions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .champions-grid { grid-template-columns: repeat(4, 1fr); }
}

.champion-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.champion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.champion-card .champion-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.champion-card .champion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.champion-card .year-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.champion-card .champion-info {
  padding: 1rem;
}

.champion-card .champion-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.champion-card .champion-info .achievement {
  font-size: 0.75rem;
  color: var(--forest);
  font-weight: 600;
}

.champion-card .champion-info .miles {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
  padding: 6rem 0;
  background: var(--white);
}

.partners-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

.partner-card {
  background: var(--cream);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.partner-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  background: var(--sage);
  color: var(--forest);
}

.partner-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.partner-card h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.partners-cta {
  background: var(--sage);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.partners-cta h3 { margin-bottom: 0.75rem; }
.partners-cta p { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.partners-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--sage);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.testimonial-nav button:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership-section {
  padding: 6rem 0;
  background: var(--cream);
}

.leadership-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .leadership-grid { grid-template-columns: repeat(5, 1fr); }
}

.leader-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.leader-card .leader-image {
  height: 200px;
  overflow: hidden;
}

.leader-card .leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card .leader-info {
  padding: 1rem;
}

.leader-card .leader-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.leader-card .leader-info p {
  font-size: 0.75rem;
  color: var(--forest);
  font-weight: 600;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info .section-label { margin-bottom: 0.75rem; }
.contact-info .accent-bar { margin-bottom: 1.5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sage);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--cream);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.contact-form h3 { margin-bottom: 1.5rem; }

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-about h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-about p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-column h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--forest);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner .cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-banner .cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-banner .cookie-text h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cookie-banner .cookie-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-banner .cookie-text a {
  color: var(--forest);
  text-decoration: underline;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.25rem;
  padding: 0.25rem;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

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

.back-to-top:hover {
  background: var(--forest-light);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms)
   ============================================ */
.legal-page {
  padding: 8rem 0 4rem;
  background: var(--cream);
}

.legal-page .legal-header {
  margin-bottom: 3rem;
}

.legal-page .legal-header h1 {
  margin-bottom: 0.5rem;
}

.legal-page .legal-header .last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-page .legal-content {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
}

.legal-page .legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.legal-page .legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-page .legal-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-page .legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-muted);
}

.legal-page .legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================
   WORDPRESS ADMIN BAR COMPATIBILITY
   ============================================ */
body.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ============================================
   WORDPRESS EDITOR STYLES
   ============================================ */
.wp-block-group,
.wp-block-columns {
  margin-bottom: 1.5rem;
}

.alignwide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
