:root {
  --bg: #FAF8F5;
  --bg-warm: #F3EDE6;
  --bg-dark: #1A1714;
  --fg: #2C2620;
  --fg-muted: #7A7168;
  --accent: #C45D3E;
  --accent-light: #E8A48E;
  --accent-dark: #9E3E24;
  --green: #3B7D5E;
  --green-light: #E8F5EE;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --max-w: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  background: var(--bg-dark);
  color: #F5F0EB;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196,93,62,0.15), transparent),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(59,125,94,0.1), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(232,164,142,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  max-width: 720px;
}

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

.hero .lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(245,240,235,0.72);
  max-width: 560px;
}

/* ---- PROBLEM ---- */
.problem {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
}

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

.problem-col {
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

.problem-col h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.problem-col p {
  color: var(--fg-muted);
  margin-bottom: var(--space-xs);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  padding: var(--space-md);
  border-radius: 12px;
  border: 1px solid rgba(44,38,32,0.08);
}

.card-bad {
  background: var(--bg-warm);
}

.card-good {
  background: var(--green-light);
  border-color: rgba(59,125,94,0.2);
}

.card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-xs);
}

.card-good .card-label {
  color: var(--green);
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.card-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-dark);
  margin-bottom: var(--space-xs);
}

.card-good .card-price {
  color: var(--green);
}

.card p:last-child {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- SERVICES ---- */
.services {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-warm);
}

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

.services-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: var(--space-lg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-item {
  padding: var(--space-md);
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(44,38,32,0.06);
}

.service-icon {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.service-item h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- HOW ---- */
.how {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
}

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

.how-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: var(--space-lg);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 640px;
}

.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.step-content h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-dark);
  color: #F5F0EB;
}

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

.closing-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  max-width: 680px;
}

.closing-inner h2 em {
  color: var(--accent-light);
  font-style: italic;
}

.closing-inner > p {
  color: rgba(245,240,235,0.65);
  max-width: 560px;
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.closing-stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245,240,235,0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--accent-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(245,240,235,0.5);
  max-width: 180px;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-warm);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-email {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-lg) var(--space-sm) var(--space-md);
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .closing-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .step {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 3.5rem;
    --space-lg: 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}