/*
Theme Name: PEP Theme
Theme URI: https://www.pep.org
Author: The Lone Star Local
Author URI: https://thelonestarlocal.com
Description: Custom WordPress theme for the Prison Entrepreneurship Program.
Version: 2.3.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: pep-theme
*/

/* ============================================================
   DESIGN TOKENS — exact prototype values
   ============================================================ */
:root {
  --ember:  #E36F1E;
  --amber:  #F6A01A;
  --navy:   #0D2373;
  --black:  #1A1A1A;
  --gray:   #666666;
  --light:  #F7F5F2;
  --rule:   #E5E3DF;
  --white:  #FFFFFF;
  --font:   'Poppins', Arial, sans-serif;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.btn-primary,
.btn-amber  { background: var(--amber); color: var(--black); }
.btn-ember  { background: var(--ember); color: var(--white); }
.btn-donate { background: var(--ember); color: var(--white); }
.btn-navy   { background: var(--navy);  color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-sm { padding: 10px 22px; font-size: 11px; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  transition: background 0.3s, border-color 0.3s;
}

/* Default state — white background, dark nav links */
#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s;
}

/* Default nav links — dark */
#site-header .primary-nav a { color: var(--black); }
#site-header .primary-nav a:hover { color: var(--ember); }

/* Default buttons — visible on white */
#site-header .btn-outline-white {
  color: var(--navy);
  border-color: var(--navy);
}
#site-header .btn-donate { background: var(--ember); color: white; }

/* Transparent state — over hero photo */
#site-header.transparent .header-inner {
  background: transparent;
  border-bottom-color: transparent;
}
#site-header.transparent .primary-nav a { color: rgba(255,255,255,0.90); }
#site-header.transparent .primary-nav a:hover { color: var(--amber); }
#site-header.transparent .site-logo img { filter: brightness(10); }
#site-header.transparent .nav-toggle span { background: white; }
#site-header.transparent .btn-outline-white { color: white; border-color: rgba(255,255,255,0.7); }
#site-header.transparent .btn-donate { background: var(--ember); color: white; }

/* Scrolled state — navy background */
#site-header.scrolled .header-inner {
  background: rgba(13,35,115,0.97);
  border-bottom-color: rgba(255,255,255,0.08);
}
#site-header.scrolled .primary-nav a { color: rgba(255,255,255,0.85); }
#site-header.scrolled .primary-nav a:hover { color: var(--amber); }
#site-header.scrolled .btn-outline-white { color: white; border-color: rgba(255,255,255,0.6); }
#site-header.scrolled .site-logo img { filter: brightness(10); }
#site-header.scrolled .nav-toggle span { background: white; }

.site-logo img { height: 60px; width: auto; }
.site-logo .custom-logo { height: 60px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 36px; }
.primary-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--ember); }

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

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 199;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }

.mobile-nav .nav-link {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.mobile-nav-close {
  align-self: flex-end;
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,35,115,0.82) 0%,
    rgba(13,35,115,0.32) 55%,
    rgba(0,0,0,0.10) 100%
  );
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 80px;
  max-width: 860px;
}

.hero-content .eyebrow {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
  color: white;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-content h1 span { color: var(--amber); }

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font);
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: 128px 72px 80px;
  margin-top: 72px;
}

.page-header .eyebrow { color: var(--amber); }

.page-header h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
}

.section { padding: 96px 64px; }
.section--gray { background: var(--light); }
.section--navy { background: var(--navy); }

.section-intro { margin-bottom: 56px; }
.section-intro.center { text-align: center; }

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

.text-center { text-align: center; }
.center { text-align: center; }

/* ============================================================
   INTRO CARD (floating over hero)
   ============================================================ */
.intro-card {
  background: var(--white);
  border-radius: 12px;
  margin: -60px 64px 0;
  padding: 56px 80px;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}

.intro-card h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 18px;
  line-height: 1.4;
  text-transform: none;
}

.intro-card h2 em { font-style: normal; color: var(--ember); }
.intro-card p { font-size: 17px; color: var(--gray); max-width: 700px; margin: 0 auto 28px; line-height: 1.8; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--amber);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 64px;
}

.stat-item { padding: 16px 24px; text-align: center; }

.stat-number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.stat-context {
  font-size: 12px;
  color: rgba(13,35,115,0.65);
  line-height: 1.4;
}

/* White stat strip (used on about page etc) */
.stat-strip {
  background: var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 5;
  padding-left: 64px;
  padding-right: 64px;
}

.stat-strip-white {
  background: var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ============================================================
   FEATURE ROWS
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.feature-row.flip { direction: rtl; }
.feature-row.flip > * { direction: ltr; }

.feature-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.feature-body {
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--white);
}

.feature-row:nth-child(even) .feature-body { background: var(--light); }

.feature-body h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.feature-body p { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 0; }

.stat-cell {
  background: var(--white);
  padding: 48px 36px;
}

.stat-cell-accent {
  display: block;
  width: 28px; height: 3px;
  background: var(--ember);
  border-radius: 2px;
  margin-bottom: 18px;
}

.stat-cell-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-cell-label { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   CONTENT PILLARS (3-up cards on homepage)
   ============================================================ */
.content-pillar {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.content-pillar:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.10); }

.pillar-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.content-text { padding: 28px; }
.content-text h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.content-text p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 0; }

/* ============================================================
   CONTENT BLOCK (two-column image+text)
   ============================================================ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.content-block.flip { direction: rtl; }
.content-block.flip > * { direction: ltr; }

.content-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.content-text-block {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.content-text-block.bg-light { background: var(--light); }
.content-text-block.bg-navy { background: var(--navy); }
.content-text-block.bg-navy h3,
.content-text-block.bg-navy p { color: var(--white); }
.content-text-block.bg-navy .eyebrow { color: var(--amber); }

.content-text-block h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.content-text-block p { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }

/* ============================================================
   PHOTO CTA BAND
   ============================================================ */
.photo-cta {
  position: relative;
  padding: 120px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.photo-cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.photo-cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,35,115,0.72);
}

.photo-cta-content { position: relative; z-index: 2; max-width: 700px; }

.photo-cta-content h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
}

.photo-cta-content h2 span { color: var(--amber); }
.photo-cta-content p { font-size: 18px; color: rgba(255,255,255,0.80); margin-bottom: 40px; line-height: 1.7; }

/* ============================================================
   STORIES SECTION
   ============================================================ */
.stories-section {
  background: var(--ember);
  padding: 80px 64px;
}

.stories-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.stories-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.stories-body .eyebrow { color: rgba(255,255,255,0.65); }

.stories-body h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
}

.stories-body p { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 16px; }
.stories-body strong { color: var(--white); font-weight: 700; }

/* ============================================================
   VIDEO EMBED
   ============================================================ */
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   IMPACT NUMBERS (homepage)
   ============================================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.impact-metric {
  background: var(--white);
  padding: 48px 28px;
  text-align: center;
}
.impact-metric:first-child { border-radius: 8px 0 0 8px; }
.impact-metric:last-child { border-radius: 0 8px 8px 0; }

.counter-number {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   STAFF DIRECTORY
   ============================================================ */
.dept-section { margin-bottom: 52px; }

.dept-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  display: block;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border-radius: 6px;
  overflow: hidden;
}

.staff-card {
  background: var(--white);
  padding: 22px 24px;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.staff-card:hover { background: #faf9f7; }

.staff-photo {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 14px;
  border: 2px solid var(--rule);
  background: var(--light);
}

.staff-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.staff-title { font-size: 13px; color: var(--gray); line-height: 1.4; }

.staff-card-wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 20px;
  padding: 24px 28px;
}
.staff-card-bio { font-size: 13px; color: var(--gray); line-height: 1.6; margin-top: 6px; }
.staff-linkedin { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--navy); text-decoration: none; }
.staff-linkedin:hover { color: var(--ember); }

.exec-feature-grid { display: flex; justify-content: center; margin-bottom: 32px; }

.exec-feature-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 600px;
  width: 100%;
}

.exec-feature-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--ember);
}

.exec-feature-name { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.exec-feature-title { font-size: 12px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ember); margin-bottom: 12px; }
.exec-feature-bio { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ============================================================
   BOARD OF DIRECTORS
   ============================================================ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.board-card {
  background: rgba(13,35,115,0.7);
  padding: 32px 28px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.board-card:hover { background: rgba(34,119,242,0.2); }

.board-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.board-name { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.board-title { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ============================================================
   MISSION / VISION / VALUES
   ============================================================ */
.mvv-mission-block {
  margin: 40px 0 48px;
  padding: 48px 56px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border-left: 4px solid var(--ember);
}

.mvv-qmark { display: block; font-size: 72px; line-height: 0.6; color: var(--ember); font-weight: 900; margin-bottom: 20px; }
.mvv-mission-text { font-size: clamp(18px, 2vw, 23px); font-weight: 600; font-style: italic; color: var(--white); line-height: 1.7; margin-bottom: 22px; max-width: 800px; }
.mvv-mission-attr { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); display: block; }

.mvv-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.mvv-panel { padding: 36px 40px; }
.mvv-panel-vision { background: rgba(227,111,30,0.10); border: 1px solid rgba(227,111,30,0.25); border-radius: 4px 0 0 4px; }
.mvv-panel-value  { background: rgba(255,255,255,0.05); border-radius: 0 4px 4px 0; }
.mvv-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; display: block; }
.mvv-text  { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; }

/* ============================================================
   10 DRIVING VALUES
   ============================================================ */
.dv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--rule);
  border-radius: 6px;
  overflow: hidden;
  perspective: 1400px;
}

.dv-card { background: transparent; border: none; padding: 0; cursor: pointer; font-family: inherit; min-height: 210px; position: relative; }

.dv-card-inner {
  display: block; position: relative; width: 100%; min-height: 210px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
}
.dv-card.flipped .dv-card-inner { transform: rotateY(180deg); }

.dv-face {
  position: absolute; inset: 0; padding: 28px 24px;
  background: var(--white);
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  display: flex; flex-direction: column;
}

.dv-face-front .dv-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--ember); margin-bottom: 12px; display: block; }
.dv-face-front .dv-name { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.dv-face-front .dv-flip-hint { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); opacity: 0.65; }

.dv-face-back { transform: rotateY(180deg); background: var(--navy); padding: 22px; overflow-y: auto; }
.dv-face-back .dv-num { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--amber); margin-bottom: 6px; display: block; }
.dv-face-back .dv-name { font-size: 13px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; }
.dv-face-back .dv-desc { font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.88); }

/* ============================================================
   ABOUT STORY SECTION
   ============================================================ */
.about-story { padding: 96px 64px; background: var(--light); }
.about-story-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-story p { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 20px; }
.about-story strong { color: var(--black); font-weight: 600; }

.about-fact-stack { display: flex; flex-direction: column; gap: 2px; }
.about-fact { background: var(--white); padding: 28px 32px; display: flex; gap: 20px; align-items: flex-start; }
.about-fact:first-child { border-radius: 6px 6px 0 0; }
.about-fact:last-child  { border-radius: 0 0 6px 6px; }
.about-fact-num { font-size: 2rem; font-weight: 900; color: var(--ember); line-height: 1; min-width: 80px; flex-shrink: 0; }
.about-fact-label { font-size: 14px; color: var(--gray); line-height: 1.5; }
.about-fact-label strong { color: var(--black); font-weight: 700; display: block; margin-bottom: 4px; font-size: 15px; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.program-section { padding: 96px 64px; }
.program-section.alt { background: var(--light); }

.program-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.program-inner.flip { direction: rtl; }
.program-inner.flip > * { direction: ltr; }

.program-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); background: rgba(227,111,30,0.10); padding: 5px 12px; border-radius: 3px; margin-bottom: 16px; }
.program-title { font-size: clamp(26px, 3vw, 38px); font-weight: 900; text-transform: uppercase; color: var(--navy); line-height: 1.05; margin-bottom: 18px; }
.program-desc { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 24px; }

.program-outcomes { list-style: none; margin-bottom: 28px; }
.program-outcomes li { font-size: 14px; color: #444; padding: 8px 0; border-bottom: 1px solid var(--rule); display: flex; gap: 12px; line-height: 1.5; }
.program-outcomes li:last-child { border-bottom: none; }
.program-outcomes li::before { content: '✓'; color: var(--ember); font-weight: 900; flex-shrink: 0; }

.program-stat-row { display: flex; gap: 2px; margin-bottom: 32px; }
.program-stat { background: var(--navy); padding: 20px 24px; flex: 1; }
.program-stat:first-child { border-radius: 6px 2px 2px 6px; }
.program-stat:last-child  { border-radius: 2px 6px 6px 2px; }
.program-stat-num { font-size: clamp(18px, 2.5vw, 26px); font-weight: 900; color: var(--amber); line-height: 1; margin-bottom: 6px; }
.program-stat-label { font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.4; }

.program-img { width: 100%; height: 480px; object-fit: cover; border-radius: 8px; }

.pipeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pipeline-phase { background: rgba(255,255,255,0.06); padding: 40px 36px; }
.pipeline-phase:first-child { border-radius: 8px 0 0 8px; }
.pipeline-phase:last-child  { border-radius: 0 8px 8px 0; }
.phase-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; display: block; }
.phase-title { font-size: 22px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 20px; line-height: 1.1; }
.phase-programs li { font-size: 14px; color: rgba(255,255,255,0.70); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 10px; line-height: 1.4; }
.phase-programs li:last-child { border-bottom: none; }
.phase-programs li::before { content: '→'; color: var(--ember); font-weight: 700; flex-shrink: 0; }

.phase-divider { background: var(--navy); padding: 18px 64px; display: flex; align-items: center; gap: 20px; border-top: 3px solid var(--amber); }
.phase-divider-icon { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--amber); flex-shrink: 0; }
.phase-divider-num { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 2px; display: block; }
.phase-divider-label { font-size: 16px; font-weight: 800; text-transform: uppercase; color: white; }

/* ============================================================
   NEWSROOM
   ============================================================ */
.featured-card { display: grid; grid-template-columns: 1fr 1fr; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,0.10); margin-bottom: 72px; }
.featured-img { min-height: 360px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 48px; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.featured-date { font-size: 12px; color: var(--gray); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.featured-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; line-height: 1.25; margin-bottom: 16px; color: var(--navy); text-transform: none; }
.featured-excerpt { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ember); transition: gap 0.2s; }
.read-more:hover { gap: 14px; }

.section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ember); padding-bottom: 14px; border-bottom: 2px solid var(--navy); display: inline-block; }

.news-list { list-style: none; margin-bottom: 56px; }
.news-row { display: grid; grid-template-columns: 120px 1fr; gap: 0 48px; padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.news-row:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.news-date { font-size: 12px; color: var(--gray); padding-top: 4px; }
.news-title { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 8px; text-transform: none; }
.news-title a:hover { color: var(--ember); }
.news-excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.news-link { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ember); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
.news-link:hover { gap: 10px; }

/* ============================================================
   EVENTS / CALENDAR
   ============================================================ */
.event-card { background: var(--white); border-radius: 8px; padding: 28px 32px; display: flex; gap: 28px; align-items: flex-start; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 16px; transition: transform 0.2s, box-shadow 0.2s; }
.event-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.10); }
.event-date-badge { background: var(--navy); color: var(--white); border-radius: 8px; padding: 12px 16px; text-align: center; flex-shrink: 0; min-width: 64px; }
.event-date-month { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 2px; display: block; }
.event-date-day { font-size: 28px; font-weight: 900; line-height: 1; }
.event-type-tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(227,111,30,0.10); color: var(--ember); padding: 3px 10px; border-radius: 2px; margin-bottom: 8px; }
.event-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.event-meta { font-size: 13px; color: var(--gray); margin-bottom: 12px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--white); border-radius: 4px; overflow: hidden; }
.faq-question { padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; font-family: var(--font); }
.faq-question:hover { color: var(--ember); }
.faq-question .icon { font-size: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; }
.faq-answer.open { display: block; }
.faq-answer-inner { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ============================================================
   VOLUNTEER ROLES
   ============================================================ */
.volunteer-roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.role-card { background: var(--white); border-radius: 8px; padding: 28px; border-top: 3px solid var(--ember); }
.role-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); margin-bottom: 10px; display: block; }
.role-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.role-card p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card { background: var(--white); border-radius: 8px; padding: 32px; border-left: 4px solid var(--amber); }
.testimonial-card p { font-size: 15px; color: var(--gray); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.attribution { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   PAGE SUBNAV
   ============================================================ */
.page-subnav { background: var(--light); border-bottom: 1px solid var(--rule); padding: 10px 64px; display: flex; align-items: center; gap: 8px; position: sticky; top: 72px; z-index: 100; overflow-x: auto; }
.page-subnav-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); white-space: nowrap; margin-right: 6px; flex-shrink: 0; opacity: 0.6; }
.page-subnav a { padding: 5px 14px; font-size: 12px; font-weight: 600; color: var(--gray); white-space: nowrap; border-radius: 999px; border: 1.5px solid var(--rule); background: var(--white); transition: color 0.15s, border-color 0.15s; }
.page-subnav a:hover { color: var(--ember); border-color: var(--ember); }

/* ============================================================
   FINANCIALS
   ============================================================ */
.financials-roi { background: var(--navy); color: var(--white); border-radius: 16px; padding: 48px; margin-bottom: 48px; display: flex; align-items: center; gap: 48px; }
.financials-roi-number { font-size: 72px; font-weight: 900; color: var(--amber); line-height: 1; flex-shrink: 0; }
.financials-roi-text h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.financials-roi-text p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 540px; }
.financials-docs { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.financials-doc-group { background: var(--white); border-radius: 12px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.financials-doc-group h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ember); margin-bottom: 20px; }
.financials-doc-list { list-style: none; }
.financials-doc-list li { border-bottom: 1px solid var(--light); padding: 10px 0; }
.financials-doc-list li:last-child { border-bottom: none; }
.financials-doc-list a { font-size: 15px; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 10px; transition: color 0.2s; }
.financials-doc-list a:hover { color: var(--ember); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer,
.site-footer {
  background: var(--navy);
  padding: 64px 64px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

#site-footer .container { max-width: 1160px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-brand img { height: 80px; margin-bottom: 18px; display: block; }
.footer-brand .custom-logo { height: 80px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.8; margin-bottom: 24px; max-width: 280px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn,
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.social-btn:hover,
.footer-social a:hover { background: var(--ember); color: #fff; }

/* Column headings — PHP outputs h5 */
.footer-col h4,
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 18px;
}

/* Nav menu outputs ul > li > a */
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--amber); }

/* Contact column */
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 12px; }
.footer-contact strong { color: rgba(255,255,255,0.80); display: block; margin-bottom: 2px; }
.footer-contact a { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-contact a:hover { color: var(--amber); }

.footer-bottom {
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.30);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.30); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--amber); }

/* ============================================================
   GRAVITY FORMS
   ============================================================ */
.gform_wrapper { font-family: var(--font) !important; }
.gform_wrapper input:not([type="submit"]),
.gform_wrapper textarea,
.gform_wrapper select {
  border: 1.5px solid var(--rule) !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  width: 100% !important;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus { border-color: var(--ember) !important; outline: none !important; }
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
  background: var(--amber) !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 32px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  font-family: var(--font) !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ENTRY CONTENT
   ============================================================ */
.entry-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.75rem; }
.entry-content p { margin-bottom: 1.2em; color: var(--gray); line-height: 1.8; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2em; }
.entry-content li { margin-bottom: 0.5em; color: var(--gray); }
.entry-content a { color: var(--ember); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-block { grid-template-columns: 1fr; }
  .content-image { min-height: 300px; }
  .program-inner, .program-inner.flip { grid-template-columns: 1fr; direction: ltr; }
  .pipeline { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .stories-inner { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .mvv-lower { grid-template-columns: 1fr; }
  .dv-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  #site-header .header-inner { padding: 0 24px; }
  .primary-nav, .header-ctas { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 0 24px 48px; }
  .intro-card { margin: -40px 16px 0; padding: 32px 24px; }
  .section { padding: 64px 24px; }
  .page-header { padding: 100px 24px 56px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .board-grid, .staff-grid { grid-template-columns: 1fr; }
  .staff-card-wide { flex-direction: column; grid-column: span 1; }
  .volunteer-roles-grid { grid-template-columns: 1fr; }
  .dv-grid { grid-template-columns: 1fr 1fr; }
  .financials-roi { flex-direction: column; }
  .financials-docs { grid-template-columns: 1fr; }
  #site-footer { padding: 48px 24px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-subnav { padding: 10px 16px; }

  .stat-strip { grid-template-columns: 1fr 1fr; padding-left: 32px; padding-right: 32px; }
  .stat-cell { padding: 32px 20px; }
  .stat-cell-num { font-size: clamp(28px, 5vw, 40px); }
}

@media (max-width: 480px) {
  .stats-grid, .impact-grid { grid-template-columns: 1fr; }
  .dv-grid { grid-template-columns: 1fr; }

  .stat-strip { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .stat-cell-num { font-size: 36px; }
}

/* ============================================================
   STORIES PAGE — from prototype
   ============================================================ */
.videos { padding: 80px 64px; background: var(--white); }
.videos-inner { max-width: 1160px; margin: 0 auto; }
.videos-header { margin-bottom: 48px; }
.videos-header p:not(.section-eyebrow) { font-size:16px;color:var(--gray);line-height:1.8;max-width:680px;margin-top:12px; }

.video-featured { margin-bottom: 48px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.video-card { cursor: pointer; }
.vtc { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 6px; background: #000; }
.vtc img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.2s; }
.vtc:hover img { opacity: 0.8; }
.vtc-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.vtc-play svg { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.video-card-title { font-size: 13px; font-weight: 600; color: var(--black); margin-top: 10px; line-height: 1.4; }

.share { background: var(--navy); padding: 80px 64px; text-align: center; }
.share-inner { max-width: 640px; margin: 0 auto; }
.share-inner .section-title { color: #fff; }
.share-inner p { font-size:16px;color:rgba(255,255,255,0.65);line-height:1.8;margin:16px 0 32px; }
.share-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Video modal */
.v-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
}
.v-modal-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 32px; color: #fff; background: none; border: none;
  cursor: pointer; line-height: 1;
}
.v-modal-content { width: 90vw; max-width: 960px; }
.v-modal-video { position: relative; padding-top: 56.25%; }
.v-modal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ============================================================
   VOLUNTEER PAGE — from prototype
   ============================================================ */
.process-strip {
  background: var(--black); padding: 44px 64px;
  display: flex; align-items: center; gap: 0;
}
.process-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); min-width: 100px; padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.1); flex-shrink: 0;
}
.process-steps { display: flex; flex: 1; margin-left: 40px; }
.process-step { flex: 1; position: relative; padding-right: 40px; }
.process-step:last-child { padding-right: 0; }
.process-step::after { content: '→'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.2); }
.process-step:last-child::after { display: none; }
.process-step-num { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.process-step-text { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); }

.vol-quotes { background: var(--light); padding: 80px 64px; }
.vol-quotes-inner { max-width: 1160px; margin: 0 auto; }
.vol-quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.vol-quote-card { background: var(--white); border-radius: 6px; border: 1px solid var(--rule); padding: 32px 28px; border-left: 4px solid var(--ember); transition: box-shadow 0.2s, transform 0.2s; }
.vol-quote-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.vol-quote-text { font-size: 15px; font-style: italic; color: var(--black); line-height: 1.65; margin-bottom: 20px; }
.vol-quote-meta { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }
.vol-quote-role { font-weight: 400; text-transform: none; letter-spacing: 0; }

.expect { background: var(--white); padding: 96px 64px; border-bottom: 1px solid var(--rule); }
.expect-inner { max-width: 1160px; margin: 0 auto; }
.expect-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 56px; padding-bottom: 44px; border-bottom: 1px solid var(--rule); align-items: end; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; }
.expect-card { background: var(--white); padding: 40px 32px; }
.expect-card-step { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); margin-bottom: 16px; }
.expect-card-icon { width: 44px; height: 44px; margin-bottom: 18px; border: 2px solid rgba(227,111,30,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ember); font-size: 18px; }
.expect-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.expect-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 0; }

.roles { background: var(--light); padding: 96px 64px; }
.roles-inner { max-width: 1160px; margin: 0 auto; }
.roles-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 56px; }
.roles-match-box { background: var(--navy); border-radius: 6px; padding: 36px 32px; }
.roles-match-box .section-eyebrow { color: var(--amber); }
.roles-match-box p { font-size: 15px; color: rgba(255,255,255,0.70); line-height: 1.7; margin-bottom: 20px; }
.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.role-card { background: var(--white); border: 1px solid var(--rule); border-radius: 6px; padding: 32px 28px; transition: box-shadow 0.2s, transform 0.2s; }
.role-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.role-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.role-tag.inside { background: rgba(13,35,115,0.08); color: var(--navy); }
.role-tag.outside { background: rgba(45,106,79,0.10); color: #2D6A4F; }
.role-tag.virtual { background: rgba(139,94,26,0.10); color: #8B5E1A; }
.role-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.role-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 0; }

.who { background: var(--navy); padding: 96px 64px; }
.who-inner { max-width: 1160px; margin: 0 auto; }
.who-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.who-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; }
.who-item { background: rgba(13,35,115,0.7); padding: 28px 24px; transition: background 0.15s; }
.who-item:hover { background: rgba(34,119,242,0.2); }
.who-item h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
.who-item p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.6; margin-bottom: 0; }

.vol-impact { background: var(--light); padding: 96px 64px; }
.vol-impact-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.impact-stat-list { display: flex; flex-direction: column; }
.impact-stat-row { display: flex; align-items: baseline; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--rule); }
.impact-stat-row:first-child { padding-top: 0; }
.impact-stat-num { font-size: 2.5rem; font-weight: 900; color: var(--navy); white-space: nowrap; min-width: 96px; line-height: 1; }
.impact-stat-text { font-size: 15px; color: var(--gray); line-height: 1.6; }
.impact-stat-text strong { color: var(--black); font-weight: 700; }

.apply { background: var(--white); padding: 96px 64px; }
.apply-inner { max-width: 1160px; margin: 0 auto; }
.apply-faqs { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.faq-item { padding: 20px 0; border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--gray); line-height: 1.65; }

.sticky-apply {
  position: fixed; bottom: 32px; right: 32px; z-index: 100;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.sticky-apply.visible { opacity: 1; transform: none; pointer-events: auto; }
.sticky-apply a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ember); color: #fff;
  padding: 14px 24px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(227,111,30,0.4);
  text-decoration: none;
}
.sticky-apply-icon { font-size: 16px; }

/* ============================================================
   CALENDAR PAGE — from prototype
   ============================================================ */
.page-hero { background: var(--navy); padding: 128px 24px 64px; text-align: center; margin-top: 72px; }
.page-hero .eyebrow { color: var(--amber); margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(36px,5vw,64px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.70); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.filter-bar { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); padding: 0 24px; display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.filter-tab { padding: 18px 24px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); border-bottom: 3px solid transparent; cursor: pointer; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.filter-tab.active, .filter-tab:hover { color: var(--ember); border-bottom-color: var(--ember); }

.calendar-layout { max-width: 1200px; margin: 0 auto; padding: 56px 24px 80px; display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

.events-list { display: flex; flex-direction: column; gap: 0; }
.month-header { font-size: 22px; font-weight: 800; color: var(--navy); padding: 28px 0 16px; border-top: 2px solid var(--navy); margin-top: 16px; }
.month-header:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.event-row { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.07); transition: background 0.15s; }
.event-row:hover { background: var(--light); margin: 0 -16px; padding: 24px 16px; border-radius: 8px; border-bottom-color: transparent; }
.event-date-block { flex-shrink: 0; width: 64px; text-align: center; }
.event-month { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ember); }
.event-day { font-size: 36px; font-weight: 900; color: var(--navy); line-height: 1; }
.event-body { flex: 1; }
.event-type-badge { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.badge-volunteer { background: rgba(227,111,30,0.12); color: var(--ember); }
.badge-graduation { background: rgba(13,35,115,0.10); color: var(--navy); }
.badge-fundraiser { background: rgba(246,160,26,0.20); color: #b07600; }
.badge-outreach { background: rgba(46,160,67,0.12); color: #1a7a30; }
.badge-workshop { background: rgba(100,100,200,0.12); color: #4444aa; }
.badge-inside { background: rgba(227,111,30,0.12); color: var(--ember); }
.badge-outside { background: rgba(13,35,115,0.10); color: var(--navy); }
.badge-virtual { background: rgba(246,160,26,0.20); color: #b07600; }
.dot-inside  { background: #E36F1E; }
.dot-outside { background: #0D2373; }
.dot-virtual { background: #F6A01A; }
.location-bar { background: var(--light); border-bottom: 1px solid rgba(0,0,0,0.06); padding: 10px 24px; display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; }
.location-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-right: 6px; }
.location-tab { padding: 6px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); border: 1px solid rgba(0,0,0,0.12); border-radius: 999px; cursor: pointer; transition: color 0.2s, background 0.2s, border-color 0.2s; white-space: nowrap; }
.location-tab:hover, .location-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Dot colors for Event Types legend ── */
.dot-inside  { background: #E36F1E; }
.dot-outside { background: #0D2373; }
.dot-virtual { background: #F6A01A; }

/* ── Location filter bar ── */
.location-bar {
  background: var(--light, #F7F5F2);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.location-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray, #666);
  margin-right: 6px;
}
.location-tab {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray, #666);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.location-tab:hover,
.location-tab.active {
  background: var(--navy, #0D2373);
  color: #fff;
  border-color: var(--navy, #0D2373);
}

.event-actions .btn-register, a.btn-register { background: var(--ember); color: var(--white); }
.month-group { margin-bottom: 2rem; }
.month-heading { font-size: 1.2rem; font-weight: 700; color: var(--navy, #0d2373); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--ember, #e36f1e); }
.event-location { font-size: 0.9rem; color: #666; margin-top: 0.35rem; }

.event-title { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.event-details { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.event-detail { display: flex; align-items: center; gap: 5px; }
.event-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; max-width: 580px; }
.event-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-ember { background: var(--ember); color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }

.calendar-sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--light); border-radius: 12px; padding: 28px; margin-bottom: 24px; }
.sidebar-card h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ember); margin-bottom: 16px; }
.sidebar-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.sidebar-mini-cal { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; text-align: center; }
.mini-cal-dow { font-size: 10px; font-weight: 700; color: var(--gray); padding: 4px 0; }
.mini-cal-day { font-size: 12px; padding: 5px 3px; border-radius: 4px; cursor: pointer; transition: background 0.15s; }
.mini-cal-day:hover { background: rgba(0,0,0,0.06); }
.mini-cal-day.has-event { background: var(--amber); color: var(--black); font-weight: 700; }
.mini-cal-day.today { border: 2px solid var(--ember); }
.mini-cal-day.empty { color: transparent; cursor: default; }
.legend-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13px; color: var(--gray); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.signup-band { background: linear-gradient(135deg, var(--ember) 0%, #c45a10 100%); padding: 64px 24px; text-align: center; }
.signup-band h2 { font-size: clamp(24px,4vw,40px); font-weight: 800; color: var(--white); margin-bottom: 14px; text-transform: uppercase; }
.signup-band p { font-size: 16px; color: rgba(255,255,255,0.80); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }

/* ============================================================
   OUR IMPACT PAGE — from prototype
   ============================================================ */
.big-numbers { padding: 80px 64px; background: var(--white); }
.big-numbers-header { text-align: center; margin-bottom: 56px; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--rule); border-radius: 8px; overflow: hidden; }
.number-cell { background: var(--white); padding: 40px 32px; }
.number-accent { display: block; width: 28px; height: 3px; background: var(--ember); border-radius: 2px; margin-bottom: 20px; }
.number-val { font-size: clamp(36px,4vw,52px); font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.number-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); margin-bottom: 6px; }
.number-sub { font-size: 13px; color: var(--gray); line-height: 1.5; }

.roi { background: var(--light); padding: 96px 64px; }
.roi-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.roi-text p { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 24px; }
.roi-callout { background: var(--navy); border-radius: 8px; padding: 28px 32px; margin-top: 8px; }
.roi-callout p { font-size: 16px; color: rgba(255,255,255,0.80); line-height: 1.7; margin-bottom: 0; }
.roi-callout strong { color: var(--amber); }
.roi-circles { display: flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.roi-circle-item { text-align: center; }
.roi-circle { width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; margin: 0 auto 10px; }
.roi-circle.c1 { background: var(--rule); color: var(--navy); }
.roi-circle.c2 { background: var(--amber); color: var(--black); }
.roi-circle.c3 { background: var(--ember); color: var(--white); }
.roi-circle-label { font-size: 12px; color: var(--gray); line-height: 1.4; max-width: 90px; }
.roi-circle-label strong { color: var(--black); display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.roi-arrow { font-size: 20px; color: var(--gray); flex-shrink: 0; }

.recid { background: var(--white); padding: 96px 64px; }
.recid-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.recid-chart { background: var(--light); border-radius: 8px; padding: 40px; }
.recid-bar { margin-bottom: 32px; }
.recid-bar:last-of-type { margin-bottom: 0; }
.recid-bar-label { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.recid-bar-val { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.recid-bar-val.highlight { color: var(--ember); }
.recid-track { height: 12px; background: var(--rule); border-radius: 6px; overflow: hidden; }
.recid-fill { height: 100%; border-radius: 6px; }
.recid-fill.pep { width: 10%; background: var(--ember); }
.recid-fill.tx { width: 17%; background: var(--amber); }
.recid-fill.us { width: 62%; background: #ccc; }
.recid-note { font-size: 11px; color: var(--gray); line-height: 1.5; margin-top: 20px; }

.outcomes { background: var(--light); padding: 96px 64px; }
.outcomes-inner { max-width: 1160px; margin: 0 auto; }
.outcomes-header { text-align: center; margin-bottom: 56px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.outcome-card { background: var(--white); border-radius: 8px; padding: 36px 28px; text-align: center; }
.outcome-icon { font-size: 24px; color: var(--ember); margin-bottom: 16px; }
.outcome-num { font-size: clamp(32px,4vw,48px); font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.outcome-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); margin-bottom: 12px; }
.outcome-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }

.cta-band { position: relative; padding: 120px 48px; text-align: center; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-band-overlay { position: absolute; inset: 0; background: rgba(13,35,115,0.75); }
.cta-band-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-band-content h2 { font-size: clamp(28px,4vw,52px); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.0; margin-bottom: 20px; }
.cta-band-content h2 span { color: var(--amber); }
.cta-band-content p { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   NEWSROOM PAGE — from prototype
   ============================================================ */
.featured { padding: 64px 24px 0; max-width: 1100px; margin: 0 auto; }
.featured-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,0.10); margin-bottom: 72px; }
.featured-img { min-height: 360px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-body { padding: 48px; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.featured-date { font-size: 12px; color: var(--gray); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.featured-title { font-size: clamp(20px,2.5vw,28px); font-weight: 800; line-height: 1.25; margin-bottom: 16px; color: var(--navy); }
.featured-excerpt { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ember); transition: gap 0.2s; }
.read-more:hover { gap: 14px; }

.newsroom-section { padding: 0 24px 80px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ember); padding-bottom: 14px; border-bottom: 2px solid var(--navy); display: inline-block; margin-top: 56px; margin-bottom: 0; }
.news-list { list-style: none; margin-bottom: 8px; }
.news-row { display: grid; grid-template-columns: 120px 1fr; gap: 0 48px; padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.07); align-items: start; }
.news-row:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.news-date { font-size: 12px; color: var(--gray); padding-top: 4px; line-height: 1.5; }
.news-title { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
.news-title a { color: inherit; transition: color 0.15s; }
.news-title a:hover { color: var(--ember); }
.news-excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.news-link { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ember); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
.news-link:hover { gap: 10px; }

.media-contact { background: var(--navy); padding: 64px 24px; text-align: center; }
.media-contact h2 { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 14px; text-transform: uppercase; }
.media-contact p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }

/* ============================================================
   CONTACT PAGE — from prototype
   ============================================================ */
.contact-section { max-width: 1100px; margin: 0 auto; padding: 72px 24px 80px; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.contact-form h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; text-transform: none; }
.contact-form > p { font-size: 15px; color: var(--gray); margin-bottom: 32px; line-height: 1.7; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font); font-size: 15px; color: var(--black);
  background: var(--white); border: 1.5px solid var(--rule); border-radius: 6px;
  padding: 12px 14px; width: 100%; outline: none; transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }
.btn-submit { width: 100%; justify-content: center; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--light); border-radius: 14px; padding: 28px 32px; }
.contact-card h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ember); margin-bottom: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon { width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.contact-detail { font-size: 14px; line-height: 1.6; }
.contact-detail strong { display: block; font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.contact-detail a { color: var(--ember); font-weight: 600; transition: color 0.2s; text-decoration: none; }
.contact-detail a:hover { color: var(--navy); }
.contact-card-navy { background: var(--navy); }
.contact-card-navy h3 { color: var(--amber); }
.contact-card-navy .contact-detail { color: rgba(255,255,255,0.75); }
.contact-card-navy .contact-detail strong { color: var(--white); }
.contact-card-navy .contact-icon { background: rgba(255,255,255,0.1); box-shadow: none; }

.offices-band { background: var(--light); padding: 64px 24px; }
.offices-inner { max-width: 1100px; margin: 0 auto; }
.offices-inner h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 40px; text-transform: none; }
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.office-card { background: var(--white); border-radius: 14px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.office-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); margin-bottom: 10px; }
.office-name { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.office-detail { font-size: 14px; color: var(--gray); line-height: 1.8; }
.office-detail a { color: var(--ember); font-weight: 600; text-decoration: none; }

/* ============================================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; }
  .calendar-layout { grid-template-columns: 1fr; }
  .roi-inner { grid-template-columns: 1fr; }
  .recid-inner { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .vol-impact-inner { grid-template-columns: 1fr; }
  .expect-header { grid-template-columns: 1fr; }
  .roles-intro { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offices-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .vol-quote-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2,1fr); }
  .who-list { grid-template-columns: 1fr; }
}


/* ============================================================
 * ABOUT PAGE FIXES — Hero background image, stat strip, sub-nav
 * ============================================================ */

/* ---- Hero image for About page ---- */
.page-template-page-about-pep .page-header,
.page-about-pep .page-header {
    background-image: url(https://www.pep.org/wp-content/uploads/2025/06/Welcome-Photo-1024x503.jpg);
    background-size: cover;
    background-position: center 30%;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
}



/* ---- Page sub-navigation bar ---- */
.page-subnav {
    position: sticky;
    top: 72px;
    z-index: 100;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 64px;
    gap: 0;
    border-bottom: 1px solid var(--rule);
}
.page-subnav .subnav-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-right: 32px;
    white-space: nowrap;
}
.page-subnav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    padding: 6px 20px;
    border-radius: 999px;
    margin-right: 10px;
    transition: background 0.2s, color 0.2s;
}
.page-subnav a:hover {
    color: var(--ember);
    border-color: var(--ember);
}

/* ======================================================
   SURVEY PAGE STYLES
   ====================================================== */

/* Fix checkbox alignment in Gravity Forms */
.survey-form .gchoice {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px;
    margin-bottom: 8px;
}

.survey-form .gchoice input[type="checkbox"] {
    flex: 0 0 16px !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    margin: 0 !important;
    min-width: 16px;
}

.survey-form .gchoice label {
    flex: 1 1 auto;
    margin: 0;
    cursor: pointer;
    line-height: 1.4;
}
