:root {
  --bg: #F7F2EC;
  --fg: #2C2421;
  --accent: #D4A89A;
  --accent-dark: #B8837A;
  --muted: #9A8A85;
  --surface: #FFFFFF;
  --border: #E2D8CF;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 100px 64px 120px;
}

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

.hero-overline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
}

/* HERO CARD */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(44,36,33,0.08), 0 4px 12px rgba(44,36,33,0.04);
  overflow: hidden;
}

.card-header {
  background: var(--bg);
  padding: 14px 20px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.card-body {
  padding: 28px 24px;
}

.metric {
  margin-bottom: 24px;
}

.metric-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.metric-change {
  font-size: 12px;
  color: #7BAF73;
  margin-top: 4px;
  font-weight: 500;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 64px;
}

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

.philosophy-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 32px;
  color: var(--bg);
}

.philosophy-body {
  font-size: 16px;
  color: rgba(247,242,236,0.6);
  line-height: 1.75;
}

/* FEATURES */
.features {
  padding: 100px 64px;
}

.features-header {
  max-width: 600px;
  margin: 0 auto 72px;
  text-align: center;
}

.features-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.features-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  background: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.feature-icon {
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* OUTCOMES */
.outcomes {
  background: #FAF7F2;
  padding: 80px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.outcome-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.outcome-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  padding: 120px 64px;
}

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

.closing-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 48px 64px;
}

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

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(247,242,236,0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .hero-card { max-width: 100%; }
  .philosophy { padding: 72px 24px; }
  .features { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 60px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .card-stats { grid-template-columns: 1fr; gap: 12px; }
  .nav-tagline { display: none; }
}