:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #2C2420;
  --fg-muted: #6B5E55;
  --accent: #8B6F4E;
  --accent-light: #C4A97D;
  --accent-warm: #D4A574;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --radius: 12px;
  --max-width: 1120px;
}

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

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

/* === HERO === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
  background: linear-gradient(165deg, #2C2420 0%, #3D3029 45%, #4A3828 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(196, 169, 125, 0.4);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

.hero-accent {
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 169, 125, 0.1) 0%, transparent 70%);
  z-index: 1;
}

/* === PROBLEM === */
.problem {
  padding: 100px 24px;
  background: var(--bg);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.problem-stat {
  position: sticky;
  top: 120px;
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.problem-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--fg);
}

.problem-text p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 560px;
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
  background: var(--bg-alt);
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-header {
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 111, 78, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(44, 36, 32, 0.06);
}

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

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === TRUST === */
.trust {
  padding: 100px 24px;
  background: var(--bg);
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-quote {
  max-width: 680px;
  margin-bottom: 64px;
}

.trust-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  border-left: 3px solid var(--accent-light);
  padding-left: 28px;
  margin-bottom: 24px;
}

.trust-attribution {
  padding-left: 31px;
}

.trust-attribution strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}

.trust-attribution span {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.trust-stats {
  display: flex;
  gap: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(139, 111, 78, 0.12);
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === HERO CTA === */
.hero-cta {
  margin-top: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 17px 36px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: #2C2420;
  background: var(--accent-light);
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 169, 125, 0.3);
}

.hero-cta-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  background: linear-gradient(165deg, #2C2420 0%, #3D3029 100%);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 32px;
}

.closing-btn {
  display: inline-block;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: #2C2420;
  background: var(--accent-light);
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.closing-btn:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 169, 125, 0.25);
}

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  background: #1E1A17;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 60px 20px;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-stat {
    position: static;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .trust-stats {
    flex-direction: column;
    gap: 32px;
  }

  .trust-quote blockquote {
    padding-left: 20px;
  }

  .trust-attribution {
    padding-left: 23px;
  }
}