:root {
  --bg: #FDFAF6;
  --bg-alt: #F7F1EA;
  --fg: #1A1814;
  --fg-muted: #5C5549;
  --accent: #E8701A;
  --accent-light: #FEF3E8;
  --border: #E8E1D9;
  --card-bg: #FFFFFF;
}

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

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

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* NAV */
.nav {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}

/* HERO */
.hero {
  padding: 72px 32px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-unit {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: -4px;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 580px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* PROOF */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 32px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-item {
  flex: 1;
  padding: 0 40px;
}
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { padding-right: 0; }
.proof-number {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.proof-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* SERVICES */
.services {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 56px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--fg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.service-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}
.service-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}
.service-icon {
  margin-bottom: 16px;
}
.service-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
  margin-bottom: 20px;
}
.service-list li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.service-start {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

/* HOW */
.how {
  background: var(--fg);
  color: white;
  padding: 80px 32px;
}
.how-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.how .section-label { color: var(--accent); }
.how .section-headline { color: white; }
.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
}
.step-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.how-callout {
  max-width: 660px;
  margin: 64px auto 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
}
.callout-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  text-align: center;
}

/* PRICING */
.pricing {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-header { margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.pricing-card--main {
  border-color: var(--accent);
  background: linear-gradient(180deg, #FEF9F4 0%, #FFFFFF 100%);
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}
.pricing-features {
  list-style: none;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--accent-light);
  border-radius: 8px;
}
.pricing-note p {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 32px;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stat-number { font-size: 3.5rem; }
  .hero-headline { font-size: 1.875rem; }
  .proof-inner {
    flex-direction: column;
    gap: 28px;
  }
  .proof-item { padding: 0; }
  .proof-divider { display: none; }
  .services-grid,
  .how-steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px 40px; }
  .services { padding: 56px 20px; }
  .how { padding: 56px 20px; }
  .pricing { padding: 56px 20px; }
  .closing { padding: 56px 20px; }
}