:root {
  --cream: #faf7f2;
  --charcoal: #1a1a1a;
  --orange: #e8551a;
  --orange-light: #fdf0e8;
  --muted: #6b6560;
  --border: #e8e2d8;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.navbar-logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--charcoal);
}
.navbar-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 100px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}

/* Section common */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--charcoal);
  margin-bottom: 56px;
  max-width: 600px;
}

/* How it works */
.howitworks {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 48px;
}
.howitworks .section-label { color: var(--orange); }
.howitworks .section-headline { color: var(--cream); }
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1000px;
}
.step {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}
.step-number {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--orange);
  font-style: italic;
  min-width: 28px;
  padding-top: 4px;
}
.step-body { flex: 1; }
.step-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.step-desc {
  font-size: 15px;
  color: rgba(250,247,242,0.6);
  line-height: 1.65;
  font-weight: 300;
}

/* Features */
.features {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.feature {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature:nth-child(3n) { border-right: none; }
.feature:nth-child(n+4) { border-bottom: none; }
.feature:nth-child(n+4) { }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Shop types */
.shoptypes {
  background: #f0ebe3;
  padding: 80px 48px;
}
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  max-width: 1000px;
}
.shop-card {
  background: #f0ebe3;
  padding: 48px 40px;
}
.shop-card-icon {
  margin-bottom: 24px;
}
.shop-card-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.shop-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Closing */
.closing {
  background: var(--charcoal);
  padding: 100px 48px;
  text-align: center;
}
.closing-statement {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: -1px;
}

/* Footer */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--charcoal);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-copy {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 60px 24px 50px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .howitworks, .features, .shoptypes, .closing { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(3n) { border-right: 1px solid var(--border); }
  .feature:nth-child(2n) { border-right: none; }
  .feature:nth-child(n+3) { border-bottom: none; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer { flex-wrap: wrap; gap: 12px; }
  .footer-copy { margin-left: 0; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: none !important; }
}