/* ===== index.html ===== */
/* ============================================
   FSTCC — Federal Scholarship Tax Credit Coalition
   V2: Client copy integrated, Immediate-inspired design
   Colors: Dark Blue #20364A, Light Blue #4499C7, Red #D22333, Yellow #F4B843
   Fonts: Raleway (headers/nav/UI), Source Serif 4 (body paragraphs)
   ============================================ */

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

:root {
  --dark-blue: #20364A;
  --light-blue: #4499C7;
  --red: #D22333;
  --yellow: #F4B843;
  --yellow-light: #FEF5E0;
  --grey: #424242;
  --grey-light: #636363;
  --grey-muted: #8E8E8E;
  --cream: #FAFAF7;
  --blue-tint: #EEF5FA;
  --paper-texture: url("../images/paper-texture.jpg");
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 50px;
  /* Status colors — used by individual State pages */
  --green: #22A85A;
  --green-light: #E8F8EE;
  --amber: #D97706;
  --amber-light: #FFFBEB;
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--grey);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  color: var(--dark-blue);
  line-height: 1.05;
}

a { color: var(--light-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--dark-blue); }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(32,54,74,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(32,54,74,0.06); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 58px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-blue);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--light-blue); }

/* Dropdown */
.nav-links .menu-item-has-children { position: relative; }
.nav-links .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 5px;
  vertical-align: middle;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  position: relative;
  top: -2px;
}
.nav-links .menu-item-has-children:hover > a::after { transform: rotate(225deg); top: 1px; }
/* Transparent bridge covers the 12px gap so hover isn't lost moving to the menu */
.nav-links .menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(32,54,74,0.08);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(32,54,74,0.12);
  padding: 8px;
  min-width: 200px;
  list-style: none;
  z-index: 200;
  white-space: nowrap;
}
.nav-links .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid rgba(32,54,74,0.08);
  border-top: 1px solid rgba(32,54,74,0.08);
}
.nav-links .menu-item-has-children:hover > .sub-menu { display: block; }
.nav-links .sub-menu li { display: block; }
.nav-links .sub-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--dark-blue);
  white-space: nowrap;
}
.nav-links .sub-menu a:hover { background: var(--blue-tint); color: var(--light-blue); }

.nav-cta {
  background: var(--dark-blue);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Raleway', sans-serif;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--light-blue); color: var(--white) !important; transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 88px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 32px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-blue);
  padding: 16px 0;
  border-bottom: 1px solid rgba(32,54,74,0.06);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 0 80px;
  background: var(--white);
  position: relative;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--light-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

.hero h1 {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--light-blue);
}
.hero-body {
  font-size: 16px;
  color: var(--grey-light);
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-body p {
  margin-bottom: 16px;
}
.hero-body p:last-child {
  margin-bottom: 0;
}
.hero-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-body ul li {
  padding-left: 24px;
  position: relative;
}
.hero-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--light-blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-note-wrap {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(32,54,74,0.08);
}
.hero-note {
  font-size: 13px;
  color: var(--grey-muted);
  line-height: 1.65;
  font-style: italic;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-dark {
  background: var(--dark-blue);
  color: var(--white);
}
.btn-dark:hover { background: #2d4a63; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(32,54,74,0.2); }
.btn-outline {
  background: transparent;
  color: var(--dark-blue);
  border: 2px solid rgba(32,54,74,0.15);
}
.btn-outline:hover { border-color: var(--light-blue); color: var(--light-blue); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--dark-blue);
}
.btn-white:hover { background: #f0f0f0; color: var(--dark-blue); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark-blue); border-color: var(--white); transform: translateY(-2px); }
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: #b81d2c; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(210,35,51,0.2); }
.btn-blue { background: var(--light-blue); color: var(--white); }
.btn-blue:hover { background: #3380a8; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(68,153,199,0.25); }
.btn-yellow { background: var(--yellow); color: var(--dark-blue); }
.btn-yellow:hover { background: #e0a730; color: var(--dark-blue); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,184,67,0.3); }
.btn-sm { padding: 11px 22px; font-size: 13px; }

/* Hero visual: photo with floating stat badges */
.hero-visual {
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 556px;
  margin: 0 auto;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 14/11;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 64px rgba(32,54,74,0.12);
}
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(32,54,74,0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 6s ease-in-out infinite;
}
.floating-card .fc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-card .fc-icon svg { width: 24px; height: 24px; }
.floating-card .fc-icon.blue { background: var(--blue-tint); color: var(--light-blue); }
.floating-card .fc-icon.yellow { background: var(--yellow-light); color: #C48C00; }
.floating-card .fc-icon.red { background: rgba(210,35,51,0.06); color: var(--red); }
.floating-card .fc-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--dark-blue);
  line-height: 1;
}
.floating-card .fc-label {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-muted);
  letter-spacing: 0.02em;
}

.fc-1 { top: -4%; right: -6%; animation-delay: 0s; z-index: 3; }
.fc-2 { bottom: 18%; left: -8%; animation-delay: 2s; z-index: 2; }
.fc-3 { bottom: -4%; right: 4%; animation-delay: 4s; z-index: 1; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* (hero-icons removed — using photo now) */

/* ============================================
   AUDIENCE TRACKS (large cards)
   ============================================ */
.audience-section {
  padding: 100px 0;
  background: var(--cream) var(--paper-texture);
  background-size: 300px 300px;
}
.page-template-page-home .section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.page-template-page-home .section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--light-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-template-page-home .section-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-template-page-home .section-header p {
  font-size: 18px;
  color: var(--grey-light);
}

/* Feature Cards — 2x2 with floating illustrations */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  border-radius: 20px;
  padding: 36px 32px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(32,54,74,0.1);
}
.feature-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.6;
  max-width: 260px;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Floating illustration cluster */
.feature-illus {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-illus { transform: translateY(-6px) scale(1.04); }

.feature-illus .illus-main {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(32,54,74,0.1);
}
.feature-illus .illus-main svg { width: 44px; height: 44px; }

.feature-illus .illus-badge {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(32,54,74,0.12);
  bottom: -4px;
  right: -8px;
}
.feature-illus .illus-badge svg { width: 20px; height: 20px; }

/* Color variants */
.feature-card.donors { background: #EEF5FA; }
.feature-card.donors .illus-main { background: var(--white); color: var(--light-blue); }
.feature-card.donors .illus-badge { background: var(--light-blue); color: var(--white); }

.feature-card.families { background: #FDF8ED; }
.feature-card.families .illus-main { background: var(--white); color: #C48C00; }
.feature-card.families .illus-badge { background: var(--yellow); color: var(--white); }

.feature-card.leaders { background: #FDF0F0; }
.feature-card.leaders .illus-main { background: var(--white); color: var(--red); }
.feature-card.leaders .illus-badge { background: var(--red); color: var(--white); }

.feature-card.sgos { background: #EEF0F4; }
.feature-card.sgos .illus-main { background: var(--white); color: var(--dark-blue); }
.feature-card.sgos .illus-badge { background: var(--dark-blue); color: var(--white); }

.feature-card.schools { background: #EDFAF3; }
.feature-card.schools .illus-main { background: var(--white); color: #2E7D5A; }
.feature-card.schools .illus-badge { background: #2E7D5A; color: var(--white); }

.feature-card.how-it-works { background: #EEF5FA; }
.feature-card.how-it-works .illus-main { background: var(--white); color: var(--light-blue); }
.feature-card.how-it-works .illus-badge { background: var(--light-blue); color: var(--white); }

.feature-card.resources { background: #FDF8ED; }
.feature-card.resources .illus-main { background: var(--white); color: #C48C00; }
.feature-card.resources .illus-badge { background: var(--yellow); color: var(--white); }

.feature-card.coalition { background: #FDF0F0; }
.feature-card.coalition .illus-main { background: var(--white); color: var(--red); }
.feature-card.coalition .illus-badge { background: var(--red); color: var(--white); }

/* Compact grid for 5+ cards */
.audience-grid--lg { gap: 12px; }
.audience-grid--lg .feature-card {
  min-height: 175px;
  padding: 24px 24px 22px;
}
.audience-grid--lg .feature-illus {
  width: 100px;
  height: 100px;
}
.audience-grid--lg .feature-illus .illus-main {
  width: 68px; height: 68px; border-radius: 14px;
}
.audience-grid--lg .feature-illus .illus-main svg { width: 30px; height: 30px; }
.audience-grid--lg .feature-illus .illus-badge { width: 30px; height: 30px; }
.audience-grid--lg .feature-card h3 { font-size: 17px; margin-bottom: 6px; }
.audience-grid--lg .feature-card p { font-size: 13px; }
.aud-note {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--grey-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; padding: 32px 28px 28px; flex-direction: column; justify-content: flex-start; }
  .feature-illus { position: relative; top: auto; right: auto; width: auto; height: auto; display: inline-flex; justify-content: center; margin: 0 auto 20px; overflow: visible; }
  .feature-illus .illus-main { width: 80px; height: 80px; border-radius: 14px; position: relative; }
  .feature-illus .illus-main svg { width: 36px; height: 36px; }
  .feature-illus .illus-badge { width: 36px; height: 36px; bottom: -8px; right: -14px; left: auto; }
  .feature-card h3 { text-align: center; }
  .feature-card p { max-width: 100%; text-align: center; }
}

/* ============================================
   HOW IT WORKS — Zigzag Layout (Option C)
   ============================================ */
/* ============================================
   STATE MAP
   ============================================ */
.map-section {
  padding: 100px 0;
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(68,153,199,0.08) 0%, transparent 60%);
}
.map-section .section-eyebrow { color: var(--yellow); }
.map-section .section-header h2 { color: var(--white); }
.map-section .section-header p { color: rgba(255,255,255,0.55); }

.map-wrapper {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}
.map-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
}
.legend-dot.in { background: var(--yellow); }
.legend-dot.pending { background: var(--light-blue); }
.legend-dot.out { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); }

.map-section .map-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map-section .map-placeholder svg { width: 48px; height: 48px; color: rgba(255,255,255,0.15); }
.map-section .map-placeholder p {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
}

.map-counters {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 44px;
}
.counter { text-align: center; }
.counter-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 6px;
}
.counter-num.y { color: var(--yellow); }
.counter-num.b { color: var(--light-blue); }
.counter-num.w { color: rgba(255,255,255,0.25); }
.counter-lbl {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-cta {
  text-align: center;
  margin-top: 40px;
}
.map-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-bottom: 16px;
}

/* ============================================
   STATS / WHY IT MATTERS (Yellow block inspired by Immediate)
   ============================================ */
.stats-section {
  padding: 100px 0;
  background: var(--yellow-light) var(--paper-texture);
  background-size: 300px 300px;
  position: relative;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.stats-content .section-eyebrow { color: #C48C00; }
.stats-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 20px;
}
.stats-content p {
  font-size: 17px;
  color: var(--grey-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.stats-content .btn { margin-top: 16px; }

.stat-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}
.stat-block:hover { transform: translateY(-2px); }
.stat-block .sb-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block .sb-num.blue { color: var(--light-blue); }
.stat-block .sb-num.red { color: var(--red); }
.stat-block .sb-num.dark { color: var(--dark-blue); }
.stat-block .sb-num.yellow { color: #C48C00; }
.stat-block .sb-label {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-light);
  line-height: 1.5;
}

/* ============================================
   CTA / TAKE ACTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--white);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card {
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.cta-card.payroll {
  background: var(--dark-blue);
  color: var(--white);
}
.cta-card.payroll h3 { color: var(--white); }
.cta-card.payroll p { color: rgba(255,255,255,0.65); }

.cta-card.updates {
  background: var(--red);
  color: var(--white);
}
.cta-card.updates h3 { color: var(--white); }
.cta-card.updates p { color: rgba(255,255,255,0.7); }
.cta-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-card p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
  color: var(--grey-light);
}
.cta-card .btn { margin-top: auto; }

/* ============================================
   EMAIL CAPTURE
   ============================================ */
.email-section {
  padding: 100px 0;
  background: linear-gradient(145deg, var(--blue-tint) 0%, var(--yellow-light) 100%);
  background-size: 300px 300px;
  position: relative;
}
.email-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper-texture);
  background-size: 300px 300px;
  opacity: 0.6;
  pointer-events: none;
}
.email-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.email-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}
.email-inner > p {
  font-size: 18px;
  color: var(--grey-light);
  margin-bottom: 36px;
}
.email-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-input {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 20px;
  border: 2px solid rgba(32,54,74,0.08);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark-blue);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--light-blue); box-shadow: 0 0 0 4px rgba(68,153,199,0.1); }
.form-input::placeholder { color: #b0b0b0; }
.form-full { grid-column: 1 / -1; }
.form-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
}
.form-row .form-input { flex: 1; }
.btn-submit {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  background: var(--dark-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-submit:hover { background: var(--light-blue); transform: translateY(-1px); }
.email-privacy {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--grey-muted);
  margin-top: 14px;
}

/* ============================================
   LOGO TICKER
   ============================================ */
.logo-section {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid rgba(32,54,74,0.05);
  overflow: hidden;
}
.logo-label {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: scroll 45s linear infinite;
  width: max-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  height: 32px;
  opacity: 0.25;
  filter: grayscale(100%);
  flex-shrink: 0;
  transition: opacity 0.3s, filter 0.3s;
}
.ticker-item:hover { opacity: 0.7; filter: none; }
/* Placeholder logos */
.ticker-placeholder {
  height: 32px;
  padding: 0 16px;
  background: rgba(32,54,74,0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-placeholder--logo {
  background: transparent;
  padding: 0 8px;
}
.ticker-logo {
  display: block;
  max-height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.2s, opacity 0.2s;
}
.ticker-placeholder--logo:hover .ticker-logo,
.ticker-org--logo:hover .ticker-logo { filter: none; opacity: 1; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-works-section {
  padding: 100px 0;
  background: #ffffff;
}
.how-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--light-blue);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.how-works-figure {
  max-width: 900px;
  margin: 0 auto 48px;
}
.how-works-figure img {
  width: 100%; border-radius: 16px;
  display: block;
}
.how-works-figure figcaption {
  margin-top: 10px; font-size: 13px; color: var(--grey-muted);
  font-style: italic; text-align: center;
}
.how-works-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 56px 32px; margin-bottom: 48px;
  background: var(--white); border-radius: 16px;
  border: 2px dashed rgba(32,54,74,0.12);
  color: var(--grey-muted); text-align: center;
}
.how-works-placeholder svg { width: 56px; height: 56px; opacity: 0.35; }
.how-works-placeholder p { font-size: 14px; font-style: italic; margin: 0; }
.how-works-inner {
  max-width: 760px;
  margin: 0 auto;
}
.how-details {
  margin-top: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(32,54,74,0.08);
}
.how-details-heading {
  font-size: 12px; font-weight: 700; font-family: 'Raleway', sans-serif;
  color: var(--grey-muted); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.how-details ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.how-details ul li {
  font-size: 13px; color: var(--grey-light); line-height: 1.6;
  padding-left: 16px; position: relative;
}
.how-details ul li::before {
  content: '·'; position: absolute; left: 4px;
  color: var(--light-blue); font-weight: 700;
}
.how-works-right h3 {
  font-size: 22px; font-weight: 800; margin-bottom: 24px; color: var(--dark-blue);
}
.how-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
  counter-reset: how-counter;
}
.how-points li {
  counter-increment: how-counter;
  display: grid; grid-template-columns: 36px 1fr; gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(32,54,74,0.07);
  font-size: 15px; color: var(--grey-light); line-height: 1.7;
}
.how-points li:first-child { border-top: 1px solid rgba(32,54,74,0.07); }
.how-points li::before {
  content: counter(how-counter);
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-blue); color: var(--white);
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}

/* ============================================
   RESOURCES PREVIEW
   ============================================ */
.page-template-page-home .resources-section {
  padding: 100px 0;
  background: var(--cream) var(--paper-texture);
  background-size: 300px 300px;
}
.page-template-page-home .resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-template-page-home .resource-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(32,54,74,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.page-template-page-home .resource-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(32,54,74,0.07); }
.page-template-page-home .tag {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.page-template-page-home .tag.donors { background: var(--blue-tint); color: var(--light-blue); }
.page-template-page-home .tag.families { background: var(--yellow-light); color: #C48C00; }
.page-template-page-home .tag.leaders { background: rgba(210,35,51,0.06); color: var(--red); }
.page-template-page-home .tag.general { background: rgba(32,54,74,0.05); color: var(--dark-blue); }
.page-template-page-home .resource-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-template-page-home .resource-card p {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.page-template-page-home .res-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--dark-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-template-page-home .res-link svg { width: 14px; height: 14px; }
@media (max-width: 768px) {
  .page-template-page-home .resources-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-blue);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand img {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-family: 'Raleway', sans-serif;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 500;
}
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-body { margin: 0 auto 36px; max-width: 520px; }
  .hero-body ul { text-align: left; }
  .hero-ctas { justify-content: center; }
  .hero-card-stack { max-width: 575px; }

  .stats-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; } .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 34px; }
  .hero-card-stack { max-width: 90%; }
  .fc-1 { top: -3%; right: -2%; }
  .fc-2 { bottom: 35%; left: -4%; }
  .fc-3 { bottom: -2%; right: 0; }
  .floating-card { padding: 14px 16px; }
  .floating-card .fc-num { font-size: 20px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-grid::before { display: none; }

  .audience-card { padding: 32px 24px; }
  .stat-blocks { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .map-counters { gap: 28px; }
  .counter-num { font-size: 40px; }
  .email-form { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== about.html ===== */
/* PAGE HERO */
.hero-meta {
  display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap;
}
.hero-meta-item { text-align: center; }
.hero-meta-num {
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 40px;
  color: var(--yellow); line-height: 1;
}
.hero-meta-lbl {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.4); letter-spacing: 0.06em; margin-top: 6px;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
  padding: 100px 0;
  background: var(--white);
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-content .section-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.mission-content h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 24px;
}
.mission-content p {
  font-size: 17px; color: var(--grey-light); line-height: 1.75; margin-bottom: 18px;
}
.mission-content .btn { margin-top: 16px; }

.mission-pillars {
  display: flex; flex-direction: column; gap: 16px;
}
.pillar {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-icon.blue { background: var(--blue-tint); color: var(--light-blue); }
.pillar-icon.yellow { background: var(--yellow-light); color: #C48C00; }
.pillar-icon.red { background: rgba(210,35,51,0.06); color: var(--red); }
.pillar h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.pillar p { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin: 0; }

/* ============================================
   THE LAW SECTION
   ============================================ */
.law-section {
  padding: 100px 0;
  background: var(--cream) var(--paper-texture);
  background-size: 300px 300px;
}
.law-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.law-content .section-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.law-content h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 24px; }
.law-content p { font-size: 16px; color: var(--grey-light); line-height: 1.75; margin-bottom: 16px; }

.law-card {
  background: var(--dark-blue);
  border-radius: var(--radius);
  padding: 40px;
  position: sticky;
  top: 108px;
}
.law-card-title {
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.law-card h3 {
  color: var(--white); font-size: 18px; font-weight: 800;
  margin-bottom: 8px; line-height: 1.3;
}
.law-card .law-sub {
  color: rgba(255,255,255,0.5); font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.law-facts { display: flex; flex-direction: column; gap: 16px; }
.law-fact {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.law-fact:last-child { border-bottom: none; padding-bottom: 0; }
.law-fact-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--yellow);
}
.law-fact-icon svg { width: 15px; height: 15px; }
.law-fact h4 {
  color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 2px;
}
.law-fact p {
  color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.5; margin: 0;
}

/* ============================================
   STEERING COMMITTEE
   ============================================ */
.committee-section {
  padding: 100px 0;
  background: var(--white);
}
.committee-section .section-header {
  text-align: center; max-width: 600px; margin: 0 auto 56px;
}
.committee-section .section-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.committee-section h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
.committee-section .section-header p { font-size: 18px; color: var(--grey-light); }

.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.committee-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.committee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(32,54,74,0.07);
  border-color: rgba(68,153,199,0.2);
}
.committee-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-tint), var(--white));
  border: 3px solid rgba(68,153,199,0.15);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 24px; color: var(--light-blue);
  overflow: hidden;
}
.committee-avatar img { width: 100%; height: 100%; object-fit: cover; }
.committee-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.committee-card .role {
  font-family: 'Raleway', sans-serif; font-size: 13px;
  font-weight: 600; color: var(--light-blue); margin-bottom: 12px;
}
.committee-card .org {
  font-family: 'Raleway', sans-serif; font-size: 13px;
  color: var(--grey-muted); font-weight: 500;
}
.committee-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 48px 28px;
  border: 2px dashed rgba(32,54,74,0.1);
  text-align: center;
}
.committee-placeholder p {
  font-family: 'Raleway', sans-serif;
  font-size: 14px; color: var(--grey-muted);
  font-weight: 500; max-width: 200px;
}

.committee-footer {
  margin: 40px auto 0;
  font-size: 16px; color: var(--grey-light); line-height: 1.7;
  max-width: 760px;
  text-align: left;
}

/* ============================================
   COALITION MEMBERS
   ============================================ */
.members-section {
  padding: 100px 0;
  background: var(--cream) var(--paper-texture);
  background-size: 300px 300px;
}
.members-section .section-header {
  text-align: center; max-width: 600px; margin: 0 auto 56px;
}
.members-section .section-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.members-section h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
.members-section .section-header p { font-size: 18px; color: var(--grey-light); }

.members-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.member-cat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.cat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-tint); color: var(--light-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.cat-icon svg { width: 22px; height: 22px; }
.member-cat h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.member-cat p { font-size: 14px; color: var(--grey-light); line-height: 1.6; }

.members-ticker-wrap {
  overflow: hidden;
  position: relative;
}
.members-ticker-wrap::before, .members-ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.members-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.members-ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

.ticker-label {
  text-align: center;
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--grey-muted); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.ticker-track {
  display: flex; gap: 16px; animation: scroll 50s linear infinite; width: max-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-org {
  height: 40px; padding: 0 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(32,54,74,0.07);
  display: flex; align-items: center;
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--grey-light);
  white-space: nowrap; flex-shrink: 0;
  transition: color 0.2s;
}
.ticker-org:hover { color: var(--dark-blue); }
.ticker-org--logo {
  background: transparent;
  border-color: transparent;
  padding: 0 12px;
}

.join-coalition {
  text-align: center;
  margin-top: 56px;
  padding: 56px 40px;
  background: var(--white);
  border-radius: var(--radius);
}
.join-coalition h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.join-coalition p { font-size: 17px; color: var(--grey-light); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(68,153,199,0.08) 0%, transparent 60%);
}
.contact-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-content h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
.contact-content p { color: rgba(255,255,255,0.55); font-size: 17px; line-height: 1.75; margin-bottom: 28px; }

.contact-methods {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-method {
  display: flex; gap: 16px; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: background 0.2s;
}
.contact-method:hover { background: rgba(255,255,255,0.07); }
.contact-method-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.contact-method-icon svg { width: 18px; height: 18px; }
.contact-method h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-method p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.4; margin: 0; }
.contact-method-body { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.4; margin: 0; }
.contact-method-body p { color: inherit; font-size: inherit; line-height: inherit; margin: 0; }
.contact-method-body a { color: rgba(255,255,255,0.45); text-decoration: none; }
.contact-method-body a:hover { color: var(--light-blue); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
label {
  display: block;
  font-family: 'Raleway', sans-serif; font-size: 13px;
  font-weight: 700; color: var(--dark-blue); margin-bottom: 6px;
}
.form-input {
  width: 100%;
  font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 500;
  padding: 13px 16px;
  border: 2px solid rgba(32,54,74,0.1);
  border-radius: var(--radius-sm);
  background: var(--white); color: var(--dark-blue);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--light-blue); box-shadow: 0 0 0 4px rgba(68,153,199,0.1); }
.form-input::placeholder { color: #b0b0b0; }
.form-select {
  width: 100%;
  font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 500;
  padding: 13px 16px;
  border: 2px solid rgba(32,54,74,0.1);
  border-radius: var(--radius-sm);
  background: var(--white); color: var(--dark-blue);
  outline: none; cursor: pointer; -webkit-appearance: none;
}
.form-select:focus { border-color: var(--light-blue); box-shadow: 0 0 0 4px rgba(68,153,199,0.1); }
textarea.form-input { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px;
  padding: 16px;
  background: var(--dark-blue); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  cursor: pointer; transition: all 0.2s;
}
.btn-submit:hover { background: var(--light-blue); }


/* RESPONSIVE */
@media (max-width: 1024px) {
  .mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .law-inner { grid-template-columns: 1fr; gap: 48px; }
  .law-card { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .committee-grid { grid-template-columns: 1fr 1fr; }
  .members-categories { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; } .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero-meta { gap: 28px; }
  .committee-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===== audience.html ===== */

/* PAGE HERO */

/* AUDIENCE NAV TABS */
.audience-nav {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.aud-tab {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px;
  padding: 10px 16px; border-radius: var(--radius-pill);
  border: 2px solid rgba(32,54,74,0.1); background: var(--white);
  color: var(--dark-blue); text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
}
.aud-tab:hover { border-color: var(--light-blue); color: var(--light-blue); transform: translateY(-2px); }
.aud-tab.donors:hover, .aud-tab.donors.active { background: var(--blue-tint); border-color: var(--light-blue); color: var(--light-blue); }
.aud-tab.families:hover, .aud-tab.families.active { background: var(--yellow-light); border-color: #C48C00; color: #C48C00; }
.aud-tab.governors:hover, .aud-tab.governors.active { background: rgba(210,35,51,0.06); border-color: var(--red); color: var(--red); }
.aud-tab.sgos:hover, .aud-tab.sgos.active { background: rgba(32,54,74,0.05); border-color: var(--dark-blue); color: var(--dark-blue); }
.aud-tab.schools:hover, .aud-tab.schools.active { background: #EDFAF3; border-color: #2E7D5A; color: #2E7D5A; }
.aud-tab svg { width: 16px; height: 16px; }


/* SECTION SHARED — scoped to audience sections */
.page-template-page-audience .section-header { max-width: 660px; margin: 0 auto 56px; }
.page-template-page-audience .section-header.left { margin: 0 0 48px; text-align: left; }
.audience-section .section-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.audience-section .section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.01em;
}
.audience-section .section-header p { font-size: 18px; color: var(--grey-light); line-height: 1.7; }


/* ============================================
   DONORS SECTION
   ============================================ */
.donors-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 4px solid var(--light-blue);
}
.donors-section .section-eyebrow { color: var(--light-blue); }

.how-credit-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0;
}
.credit-step {
  background: var(--blue-tint);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.step-number {
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 13px;
  color: var(--light-blue); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.credit-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.credit-step p { font-size: 15px; color: var(--grey-light); line-height: 1.65; }
.credit-arrow {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--blue-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--light-blue);
  z-index: 2;
}
.credit-arrow svg { width: 16px; height: 16px; }

.donor-highlight {
  background: var(--dark-blue);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 56px 0;
}
.donor-highlight h3 { color: var(--white); font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.donor-highlight p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.highlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.h-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}
.h-stat .num {
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 32px;
  margin-bottom: 6px;
}
.h-stat .num.yellow { color: var(--yellow); }
.h-stat .num.blue { color: var(--light-blue); }
.h-stat .lbl {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.donor-faqs {
  margin-top: 56px;
}
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-list .faq-item,
.donor-faqs .faq-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-list .faq-q,
.donor-faqs .faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-blue);
  text-align: left;
  transition: background 0.2s;
}
.faq-list .faq-q:hover,
.donor-faqs .faq-q:hover { background: rgba(32,54,74,0.04); }
.faq-list .faq-q svg,
.donor-faqs .faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--grey-muted); transition: transform 0.3s; }
.faq-list .faq-item.open .faq-q svg,
.donor-faqs .faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-list .faq-a,
.donor-faqs .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-list .faq-a-inner,
.donor-faqs .faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.7;
}
.faq-list .faq-item.open .faq-a,
.donor-faqs .faq-item.open .faq-a { max-height: 800px; }

/* Donor SGO directory */
.donor-sgos-section { margin: 56px 0; }
.donor-sgos-intro { color: var(--grey-light); font-size: 15px; margin-bottom: 24px; }
.donor-sgos-intro p { margin: 0 0 8px; }
.sgos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.sgo-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid rgba(32,54,74,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.sgo-link:hover { background: #e8edf7; border-color: var(--blue); color: var(--blue); }
.block-note {
  font-size: 13px;
  color: var(--grey-muted);
  background: rgba(32,54,74,0.03);
  border-left: 3px solid rgba(32,54,74,0.15);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 0;
}

/* Donor FAQ table of contents */
.donor-faq-toc {
  list-style: none;
  padding: 20px 24px;
  margin: 0 0 28px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.donor-faq-toc li { font-size: 13px; }
.donor-faq-toc a { color: var(--blue); text-decoration: none; }
.donor-faq-toc a:hover { text-decoration: underline; }

/* State credits table */
.donor-credits-section { margin: 56px 0 0; }
.donor-credits-intro { color: var(--grey-light); font-size: 15px; margin-bottom: 24px; }
.donor-credits-intro p { margin: 0 0 8px; }
.donor-credits-intro ul { padding-left: 20px; margin: 8px 0; }
.donor-credits-intro li { margin-bottom: 8px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid rgba(32,54,74,0.1); }
.table-scroll table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}
.table-scroll thead { background: var(--dark-blue); color: var(--white); }
.table-scroll th { padding: 12px 16px; text-align: left; font-weight: 700; font-size: 13px; white-space: nowrap; }
.table-scroll td { padding: 11px 16px; border-bottom: 1px solid rgba(32,54,74,0.07); color: var(--grey-dark); vertical-align: top; }
.table-scroll tbody tr:last-child td { border-bottom: none; }
.table-scroll tbody tr:nth-child(even) { background: var(--cream); }
.table-scroll tbody tr:hover { background: #e8edf7; }

/* FAQ page — style WYSIWYG tables to match the donor/taxpayer credits table */
.faq-section table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin: 20px 0;
  border: 1px solid rgba(32,54,74,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-section thead { background: var(--dark-blue); }
.faq-section th { padding: 12px 16px; text-align: left; font-weight: 700; font-size: 13px; color: var(--white); white-space: nowrap; }
.faq-section td { padding: 11px 16px; border-top: 1px solid rgba(32,54,74,0.07); color: var(--grey-dark); vertical-align: top; }
.faq-section tbody tr:nth-child(even) { background: var(--cream); }
.faq-section tbody tr:hover { background: #e8edf7; }
@media (max-width: 600px) {
  .faq-section table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================
   FAMILIES SECTION
   ============================================ */
.families-section {
  padding: 100px 0;
  background: var(--cream) var(--paper-texture);
  background-size: 300px 300px;
  border-top: 4px solid var(--yellow);
}
.families-section .section-eyebrow { color: #C48C00; }

.families-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 48px 0;
  max-width: 760px;
}
.family-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(32,54,74,0.07);
}
.family-step:last-child { border-bottom: none; }
.fs-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark-blue);
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fs-content h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.fs-content p { font-size: 15px; color: var(--grey-light); line-height: 1.65; }

.eligibility-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.elig-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.elig-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.elig-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--yellow-light);
  color: #C48C00;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.elig-icon svg { width: 22px; height: 22px; }
.elig-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.elig-card p { font-size: 14px; color: var(--grey-light); line-height: 1.6; }

.scholarship-types {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin: 40px 0;
}
.scholarship-types h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.stype-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stype {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.stype svg { width: 28px; height: 28px; color: #C48C00; margin: 0 auto 10px; }
.stype p { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--dark-blue); }

/* ============================================
   GOVERNORS SECTION
   ============================================ */
.governors-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 4px solid var(--red);
}
.governors-section .section-eyebrow { color: var(--red); }

.opt-in-timeline {
  max-width: 760px;
  margin: 48px 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(32,54,74,0.07);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: none; }
.ti-date {
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 15px;
  color: var(--red);
  padding-top: 4px;
}
.ti-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.ti-content p { font-size: 15px; color: var(--grey-light); line-height: 1.65; }

.opt-in-steps {
  background: rgba(210,35,51,0.04);
  border: 1px solid rgba(210,35,51,0.1);
  border-radius: var(--radius);
  padding: 40px;
  margin: 48px 0;
}
.opt-in-steps h3 { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.oi-step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.oi-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.oi-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.oi-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.oi-text p { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin-bottom: 12px; }
.oi-text p:last-child { margin-bottom: 0; }
.oi-text a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(32,54,74,0.15);
  background: transparent;
  color: var(--dark-blue);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.01em;
  margin-top: 16px;
}
.oi-text a:not(.btn):hover { border-color: var(--light-blue); color: var(--light-blue); transform: translateY(-2px); }

.gov-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.gov-stat {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.gov-stat .num {
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 36px;
  color: var(--red); margin-bottom: 8px;
}
.gov-stat .lbl {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--grey-light); line-height: 1.5;
}

/* Gov opt-in callout card */
.gov-optin-card {
  background: #f0f4ff;
  border: 1px solid rgba(26,80,185,0.15);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 48px 0;
}
.gov-optin-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; color: var(--dark-blue); }
.gov-optin-card p { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 12px; }
.gov-optin-card p:last-of-type { margin-bottom: 0; }
.gov-optin-card ul, .gov-optin-card ol { padding-left: 24px; margin: 0 0 12px; }
.gov-optin-card ul { list-style: disc; }
.gov-optin-card ol { list-style: decimal; }
.gov-optin-card ul li, .gov-optin-card ol li { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 6px; }
.gov-optin-card a:not(.btn) { color: var(--blue); text-decoration: underline; }

/* Gov SGO list section */
.gov-sgo-list { margin: 56px 0; }
.gov-sgo-list > h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.gov-sgol-intro p { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 10px; }
.gov-sgol-intro p:last-child { margin-bottom: 20px; }

/* Lists and links inside FAQ accordion answers */
.faq-a-inner p { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ul, .faq-a-inner ol { padding-left: 20px; margin: 4px 0 12px; }
.faq-a-inner li { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 6px; }
.faq-a-inner a { color: var(--blue); text-decoration: underline; }

/* Gov "more on SGOs" block */
.gov-more { margin: 56px 0; }
.gov-more > h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.gov-more-body p { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 12px; }
.gov-more-body p:last-child { margin-bottom: 0; }
.gov-more-body ul, .gov-more-body ol { padding-left: 20px; margin: 4px 0 16px; }
.gov-more-body li { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 6px; }
.gov-more-body a { color: var(--blue); text-decoration: underline; }

/* Gov contact note */
.gov-contact-note {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin: 40px 0;
  text-align: center;
}
.gov-contact-note p { font-size: 15px; color: var(--grey-light); line-height: 1.65; }
.gov-contact-note a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ============================================
   SGOs SECTION
   ============================================ */
.sgos-section {
  padding: 100px 0;
  background: var(--cream) var(--paper-texture);
  background-size: 300px 300px;
  border-top: 4px solid var(--dark-blue);
}
.sgos-section .section-eyebrow { color: var(--dark-blue); }

.sgo-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}
.req-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.req-card .req-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(32,54,74,0.06);
  color: var(--dark-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.req-card .req-icon svg { width: 22px; height: 22px; }
.req-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.req-card p { font-size: 15px; color: var(--grey-light); line-height: 1.65; }
.req-card ul {
  margin-top: 12px;
  padding-left: 20px;
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.8;
}

.sgo-timeline {
  background: var(--dark-blue);
  border-radius: var(--radius);
  padding: 48px;
  margin: 48px 0;
}
.sgo-timeline h3 { color: var(--white); font-size: 22px; font-weight: 800; margin-bottom: 36px; }
.sgo-tl-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sgo-tl-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sgo-tl-item:last-child { border-bottom: none; }
.stl-date {
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--yellow);
}
.stl-text h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.stl-text p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }

.sgo-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--grey);
}
.check-item svg { width: 18px; height: 18px; color: #4CAF50; flex-shrink: 0; margin-top: 3px; }

/* SGO detailed requirements accordion */
.sgo-list-section { margin: 56px 0; }
.sgo-list-section > h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.sgo-list-intro p { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 10px; }
.sgo-list-intro p:last-child { margin-bottom: 20px; }

/* Getting on the SGO list */
.sgo-getting-section {
  background: rgba(32,54,74,0.03);
  border: 1px solid rgba(32,54,74,0.08);
  border-radius: var(--radius);
  padding: 40px;
  margin: 48px 0;
}
.sgo-getting-section > h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.sgo-getting-intro { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 28px; }
.sgo-getting-steps { display: flex; flex-direction: column; gap: 20px; }
.sgo-getting-step { display: flex; gap: 20px; align-items: flex-start; }
.sgo-getting-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark-blue); color: var(--white);
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sgo-getting-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sgo-getting-text p { font-size: 14px; color: var(--grey-light); line-height: 1.65; }
.sgo-getting-text a { color: var(--blue); text-decoration: underline; }

/* Running an SGO callout */
.sgo-running-card {
  background: rgba(32,54,74,0.03);
  border: 1px solid rgba(32,54,74,0.08);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin: 40px 0;
}
.sgo-running-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.sgo-running-body p { font-size: 15px; color: var(--grey-light); line-height: 1.65; }
.sgo-running-body a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ============================================
   SCHOOLS & FAMILIES
   ============================================ */
.schools-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 4px solid #2E7D5A;
}
.schools-section .section-eyebrow { color: #2E7D5A; }
.schools-intro { font-size: 17px; color: var(--grey-light); line-height: 1.75; }
.schools-intro p { margin-bottom: 16px; }
.schools-intro p:last-child { margin-bottom: 0; }

/* Editable main content box (replaces the coming-soon placeholder once filled). */
.schools-content { max-width: 760px; font-size: 17px; color: var(--grey-light); line-height: 1.75; }
.schools-content > *:first-child { margin-top: 0; }
.schools-content > *:last-child { margin-bottom: 0; }
.schools-content h2 { font-size: 28px; font-weight: 800; color: var(--dark-blue); line-height: 1.25; margin: 40px 0 16px; }
.schools-content h3 { font-size: 21px; font-weight: 800; color: var(--dark-blue); line-height: 1.3; margin: 32px 0 12px; }
.schools-content h4 { font-size: 18px; font-weight: 700; color: var(--dark-blue); margin: 24px 0 10px; }
.schools-content p { margin-bottom: 18px; }
.schools-content ul, .schools-content ol { margin: 0 0 18px; padding-left: 24px; display: flex; flex-direction: column; gap: 8px; }
.schools-content li { line-height: 1.7; }
.schools-content a:not(.btn) { color: var(--light-blue); text-decoration: underline; }
.schools-content a:not(.btn):hover { color: var(--dark-blue); }
.schools-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 12px 0; }
.schools-content blockquote { margin: 24px 0; padding: 16px 24px; border-left: 4px solid #2E7D5A; background: var(--cream); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--dark-blue); }
.schools-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.schools-content th, .schools-content td { padding: 12px 14px; border: 1px solid rgba(32,54,74,0.1); text-align: left; }
.schools-content th { background: var(--cream); font-weight: 700; color: var(--dark-blue); }
.schools-content-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* Obstacles callout */
.schools-obstacles {
  margin-top: 48px;
  background: #FFFBEB;
  border: 1px solid rgba(196,140,0,0.2);
  border-radius: 16px;
  padding: 32px 36px;
}
.schools-obstacles h3 {
  font-size: 20px; font-weight: 800; color: var(--dark-blue); margin-bottom: 12px;
}
.schools-obstacles > p {
  font-size: 16px; color: var(--grey-light); line-height: 1.7; margin-bottom: 24px;
}
.inline-link { color: var(--light-blue); font-weight: 700; text-decoration: none; }
.inline-link:hover { text-decoration: underline; }
.schools-reqs { background: var(--white); border-radius: 10px; padding: 20px 24px; }
.reqs-intro { font-size: 14px; font-weight: 700; color: var(--dark-blue); margin-bottom: 12px; }
.reqs-list { padding-left: 20px; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.reqs-list li { font-size: 15px; color: var(--grey-light); line-height: 1.65; }

/* Expenses block */
.schools-expenses-block, .schools-sgos-block {
  margin-top: 56px;
}
.schools-expenses-block h3, .schools-sgos-block h3 {
  font-size: 22px; font-weight: 800; color: var(--dark-blue); margin-bottom: 12px;
}
.block-intro {
  font-size: 16px; color: var(--grey-light); line-height: 1.7; margin-bottom: 24px; max-width: 740px;
}
.block-intro p {
  margin-bottom: 16px;
}
.block-intro p:last-child {
  margin-bottom: 0;
}
.expenses-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.expense-tag {
  display: inline-flex; align-items: center;
  background: #EDFAF3; color: #2E7D5A;
  border: 1px solid rgba(46,125,90,0.2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600;
}
.block-note {
  margin-top: 20px; font-size: 13px; color: var(--grey-light); font-style: italic; line-height: 1.65;
}

/* SGO grid */
.sgos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.sgo-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--white); border: 1px solid rgba(32,54,74,0.1); border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark-blue);
  text-decoration: none; transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.sgo-link:hover { border-color: #2E7D5A; color: #2E7D5A; transform: translateY(-2px); }
@media (max-width: 900px) { .sgos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sgos-grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  padding: 80px 0;
  background: var(--light-blue);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); font-size: clamp(24px, 3vw, 36px); font-weight: 800; }
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 17px; margin-top: 8px; }


/* Map callout — compact blue banner linking back to the homepage map */
.map-callout { padding: 56px 0; }
.map-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--dark-blue);
  border-radius: 16px;
  padding: 28px 36px;
}
.map-callout-text { display: flex; align-items: center; gap: 18px; }
.map-callout-icon { display: flex; flex-shrink: 0; color: var(--yellow); }
.map-callout-icon svg { width: 30px; height: 30px; }
.map-callout-text h2 { color: var(--white); font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; }
.map-callout-text p { color: rgba(255,255,255,0.8); font-size: 16px; margin-top: 4px; }
@media (max-width: 768px) {
  .map-callout-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .map-callout-text { flex-direction: column; gap: 12px; }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .how-credit-works { grid-template-columns: 1fr; }
  .credit-arrow { display: none; }
  .donor-highlight { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .eligibility-cards { grid-template-columns: 1fr; }
  .gov-stats { grid-template-columns: repeat(2, 1fr); }
  .stype-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sgo-requirements { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; } .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .audience-nav { gap: 8px; }
  .aud-tab { padding: 10px 18px; font-size: 13px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .sgo-tl-item { grid-template-columns: 1fr; gap: 8px; }
  .gov-stats { grid-template-columns: repeat(2, 1fr); }
  .highlight-stats { grid-template-columns: 1fr; }
  .scholarship-types { padding: 28px 20px; }
  .stype-grid { grid-template-columns: repeat(2, 1fr); }
  .opt-in-steps { padding: 28px 20px; }
  .sgo-timeline { padding: 32px 24px; }
  .sgo-checklist { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===== faq.html ===== */

/* PAGE HERO */

/* LAYOUT */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 80px 0 120px;
  align-items: start;
}
@media(max-width:900px){ .faq-layout{ grid-template-columns: 1fr; } }

/* STICKY TOC */
.toc {
  position: sticky;
  top: 108px;
}
.toc-title {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey-muted); margin-bottom: 20px;
}
.toc-section { margin-bottom: 28px; }
.toc-section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark-blue); margin-bottom: 10px;
}
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc ul li a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--grey-light);
  line-height: 1.4; display: block;
  padding: 6px 0 6px 12px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.toc ul li a:hover, .toc ul li a.active {
  color: var(--light-blue);
  border-left-color: var(--light-blue);
  text-decoration: none;
}
@media(max-width:900px){ .toc{ position:static; border: 1px solid rgba(32,54,74,0.1); border-radius: var(--radius); padding: 24px; } }

/* FAQ CONTENT */
.faq-section { margin-bottom: 72px; scroll-margin-top: 108px; }
.faq-section-header {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--dark-blue);
  margin-bottom: 40px;
}
.faq-section-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-section-icon.blue { background: var(--blue-tint); color: var(--light-blue); }
.faq-section-icon.yellow { background: var(--yellow-light); color: #a07a00; }
.faq-section-icon.red { background: rgba(210,35,51,0.08); color: var(--red); }
.faq-section-icon svg { width: 22px; height: 22px; }
.faq-section-header h2 { font-size: 24px; font-weight: 800; }

/* Individual Q&A — scoped to FAQ page template + Taxpayers/Donors + Resources page template */
.page-template-page-faq .faq-item,
.page-template-page-audience-taxpayers .faq-item,
.page-template-page-resources .faq-item { margin-bottom: 36px; scroll-margin-top: 108px; }
.page-template-page-faq .faq-q,
.page-template-page-audience-taxpayers .faq-q,
.page-template-page-resources .faq-q {
  font-family: 'Raleway', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--dark-blue);
  margin-bottom: 12px; line-height: 1.4;
}
.page-template-page-faq .faq-a,
.page-template-page-audience-taxpayers .faq-a,
.page-template-page-resources .faq-a { font-size: 16px; line-height: 1.75; color: var(--grey); }
.page-template-page-faq .faq-a p,
.page-template-page-audience-taxpayers .faq-a p,
.page-template-page-resources .faq-a p { margin-bottom: 14px; }
.page-template-page-faq .faq-a p:last-child,
.page-template-page-audience-taxpayers .faq-a p:last-child,
.page-template-page-resources .faq-a p:last-child { margin-bottom: 0; }
.page-template-page-faq .faq-a ul,
.page-template-page-audience-taxpayers .faq-a ul,
.page-template-page-resources .faq-a ul { padding-left: 24px; margin: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.page-template-page-faq .faq-a ul li,
.page-template-page-audience-taxpayers .faq-a ul li,
.page-template-page-resources .faq-a ul li { font-size: 16px; line-height: 1.7; }
.page-template-page-faq .faq-a a,
.page-template-page-audience-taxpayers .faq-a a,
.page-template-page-resources .faq-a a { color: var(--light-blue); text-decoration: underline; }
.page-template-page-faq .faq-a a:hover,
.page-template-page-audience-taxpayers .faq-a a:hover,
.page-template-page-resources .faq-a a:hover { color: var(--dark-blue); }
.page-template-page-faq .faq-divider,
.page-template-page-audience-taxpayers .faq-divider,
.page-template-page-resources .faq-divider { border: none; border-top: 1px solid rgba(32,54,74,0.08); margin: 36px 0; }

/* Note/callout box */
.faq-note {
  background: var(--blue-tint);
  border-left: 4px solid var(--light-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 15px;
  color: var(--dark-blue);
}
.faq-note strong { font-family: 'Raleway', sans-serif; }


/* SGO LIST */
.sgo-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.sgo-list li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 16px;
}
.sgo-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--light-blue); flex-shrink: 0; margin-top: 8px;
}
.sgo-list li a { color: var(--light-blue); text-decoration: underline; }
.sgo-list li a:hover { color: var(--dark-blue); }


/* ===== resources.html ===== */

/* PAGE HERO */

/* FILTER NAV */
.filter-bar{display:flex;gap:10px;flex-wrap:wrap;}
.filter-btn{font-family:'Raleway',sans-serif;font-weight:700;font-size:13px;padding:10px 20px;border-radius:var(--radius-pill);border:2px solid rgba(32,54,74,0.1);background:var(--white);color:var(--grey-light);cursor:pointer;transition:all 0.2s;}
.filter-btn:hover,.filter-btn.active{background:var(--dark-blue);color:var(--white);border-color:var(--dark-blue);}
.jump-link{display:inline-flex;align-items:center;font-family:'Raleway',sans-serif;font-weight:700;font-size:13px;padding:10px 20px;border-radius:var(--radius-pill);border:2px solid rgba(32,54,74,0.1);background:var(--white);color:var(--grey-light);transition:all 0.2s;text-decoration:none;}
.jump-link:hover,.jump-link:focus{background:var(--dark-blue);color:var(--white);border-color:var(--dark-blue);}

/* FSTC Law callout — Congress section banner linking to the full law text */
.law-callout{display:flex;align-items:center;gap:22px;background:var(--dark-blue);border-radius:16px;padding:24px 32px;margin-bottom:36px;text-decoration:none;transition:transform 0.2s,box-shadow 0.2s;}
.law-callout:hover{transform:translateY(-2px);box-shadow:0 16px 40px rgba(32,54,74,0.18);}
.law-callout-icon{display:flex;flex-shrink:0;color:var(--yellow);}
.law-callout-icon svg{width:30px;height:30px;}
.law-callout-text{display:flex;flex-direction:column;gap:4px;flex:1;}
.law-callout-text strong{font-family:'Raleway',sans-serif;font-size:clamp(18px,2vw,22px);font-weight:800;color:var(--white);letter-spacing:-0.01em;}
.law-callout-text span{font-size:15px;line-height:1.6;color:rgba(255,255,255,0.7);}
.law-callout-cta{display:inline-flex;align-items:center;gap:8px;flex-shrink:0;font-family:'Raleway',sans-serif;font-weight:700;font-size:14px;color:var(--yellow);white-space:nowrap;}
.law-callout-cta svg{width:18px;height:18px;}
@media (max-width:768px){.law-callout{flex-direction:column;align-items:flex-start;gap:16px;padding:24px;}}

/* SECTION HEADER */
.page-template-page-home .section-eyebrow{font-family:'Raleway',sans-serif;font-size:13px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;margin-bottom:14px;color:var(--light-blue);}
.page-template-page-home .map-section .section-eyebrow{color:var(--yellow);}
.page-template-page-home .map-section .section-header p{color:rgba(255,255,255,0.55);}
.page-template-page-home .section-header{margin-bottom:48px;}
.page-template-page-home .section-header h2{font-size:clamp(26px,3.5vw,36px);font-weight:800;margin-bottom:12px;letter-spacing:-0.01em;}
.page-template-page-home .section-header p{font-size:17px;color:var(--grey-light);}
.page-template-page-resources .section-eyebrow{font-family:'Raleway',sans-serif;font-size:13px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;margin-bottom:14px;color:var(--light-blue);}
.page-template-page-resources .section-header{margin-bottom:48px;}
.page-template-page-resources .section-header h2{font-size:clamp(26px,3.5vw,36px);font-weight:800;margin-bottom:12px;letter-spacing:-0.01em;}
.page-template-page-resources .section-header p{font-size:17px;color:var(--grey-light);}

/* RESOURCE GRID */
.page-template-page-resources .resources-section{padding:80px 0;}
.page-template-page-resources .resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.page-template-page-resources .resource-card{background:var(--white);border-radius:var(--radius);padding:32px 28px;border:1px solid rgba(32,54,74,0.07);transition:all 0.3s;display:flex;flex-direction:column;}
.page-template-page-resources .resource-card:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(32,54,74,0.07);border-color:rgba(68,153,199,0.2);}
.page-template-page-resources .rc-type{display:inline-flex;align-items:center;gap:8px;font-family:'Raleway',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;padding:5px 14px;border-radius:var(--radius-pill);margin-bottom:18px;width:fit-content;}
.page-template-page-resources .rc-type.official{background:rgba(32,54,74,0.07);color:var(--dark-blue);}
.page-template-page-resources .rc-type.coalition{background:var(--blue-tint);color:var(--light-blue);}
.page-template-page-resources .rc-type.guide{background:var(--yellow-light);color:#C48C00;}
.page-template-page-resources .rc-type.press{background:rgba(210,35,51,0.06);color:var(--red);}
.page-template-page-resources .rc-type.faq{background:rgba(32,54,74,0.05);color:var(--dark-blue);}
.page-template-page-resources .rc-type svg{width:12px;height:12px;}
.page-template-page-resources .resource-card h3{font-size:18px;font-weight:700;margin-bottom:10px;line-height:1.3;}
.page-template-page-resources .resource-card p{font-size:14px;color:var(--grey-light);line-height:1.65;flex:1;margin-bottom:20px;}
.page-template-page-resources .rc-meta{display:flex;align-items:center;justify-content:space-between;margin-top:auto;}
.page-template-page-resources .rc-date{font-family:'Raleway',sans-serif;font-size:12px;color:var(--grey-muted);font-weight:500;}
.page-template-page-resources .rc-link{font-family:'Raleway',sans-serif;font-weight:700;font-size:13px;color:var(--dark-blue);display:inline-flex;align-items:center;gap:6px;transition:color 0.2s;}
.page-template-page-resources .rc-link:hover{color:var(--light-blue);}
.page-template-page-resources .rc-link svg{width:14px;height:14px;}

/* Optional video embed at the top of a resource card (16:9, bleeds to card edges).
   Card padding is 32px 28px in every context that renders .resource-card. */
.rc-video{position:relative;width:calc(100% + 56px);margin:-32px -28px 22px;aspect-ratio:16/9;background:#000;border-radius:var(--radius) var(--radius) 0 0;overflow:hidden;}
.rc-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block;}
@supports not (aspect-ratio:16/9){.rc-video{height:0;padding-bottom:56.25%;}}

/* FEATURED DOC */
.featured-doc{background:var(--dark-blue);border-radius:var(--radius);padding:48px;margin-bottom:48px;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;}
.featured-doc h3{color:var(--white);font-size:26px;font-weight:800;margin-bottom:12px;}
.featured-doc p{color:rgba(255,255,255,0.6);font-size:16px;line-height:1.7;}
.featured-doc .badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);border-radius:var(--radius-pill);padding:6px 16px;font-family:'Raleway',sans-serif;font-size:12px;font-weight:700;color:rgba(255,255,255,0.6);margin-bottom:16px;}
.featured-doc .badge svg{width:13px;height:13px;}

/* EMAIL SECTION */
.email-section{padding:80px 0;background:linear-gradient(145deg,var(--blue-tint) 0%,var(--yellow-light) 100%);position:relative;}
.email-section::before{content:'';position:absolute;inset:0;background:var(--paper-texture);background-size:300px 300px;opacity:0.6;pointer-events:none;}
.email-inner{max-width:580px;margin:0 auto;text-align:center;position:relative;z-index:1;}
.email-inner h2{font-size:clamp(26px,3.5vw,36px);font-weight:800;margin-bottom:12px;}
.email-inner>p{font-size:17px;color:var(--grey-light);margin-bottom:32px;}
.email-form{display:grid;grid-template-columns:1fr auto;gap:10px;}
.form-input{font-family:'Raleway',sans-serif;font-size:15px;font-weight:500;padding:15px 20px;border:2px solid rgba(32,54,74,0.08);border-radius:var(--radius-sm);background:var(--white);color:var(--dark-blue);outline:none;transition:border-color 0.2s;}
.form-input:focus{border-color:var(--light-blue);}
.form-input::placeholder{color:#b0b0b0;}
.btn-submit{font-family:'Raleway',sans-serif;font-weight:700;font-size:15px;padding:15px 28px;background:var(--dark-blue);color:var(--white);border:none;border-radius:var(--radius-sm);cursor:pointer;transition:background 0.2s;white-space:nowrap;}
.btn-submit:hover{background:var(--light-blue);}


@media(max-width:1024px){.resource-grid{grid-template-columns:1fr 1fr;}.featured-doc{grid-template-columns:1fr;}.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:768px){.nav-links{display:none;}.mobile-toggle{display:flex;}.resource-grid{grid-template-columns:1fr;}.email-form{grid-template-columns:1fr;}.footer-grid{grid-template-columns:1fr;gap:28px;}.footer-bottom{flex-direction:column;gap:16px;text-align:center;}}

/* ===== states/al.html ===== */

/* HERO */
.hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:48px;align-items:center;}
.hero-breadcrumb{font-family:'Raleway',sans-serif;font-size:13px;font-weight:600;color:rgba(255,255,255,0.4);margin-bottom:14px;display:flex;align-items:center;gap:8px;}
.hero-breadcrumb a{color:rgba(255,255,255,0.4);}
.hero-breadcrumb a:hover{color:rgba(255,255,255,0.8);}
.hero-breadcrumb span{color:rgba(255,255,255,0.2);}
.page-title{font-size:clamp(28px,4vw,48px);font-weight:800;color:var(--white);margin-bottom:0;letter-spacing:-0.02em;line-height:1.1;}

/* GOVERNOR CARD */
.gov-card{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius);padding:28px 32px;display:flex;gap:24px;align-items:center;min-width:280px;}
.gov-photo-placeholder{width:80px;height:80px;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;flex-shrink:0;gap:4px;}
.gov-photo-placeholder .photo-label{font-family:'Raleway',sans-serif;font-size:9px;font-weight:700;color:#999;letter-spacing:0.05em;text-transform:uppercase;}
.gov-photo-placeholder img{width:80px;height:80px;border-radius:50%;object-fit:cover;}
.gov-info{min-width:0;overflow:hidden;}
.gov-name{font-family:'Raleway',sans-serif;font-weight:800;font-size:18px;color:var(--white);margin-bottom:6px;}
.gov-title{font-family:'Raleway',sans-serif;font-size:12px;color:rgba(255,255,255,0.45);margin-bottom:10px;}
.party-pill{display:inline-block;font-family:'Raleway',sans-serif;font-size:11px;font-weight:700;padding:4px 12px;border-radius:var(--radius-pill);letter-spacing:0.04em;}
.party-pill.republican{background:rgba(210,35,51,0.2);color:#ff8a8a;}
.party-pill.democrat{background:rgba(68,153,199,0.2);color:#8cc8e8;}

/* JUMP NAV */
.jump-nav{background:var(--white);border-bottom:2px solid rgba(32,54,74,0.06);position:sticky;top:88px;z-index:90;}
.jump-nav-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;gap:0;overflow-x:auto;}
.jump-tab{flex-shrink:0;font-family:'Raleway',sans-serif;font-weight:700;font-size:13px;color:var(--grey-muted);padding:16px 20px;border-bottom:3px solid transparent;transition:all 0.2s;white-space:nowrap;text-decoration:none;}
.jump-tab:hover{color:var(--dark-blue);border-bottom-color:rgba(32,54,74,0.2);}
.jump-tab.active{color:var(--dark-blue);border-bottom-color:var(--dark-blue);}

/* MAIN CONTENT */
.state-content{padding:64px 0;}

/* ADDITIONAL CONTENT (editor field under all blocks) */
.state-extra{font-size:15px;color:var(--grey);line-height:1.7;}
.state-extra > *:first-child{margin-top:0;}
.state-extra > *:last-child{margin-bottom:0;}
.state-extra h2,.state-extra h3,.state-extra h4,.state-extra h5,.state-extra h6{margin:32px 0 12px;}
.state-extra h2{font-size:24px;}
.state-extra h3{font-size:20px;}
.state-extra h4{font-size:16px;}
.state-extra p{margin:0 0 16px;}
.state-extra ul,.state-extra ol{margin:0 0 16px;padding-left:24px;}
.state-extra ul{list-style:disc;}
.state-extra ol{list-style:decimal;}
.state-extra li{margin-bottom:8px;}
.state-extra li:last-child{margin-bottom:0;}
.state-extra li > ul,.state-extra li > ol{margin:8px 0 0;}
.state-extra a{color:var(--light-blue);font-weight:600;}
.state-extra a:hover{color:var(--dark-blue);}
.state-extra strong{color:var(--dark-blue);}
.content-grid{display:grid;grid-template-columns:1fr 360px;gap:56px;align-items:start;}
.main-col{min-width:0;}
.sidebar{min-width:0;}
.section-block{margin-bottom:56px;}
.section-block:last-child{margin-bottom:0;}

/* GOVERNOR STATUS BLOCK */
.gov-status-block{border-radius:var(--radius);overflow:hidden;margin-bottom:40px;}
.gsb-header{display:flex;gap:20px;align-items:flex-start;padding:24px;max-width:100%;}
.gsb-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.gsb-header>div{min-width:0;}
.gsb-icon svg{width:22px;height:22px;}
.gsb-label{font-family:'Raleway',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;margin-bottom:6px;}
.gsb-title{font-family:'Raleway',sans-serif;font-size:16px;font-weight:700;line-height:1.4;overflow-wrap:break-word;word-break:break-word;}
.gsb-body{padding:0 24px 24px;font-size:15px;color:var(--grey-light);line-height:1.75;overflow-wrap:break-word;word-break:break-word;}
.gsb-body p+p{margin-top:12px;}

.gov-status-block.approved{background:var(--green-light);border:1px solid rgba(34,168,90,0.2);}
.gov-status-block.approved .gsb-icon{background:rgba(34,168,90,0.15);color:var(--green);}
.gov-status-block.approved .gsb-label{color:#1a6e3b;}
.gov-status-block.approved .gsb-title{color:#1a5c31;}

.gov-status-block.legislature{background:var(--amber-light);border:1px solid rgba(217,119,6,0.2);}
.gov-status-block.legislature .gsb-icon{background:rgba(217,119,6,0.12);color:var(--amber);}
.gov-status-block.legislature .gsb-label{color:var(--amber);}
.gov-status-block.legislature .gsb-title{color:#92400e;}

.gov-status-block.no-decision{background:var(--cream);border:1px solid rgba(32,54,74,0.1);}
.gov-status-block.no-decision .gsb-icon{background:rgba(32,54,74,0.07);color:var(--grey-muted);}
.gov-status-block.no-decision .gsb-label{color:var(--grey-muted);}
.gov-status-block.no-decision .gsb-title{color:var(--dark-blue);}

/* WHAT THIS MEANS */
.what-this-means{border-radius:var(--radius-sm);padding:24px 20px;margin-bottom:40px;border-left:4px solid;max-width:100%;}
.wtm-eyebrow{font-family:'Raleway',sans-serif;font-size:12px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;margin-bottom:10px;}
.what-this-means p,.what-this-means li{font-size:15px;color:var(--grey-light);line-height:1.75;overflow-wrap:break-word;word-break:break-word;}
.what-this-means p{padding-bottom:8px;}
.what-this-means ul,.what-this-means ol{padding-left:20px;}
.what-this-means.approved{background:rgba(34,168,90,0.05);border-color:var(--green);}
.what-this-means.approved .wtm-eyebrow{color:var(--green);}
.what-this-means.legislature{background:var(--amber-light);border-color:var(--amber);}
.what-this-means.legislature .wtm-eyebrow{color:var(--amber);}
.what-this-means.no-decision{background:var(--blue-tint);border-color:var(--light-blue);}
.what-this-means.no-decision .wtm-eyebrow{color:var(--light-blue);}

/* SGO SECTION */
.sgo-section{margin-bottom:40px;}
.sgo-table-header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:20px;flex-wrap:wrap;}
.sgo-table-header>div{min-width:0;overflow:hidden;}
.sgo-table-header h3{font-size:20px;font-weight:800;margin-bottom:4px;}
.sgo-table-header p{font-size:14px;color:var(--grey-muted);}
.sgo-status-badge{display:inline-flex;align-items:center;font-family:'Raleway',sans-serif;font-size:12px;font-weight:700;padding:6px 14px;border-radius:var(--radius-pill);white-space:nowrap;}
.sgo-submitted{background:var(--green-light);color:#1a6e3b;}
.sgo-development{background:var(--yellow-light);color:#7a5a00;}
.sgo-pending{background:var(--blue-tint);color:var(--light-blue);}
.sgo-none{background:rgba(32,54,74,0.06);color:var(--grey-muted);}
.table-wrap{border-radius:var(--radius-sm);border:1px solid rgba(32,54,74,0.08);overflow:hidden;}
.sgo-table{width:100%;border-collapse:collapse;font-size:14px;}
.sgo-table thead tr{background:var(--dark-blue);}
.sgo-table th{font-family:'Raleway',sans-serif;font-weight:700;font-size:12px;color:rgba(255,255,255,0.7);letter-spacing:0.06em;text-transform:uppercase;padding:14px 18px;text-align:left;white-space:nowrap;}
.sgo-table tbody tr{border-bottom:1px solid rgba(32,54,74,0.06);transition:background 0.15s;}
.sgo-table tbody tr:last-child{border-bottom:none;}
.sgo-table tbody tr:hover{background:var(--cream);}
.sgo-table td{padding:16px 18px;color:var(--grey);line-height:1.5;}
.sgo-table td.sgo-name{font-weight:600;color:var(--dark-blue);}
.sgo-table td.sgo-table-empty{text-align:center;font-family:'Raleway',sans-serif;font-size:14px;color:var(--grey-muted);font-style:italic;padding:32px 18px;}
.sgo-interested{padding:20px 0 4px;font-size:14px;color:var(--grey);line-height:1.7;}
.sgo-interested p{margin-bottom:10px;}
.sgo-interested-list{margin:0 0 10px 20px;padding:0;}
.sgo-interested-list li{margin-bottom:6px;}
.sgo-interested-list a{color:var(--light-blue);font-weight:600;}
.table-link{font-family:'Raleway',sans-serif;font-weight:700;font-size:13px;color:var(--light-blue);display:inline-flex;align-items:center;gap:5px;}
.table-link svg{width:12px;height:12px;}
.sgo-empty-row td{padding:28px 18px;text-align:center;color:var(--grey-muted);font-family:'Raleway',sans-serif;font-size:14px;font-style:italic;}
.sgo-self-submit{background:var(--blue-tint);border-radius:0 0 var(--radius-sm) var(--radius-sm);padding:14px 18px;display:flex;align-items:center;gap:12px;font-size:14px;color:var(--grey-light);}
.sgo-self-submit>p{min-width:0;overflow-wrap:break-word;word-break:break-word;}
.sgo-self-submit svg{width:18px;height:18px;color:var(--light-blue);flex-shrink:0;}
.sgo-self-submit a{font-weight:700;}

/* RELATED NEWS */
.news-section{margin-bottom:0;}
.news-section h3{font-size:20px;font-weight:800;margin-bottom:20px;}
.news-empty{background:var(--cream);border-radius:var(--radius-sm);padding:32px;text-align:center;border:2px dashed rgba(32,54,74,0.1);}
.news-empty p{font-family:'Raleway',sans-serif;font-size:14px;color:var(--grey-muted);}
.news-item{display:flex;gap:16px;padding:16px 0;border-bottom:1px solid rgba(32,54,74,0.07);align-items:flex-start;}
.news-item:last-child{border-bottom:none;}
.news-tag{flex-shrink:0;font-family:'Raleway',sans-serif;font-size:10px;font-weight:700;padding:3px 10px;border-radius:var(--radius-pill);background:var(--blue-tint);color:var(--light-blue);letter-spacing:0.04em;text-transform:uppercase;margin-top:3px;}
.news-item-text{min-width:0;overflow-wrap:break-word;word-break:break-word;}
.news-item-text h4{font-size:15px;font-weight:700;margin-bottom:4px;}
.news-item-text p{font-size:13px;color:var(--grey-muted);}

/* State News & Resources — styled as resource cards (mirrors the Resources page) */
.state-template-default .news-section .resource-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.state-template-default .news-section .resource-card{background:var(--white);border-radius:var(--radius);padding:32px 28px;border:1px solid rgba(32,54,74,0.07);transition:all 0.3s;display:flex;flex-direction:column;}
.state-template-default .news-section .resource-card:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(32,54,74,0.07);border-color:rgba(68,153,199,0.2);}
.state-template-default .news-section .rc-type{display:inline-flex;align-items:center;gap:8px;font-family:'Raleway',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;padding:5px 14px;border-radius:var(--radius-pill);margin-bottom:18px;width:fit-content;}
.state-template-default .news-section .rc-type.official{background:rgba(32,54,74,0.07);color:var(--dark-blue);}
.state-template-default .news-section .rc-type.coalition{background:var(--blue-tint);color:var(--light-blue);}
.state-template-default .news-section .rc-type.guide{background:var(--yellow-light);color:#C48C00;}
.state-template-default .news-section .rc-type.press{background:rgba(210,35,51,0.06);color:var(--red);}
.state-template-default .news-section .rc-type.faq{background:rgba(32,54,74,0.05);color:var(--dark-blue);}
.state-template-default .news-section .rc-type svg{width:12px;height:12px;}
.state-template-default .news-section .resource-card h3{font-size:18px;font-weight:700;margin-bottom:10px;line-height:1.3;}
.state-template-default .news-section .resource-card p{font-size:14px;color:var(--grey-light);line-height:1.65;flex:1;margin-bottom:20px;}
.state-template-default .news-section .rc-meta{display:flex;align-items:center;justify-content:space-between;margin-top:auto;gap:12px;}
.state-template-default .news-section .rc-date{font-family:'Raleway',sans-serif;font-size:12px;color:var(--grey-muted);font-weight:500;}
.state-template-default .news-section .rc-link{font-family:'Raleway',sans-serif;font-weight:700;font-size:13px;color:var(--dark-blue);display:inline-flex;align-items:center;gap:6px;transition:color 0.2s;flex-shrink:0;}
.state-template-default .news-section .rc-link:hover{color:var(--light-blue);}
.state-template-default .news-section .rc-link svg{width:14px;height:14px;}
@media(max-width:768px){.state-template-default .news-section .resource-grid{grid-template-columns:1fr;}}

/* SIDEBAR */
.sidebar-card{background:var(--cream);border-radius:var(--radius);padding:28px;margin-bottom:20px;}
.sidebar-card h4{font-family:'Raleway',sans-serif;font-size:14px;font-weight:800;margin-bottom:16px;color:var(--dark-blue);}
.sidebar-card p{font-size:14px;color:var(--grey-light);line-height:1.65;margin-bottom:14px;}
.sidebar-card a{font-family:'Raleway',sans-serif;font-size:13px;font-weight:700;}
.key-dates{}
.kd-item{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid rgba(32,54,74,0.07);align-items:flex-start;}
.kd-item:last-child{border-bottom:none;padding-bottom:0;}
.kd-date{font-family:'Raleway',sans-serif;font-size:12px;font-weight:700;color:var(--light-blue);width:72px;flex-shrink:0;padding-top:2px;}
.kd-text{font-size:13px;color:var(--grey-light);line-height:1.5;}

/* CONTACT CTA SECTION */
.contact-cta{padding:72px 0;}
.contact-cta.thank{background:var(--green-light);}
.contact-cta.encourage{background:var(--dark-blue);}
.contact-inner{display:grid;grid-template-columns:1fr 380px;gap:56px;align-items:start;}
.state-template-default .contact-inner{display:grid;grid-template-columns:1fr 380px;gap:56px;align-items:start;}
.contact-content{min-width:0;}
.contact-card{min-width:0;background:var(--white);border-radius:var(--radius);padding:32px;}
.contact-eyebrow{font-family:'Raleway',sans-serif;font-size:12px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;margin-bottom:14px;}
.contact-cta.thank .contact-eyebrow{color:var(--green);}
.contact-cta.encourage .contact-eyebrow{color:rgba(255,255,255,0.5);}
.contact-cta.thank h2{color:#1a5c31;font-size:1.5em;font-weight:bold;}
.contact-cta.encourage h2{color:var(--white);}
.contact-cta.thank p{color:#2d6b45;font-size:16px;line-height:1.7;margin-top:12px;}
.contact-cta.encourage p{color:rgba(255,255,255,0.65);font-size:16px;line-height:1.7;margin-top:12px;}
.cta-talking-points{margin-top:16px;padding-left:20px;}
.cta-talking-points li{color:rgba(255,255,255,0.65);font-size:15px;line-height:1.7;margin-bottom:10px;}
.cta-talking-points li:last-child{margin-bottom:0;}
.talking-points{margin-top:28px;background:rgba(0,0,0,0.05);border-radius:var(--radius-sm);padding:20px 24px;}
.contact-cta.encourage .talking-points{background:rgba(255,255,255,0.05);}
.tp-header{display:flex;align-items:center;gap:8px;font-family:'Raleway',sans-serif;font-size:12px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;margin-bottom:14px;}
.contact-cta.thank .tp-header{color:#1a6e3b;}
.contact-cta.encourage .tp-header{color:rgba(255,255,255,0.4);}
.tp-header svg{width:16px;height:16px;}
.talking-points ul{padding-left:18px;display:flex;flex-direction:column;gap:8px;}
.contact-cta.thank .talking-points li{color:#2d6b45;font-size:14px;line-height:1.6;}
.contact-cta.encourage .talking-points li{color:rgba(255,255,255,0.6);font-size:14px;line-height:1.6;}
/* .contact-card defined above */
.cc-label{font-family:'Raleway',sans-serif;font-size:11px;font-weight:700;color:var(--grey-muted);letter-spacing:0.08em;text-transform:uppercase;margin-bottom:10px;}
.contact-card h3{font-size:20px;font-weight:800;color:var(--dark-blue);margin-bottom:20px;}
.cc-details{display:flex;flex-direction:column;gap:12px;margin-bottom:24px;}
.cc-row{display:flex;gap:12px;align-items:flex-start;font-size:14px;color:var(--grey-light);overflow-wrap:break-word;word-break:break-word;}
.cc-row svg{width:16px;height:16px;flex-shrink:0;color:var(--grey-muted);margin-top:2px;}
.cc-row a{color:var(--light-blue);font-weight:600;overflow-wrap:break-word;word-break:break-all;}
.cc-address{line-height:1.5;word-break:normal;overflow-wrap:break-word;}
.btn-contact{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:15px;background:var(--dark-blue);color:var(--white);border-radius:var(--radius-pill);font-family:'Raleway',sans-serif;font-weight:700;font-size:14px;transition:background 0.2s;}
.btn-contact:hover{background:var(--light-blue);color:var(--white);}
.btn-contact svg{width:16px;height:16px;}

/* FOOTER AUDIENCE LINKS */
.audience-footer{background:var(--cream);padding:40px 0;border-top:1px solid rgba(32,54,74,0.07);}
.audience-footer-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}
.af-label{font-family:'Raleway',sans-serif;font-size:13px;font-weight:700;color:var(--grey-muted);letter-spacing:0.06em;text-transform:uppercase;}
.af-links{display:flex;gap:8px;flex-wrap:wrap;}
.af-links a{font-family:'Raleway',sans-serif;font-size:13px;font-weight:700;color:var(--dark-blue);padding:8px 16px;border-radius:var(--radius-pill);border:2px solid rgba(32,54,74,0.1);transition:all 0.2s;}
.af-links a:hover{border-color:var(--light-blue);color:var(--light-blue);}
.af-links a.cta{background:var(--dark-blue);color:var(--white);border-color:var(--dark-blue);}
.af-links a.cta:hover{background:var(--light-blue);border-color:var(--light-blue);}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;}
  .content-grid{grid-template-columns:1fr;}
  .sidebar{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
  .contact-inner,
  .state-template-default .contact-inner{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
  .nav-links{display:none;}
  .mobile-toggle{display:flex;}
  .page-title{font-size:26px;line-height:1.15;}
  .hero-inner{grid-template-columns:1fr;}
  .gov-card{flex-direction:row;align-items:center;gap:14px;min-width:0;width:100%;}
  .gov-name{font-size:15px;}
  .jump-tab{padding:13px 10px;font-size:11px;}
  .container{padding:0 16px;}
  .state-content{padding:40px 0;}
  .content-grid{grid-template-columns:1fr;gap:28px;}
  .sidebar{grid-template-columns:1fr;}
  .sidebar-card{padding:18px 16px;}
  /* Status blocks */
  .gsb-header{flex-direction:column;gap:12px;padding:18px 16px;}
  .gsb-body{padding:0 16px 18px;font-size:14px;line-height:1.65;}
  .gsb-body p{word-wrap:break-word;overflow-wrap:break-word;}
  /* What this means */
  .what-this-means{padding:18px 16px;}
  .what-this-means p,.what-this-means li{font-size:14px;word-wrap:break-word;overflow-wrap:break-word;}
  /* SGO table */
  .sgo-table-header{flex-direction:column;gap:10px;align-items:flex-start;}
  .table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;}
  .sgo-table{min-width:520px;}
  .sgo-table thead th:last-child,.sgo-table td:last-child{display:none;}
  .sgo-table td.sgo-name{font-size:13px;}
  .sgo-self-submit{flex-direction:column;gap:8px;font-size:13px;padding:12px 14px;}
  /* Contact section */
  .contact-cta{padding:48px 0;}
  .contact-inner{grid-template-columns:1fr;gap:28px;}
  .contact-content h2{font-size:22px;}
  .contact-card{padding:22px 18px;}
  .talking-points{padding:14px 16px;}
  .talking-points ul{padding-left:16px;}
  .cc-details{gap:10px;}
  /* Audience footer */
  .audience-footer-inner{flex-direction:column;text-align:center;}
  .af-links{justify-content:center;}
  /* Footer */
  .footer-grid{grid-template-columns:1fr;gap:24px;}
  .footer-bottom{flex-direction:column;gap:12px;text-align:center;}
  /* CTA */
  .cta-strip{padding:48px 0;}
  .cta-strip-inner{flex-direction:column;text-align:center;}
}
/* ── Resources page — hero styles ── */
.page-template-page-resources .page-hero { padding: 140px 0 72px; background: var(--cream) var(--paper-texture); background-size: 300px 300px; }
.page-template-page-resources .page-hero::before { display: none; }
.page-template-page-resources .page-hero .eyebrow { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.page-template-page-resources .page-hero h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.02em; color: #20364a; }
.page-template-page-resources .page-hero p { font-size: 19px; color: var(--grey-light); line-height: 1.7; max-width: 640px; margin-bottom: 40px; }
@media (max-width: 768px) {
  .page-template-page-resources .page-hero { padding: 120px 0 56px; }
}

/* ── About page — hero styles ── */
.page-template-page-about .page-hero { padding: 140px 0 80px; background: var(--dark-blue); position: relative; overflow: hidden; }
.page-template-page-about .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(68,153,199,0.1) 0%, transparent 60%); }
.page-template-page-about .page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-template-page-about .page-hero .eyebrow { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.page-template-page-about .page-hero h1 { font-size: clamp(38px, 5vw, 58px); font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; }
.page-template-page-about .page-hero p { font-size: 20px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 620px; }
@media (max-width: 768px) {
  .page-template-page-about .page-hero { padding: 120px 0 60px; }
  .page-template-page-about .page-hero h1 { font-size: 32px; }
}

/* ── FAQ page — hero styles ── */
.page-template-page-faq .page-hero { background: var(--dark-blue); padding: 140px 0 80px; color: var(--white); }
.page-template-page-faq .page-hero .eyebrow { font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.page-template-page-faq .page-hero h1 { font-size: clamp(36px, 5vw, 56px); color: var(--white); margin-bottom: 20px; }
.page-template-page-faq .page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.7; }

/* ── State pages — hero styles ── */
.state-template-default .page-hero { padding: 140px 0 56px; background: var(--dark-blue); position: relative; overflow: hidden; }
.state-template-default .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 40%, rgba(68,153,199,0.08) 0%, transparent 60%); }
.state-template-default .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.state-template-default .hero-breadcrumb { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.state-template-default .hero-breadcrumb a { color: rgba(255,255,255,0.4); }
.state-template-default .hero-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.state-template-default .hero-breadcrumb span { color: rgba(255,255,255,0.2); }
.state-template-default .page-title { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 0; letter-spacing: -0.02em; line-height: 1.1; }
@media (max-width: 768px) {
  .state-template-default .page-hero { padding: 120px 0 40px; }
  .state-template-default .page-title { font-size: 26px; line-height: 1.15; }
  .state-template-default .hero-inner { grid-template-columns: 1fr; }
}

/* ── Audience page — hero styles ── */
.page-template-page-audience .page-hero,
.page-template-page-audience-governors .page-hero,
.page-template-page-audience-parents .page-hero,
.page-template-page-audience-schools .page-hero,
.page-template-page-audience-sgos .page-hero,
.page-template-page-audience-taxpayers .page-hero { padding: 140px 0 80px; background: var(--cream) var(--paper-texture); background-size: 300px 300px; border-bottom: 1px solid rgba(32,54,74,0.05); }
.page-template-page-audience .page-hero-inner,
.page-template-page-audience-governors .page-hero-inner,
.page-template-page-audience-parents .page-hero-inner,
.page-template-page-audience-schools .page-hero-inner,
.page-template-page-audience-sgos .page-hero-inner,
.page-template-page-audience-taxpayers .page-hero-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.page-template-page-audience .page-hero .eyebrow,
.page-template-page-audience-governors .page-hero .eyebrow,
.page-template-page-audience-parents .page-hero .eyebrow,
.page-template-page-audience-schools .page-hero .eyebrow,
.page-template-page-audience-sgos .page-hero .eyebrow,
.page-template-page-audience-taxpayers .page-hero .eyebrow { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.page-template-page-audience .page-hero h1,
.page-template-page-audience-governors .page-hero h1,
.page-template-page-audience-parents .page-hero h1,
.page-template-page-audience-schools .page-hero h1,
.page-template-page-audience-sgos .page-hero h1,
.page-template-page-audience-taxpayers .page-hero h1 { font-size: clamp(36px, 5vw, 54px); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; color: var(--dark-blue); }
.page-template-page-audience .page-hero p,
.page-template-page-audience-governors .page-hero p,
.page-template-page-audience-parents .page-hero p,
.page-template-page-audience-schools .page-hero p,
.page-template-page-audience-sgos .page-hero p,
.page-template-page-audience-taxpayers .page-hero p { font-size: 19px; color: var(--grey-light); line-height: 1.7; margin-bottom: 0; }
@media (max-width: 768px) {
  .page-template-page-audience .page-hero,
  .page-template-page-audience-governors .page-hero,
  .page-template-page-audience-parents .page-hero,
  .page-template-page-audience-schools .page-hero,
  .page-template-page-audience-sgos .page-hero,
  .page-template-page-audience-taxpayers .page-hero { padding: 120px 0 60px; }
  .page-template-page-audience .page-hero h1,
  .page-template-page-audience-governors .page-hero h1,
  .page-template-page-audience-parents .page-hero h1,
  .page-template-page-audience-schools .page-hero h1,
  .page-template-page-audience-sgos .page-hero h1,
  .page-template-page-audience-taxpayers .page-hero h1 { font-size: 32px; }
}

/* ── FAQ page — map placeholder ── */
.page-template-page-faq .map-placeholder { background: var(--cream); border: 2px dashed rgba(32,54,74,0.15); border-radius: var(--radius); padding: 40px; text-align: center; margin: 24px 0; color: var(--grey-muted); font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600; }
.page-template-page-faq .map-placeholder-key { font-weight: 400; color: var(--grey-muted); font-family: 'Source Serif 4', serif; }

/* ── About page — contact section ── */
.contact-section { padding: 100px 0; background: var(--dark-blue); position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(68,153,199,0.08) 0%, transparent 60%); }
.contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-content h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
.contact-content p { color: rgba(255,255,255,0.55); font-size: 17px; line-height: 1.75; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; gap: 16px; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); padding: 18px 20px; transition: background 0.2s; }
.contact-method:hover { background: rgba(255,255,255,0.07); }
.contact-method-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--yellow); flex-shrink: 0; }
.contact-method-icon svg { width: 18px; height: 18px; }
.contact-method h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-method p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.4; margin: 0; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 40px; }
.contact-form-wrap h3 { font-size: 20px; font-weight: 800; color: var(--dark-blue); margin-bottom: 24px; }
.contact-inner--solo { grid-template-columns: 1fr; }
.contact-inner--solo .contact-methods { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .contact-inner--solo .contact-methods { grid-template-columns: 1fr; } }
.contact-method-body a { color: var(--light-blue); text-decoration: none; }
.contact-method-body a:hover { text-decoration: underline; }
@media (max-width: 768px) { .contact-inner { grid-template-columns: 1fr; gap: 48px; } .contact-form-wrap { padding: 28px 20px; } }

/* ── Captions ── */
.wp-element-caption {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ── Single post ── */
.single-hero { padding: 120px 0 56px; background: var(--cream) var(--paper-texture); background-size: 300px 300px; border-bottom: 1px solid rgba(32,54,74,0.06); }
.single-hero-inner { max-width: 720px; }
.single-eyebrow { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.single-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--dark-blue); line-height: 1.2; }
.single-meta { font-family: 'Source Serif 4', serif; font-size: 18px; color: var(--grey-light); display: flex; align-items: center; justify-content: center; gap: 10px; }
.single-meta-sep { opacity: 0.4; }
.single-body { padding: 72px 0 100px; }
.single-container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.single-featured-image { margin-bottom: 48px; border-radius: var(--radius); overflow: hidden; }
.single-featured-image img { width: 100%; height: auto; display: block; }
.single-content { font-size: 17px; line-height: 1.8; color: var(--grey); }
.single-content h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: var(--dark-blue); margin: 48px 0 16px; letter-spacing: -0.01em; }
.single-content h3 { font-size: 20px; font-weight: 700; color: var(--dark-blue); margin: 36px 0 12px; }
.single-content p { margin-bottom: 24px; }
.single-content ul, .single-content ol { padding-left: 24px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.single-content li { line-height: 1.7; }
.single-content a { color: var(--light-blue); text-decoration: underline; }
.single-content a:hover { color: var(--dark-blue); }
.single-content blockquote { border-left: 4px solid var(--light-blue); margin: 32px 0; padding: 16px 24px; background: var(--blue-tint); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; font-size: 19px; color: var(--dark-blue); quotes: '\201C' '\201D'; }
.single-content blockquote p:first-of-type::before { content: open-quote; }
.single-content blockquote p:last-of-type::after { content: close-quote; }
.single-content blockquote cite { font-family: 'Raleway', sans-serif; font-style: italic; font-size: 15px; font-weight: 700; color: var(--grey-muted); display: block; margin-top: 10px; }
.single-content blockquote cite::before { content: '\2013\00a0'; }
.single-content img { max-width: 100%; border-radius: var(--radius-sm); height: auto; }
.single-footer { margin-top: 64px; padding-top: 32px; border-top: 1px solid rgba(32,54,74,0.08); }
.single-back { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark-blue); display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.single-back:hover { color: var(--light-blue); }
.single-back svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
  .single-hero { padding: 100px 0 40px; }
  .single-body { padding: 48px 0 72px; }
}

/* ============================================
   HOW IT WORKS — INTERIOR PAGE
   ============================================ */
.page-template-page-how-it-works .page-hero { padding: 140px 0 80px; background: var(--dark-blue); position: relative; overflow: hidden; }
.page-template-page-how-it-works .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(68,153,199,0.1) 0%, transparent 60%); }
.page-template-page-how-it-works .page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-template-page-how-it-works .page-hero .eyebrow { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.page-template-page-how-it-works .page-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; }
.page-template-page-how-it-works .page-hero p { font-size: 19px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 680px; }
@media (max-width: 768px) {
  .page-template-page-how-it-works .page-hero { padding: 120px 0 60px; }
  .page-template-page-how-it-works .page-hero h1 { font-size: 32px; }
}

.hiw-flowchart-section { padding: 80px 0 40px; background: #fff; }
.hiw-flowchart-intro { max-width: 760px; margin: 0 auto; font-size: 17px; color: var(--grey-light); line-height: 1.75; text-align: center; padding: 0 0 8px; }

.hiw-steps-section { padding: 80px 0; background: var(--cream); }
.hiw-steps-heading { font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: var(--dark-blue); margin-bottom: 48px; text-align: center; }
.hiw-steps { display: flex; flex-direction: column; gap: 24px; max-width: 800px; margin: 0 auto; }
.hiw-step { background: var(--white); border-radius: 16px; padding: 36px 40px; border: 1px solid rgba(32,54,74,0.07); }
.hiw-step-number { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 12px; color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.hiw-step h3 { font-size: 19px; font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; line-height: 1.4; }
.hiw-step p { font-size: 15px; color: var(--grey-light); line-height: 1.7; margin: 0; }
@media (max-width: 600px) { .hiw-step { padding: 28px 24px; } }

.hiw-optin-section { padding: 0 0 80px; background: var(--cream); }
.hiw-optin-box { max-width: 800px; margin: 0 auto; background: var(--dark-blue); border-radius: 16px; padding: 40px 48px; display: flex; gap: 28px; align-items: flex-start; }
.hiw-optin-box .btn-dark { background: #2d4a63; }
.hiw-optin-box .btn-dark:hover { background: #3a5a76; box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.hiw-optin-box p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.75; margin: 0 0 24px; }
.hiw-optin-icon { flex-shrink: 0; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--yellow); margin-top: 2px; }
.hiw-optin-icon svg { width: 20px; height: 20px; }
.hiw-optin-content { flex: 1; }
@media (max-width: 600px) { .hiw-optin-box { flex-direction: column; gap: 16px; padding: 28px 24px; } }

.hiw-future-section { padding: 80px 0 100px; background: #fff; }
.hiw-future-inner { max-width: 760px; }
.hiw-future-inner .section-eyebrow { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--light-blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.hiw-future-inner h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--dark-blue); margin-bottom: 28px; letter-spacing: -0.02em; }
.hiw-future-body p { font-size: 17px; color: var(--grey-light); line-height: 1.8; margin-bottom: 20px; }
.hiw-future-body p:last-child { margin-bottom: 0; }
