:root {
  --bg: #f8f7f4;
  --fg: #1a1a2e;
  --accent: #d4a843;
  --accent-dark: #b8912e;
  --navy: #1a1a2e;
  --cream: #f8f7f4;
  --muted: #6b6b7a;
  --border: #e2e0db;
  --card-bg: #ffffff;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; }
.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  padding: 5rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 2.5rem;
}
.cta-stat {
  display: flex;
  flex-direction: column;
}
.cta-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.cta-label {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 100px;
  line-height: 1.3;
}

/* CALENDAR MOCK */
.calendar-mock {
  background: var(--navy);
  border-radius: 16px;
  padding: 1.5rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 24px 64px rgba(26,26,46,0.18);
}
.mock-header {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.mock-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mock-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.mock-day {
  height: 60px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}
.mock-day.booked { background: rgba(212,168,67,0.2); border: 1px solid rgba(212,168,67,0.4); }
.mock-appt { padding: 0.4rem; }
.appt-time { font-size: 0.6rem; color: var(--accent); font-weight: 600; }
.appt-name { font-size: 0.55rem; color: rgba(255,255,255,0.7); line-height: 1.3; margin-top: 0.15rem; }

/* PROOF */
.proof {
  background: var(--navy);
  padding: 3rem 3rem;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.proof-stat { flex: 1; text-align: center; }
.proof-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.proof-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); max-width: 220px; margin: 0 auto; line-height: 1.4; }
.proof-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* HOW */
.how { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.section-sub { font-size: 1rem; color: var(--muted); margin-bottom: 3.5rem; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.step { border-top: 2px solid var(--border); padding-top: 2rem; }
.step-number { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--accent); line-height: 1; margin-bottom: 1rem; }
.step-title { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* NICHES */
.niches { background: #f0ede8; padding: 5rem 3rem; }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.niche-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.niche-card:hover { box-shadow: 0 8px 32px rgba(26,26,46,0.08); }
.niche-icon { color: var(--accent); margin-bottom: 1rem; }
.niche-name { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.niche-detail { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  background: var(--card-bg);
}
.pricing-card.featured {
  border: 2px solid var(--navy);
  box-shadow: 0 8px 40px rgba(26,26,46,0.12);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 99px;
}
.pricing-tier { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.pricing-amount { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--navy); margin-bottom: 1.5rem; }
.pricing-period { font-size: 1rem; font-family: 'DM Sans', sans-serif; color: var(--muted); }
.pricing-features { list-style: none; margin-bottom: 1.5rem; }
.pricing-features li { font-size: 0.9rem; color: var(--fg); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-note { font-size: 0.75rem; color: var(--muted); }
.pricing-guarantee { font-size: 0.85rem; color: var(--muted); text-align: center; max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* CLOSING */
.closing { background: var(--navy); padding: 6rem 3rem; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: 'DM Serif Display', serif; font-size: 2.75rem; color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.closing-sub { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2.5rem; }
.closing-tagline { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--accent); }

/* FOOTER */
.footer { padding: 2.5rem 3rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 1rem; }
.footer-tagline { font-size: 0.8rem; color: var(--muted); }

/* MOBILE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-cta { gap: 1.5rem; }
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 1.5rem; }
  .proof-divider { display: none; }
  .hero-headline { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .closing-headline { font-size: 2rem; }
}
@media (max-width: 600px) {
  .hero, .how, .pricing { padding: 3rem 1.5rem; }
  .proof { padding: 2.5rem 1.5rem; }
  .niches { padding: 3rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; }
  .niche-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; gap: 1.5rem; }
}