:root {
  --bg: #F5F0EB;
  --fg: #1A1A1A;
  --teal: #0A6E7C;
  --amber: #E8773D;
  --teal-light: #E8F4F6;
  --amber-light: #FDF0E8;
  --muted: #6B6B6B;
  --border: #D8D0C8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--teal); letter-spacing: -0.5px; }
.nav-tagline { font-size: 13px; color: var(--muted); font-style: italic; letter-spacing: 0.5px; }

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; line-height: 1.3; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--teal-light);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MISSION */
.mission { background: var(--teal); color: white; padding: 100px 48px; }
.mission-inner { max-width: 800px; margin: 0 auto; }
.mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 36px;
  color: white;
}
.mission-body { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.8); }

/* PROGRAMS */
.programs { padding: 100px 48px; }
.programs-inner { max-width: 1200px; margin: 0 auto; }
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-top: 60px;
}
.program-card {}
.program-icon { margin-bottom: 16px; }
.program-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.program-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* VALUES */
.values { background: var(--teal-light); padding: 100px 48px; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 60px; }
.value-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--amber); letter-spacing: 1px; display: block; margin-bottom: 12px; }
.value-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.value-body { font-size: 14px; color: var(--muted); line-height: 1.65; }
.values-badge { display: flex; align-items: center; gap: 20px; padding-top: 40px; border-top: 1px solid var(--border); }
.badge-text { font-size: 12px; font-weight: 600; color: var(--teal); letter-spacing: 0.5px; }
.badge-divider { color: var(--border); }

/* CLOSING */
.closing { padding: 100px 48px; }
.closing-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.closing-img-stack {}
.closing-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--amber-light);
  border-radius: 4px;
  overflow: hidden;
}
.closing-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-body { font-size: 16px; color: var(--muted); line-height: 1.75; }

/* FOOTER */
.footer { background: var(--fg); color: white; padding: 60px 48px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 24px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--teal); display: block; margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic; }
.footer-links { display: flex; gap: 24px; margin-bottom: 32px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px; }
  .hero-visual { display: none; }
  .programs-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing-visual { display: none; }
  .nav { padding: 16px 24px; }
  .mission, .programs, .values, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .values-badge { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .values-headline { font-size: 28px; }
  .footer-links { flex-direction: column; gap: 8px; }
}