:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --text: #1c1c1c;
  --text-2: #6b6560;
  --text-3: #9e9891;
  --accent: #b85c38;
  --accent-warm: #e8c4a0;
  --border: #e8e2d9;
  --section-pad: 100px 24px;
}

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

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

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* Problem */
.problem {
  padding: var(--section-pad);
  background: var(--text);
  color: #f5f0e8;
}
.problem-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.problem-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 40px;
  color: var(--accent-warm);
}
.problem-text {
  font-size: 17px;
  line-height: 1.8;
  color: #c8c0b5;
  margin-bottom: 24px;
  font-weight: 300;
}

/* Features */
.features {
  padding: var(--section-pad);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  padding: 48px 44px;
  border: 1px solid var(--border);
}
.feature-icon {
  display: block;
  color: var(--accent);
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
}

/* Pricing */
.pricing {
  padding: var(--section-pad);
  background: #f0ebe3;
}
.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pricing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
  color: var(--text);
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-card {
  background: var(--surface);
  padding: 44px 32px;
  border: 1px solid var(--border);
  text-align: left;
}
.pricing-card.accent {
  background: var(--text);
  border-color: var(--text);
}
.pricing-card.accent .pricing-amount,
.pricing-card.accent .pricing-label {
  color: #f5f0e8;
}
.pricing-card.accent .pricing-desc {
  color: #c8c0b5;
}
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.pricing-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: var(--bg);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 24px;
  font-weight: 300;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 120px 24px 80px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .section-pad { padding: 72px 24px; }
  .nav { padding: 16px 20px; }
}