:root {
  --warm-dark: #1a1612;
  --warm-bg: #f5ede0;
  --warm-mid: #e8d5bb;
  --warm-light: #fdf8f3;
  --amber: #c97d2e;
  --amber-dark: #a05e1a;
  --text-dark: #1a1612;
  --text-mid: #4a3f35;
  --text-light: #7a6e63;
  --border: rgba(26, 22, 18, 0.1);
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ── Navbar ── */
.navbar {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--amber);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--amber-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Problem ── */
.problem {
  padding: 5rem 2rem;
  background: var(--warm-light);
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.problem-header { margin-bottom: 0.5rem; }
.problem-header .section-heading { margin-bottom: 2rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.problem-card {
  background: var(--warm-light);
  padding: 2.5rem 2rem;
}
.problem-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--warm-mid);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
}
.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}
.problem-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ── How ── */
.how { padding: 5rem 2rem; background: var(--warm-bg); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-heading { margin-bottom: 3rem; }
.steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 2rem;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--warm-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-family: 'DM Sans', sans-serif;
}
.step p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.step-divider {
  width: 40px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  margin: 0 0.5rem;
}

/* ── Services ── */
.services {
  padding: 5rem 2rem;
  background: var(--warm-light);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services .section-heading { margin-bottom: 2.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--warm-light);
  padding: 2rem;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--warm-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--amber-dark);
}
.service-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}
.service-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ── Trust ── */
.trust { padding: 5rem 2rem; background: var(--warm-bg); }
.trust-inner { max-width: 1100px; margin: 0 auto; }
.trust-content { max-width: 620px; }
.trust .section-heading { margin-bottom: 1.5rem; }
.trust-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
}
.trust-points { display: flex; flex-direction: column; gap: 0.9rem; }
.trust-point {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}
.trust-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Closing ── */
.closing {
  padding: 6rem 2rem;
  background: var(--text-dark);
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--warm-bg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(245, 237, 224, 0.6);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 2rem;
  background: var(--warm-dark);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-bg);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.5);
}
.footer-note {
  font-size: 0.75rem;
  color: rgba(245, 237, 224, 0.3);
  margin-top: 0.5rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .problem-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
  }
  .step-divider {
    width: 40px;
    height: 1px;
    margin: 0 auto;
  }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .problem, .how, .services, .trust, .closing { padding: 3.5rem 1.5rem; }
  .navbar { padding: 1.25rem 1.5rem; }
}