:root {
  --teal: #1a5c5c;
  --teal-dark: #133d3d;
  --cream: #f7f3ee;
  --amber: #c85f2e;
  --slate: #2d2d2d;
  --slate-light: #6b6b6b;
  --warm-white: #faf8f5;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(26,92,92,0.1);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
}
.nav-tagline {
  color: var(--slate-light);
  font-size: 0.9rem;
  font-weight: 300;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  flex-wrap: wrap;
}
.hero-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}

/* Hero visual - concentric rings */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(26,92,92,0.15);
}
.hero-ring-1 { width: 280px; height: 280px; }
.hero-ring-2 { width: 210px; height: 210px; border-color: rgba(200,95,46,0.25); }
.hero-ring-3 { width: 140px; height: 140px; border-color: var(--amber); }
.hero-center {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-center-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* PROGRAMS */
.programs {
  background: var(--warm-white);
  padding: 5rem 2.5rem;
}
.programs-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--teal-dark);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--slate-light);
  max-width: 520px;
}
.programs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(26,92,92,0.1);
}
.program-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
}
.program-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26,92,92,0.12);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.program-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.program-card p {
  color: var(--slate-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.program-meta {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.05em;
}

/* PHILOSOPHY */
.philosophy {
  padding: 5rem 2.5rem;
  background: var(--cream);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.philosophy-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.philosophy-attr {
  font-size: 0.85rem;
  color: var(--slate-light);
  font-weight: 500;
}
.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.value { display: flex; gap: 1rem; }
.value-icon { flex-shrink: 0; margin-top: 2px; }
.value h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
}
.value p {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.6;
}

/* IMPACT */
.impact {
  background: var(--teal);
  padding: 4rem 2.5rem;
}
.impact-inner { max-width: 1100px; margin: 0 auto; }
.impact .section-label { color: rgba(247,243,238,0.6); }
.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.impact-stat {}
.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.impact-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(247,243,238,0.75);
  line-height: 1.4;
}
.impact-label span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(247,243,238,0.5);
  margin-top: 0.15rem;
}

/* CLOSING */
.closing {
  padding: 6rem 2.5rem;
  background: var(--teal-dark);
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  max-width: 780px;
}
.closing p {
  color: rgba(247,243,238,0.7);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.closing-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.closing-services span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  background: rgba(247,243,238,0.1);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(247,243,238,0.15);
}

/* FOOTER */
.footer {
  background: var(--slate);
  padding: 3.5rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(247,243,238,0.45);
  line-height: 1.65;
  max-width: 320px;
}
.footer-loc strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(247,243,238,0.7);
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-loc p {
  font-size: 0.85rem;
  color: rgba(247,243,238,0.45);
  line-height: 1.5;
}
.footer-contact p {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 500;
}
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(247,243,238,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem 2.5rem; }
  .hero-visual { height: 220px; }
  .hero-ring-1 { width: 180px; height: 180px; }
  .hero-ring-2 { width: 135px; height: 135px; }
  .hero-ring-3 { width: 90px; height: 90px; }
  .hero-center { width: 56px; height: 56px; }
  .programs { padding: 3.5rem 1.5rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .impact-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .closing { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .impact-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .impact-number { font-size: 2.5rem; }
}