:root {
  --bg: #f8f5ef;
  --surface: #ffffff;
  --surface-soft: #f3efe7;
  --indigo: #1f2a44;
  --green: #1f5b4f;
  --terracotta: #c96a3d;
  --charcoal: #1f2430;
  --muted: #5c667a;
  --line: rgba(31, 36, 48, 0.12);
  --shadow: 0 20px 60px rgba(24, 32, 49, 0.08);
  --shadow-hover: 0 28px 70px rgba(24, 32, 49, 0.12);
  --radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  background: linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
  color: var(--charcoal);
}

a { color: inherit; text-decoration: none; }

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

.page-shell { overflow-x: hidden; }

.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }

/* Skip Link - Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--indigo);
  color: white;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  z-index: 1000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 36, 48, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  display: block;
  font-size: 15px;
}

.brand small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--indigo));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--indigo);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface);
  padding: 80px 32px 32px;
  z-index: 100;
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--charcoal);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  box-shadow: var(--shadow-hover);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary,
.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: white;
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 72px 0 48px;
  align-items: center;
}

.eyebrow,
.section-tag,
.panel-kicker,
.story-type,
.micro-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow {
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.section-tag {
  color: var(--green);
  font-weight: 800;
}

.hero h1,
h2,
h3 {
  margin: 0;
  font-family: 'Source Serif 4', Georgia, serif;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--indigo);
}

.hero-text {
  margin: 22px 0 0;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
}

.stat-item span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.hero-microgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.micro-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.micro-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.micro-card strong {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.hero-photo,
.image-card,
.program-card,
.feature-panel,
.insight-panel,
.story-card,
.involve-card,
.contact-panel {
  background: var(--surface);
  border: 1px solid rgba(31, 36, 48, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-photo:hover,
.image-card:hover,
.program-card:hover,
.story-card:hover,
.involve-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hero-photo {
  border-radius: 30px;
  overflow: hidden;
  min-height: 420px;
}

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

.hero-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-panel {
  border-radius: var(--radius);
  padding: 22px;
  min-height: 160px;
}

.accent-panel {
  background: linear-gradient(135deg, rgba(31, 91, 79, 0.08), rgba(201, 106, 61, 0.08));
}

.stat-panel {
  background: linear-gradient(135deg, rgba(31, 42, 68, 0.08), rgba(31, 91, 79, 0.05));
}

.panel-kicker {
  color: var(--terracotta);
  display: block;
  margin-bottom: 10px;
}

.info-panel p,
.stat-panel p,
.feature-copy p,
.split-copy p,
.contact-copy p,
.section-head p {
  color: var(--muted);
  line-height: 1.8;
}

.stat-panel strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--indigo);
}

/* Legacy Strip */
.legacy-strip {
  padding: 26px 0;
  background: rgba(31, 91, 79, 0.05);
  border-top: 1px solid rgba(31, 91, 79, 0.08);
  border-bottom: 1px solid rgba(31, 91, 79, 0.08);
}

.legacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

/* Section Spacing */
.section-spacing {
  padding: 88px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.narrow {
  max-width: 680px;
}

.section-head h2,
.legacy-grid h2,
.feature-copy h2,
.split-copy h2,
.contact-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-top: 12px;
  color: var(--indigo);
}

/* Card Grids */
.card-grid {
  display: grid;
  gap: 22px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  border-radius: var(--radius);
  padding: 28px;
}

.program-card h3,
.story-body h3,
.involve-card h3,
.checklist-card h3,
.insight-panel h3 {
  font-size: 22px;
  line-height: 1.25;
  color: var(--indigo);
}

.program-card p,
.story-body p,
.involve-card p,
.checklist-card li,
.insight-panel li,
.mini-note {
  color: var(--muted);
  line-height: 1.7;
}

.program-card ul,
.checklist-card ul,
.insight-panel ol {
  padding-left: 18px;
  margin: 16px 0 0;
}

.program-card li {
  margin: 10px 0;
  color: var(--charcoal);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
  color: white;
}

.card-icon.green {
  background: var(--green);
}

.card-icon.indigo {
  background: var(--indigo);
}

.card-icon.terracotta {
  background: var(--terracotta);
}

/* Feature Panel */
.feature-panel {
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 239, 231, 0.94));
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 42, 68, 0.06);
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo);
}

.checklist-card {
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 36, 48, 0.06);
}

.mini-note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(31, 91, 79, 0.06);
  border: 1px solid rgba(31, 91, 79, 0.08);
}

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 700;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--indigo);
}

.text-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Insight Panel - Lightened */
.insight-panel {
  border-radius: var(--radius);
  padding: 30px;
  background: linear-gradient(180deg, rgba(31, 42, 68, 0.94), rgba(31, 91, 79, 0.88));
  color: white;
}

.insight-panel h3 {
  color: white;
  margin-top: 8px;
}

.insight-panel li {
  color: rgba(255, 255, 255, 0.88);
  margin: 12px 0;
}

.insight-panel .panel-kicker {
  color: rgba(255, 255, 255, 0.7);
}

/* Image Panel Grid */
.image-panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 20px;
}

.image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 280px;
}

.image-card.tall {
  min-height: 520px;
}

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

.image-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.image-overlay.dark {
  background: rgba(31, 42, 68, 0.88);
  color: white;
}

.image-overlay strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.image-overlay span {
  font-size: 14px;
  color: var(--muted);
}

.image-overlay.dark span {
  color: rgba(255, 255, 255, 0.8);
}

/* Story Cards */
.story-card,
.involve-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.story-thumb {
  height: 170px;
  overflow: hidden;
}

.story-thumb svg,
.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-body {
  padding: 22px;
}

.story-type {
  color: var(--green);
}

.involve-card {
  padding: 24px;
}

/* Contact Section */
.contact-panel {
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-mini {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(31, 42, 68, 0.05);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 36, 48, 0.12);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 91, 79, 0.15);
}

input:invalid:not(:placeholder-shown),
select:invalid,
textarea:invalid:not(:placeholder-shown) {
  border-color: var(--terracotta);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(31, 42, 68, 0.03));
  border-top: 1px solid rgba(31, 36, 48, 0.1);
  padding: 32px 0 48px;
  margin-top: 20px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-row p,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--indigo);
}

/* Focus States */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

a:focus-visible {
  border-radius: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .mobile-menu-toggle,
  .mobile-nav,
  .hero-actions,
  .contact-form,
  .site-footer {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero,
  .section-spacing,
  .legacy-strip {
    padding: 24px 0 !important;
    page-break-inside: avoid;
  }

  .hero-photo,
  .image-card,
  .program-card,
  .feature-panel,
  .insight-panel,
  .story-card,
  .involve-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    break-inside: avoid;
  }

  a {
    text-decoration: underline !important;
    color: #000 !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .hero,
  .legacy-grid,
  .feature-panel,
  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .three-up,
  .four-up {
    grid-template-columns: 1fr 1fr;
  }

  .image-panel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-card.tall {
    grid-column: span 2;
    min-height: 350px;
  }

  .hero-microgrid,
  .hero-stack {
    grid-template-columns: 1fr;
  }

  .hero-stats-bar {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .main-nav,
  .site-header .btn-outline {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-stats-bar {
    flex-direction: column;
    gap: 16px;
  }

  .stat-item strong {
    font-size: 28px;
  }

  .three-up,
  .four-up,
  .image-panel-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .image-card.tall {
    grid-column: span 1;
    min-height: 280px;
  }

  .footer-row,
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .pill-row {
    justify-content: center;
  }

  .feature-panel {
    padding: 24px;
  }
}

/* Partner section styles */
.partners-wrap {
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
  padding: 64px 0;
  border-radius: 24px;
  margin: 48px auto;
  max-width: 1200px;
}

.partner-grid {
  gap: 32px;
}

.partner-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31, 43, 68, 0.08);
  border: 1px solid rgba(31, 43, 68, 0.08);
  display: flex;
  flex-direction: column;
}

.partner-visual {
  height: 220px;
  overflow: hidden;
}

.partner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-visual img {
  transform: scale(1.05);
}

.partner-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-content h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2b44;
  margin: 0 0 8px 0;
}

.partner-tagline {
  font-size: 0.95rem;
  color: #1f5b4f;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.partner-content > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 16px 0;
}

.partner-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
}

.partner-highlights li {
  font-size: 0.9rem;
  color: #4a5568;
  padding: 6px 0 6px 20px;
  position: relative;
}

.partner-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: #1f5b4f;
  border-radius: 50%;
}

.text-link.external {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.text-link.external::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link.external:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .partners-wrap {
    padding: 40px 20px;
    margin: 32px 16px;
  }

  .partner-visual {
    height: 180px;
  }

  .partner-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-head h2,
  .legacy-grid h2,
  .feature-copy h2,
  .split-copy h2,
  .contact-copy h2 {
    font-size: 1.6rem;
  }

  .stat-item strong {
    font-size: 24px;
  }
}

/* Role Pathways Section */
.role-pathways {
  padding: 64px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.pathways-header {
  text-align: center;
  margin-bottom: 48px;
}

.pathways-header h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.2rem;
  color: #1f2b44;
  margin: 16px 0 12px 0;
}

.pathways-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 500px;
  margin: 0 auto;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pathway-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  border: 2px solid rgba(31, 43, 68, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 43, 68, 0.12);
  border-color: #1f5b4f;
}

.pathway-card.featured {
  border-color: #1f5b4f;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7f5 100%);
}

.pathway-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #c96a3d;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pathway-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pathway-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2b44;
  margin: 0 0 12px 0;
}

.pathway-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 20px 0;
  flex: 1;
}

.pathway-cta {
  font-weight: 700;
  color: #1f5b4f;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.pathway-card:hover .pathway-cta {
  gap: 10px;
}

/* Impact Section */
.impact-strip {
  background: linear-gradient(135deg, #1f5b4f 0%, #2d7a6a 100%);
  padding: 80px 0;
  color: white;
}

.impact-header {
  text-align: center;
  margin-bottom: 48px;
}

.impact-header h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.2rem;
  color: white;
  margin-top: 16px;
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.impact-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

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

.counter-item strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Testimonials Section */
.testimonials-wrap {
  background: #f8faf9;
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31, 43, 68, 0.08);
  display: flex;
  flex-direction: column;
}

.testimonial-card.wide {
  grid-column: span 2;
  flex-direction: row;
}

.testimonial-visual {
  height: 200px;
  overflow: hidden;
}

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

.testimonial-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-card.wide .testimonial-content {
  padding: 32px;
  justify-content: center;
}

.testimonial-content blockquote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1f2b44;
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
  font-style: italic;
}

.testimonial-card.wide .testimonial-content blockquote {
  font-size: 1.2rem;
}

.testimonial-attribution {
  margin-top: auto;
}

.testimonial-attribution strong {
  display: block;
  font-size: 0.95rem;
  color: #1f5b4f;
  margin-bottom: 4px;
}

.testimonial-attribution span {
  font-size: 0.85rem;
  color: #718096;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .pathways-grid {
    grid-template-columns: 1fr;
  }

  .impact-counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .counter-item strong {
    font-size: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.wide {
    grid-column: span 1;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .impact-counters {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .counter-item strong {
    font-size: 2rem;
  }

  .pathway-card {
    padding: 24px;
  }

  .pathways-header h2 {
    font-size: 1.8rem;
  }
}

/* Page Hero (for inner pages) */
.page-hero {
  padding: 80px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.8rem;
  color: #1f2b44;
  margin: 16px 0 20px;
}

.page-hero .lead {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Panel */
.cta-panel {
  background: linear-gradient(135deg, #1f5b4f 0%, #2d7a6a 100%);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Active nav state */
.main-nav a.active {
  color: #1f5b4f;
  font-weight: 700;
}

/* Value Cards */
.value-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(31, 43, 68, 0.06);
  border: 1px solid rgba(31, 43, 68, 0.06);
}

.value-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2b44;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Application Flow */
.application-flow {
  max-width: 900px;
  margin: 0 auto;
}

.flow-step {
  display: none;
}

.flow-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.back-btn {
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  border: none;
  color: #1f5b4f;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
}

.back-btn:hover {
  text-decoration: underline;
}

.application-form {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(31, 43, 68, 0.08);
}

.application-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.application-form legend {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2b44;
  margin-bottom: 20px;
  padding: 0;
}

.apply-pathways .pathway-card {
  cursor: pointer;
  background: white;
  border: 2px solid transparent;
  text-align: left;
}

.apply-pathways .pathway-card:hover {
  border-color: #1f5b4f;
  transform: translateY(-4px);
}

.success-message {
  text-align: center;
  padding: 64px 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(31, 43, 68, 0.08);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #1f5b4f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.success-message h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2rem;
  color: #1f2b44;
  margin-bottom: 16px;
}

.response-time {
  color: #718096;
  margin-bottom: 32px;
}

/* Process List */
.process-list {
  counter-reset: process;
  list-style: none;
  padding: 0;
}

.process-list li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.process-list li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: #1f5b4f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
