:root {
  --bg-primary: #1a1814;
  --bg-secondary: #231f1a;
  --bg-card: #2a2520;
  --accent: #d4a24c;
  --accent-dim: #b8893a;
  --text-primary: #f5f0e8;
  --text-secondary: #a89e8c;
  --text-muted: #6b6358;
  --border: #3a3530;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-size: 24px;
  color: var(--accent);
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.15s;
}
.nav-link:hover {
  color: var(--accent);
}

.nav-cta {
  font-size: 13px;
  color: var(--bg-primary);
  background: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.15s;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--accent-dim);
}

/* Hero */
.hero {
  padding: 120px 48px 140px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
}

.cta-text {
  font-size: 14px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 4px;
}

/* Problem */
.problem {
  padding: 100px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-content {
  max-width: 800px;
}

.problem-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.problem-body {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.7;
}

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

.stat {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services */
.services {
  padding: 120px 48px;
}

.services-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 56px;
  max-width: 500px;
}

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

.service-card {
  padding: 36px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--accent-dim);
}

.service-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Difference */
.difference {
  padding: 100px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.difference-content {
  max-width: 700px;
}

.difference-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 40px;
}

.comparison {
  margin-bottom: 28px;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-size: 16px;
}

.compare-no .compare-mark {
  color: var(--text-muted);
}

.compare-yes .compare-mark {
  color: var(--accent);
}

.compare-mark {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* Closing */
.closing {
  padding: 140px 48px;
  text-align: center;
}

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-body {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.closing-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  margin-bottom: 48px;
  transition: background 0.2s;
}
.closing-btn:hover {
  background: var(--accent-dim);
}

.closing-vision {
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.closing-vision p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
}

/* Footer */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }

  .hero {
    padding: 80px 24px 100px;
  }

  .problem, .services, .difference, .closing {
    padding: 80px 24px;
  }

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

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

  .stat {
    padding: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .footer {
    padding: 40px 24px;
  }
}