:root {
  --navy: #1B3A5C;
  --navy-deep: #12283F;
  --cream: #F5F1E8;
  --paper: #FBF9F5;
  --ink: #22303F;
  --ink-soft: #56636F;
  --gold: #B8935F;
  --border: #E4DFD3;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, .serif {
  font-family: 'Source Serif 4', serif;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.2;
}

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: 'Source Serif 4', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.2px;
}

nav ul { list-style: none; display: flex; gap: 32px; align-items: center; }
nav a { font-size: 14.5px; font-weight: 500; color: var(--ink); }
nav a.active { color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 4px; }
nav a:hover { color: var(--navy); }

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, opacity 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn:hover { opacity: 0.88; }
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-ghost { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-cream { background: var(--cream); color: var(--navy-deep); }
.nav-cta { white-space: nowrap; }

/* ---------- Page header band (non-home pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 96px 24px 104px;
  text-align: center;
}

.page-hero .eyebrow { justify-content: center; display: flex; }
.page-hero h1 { color: #FFFFFF; font-size: 38px; margin-bottom: 20px; }
.page-hero p { color: #DCE4EA; max-width: 56ch; margin: 0 auto; font-size: 16px; }

/* ---------- Hero (home) ---------- */
.hero { background: var(--navy); color: var(--cream); padding: 112px 24px 120px; position: relative; overflow: hidden; }
.hero-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; display: block;
}

.hero h1 { font-size: 46px; color: #FFFFFF; margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { font-size: 17px; color: #DCE4EA; max-width: 46ch; margin-bottom: 40px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-note { font-size: 13.5px; color: #B7C4CE; }

.hero-card { background: var(--cream); border-radius: 16px; padding: 36px; color: var(--navy-deep); }
.hero-card .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 10px; }
.stat-num { font-family: 'Source Serif 4', serif; font-size: 30px; font-weight: 600; color: var(--navy); line-height: 1; }
.stat-label { font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }
.hero-card-title { font-size: 13px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero-card hr { border: none; border-top: 1px solid rgba(27,58,92,0.12); margin: 28px 0; }
.hero-card blockquote { font-family: 'Source Serif 4', serif; font-style: italic; font-size: 15.5px; color: var(--navy-deep); line-height: 1.6; }
.hero-card cite { display: block; font-style: normal; font-family: 'Inter', sans-serif; font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }

/* ---------- Sections ---------- */
section { padding: 120px 24px; }
.section-head { max-width: 640px; margin: 0 auto 72px; text-align: center; }
.section-head .eyebrow { color: var(--navy); text-align: center; }
.section-head h2 { font-size: 32px; line-height: 1.3; }
.section-head p { color: var(--ink-soft); margin-top: 18px; font-size: 15.5px; line-height: 1.7; }

/* ---------- Steps ---------- */
.steps-section { background: var(--cream); }
.step-path {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  max-width: 1120px; margin: 0 auto 16px; position: relative;
}
.step-path::before {
  content: ""; position: absolute; top: 21px; left: 8.3%; right: 8.3%; height: 2px;
  background: repeating-linear-gradient(to right, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 12px; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--cream);
  font-family: 'Source Serif 4', serif; font-size: 17px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.step-title { font-size: 13.5px; font-weight: 600; color: var(--navy-deep); margin-bottom: 8px; }
.step-desc { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.steps-footnote { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 48px; }

/* ---------- Step detail cards (program page) ---------- */
.step-detail {
  display: grid; grid-template-columns: 64px 1fr; gap: 28px;
  padding: 40px 0; border-bottom: 1px solid var(--border);
}
.step-detail:last-child { border-bottom: none; }
.step-detail .step-num { margin: 0; }
.step-detail h3 { font-size: 18px; margin-bottom: 12px; }
.step-detail p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Includes / cards ---------- */
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1120px; margin: 0 auto; }
.card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 14px; padding: 40px 36px; }
.card h3 { font-size: 17px; margin-bottom: 14px; }
.card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.card .icon-dot {
  width: 34px; height: 34px; border-radius: 8px; background: var(--cream); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Source Serif 4', serif; font-weight: 600; margin-bottom: 20px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1120px; margin: 0 auto; }
.t-card { background: var(--paper); border: 1px solid var(--border); border-radius: 14px; padding: 34px; }
.t-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.t-quote { font-family: 'Source Serif 4', serif; font-style: italic; font-size: 15px; color: var(--navy-deep); line-height: 1.65; margin-bottom: 18px; }
.t-attr { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--navy-deep); color: var(--cream); }
.newsletter-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.newsletter h2 { color: #FFFFFF; font-size: 26px; margin-bottom: 14px; line-height: 1.3; }
.newsletter p { color: #C7D2DA; font-size: 15px; max-width: 52ch; line-height: 1.7; }

/* ---------- About teaser / full ---------- */
.about-teaser { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; max-width: 1120px; margin: 0 auto; align-items: center; }
.about-photo {
  background: var(--cream); border-radius: 16px; aspect-ratio: 4/5; display: flex; align-items: center;
  justify-content: center; color: var(--navy); font-family: 'Source Serif 4', serif; font-size: 15px;
  text-align: center; padding: 24px;
}
.about-teaser h2 { font-size: 28px; margin-bottom: 22px; line-height: 1.3; }
.about-teaser p { color: var(--ink-soft); font-size: 15px; margin-bottom: 18px; line-height: 1.7; }
.credentials-row { display: flex; gap: 32px; margin-top: 30px; flex-wrap: wrap; }
.credential { font-size: 13px; color: var(--ink-soft); border-left: 2px solid var(--gold); padding-left: 12px; }

/* ---------- Timeline (about page) ---------- */
.timeline { max-width: 760px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding-bottom: 44px; position: relative; }
.timeline-year { font-family: 'Source Serif 4', serif; font-weight: 600; color: var(--navy); font-size: 15px; }
.timeline-item h3 { font-size: 16.5px; margin-bottom: 10px; }
.timeline-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--cream); text-align: center; }
.final-cta h2 { font-size: 30px; margin-bottom: 18px; line-height: 1.3; }
.final-cta p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 36px; font-size: 15px; line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 40px 0; }
.faq-item h3 { font-size: 16.5px; margin-bottom: 14px; color: var(--navy-deep); }
.faq-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.faq-item p:last-child { margin-bottom: 0; }
.faq-item ul { margin: 8px 0 20px 4px; }
.faq-item li { margin-bottom: 16px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.faq-item li:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-wrap { max-width: 640px; margin: 0 auto; background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px; padding: 48px; }
.form-row { margin-bottom: 26px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-deep); margin-bottom: 10px; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14.5px; color: var(--ink); background: var(--paper);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); }
.checkbox-item input { width: 16px; height: 16px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 20px; line-height: 1.6; }
.honeypot { position: absolute; left: -9999px; }

/* ---------- Contact info cards ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 1000px; margin: 0 auto; align-items: start; }
.contact-info h3 { font-size: 18px; margin-bottom: 16px; }
.contact-info p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 26px; line-height: 1.7; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 22px; }
.contact-detail .label { font-size: 12.5px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; min-width: 90px; }
.contact-detail .value { font-size: 14.5px; color: var(--ink); }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; margin: 44px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.7; }
.legal-content ul { padding-left: 22px; }
.legal-updated { font-size: 13px; color: var(--ink-soft); margin-bottom: 48px; display: block; }
.legal-notice {
  background: var(--cream); border-left: 3px solid var(--gold); padding: 22px 24px;
  border-radius: 0 8px 8px 0; margin-bottom: 48px; font-size: 13.5px; color: var(--navy-deep); line-height: 1.6;
}

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #C7D2DA; padding: 88px 24px 40px; }
.footer-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { color: #FFFFFF; }
.footer-brand p { font-size: 13.5px; color: #9FB0BC; margin-top: 16px; max-width: 32ch; line-height: 1.7; }
footer h4 { font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 20px; }
footer ul { list-style: none; }
footer li { margin-bottom: 13px; }
footer a { font-size: 13.5px; color: #C7D2DA; }
footer a:hover { color: #FFFFFF; }
.footer-bottom {
  max-width: 1120px; margin: 56px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px; color: #7E92A0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  nav ul { display: none; }
  section { padding: 72px 24px; }
  .hero { padding: 72px 24px 80px; }
  .page-hero { padding: 64px 24px 72px; }
  .section-head { margin-bottom: 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 34px; }
  .includes-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
  .step-path { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .step-path::before { display: none; }
  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
  .about-teaser { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .step-detail { grid-template-columns: 48px 1fr; }
}
