:root {
  --bg: #FFFBF5;
  --bg-warm: #FFF5E8;
  --fg: #2D1B0E;
  --fg-muted: #7A6555;
  --accent: #E8853D;
  --accent-light: #F5C28E;
  --accent-glow: rgba(232, 133, 61, 0.15);
  --cream: #FDF0E0;
  --card-bg: #FFFFFF;
  --border: rgba(45, 27, 14, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 24px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
}

/* HERO */
.hero {
  padding: 160px 24px 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HOW IT WORKS */
.how {
  padding: 100px 24px;
  background: var(--bg);
}
.how-inner {
  max-width: 720px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  color: var(--fg);
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.timeline-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.step-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FEATURES */
.features {
  padding: 80px 24px 100px;
  background: var(--bg-warm);
}
.features-inner {
  max-width: 960px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 27, 14, 0.08);
}
.feature-accent {
  background: linear-gradient(135deg, var(--cream) 0%, var(--card-bg) 100%);
  border-color: var(--accent-light);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: var(--bg);
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--fg);
}
.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* FOOTER */
.footer {
  padding: 48px 24px;
  text-align: center;
  background: var(--fg);
  color: var(--bg);
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}
.footer .logo-icon { font-size: 20px; }
.footer .logo-text {
  color: var(--bg);
  font-size: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 251, 245, 0.6);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 251, 245, 0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 120px 20px 80px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .timeline-step { gap: 20px; }
  .step-number { font-size: 36px; width: 44px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .section-title { font-size: 26px; }
  .closing-title { font-size: 26px; }
  .feature-card { padding: 28px 24px; }
}