:root {
  --bg: #FAF7F2;
  --ink: #2B1B14;
  --muted: #5C5148;
  --gold: #C8A66A;
  --card: #FFFFFF;
  --border: #E8E1D6;
  --shadow: 0 14px 34px rgba(43, 27, 20, 0.10);
  --radius: 18px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

section[id], main[id] { scroll-margin-top: 84px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; top: 12px; z-index: 60; }

/* ---------- Eyebrow + headings ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 14px;
}
.eyebrow--gold { color: var(--gold); }

/* ---------- Buttons (pills) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  border: 1.5px solid transparent;
}
.btn:focus-visible { outline: 3px solid rgba(200, 166, 106, 0.55); outline-offset: 2px; }
.btn--primary {
  background: var(--gold);
  color: #2B1B14;
}
.btn--primary:hover { background: #B99655; color: #FFFDF8; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn--outline:hover { background: rgba(200, 166, 106, 0.12); transform: translateY(-1px); }
.btn--sm { padding: 9px 18px; font-size: 13px; }

/* ---------- 1 | Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark svg { width: 30px; height: 30px; }
.brand-word {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.site-nav { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover { color: #8a6a3b; border-color: rgba(200, 166, 106, 0.6); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  cursor: pointer;
  width: 44px;
  height: 40px;
  padding: 0;
  line-height: 1;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px auto;
}

.site-nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 18px 20px;
  gap: 6px;
}
.site-nav-mobile.open { display: flex; }
.site-nav-mobile a {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 4px;
}
.site-nav-mobile .btn { text-align: center; margin-top: 6px; }

/* ---------- 2 | Hero ---------- */
.hero { padding: 96px 20px 72px; }
.layout-hero {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: start;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.12;
  margin: 0 0 22px;
  color: var(--ink);
}
.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 26px;
}
.value-bullets {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  font-size: 16px;
  color: var(--ink);
  display: grid;
  gap: 12px;
}
.value-bullets li::before {
  content: "—";
  color: var(--gold);
  margin-right: 12px;
  font-weight: 600;
}
.value-bullets strong { color: var(--ink); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 30px 26px;
}
.hero-card h2 {
  font-size: 24px;
  margin: 0 0 16px;
}
.hero-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.hero-card-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 15px;
}
.hero-card-list li { padding: 6px 0 6px 24px; position: relative; }
.hero-card-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.micro-disclaimer {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding: 10px 0 2px;
}
.micro-disclaimer em { color: #9A7B52; }

/* ---------- 3 | Video ---------- */
.video-sec { padding: 64px 20px 72px; background: linear-gradient(180deg, var(--bg), #F3EDE4); }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 26px auto 0;
  max-width: 880px;
  border-radius: 22px;
  background: linear-gradient(135deg, #3A291C 0%, #2B1B14 55%, #5C3A22 100%);
  border: 1px solid rgba(200, 166, 106, 0.35);
  box-shadow: var(--shadow);
}
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.92;
}
.video-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8DFCE;
}
.video-caption {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- 4 | Why / 6 | Steps cards ---------- */
.why { padding: 72px 20px 40px; }
.steps { padding: 64px 20px 72px; background: linear-gradient(180deg, var(--bg), #F3EDE4); }

h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin: 0 0 34px;
  color: var(--ink);
}

.card-grid { display: grid; gap: 22px; }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 6px 18px rgba(43, 27, 20, 0.07);
}
.card h3 { font-size: 20px; margin: 10px 0 10px; }
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 8px; }
.card-index {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(200, 166, 106, 0.10);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
}
.step h3 { margin: 14px 0 8px; }

/* ---------- 5 | Problem vs solution ---------- */
.vs { padding: 72px 20px 40px; }
.vs-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.vs-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
}
.vs-card--problem { border-color: #E0D6C8; }
.vs-card--solution h3 { color: #8A6A3B; }
.vs-card p { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 0; }

/* ---------- 7 | Tiers table ---------- */
.tiers { padding: 72px 20px 72px; }
.section-note { color: var(--muted); font-size: 15px; max-width: 70ch; margin: 0 0 28px; }

.tiers-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-family: var(--font-body);
}
.tiers-table thead th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 2px solid var(--gold);
  background: #FFFDF8;
}
.tiers-table tbody tr:nth-child(even) { background: #FBF7F0; }
.tiers-table th[scope="row"] {
  text-align: left;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
}
.tiers-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  vertical-align: middle;
}
.tiers-table td:nth-child(2) { font-weight: 600; color: var(--ink); white-space: nowrap; }
.tiers-table td:nth-child(3) { color: var(--muted); }
.tiers-table td:nth-child(4), .tiers-table td:nth-child(5) { color: var(--muted); }
.tiers-table tbody tr:last-child th, .tiers-table tbody tr:last-child td { border-bottom: none; }

.disclaimer {
  max-width: 66ch;
  color: var(--muted);
  font-size: 13.5px;
  margin: 20px 0 0;
}
.disclaimer strong { color: var(--ink); }

/* ---------- 8 | Progress ---------- */
.progress { padding: 72px 20px 72px; background: linear-gradient(180deg, var(--bg), #F3EDE4); }
.progress-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 30px;
}
.progress-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { text-align: left; }
.stat-value {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
}
.stat-label { display: block; font-size: 13px; letter-spacing: 0.06em; color: var(--muted); margin-top: 6px; }

.progress-bar {
  position: relative;
  height: 22px;
  border-radius: 999px;
  background: #EFE9DE;
  border: 1px solid var(--border);
  margin: 26px 0 8px;
  overflow: hidden;
}
.progress-fill { display: block; width: 6%; background: var(--gold); opacity: 0.6; }
.progress-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.progress-panel h3 { font-size: 21px; margin: 26px 0 4px; }
.progress-panel p { color: var(--muted); font-size: 13.5px; }

.milestones { margin: 10px 0 18px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.milestones li { color: var(--ink); font-size: 15px; }
.milestone-status {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: #F1EBDE;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 12px;
  margin-right: 10px;
}

/* ---------- 9 | Rewards ---------- */
.rewards { padding: 72px 20px 72px; }
.rewards-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.rewards-list li {
  padding: 22px 26px;
  color: var(--ink);
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.rewards-list li:last-child { border-bottom: none; }
.reward-note { color: var(--muted); font-size: 13.5px; white-space: nowrap; }

/* ---------- 10 | FAQ ---------- */
.faqs { padding: 72px 20px 72px; background: linear-gradient(180deg, var(--bg), #F3EDE4); }
.faq-list { display: grid; gap: 14px; }
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
details summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 22px;
  font-family: var(--font-body);
  font-weight: 400;
}
details[open] summary::after { content: "–"; }
details[open] { box-shadow: var(--shadow); }
details p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
details p em { color: #9A7B52; }

/* ---------- 11 | Final CTA ---------- */
.final-cta { padding: 72px 20px 72px; }
.final-inner { text-align: center; }
.final-inner h2 { text-align: center; }
.final-inner p { color: var(--muted); text-align: center; max-width: 56ch; margin: 0 auto 26px; font-size: 16px; }
.final-inner .btn { display: inline-block; margin: 0 auto; }

.disclaimer-box {
  max-width: 760px;
  margin: 44px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
}
.disclaimer-box h3 { font-size: 20px; margin: 0 0 14px; }
.disclaimer-box ul { margin: 0; padding: 0 0 0 4px; list-style: none; display: grid; gap: 12px; }
.disclaimer-box li { font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.disclaimer-box li strong { color: var(--ink); }
.disclaimer-box li em { color: #9A7B52; }

/* ---------- 12 | Footer ---------- */
.site-footer {
  background: #2B1B14;
  color: #E8DFCE;
  padding: 34px 20px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { font-family: var(--font-head); font-style: italic; font-size: 16px; margin: 0; }
.footer-nav { display: flex; gap: 26px; }
.footer-nav a {
  color: #E8DFCE;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .site-nav-mobile { display: none !important; }
}

@media (max-width: 719px) {
  .header-inner { padding: 12px 16px; }
  .site-nav { display: none; }
  .header-inner > .btn { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-toggle span { margin: 0 auto; }

  .hero { padding: 56px 16px 48px; }
  .layout-hero { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: stretch; }

  .card-grid--4,
  .vs-grid,
  .progress-stats { grid-template-columns: 1fr; }

  .tiers-table { display: block; overflow-x: auto; }

  .rewards-list li { flex-direction: column; }

  .final-inner .btn { width: 100%; }
}

@media (min-width: 560px) {
  .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 720px) {
  .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 400px) {
  body { font-size: 15px; }
  .hero-copy h1 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}