:root {
  --bg: #faf7f2;
  --bg-warm: #f3ede4;
  --bg-dark: #1c1917;
  --fg: #1c1917;
  --fg-muted: #78716c;
  --fg-light: #a8a29e;
  --accent: #c4873b;
  --accent-light: #d4a574;
  --accent-dark: #a16b2a;
  --sage: #5b7a5e;
  --sand: #e8ddd3;
  --cream: #f5f0e8;
  --charcoal: #292524;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  background: var(--bg-dark);
  color: #faf7f2;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,135,59,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91,122,94,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196,135,59,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #a8a29e;
  max-width: 560px;
}

.hero-stat-row {
  display: flex;
  gap: 48px;
  max-width: 900px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(168,162,158,0.15);
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── PROBLEM ─── */
.problem {
  padding: 120px 40px;
  background: var(--bg);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-label,
.how-label,
.feature-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2,
.how h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

.strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
}

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

.problem-card {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(196,135,59,0.08);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 120px 40px;
  background: var(--bg-warm);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(28,25,23,0.08);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(196,135,59,0.2);
  line-height: 1;
  min-width: 80px;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ─── FEATURES ─── */
.features {
  padding: 120px 40px;
  background: var(--bg);
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.swatch {
  aspect-ratio: 1;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.swatch:hover {
  transform: scale(1.08);
}

.counter-samples {
  display: flex;
  gap: 20px;
}

.counter-sample {
  text-align: center;
}

.counter-swatch {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid var(--cream);
}

.counter-sample span {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── CLOSING ─── */
.closing {
  padding: 120px 40px;
  background: var(--bg-dark);
  color: var(--cream);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  line-height: 1.7;
  color: #a8a29e;
  margin-bottom: 20px;
}

.closing-accent {
  color: var(--accent-light) !important;
  font-weight: 500;
  font-style: italic;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 40px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(168,162,158,0.1);
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-location {
  font-size: 13px;
  color: var(--fg-light);
  margin-top: 4px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px 40px;
    min-height: auto;
  }

  .hero-stat-row {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .problem,
  .how,
  .features,
  .closing {
    padding: 80px 24px;
  }

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

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 36px;
    min-width: auto;
  }

  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .swatch-grid {
    max-width: 240px;
  }

  .counter-samples {
    justify-content: center;
  }

  .counter-swatch {
    width: 80px;
    height: 80px;
  }
}