/* =============================================================
   THE RENEWED FOUNDATION — THEME CSS
   Brand: Navy #1E3A5A · Gold #C9A96E · Cream #F8F4EE
============================================================= */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #1E3A5A;
  --navy-dark:  #152A42;
  --navy-mid:   #243F63;
  --gold:       #C9A96E;
  --gold-light: #DFC08A;
  --gold-pale:  #F2E8D6;
  --cream:      #F8F4EE;
  --white:      #FFFFFF;
  --text-dark:  #1A2E44;
  --text-mid:   #3D5168;
  --text-light: #6B82A0;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(30,58,90,0.10);
  --shadow-lg:  0 12px 40px rgba(30,58,90,0.18);
  --transition: 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout Helpers ────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-dark   { background: var(--navy); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.section-dark .section-title { color: var(--white); }
.section-dark .eyebrow        { color: var(--gold-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 56px;
}

.section-dark .section-sub { color: rgba(255,255,255,0.62); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ── Navigation ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
}

#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img { width: 40px; height: 40px; object-fit: contain; }
.nav-logo .custom-logo { width: 40px; height: 40px; object-fit: contain; }
.nav-logo-icon { width: 40px; height: 40px; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.15;
}

.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: rgba(201,169,110,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* WordPress nav menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.nav-links li a:hover,
.nav-links li.current-menu-item > a { color: var(--gold-light); }

.nav-links .nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy-dark) !important;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-links .nav-cta:hover { background: var(--gold-light) !important; }

/* WP menu nesting reset */
.nav-links .sub-menu { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ──────────────────────────────────────────────────── */
#hero {
  padding: 0;
  background: var(--navy-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 50%, rgba(201,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(36,63,99,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero-arc {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.10);
  pointer-events: none;
}
.hero-arc::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.07);
}

.hero-inner {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 160px 28px 100px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  gap: 80px;
}

.hero-content { flex: 1; position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-headline em { font-style: normal; color: var(--gold-light); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }

.hero-stat { border-left: 2px solid var(--gold); padding-left: 16px; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }

.hero-logo-col {
  flex: 0 0 auto;
  width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-logo-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 50%;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phoenix-svg { width: 220px; height: 220px; }

/* ── Gap Section ───────────────────────────────────────────── */
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.gap-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.gap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.gap-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 18px;
}

.gap-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; }
.gap-card p  { font-size: 0.93rem; color: var(--text-mid); line-height: 1.7; }

/* ── Approach ──────────────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.approach-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.approach-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.approach-icon {
  width: 52px; height: 52px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.approach-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.approach-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 12px; }
.approach-card p  { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.approach-card em { font-style: italic; color: var(--gold-light); }

/* ── Pathways ──────────────────────────────────────────────── */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 56px;
}

.pathway-step { padding: 40px 28px; position: relative; }
.pathway-step:nth-child(odd)  { background: var(--navy); }
.pathway-step:nth-child(even) { background: var(--navy-mid); }

.pathway-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,169,110,0.20);
  line-height: 1;
  margin-bottom: 20px;
}

.pathway-step h3 { font-size: 1.05rem; color: var(--gold-light); margin-bottom: 10px; }
.pathway-step p  { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.pathway-tag {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Apart ─────────────────────────────────────────────────── */
.apart-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}

.apart-list { display: flex; flex-direction: column; gap: 28px; }

.apart-item { display: flex; gap: 20px; align-items: flex-start; }

.apart-icon {
  flex: 0 0 48px; width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.apart-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.apart-item h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.apart-item p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

.apart-visual {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
}

.apart-visual h3 { font-size: 1.3rem; color: var(--gold-light); margin-bottom: 28px; }

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 8px;
}

.compare-header span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
}
.compare-header span:first-child { color: rgba(255,255,255,0.35); }
.compare-header span:last-child  { color: var(--gold); }

.compare-row { display: flex; flex-direction: column; gap: 0; }

.compare-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 1px;
}

.compare-before, .compare-after {
  padding: 14px 18px;
  font-size: 0.84rem;
  line-height: 1.6;
}
.compare-before { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.45); }
.compare-after  { background: rgba(201,169,110,0.1);  color: rgba(255,255,255,0.82); }

/* ── Barriers ──────────────────────────────────────────────── */
.barriers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.barrier-card {
  border: 1px solid #E8E0D4;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.barrier-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }

.barrier-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.barrier-icon svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.barrier-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.barrier-card p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* ── Mission Timeline ──────────────────────────────────────── */
.mission-timeline {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 56px auto 0;
  position: relative;
}

.mission-timeline::before {
  content: '';
  position: absolute;
  left: 23px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(201,169,110,0.25);
}

.mission-item {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
}

.mission-dot {
  flex: 0 0 48px; width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold);
}

.mission-content { padding-top: 10px; }
.mission-content h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 8px; }
.mission-content p  { font-size: 0.93rem; color: rgba(255,255,255,0.62); line-height: 1.7; }

/* ── Donate ────────────────────────────────────────────────── */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.tier {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.tier:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tier.featured {
  border-color: var(--gold);
  background: var(--navy);
}

.tier.featured::before {
  content: 'Most Impactful';
  position: absolute;
  top: 14px; right: -30px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 42px;
  transform: rotate(45deg);
  transform-origin: center;
}

.tier-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}

.tier-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 20px;
}
.tier.featured .tier-label { color: rgba(255,255,255,0.5); }

.tier-impact { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 28px; }
.tier.featured .tier-impact { color: rgba(255,255,255,0.65); }

.tier-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.tier.featured .tier-icon { background: rgba(201,169,110,0.15); }
.tier-icon svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tier.featured .tier-icon svg { stroke: var(--gold-light); }

.donate-general {
  text-align: center;
  padding: 56px 40px;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.donate-general h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 14px; }
.donate-general p  { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 32px; font-size: 1rem; }

/* ── Partner ───────────────────────────────────────────────── */
.partner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}

.partner-left p { font-size: 0.98rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }

.partner-ways { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.partner-way {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem; color: var(--text-dark); font-weight: 500;
}
.partner-way::before {
  content: '';
  display: block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

.contact-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-card h3 { font-size: 1.4rem; color: var(--gold-light); margin-bottom: 10px; }
.contact-card > p { font-size: 0.92rem; color: rgba(255,255,255,0.55); margin-bottom: 32px; }

/* CF7 form overrides */
.contact-card .wpcf7 input[type="text"],
.contact-card .wpcf7 input[type="email"],
.contact-card .wpcf7 select,
.contact-card .wpcf7 textarea,
.contact-row input,
.contact-row select,
.contact-row textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
  margin-bottom: 12px;
}

.contact-card .wpcf7 input::placeholder,
.contact-card .wpcf7 textarea::placeholder,
.contact-row input::placeholder,
.contact-row textarea::placeholder { color: rgba(255,255,255,0.3); }

.contact-card .wpcf7 input:focus,
.contact-card .wpcf7 textarea:focus,
.contact-row input:focus,
.contact-row select:focus,
.contact-row textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.contact-card .wpcf7 input[type="submit"] {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 14px 32px;
  border-radius: 4px;
}
.contact-card .wpcf7 input[type="submit"]:hover { background: var(--gold-light); }

.contact-row select option { background: var(--navy-dark); }

/* ── Footer ────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

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

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p   { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom a   { color: rgba(201,169,110,0.6); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================================
   INNER PAGE STYLES
============================================================= */

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201,169,110,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .eyebrow { color: var(--gold-light); }

.page-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.page-hero-title em { font-style: normal; color: var(--gold-light); }

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  line-height: 1.7;
}

/* ── Section helpers for inner pages ──────────────────────── */
.section-white { background: var(--white); }

/* ── Two-column content ───────────────────────────────────── */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 36px;
}

.content-two-col h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.content-two-col p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.section-dark .content-two-col h3 { color: var(--gold-light); }
.section-dark .content-two-col p   { color: rgba(255,255,255,0.62); }

/* ── Mission/Vision/Values grid ───────────────────────────── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.mvv-card {
  text-align: center;
  padding: 40px 28px;
}

.mvv-icon {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.mvv-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.mvv-card h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Old vs New Model comparison ──────────────────────────── */
.model-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.model-col {
  border-radius: var(--radius);
  padding: 36px 32px;
}

.model-old { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.model-new { background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.2); }

.model-col h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 24px;
}

.model-items { display: flex; flex-direction: column; gap: 16px; }

.model-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.model-old .model-item { color: rgba(255,255,255,0.45); }
.model-new .model-item { color: rgba(255,255,255,0.8); }

.model-item svg {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.model-old .model-item svg { stroke: rgba(255,100,100,0.5); }
.model-new .model-item svg { stroke: var(--gold); }

/* ── Pathway Detail (expanded program page) ───────────────── */
.pathway-detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.pathway-detail-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.pathway-detail-num {
  flex: 0 0 60px;
  width: 60px; height: 60px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 4px;
}

.pathway-detail-content { flex: 1; }

.pathway-detail-content h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.pathway-detail-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.pathway-examples {
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-top: 8px;
}
.pathway-examples strong { color: var(--navy); }

/* ── Serve grid (Who We Serve) ────────────────────────────── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.serve-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.serve-card h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.serve-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

/* ── Service Detail (services page) ───────────────────────── */
.service-detail {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #E8E0D4;
}

.service-detail:last-of-type { border-bottom: none; }

.service-detail-icon {
  flex: 0 0 60px;
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.service-detail-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.service-detail-content h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-detail-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.service-impact {
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-top: 8px;
}
.service-impact strong { color: var(--navy); }
.service-impact em     { color: var(--gold); font-style: normal; font-weight: 600; }

/* ── Referral Steps ───────────────────────────────────────── */
.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.referral-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.referral-step-num {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}

.referral-step strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.referral-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ── Inner page dark-section partner-left fix ─────────────── */
.section-dark .partner-left p { color: rgba(255,255,255,0.62); }
.section-dark .partner-left .eyebrow { color: var(--gold-light); }

/* ── Scroll fade-in ────────────────────────────────────────── */
.trf-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.trf-fade.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pathways-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .hero-inner       { flex-direction: column; padding: 140px 28px 80px; gap: 48px; }
  .hero-logo-col    { width: 220px; }
  .hero-logo-wrap   { width: 220px; height: 220px; }
  .phoenix-svg      { width: 150px; height: 150px; }

  .gap-grid,
  .approach-grid,
  .barriers-grid,
  .tiers,
  .mvv-grid         { grid-template-columns: 1fr; }

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

  .apart-layout,
  .partner-layout,
  .footer-grid,
  .content-two-col,
  .model-comparison,
  .serve-grid       { grid-template-columns: 1fr; gap: 40px; }

  .page-hero        { padding: 130px 0 60px; }

  .pathway-detail-item { flex-direction: column; gap: 16px; }

  .service-detail   { flex-direction: column; gap: 16px; }

  .nav-links        { display: none; }
  .nav-toggle       { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 24px 28px 32px;
    gap: 20px;
    border-top: 1px solid rgba(201,169,110,0.15);
    z-index: 999;
  }

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

@media (max-width: 540px) {
  .pathways-grid  { grid-template-columns: 1fr; }
  .hero-headline  { font-size: 2.2rem; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
