/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f7f4ef;
  --fg: #1a1a0e;
  --green-dark: #1c3a2a;
  --green-mid: #2d5c42;
  --green-light: #3e7a57;
  --cream: #f7f4ef;
  --amber: #c98b2a;
  --amber-light: #e8b84b;
  --text-primary: #1a1a0e;
  --text-secondary: #4a4a3a;
  --text-muted: #7a7a6a;
  --border: #d4cfc4;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  background: var(--green-dark);
  color: var(--cream);
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,139,42,0.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(62,122,87,0.15);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.subhead {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(247,244,239,0.75);
  margin-bottom: 28px;
  line-height: 1.4;
}

.body-copy {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(247,244,239,0.65);
  max-width: 480px;
}

/* Visual blocks */
.hero-visual {
  position: relative;
  height: 400px;
}

.visual-block {
  position: absolute;
  border-radius: 12px;
}

.b1 {
  width: 280px;
  height: 200px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  top: 20px;
  right: 20px;
}

.b2 {
  width: 200px;
  height: 260px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  bottom: 20px;
  right: 60px;
  opacity: 0.85;
}

.b3 {
  width: 160px;
  height: 160px;
  background: rgba(247,244,239,0.12);
  border: 1px solid rgba(247,244,239,0.2);
  top: 60px;
  left: 20px;
}

/* === STATS === */
.stats {
  background: var(--green-dark);
  border-top: 1px solid rgba(247,244,239,0.1);
  padding: 0 48px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(247,244,239,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(247,244,239,0.15);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 100px 48px;
  background: var(--cream);
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.phil-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.phil-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 60px;
  line-height: 1.1;
  max-width: 600px;
}

.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.phil-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
  position: relative;
}

.phil-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  width: 60px;
  height: 3px;
  background: var(--amber);
}

.phil-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.phil-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === CURRICULUM === */
.curriculum {
  padding: 100px 48px;
  background: #f0ece3;
}

.curriculum-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.curriculum-header {
  margin-bottom: 64px;
  max-width: 640px;
}

.curriculum-header .eyebrow {
  color: var(--green-mid);
  margin-bottom: 16px;
}

.curriculum-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.curriculum-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.curriculum-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.step {
  padding: 32px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 100px 48px;
  background: var(--green-dark);
  color: var(--cream);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.closing-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1rem;
  color: rgba(247,244,239,0.6);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* === FOOTER === */
footer {
  background: #0f2416;
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}

.footer-desc {
  font-size: 0.8rem;
  color: rgba(247,244,239,0.4);
}

.footer-meta {
  font-size: 0.8rem;
  color: rgba(247,244,239,0.3);
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 60px 28px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .stats { padding: 0 28px; }
  .stats-inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-divider { display: none; }
  .philosophy, .curriculum, .closing { padding: 60px 28px; }
  .phil-grid, .curriculum-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 60px; }
  .stat-num { font-size: 2.25rem; }
  .stat { min-width: 120px; }
}
