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

:root {
  --bg: #faf7f2;
  --fg: #1a1a18;
  --accent: #1a4a3a;
  --accent-light: #e8a838;
  --muted: #6b6860;
  --border: #d8d4cc;
  --card: #ffffff;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  font-size: 1.25rem;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* === HERO === */
.hero {
  padding: 8rem 3rem 6rem;
  max-width: 900px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
}

/* === STATS === */
.stats {
  background: var(--accent);
  color: #fff;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 200px;
  padding: 0 2.5rem;
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--accent-light);
}

.stat-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* === HOW === */
.how {
  padding: 8rem 3rem;
  max-width: 1100px;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.how-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 4rem;
  max-width: 600px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === FEATURES === */
.features {
  background: #f3f0ea;
  padding: 8rem 3rem;
}

.features-header {
  max-width: 700px;
  margin-bottom: 5rem;
}

.features-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  max-width: 900px;
}

.feature-icon {
  color: var(--accent-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.feature p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 8rem 3rem;
  max-width: 900px;
}

.closing-quote {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
  margin-bottom: 4rem;
}

.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 1rem;
}

.quote-attr {
  font-size: 0.85rem;
  color: var(--muted);
}

.closing-vision p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--border);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .stats { padding: 3rem 1.5rem; flex-direction: column; gap: 2rem; }
  .stat-sep { display: none; }
  .stat { padding: 0; }
  .how { padding: 5rem 1.5rem; }
  .how-steps { grid-template-columns: 1fr; gap: 3rem; }
  .features { padding: 5rem 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
}