:root {
  --cream: #f9f6f1;
  --cream-dark: #f0ebe3;
  --navy: #1a1f2e;
  --navy-mid: #2d3448;
  --amber: #c47d3a;
  --amber-light: #e8a85a;
  --warm-gray: #8a8278;
  --light-gray: #d8d3cc;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,246,241,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 24px;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-decoration: none;
}
nav {
  display: flex;
  gap: 32px;
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-mid);
  text-decoration: none;
  transition: color 0.15s;
}
nav a:hover { color: var(--amber); }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 72px;
  text-align: center;
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--navy-mid);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-availability {
  display: inline-block;
  font-size: 13px;
  color: var(--warm-gray);
  background: var(--cream-dark);
  border: 1px solid var(--light-gray);
  border-radius: 100px;
  padding: 6px 16px;
}

/* Background orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(196,125,58,0.08) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(26,31,46,0.05) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}

/* ─── Stats Row ───────────────────────────────────────── */
.stats-row {
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 40px 24px;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--amber-light);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ─── Section base ────────────────────────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.8px;
  color: var(--navy);
  line-height: 1.15;
}

/* ─── How It Works ───────────────────────────────────── */
.how-it-works {
  padding: 96px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.how-it-works .section-heading { margin-bottom: 56px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--cream-dark);
  letter-spacing: -2px;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 15px;
  color: var(--navy-mid);
  line-height: 1.6;
}

/* ─── Services ────────────────────────────────────────── */
.services-section {
  padding: 96px 24px;
  background: var(--cream-dark);
}
.services-section .section-heading { margin-bottom: 48px; }
.services-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
}
.service-item {
  background: var(--cream-dark);
  padding: 36px 32px;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─── Testimonials ────────────────────────────────────── */
.testimonials {
  padding: 96px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.testimonials .section-heading { margin-bottom: 48px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 36px 32px;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-card cite {
  font-size: 14px;
  color: var(--warm-gray);
  font-style: normal;
}
.testimonial-card cite span { color: var(--amber); }

/* ─── Pricing ─────────────────────────────────────────── */
.pricing-section {
  padding: 96px 24px;
  background: var(--navy);
  color: var(--white);
}
.pricing-section .section-eyebrow { color: var(--amber-light); }
.pricing-section .section-heading { color: var(--white); margin-bottom: 48px; }
.pricing-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), 0 0 40px rgba(196,125,58,0.15);
}
.pricing-tier {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-amount span { font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.5); }
.pricing-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* ─── Closing Statement ───────────────────────────────── */
.closing-statement {
  padding: 96px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, #252b3d 100%);
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-statement p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--light-gray);
  padding: 56px 24px 40px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.footer-brand .wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--warm-gray);
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 14px;
  color: var(--navy-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1160px;
  margin: 40px auto 0;
  border-top: 1px solid var(--light-gray);
  padding-top: 24px;
}
.footer-bottom p { font-size: 13px; color: var(--warm-gray); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  nav { display: none; }
  .steps-grid, .services-grid, .testimonial-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    flex-direction: column;
    gap: 32px;
  }
  .stat-divider { display: none; }
  .stat-block { padding: 0; }
  .hero { padding: 72px 24px 56px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .stat-number { font-size: 32px; }
}