:root {
  --bg: #FAFAF5;
  --bg-alt: #F2F0E8;
  --fg: #1A1A1A;
  --fg-muted: #6B6860;
  --fg-faint: #A8A49C;
  --accent: #D4920A;
  --accent-dim: rgba(212, 146, 10, 0.12);
  --border: #E2DED4;
  --border-dark: #C8C4BA;
  --white: #FFFFFF;
}

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

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

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }

/* ── SECTION BASE ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ── HERO ── */
.hero {
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}

/* Hero shapes (right column) */
.hero-right { display: flex; justify-content: center; }
.hero-shapes { position: relative; width: 320px; height: 320px; }
.shape-block {
  position: absolute;
  background: var(--accent-dim);
  border: 1px solid rgba(212,146,10,0.3);
}
.shape-block--large { width: 220px; height: 220px; top: 0; left: 0; }
.shape-block--medium { width: 160px; height: 160px; bottom: 40px; right: 0; background: rgba(212,146,10,0.18); }
.shape-block--small { width: 90px; height: 90px; top: 30px; right: 60px; background: var(--accent); }
.shape-label {
  position: absolute;
  bottom: 0; left: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
}
.shape-label-val { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.5rem; color: var(--fg); }
.shape-label-sub { font-size: 0.75rem; color: var(--fg-muted); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.stat { flex: 1; padding: 24px 32px; display: flex; flex-direction: column; gap: 6px; }
.stat-value { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.5rem; color: var(--fg); }
.stat-label { font-size: 0.8rem; color: var(--fg-muted); }
.stat-divider { width: 1px; background: var(--border); }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 96px 0; background: var(--bg-alt); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 56px 0 40px; }
.step-card { background: var(--white); border: 1px solid var(--border); padding: 32px; border-radius: 4px; }
.step-number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 20px;
}
.step-title { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.25rem; margin-bottom: 12px; }
.step-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }
.disclaimer-strip {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 4px;
}
.disclaimer-strip p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.6; }

/* ── FEATURES ── */
.features { padding: 96px 0; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 64px; margin-top: 56px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.1rem; margin-bottom: 8px; }
.feature-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* ── WHY / COMPARISON ── */
.why-section { padding: 96px 0; background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.why-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-top: 16px; }
.comparison-table { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--fg);
  color: var(--white);
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.col-label { text-align: center; }
.col-label--highlight { color: var(--accent); }
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  align-items: center;
}
.comparison-row:last-child { border-bottom: none; }
.row-label { color: var(--fg); }
.cell { text-align: center; font-weight: 500; }
.cell.yes { color: #2A7A3B; }
.cell.no { color: var(--fg-faint); }
.cell.partial { color: var(--fg-muted); }

/* ── CLOSING ── */
.closing { padding: 96px 0; }
.closing-content { max-width: 680px; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.65; }
.closing-rule { height: 1px; background: var(--border); margin-top: 48px; }

/* ── FOOTER ── */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.wordmark--footer { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--fg); }
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-top: 8px; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 4px; }
.footer-col a { font-size: 0.875rem; color: var(--fg-muted); text-decoration: none; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.footer-bottom p { font-size: 0.75rem; color: var(--fg-faint); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .comparison-header, .comparison-row { font-size: 0.75rem; }
  .footer-inner { flex-direction: column; }
  .section-inner, .header-inner { padding: 0 24px; }
  .how-it-works, .features, .why-section, .closing { padding: 64px 0; }
}