:root {
  --bg: #f9f7f4;
  --surface: #ffffff;
  --text-primary: #1a1814;
  --text-secondary: #6b6560;
  --accent: #c8522a;
  --accent-light: #f3e8e2;
  --border: #e8e3dc;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(200, 82, 42, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(200, 82, 42, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-search-preview {
  display: inline-block;
}
.search-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  min-width: 420px;
}
.search-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}
.chip-plus {
  background: var(--bg);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* Stats */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 40px;
}
.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Section headings */
.section-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 48px;
  line-height: 1.1;
}

/* How It Works */
.howitworks {
  padding: 96px 40px;
}
.hiw-inner {
  max-width: 900px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.step {}
.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* Differentiators */
.differentiators {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.diff-inner {
  max-width: 900px;
  margin: 0 auto;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.diff-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
}
.diff-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.diff-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.diff-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* Testimonials */
.testimonials {
  padding: 96px 40px;
}
.testi-inner {
  max-width: 960px;
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.testi-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.testi-quote {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}
.testi-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.testi-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
  display: block;
}

/* Closing */
.closing {
  padding: 100px 40px 96px;
  background: var(--text-primary);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--bg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: rgba(249, 247, 244, 0.5);
  font-weight: 300;
}

/* Footer */
.footer {
  background: var(--text-primary);
  border-top: 1px solid rgba(249,247,244,0.1);
  padding: 24px 40px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
}
.footer-copy {
  font-size: 12px;
  color: rgba(249,247,244,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 60px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .search-box { min-width: auto; width: 100%; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}