/* === BASE === */
:root {
  --bg: #faf8f5;
  --nav-bg: #1a2744;
  --fg: #1a2744;
  --accent: #f5a623;
  --accent-light: #fef3dc;
  --text-body: #3d4a5c;
  --text-muted: #6b7a8d;
  --border: #e8e4de;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  background: var(--nav-bg);
  padding: 1rem 2rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--nav-bg);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  background: var(--nav-bg);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.hero-overline {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.65;
}

/* === BADGE STACK === */
.badge-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  min-width: 220px;
}
.badge-icon {
  font-size: 1.1rem;
  color: var(--accent);
  width: 28px;
  text-align: center;
}
.badge-info { display: flex; flex-direction: column; }
.badge-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.badge-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* === STATS === */
.stats {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* === SECTIONS === */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-body {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.7;
}

/* === VETTING === */
.vetting {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.vetting-header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.vetting-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.v-step {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.2s;
}
.v-step:hover {
  box-shadow: 0 8px 32px rgba(26,39,68,0.08);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.step-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
}
.accent-tag {
  background: var(--accent-light);
  border-color: var(--accent);
  color: #b87a0e;
}

/* === OUTCOMES === */
.outcomes {
  background: var(--nav-bg);
  padding: 6rem 2rem;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes .section-label { color: var(--accent); }
.outcomes .section-headline { color: var(--white); }
.outcomes .section-body { color: rgba(255,255,255,0.7); }
.outcomes-text {
  margin-bottom: 3rem;
}
.level-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.level-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.5rem;
}
.level-abbr {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.875rem;
}
.level-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.625rem;
}
.level-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.level-subjects {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-header { margin-bottom: 3rem; }
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.review-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.review-author { display: flex; flex-direction: column; }
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}
.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === CLOSING === */
.closing {
  background: var(--accent-light);
  padding: 6rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-icon {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--nav-bg);
  margin-bottom: 1.5rem;
}
.closing-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}
.closing-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.cta-link {
  display: inline-block;
  background: var(--nav-bg);
  color: var(--white);
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.cta-link:hover { opacity: 0.85; }

/* === FOOTER === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--nav-bg);
  color: var(--accent);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}
.footer-contact {
  display: flex;
  gap: 1.5rem;
}
.footer-contact a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--fg); }
.footer-bottom {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .badge-stack { flex-direction: row; flex-wrap: wrap; }
  .vetting-steps { grid-template-columns: 1fr; }
  .level-cards { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .level-cards { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 1rem; }
  .footer-contact { flex-direction: column; gap: 0.5rem; text-align: center; }
}