:root {
  --bg: #F7F3EE;
  --bg-warm: #EFE9E1;
  --fg: #1A1714;
  --fg-muted: #6B6460;
  --accent: #BF4C2A;
  --accent-warm: #D4836A;
  --surface: #FFFFFF;
  --border: #E0D8CE;
}

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

html { scroll-behavior: smooth; }

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

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.nav-location {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  background: var(--bg);
  padding: 80px 24px 64px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.btn-primary:hover { background: #a33f22; }
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--fg);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--fg); background: var(--bg-warm); }

.hero-image-block {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(26, 23, 20, 0.12);
}
.hero-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-stats-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 40px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.hero-stat { text-align: center; flex: 1; }
.hero-stat-num { display: block; font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--fg); }
.hero-stat-label { display: block; font-size: 0.8rem; color: var(--fg-muted); margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Section shared ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 560px;
}

/* ── Outcomes ── */
.outcomes { background: var(--bg-warm); padding: 80px 24px; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes .section-heading { margin-bottom: 48px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.outcome-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26, 23, 20, 0.08); }
.outcome-icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.outcome-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.outcome-card p { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.65; }

/* ── Method ── */
.method { background: var(--fg); color: #fff; padding: 80px 24px; }
.method-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.method .section-label { color: var(--accent-warm); }
.method-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.method-body { color: rgba(255,255,255,0.72); margin-bottom: 16px; line-height: 1.75; }
.method-detail-item { display: flex; gap: 16px; margin-bottom: 24px; }
.detail-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-warm);
  margin-top: 6px;
}
.method-detail-item strong { display: block; font-weight: 600; margin-bottom: 4px; color: #fff; }
.method-detail-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; }

/* ── Proof ── */
.proof { background: var(--bg-warm); padding: 80px 24px; }
.proof-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center; }
.badge-img { height: 140px; width: auto; border-radius: 4px; opacity: 0.9; }
.reviews-heading {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 10px; }
.review-text { font-size: 0.95rem; line-height: 1.7; color: var(--fg); margin-bottom: 12px; font-style: italic; }
.review-card cite { font-size: 0.8rem; color: var(--fg-muted); font-style: normal; }

/* ── Manifesto ── */
.manifesto { background: var(--accent); color: #fff; padding: 96px 24px; }
.manifesto-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.manifesto-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto-body { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; }
.manifesto-sub { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* ── Footer ── */
.footer { background: var(--fg); color: rgba(255,255,255,0.6); padding: 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-name { font-family: 'DM Serif Display', serif; font-size: 1rem; color: #fff; margin-bottom: 4px; }
.footer-tagline { font-size: 0.8rem; }
.footer-meta { font-size: 0.85rem; text-align: center; }
.footer-meta a { color: rgba(255,255,255,0.6); text-decoration: none; margin: 0 8px; }
.footer-meta a:hover { color: #fff; }
.footer-cert { font-size: 0.75rem; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { height: 320px; }
  .hero-stats-row { gap: 0; padding: 20px 16px; }
  .hero-stat-num { font-size: 1.1rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .method-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-inner { grid-template-columns: 1fr; }
  .proof-badge { text-align: center; }
  .badge-img { height: 100px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}