:root {
  --bg: #f5f0e8;
  --fg: #1a2e1a;
  --accent: #f59e0b;
  --accent-dark: #e07b00;
  --surface: #ffffff;
  --muted: #7a8b6e;
  --border: #d4cfc4;
  --forest: #1a3d2e;
}

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

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

/* NAV */
.nav { padding: 28px 48px; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: baseline; gap: 16px; }
.nav-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--forest); letter-spacing: -0.5px; }
.nav-tagline { font-size: 13px; color: var(--muted); font-weight: 400; }

/* HERO */
.hero { padding: 96px 48px 80px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: #4a5a3e;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-loop { max-width: 300px; }
.hero-loop svg { width: 100%; height: auto; }

/* AMBIENT decoration */
.hero-ambient { position: relative; display: flex; align-items: center; justify-content: center; height: 300px; }
.ambient-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.15);
}
.ring-1 { width: 200px; height: 200px; }
.ring-2 { width: 280px; height: 280px; }
.ring-3 { width: 380px; height: 380px; }
.ambient-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}
.dot-1 { width: 12px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.dot-2 { width: 6px; height: 6px; top: 20%; right: 30%; }

/* PROOF */
.proof { background: var(--forest); padding: 48px; }
.proof-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0; }
.proof-stat { flex: 1; padding: 0 40px; text-align: center; }
.proof-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.proof-label { font-size: 14px; color: rgba(245,240,232,0.7); line-height: 1.5; display: block; max-width: 200px; margin: 0 auto; }
.proof-divider { width: 1px; height: 80px; background: rgba(245,240,232,0.15); flex-shrink: 0; }

/* SECTION COMMON */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 64px;
}

/* HOW */
.how { padding: 96px 48px; background: var(--surface); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-steps { display: flex; align-items: flex-start; gap: 0; }
.how-step { flex: 1; padding: 0 40px; }
.how-step:first-child { padding-left: 0; }
.how-step:last-child { padding-right: 0; }
.step-num { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 300; color: rgba(26,61,46,0.2); line-height: 1; margin-bottom: 16px; }
.step-title { font-size: 18px; font-weight: 600; color: var(--forest); margin-bottom: 12px; }
.step-desc { font-size: 15px; color: #4a5a3e; line-height: 1.6; }
.step-connector { width: 40px; flex-shrink: 0; align-self: center; padding-top: 20px; background: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6 L30 6 M22 1 L30 6 L22 11' stroke='%23d4cfc4' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center center no-repeat; }

/* FEATURES */
.features { padding: 96px 48px; background: var(--bg); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.feature-card {
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--border);
}
.feature-icon { margin-bottom: 20px; }
.feature-title { font-size: 17px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: #4a5a3e; line-height: 1.6; }

/* CLOSING */
.closing { padding: 96px 48px; background: var(--forest); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: #f5f0e8;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* FOOTER */
.footer { padding: 32px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600; color: var(--forest); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-ambient { display: none; }
  .hero-loop { max-width: 260px; margin: 0 auto; }
  .proof { padding: 40px 24px; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { width: 60px; height: 1px; }
  .how { padding: 64px 24px; }
  .how-steps { flex-direction: column; gap: 40px; }
  .how-step { padding: 0; }
  .step-connector { display: none; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}