/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FEFCF3;
  --bg-alt: #F5F0E8;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --cream: #FEFCF3;
  --border: #E5DDD0;
  --card-bg: #FFFFFF;
}

html { scroll-behavior: smooth; }

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

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 252, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--green);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

.nav-cta {
  display: inline-block;
  padding: 9px 20px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-cta:hover { background: var(--green-mid); }

/* ─── Hero ─── */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 40px 72px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(217, 119, 6, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--green);
  max-width: 780px;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.65;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 760px;
}

.hero-stat {
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Philosophy ─── */
.philosophy {
  background: var(--green);
  padding: 96px 40px;
  color: #fff;
}

.philosophy-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}

.philosophy-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 32px;
  color: #fff;
}

.philosophy-body {
  max-width: 600px;
}

.philosophy-body p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
}

.philosophy-body p:last-child { margin-bottom: 0; }

/* ─── Outcomes ─── */
.outcomes {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 40px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.outcome-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}

.outcome-card:nth-child(2n) { border-right: none; }
.outcome-card:nth-child(3) { border-bottom: none; }
.outcome-card:nth-child(4) { border-right: none; border-bottom: none; }

.outcome-icon {
  color: var(--green);
  margin-bottom: 16px;
}

.outcome-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}

.outcome-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Commitment ─── */
.commitment {
  background: var(--bg-alt);
  padding: 80px 40px;
}

.commitment-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.commitment-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 96px;
  color: var(--amber);
  line-height: 0.6;
  margin-bottom: 24px;
  display: block;
}

blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.4;
  margin-bottom: 24px;
}

cite {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: normal;
  font-weight: 500;
}

/* ─── Closing ─── */
.closing {
  background: var(--green);
  padding: 88px 40px;
  text-align: center;
  color: #fff;
}

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto 20px;
  color: #fff;
}

.closing p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Footer ─── */
.footer {
  background: #0F2A1C;
  color: rgba(255,255,255,0.6);
  padding: 56px 40px 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
}

.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-loc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-loc strong { color: #fff; display: block; margin-bottom: 4px; }

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 13px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 56px 24px 52px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { border-right: none !important; }
  .philosophy { padding: 64px 24px; }
  .commitment { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-locations { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .nav { padding: 0 20px; }
  .hero-headline { letter-spacing: -0.5px; }
}