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

:root {
  --bg: #faf8f5;
  --bg-alt: #f0ede6;
  --slate: #1a2a3a;
  --slate-mid: #2d3e50;
  --slate-light: #4a6074;
  --amber: #c8860a;
  --amber-light: #e8a020;
  --cream: #f5f0e8;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #ddd8ce;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── NAV ── */
.site-nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  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(--amber);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--slate);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
}

/* Hero visual: stack of cards */
.hero-visual { display: flex; justify-content: flex-end; }
.mockup-stack {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mockup-card {
  background: var(--slate);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(26,42,58,0.15);
}
.mockup-card:nth-child(2) { margin-left: 1.5rem; }
.mockup-card:nth-child(4) { margin-left: 0.75rem; }
.mock-icon { font-size: 1.1rem; color: var(--amber-light); }
.mock-label { font-weight: 600; font-size: 0.9rem; flex: 1; }
.mock-sub { font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ── SECTION SHARED ── */
.section-header { margin-bottom: 3rem; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.8rem;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 600px;
}

/* ── OFFERINGS ── */
.offerings {
  background: var(--cream);
  padding: 5rem 2rem;
}
.offerings-inner { max-width: 1100px; margin: 0 auto; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.offer-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.offer-card:nth-child(3n) { border-right: none; }
.offer-card:nth-child(n+4) { border-bottom: none; }
.offer-icon { font-size: 1.4rem; color: var(--amber); margin-bottom: 1rem; }
.offer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.7rem;
}
.offer-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── PROCESS ── */
.process { padding: 5rem 2rem; background: var(--bg); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.step-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step { padding: 0 1.5rem; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber-light);
  opacity: 0.35;
  display: block;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.step-connector {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin-top: 0.5rem;
}

/* ── PROMISE ── */
.promise {
  background: var(--slate);
  padding: 5rem 2rem;
  color: #fff;
}
.promise-inner { max-width: 1100px; margin: 0 auto; }
.promise-content .section-label { color: var(--amber-light); }
.promise-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.promise-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 3rem;
}
.promise-stats { display: flex; gap: 0; align-items: center; }
.stat { padding: 0 2.5rem; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber-light);
  display: block;
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; display: block; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); }

/* ── PRICING ── */
.pricing { padding: 5rem 2rem; background: var(--bg-alt); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem 3.5rem;
  max-width: 540px;
}
.pricing-header { margin-bottom: 2rem; }
.pricing-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.8rem;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.2rem; }
.price-currency { font-size: 1.5rem; font-weight: 300; color: var(--text-muted); }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
}
.price-period { font-size: 1rem; color: var(--text-muted); margin-left: 0.3rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.9rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--bg-alt);
  color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; font-style: italic; }

/* ── CLOSING ── */
.closing {
  background: var(--bg);
  padding: 6rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing p { font-size: 1.05rem; line-height: 1.75; color: var(--text-muted); }

/* ── FOOTER ── */
.site-footer {
  background: var(--slate);
  padding: 2.5rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 2rem; }
  .hero-visual { justify-content: flex-start; }
  .hero-visual { display: none; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { border-right: none; }
  .offer-card:nth-child(3n) { border-right: none; }
  .step-row { grid-template-columns: 1fr; gap: 0; }
  .step-connector { display: none; }
  .step { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
  .step:first-child { padding-left: 0; }
  .step:last-child { border-bottom: none; }
  .promise-stats { flex-direction: column; gap: 2rem; align-items: flex-start; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .pricing-card { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .pricing-card { padding: 1.5rem; }
  .price-amount { font-size: 3rem; }
}