:root {
  --forest: #11382f;
  --forest-deep: #09251f;
  --forest-soft: #e8f0ed;
  --gold: #b8923f;
  --gold-light: #d7b565;
  --cream: #f7f4ec;
  --white: #fff;
  --ink: #15231f;
  --muted: #5a6863;
  --line: #d8ddd9;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1040px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
  color: var(--forest);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
header { background: var(--white); border-bottom: 1px solid rgba(17, 56, 47, .12); }
nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
nav img { width: 248px; }
nav a { color: var(--forest); font-weight: 700; text-decoration: none; }
.back-link { display: inline-flex; align-items: center; gap: 8px; }
.hero { position: relative; overflow: hidden; padding: 78px 0 70px; }
.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(184, 146, 63, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(184, 146, 63, .05), 0 0 0 100px rgba(184, 146, 63, .03);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 68px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}
.supporting { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 1.18rem; }
.hero-points { display: grid; gap: 12px; margin-top: 28px; }
.hero-points div { display: flex; gap: 11px; align-items: center; font-weight: 600; }
.hero-points span {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: .8rem;
}
.advisor-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(9, 37, 31, .1);
}
.advisor-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center top; border-radius: 5px; }
.advisor-card strong { display: block; margin-top: 16px; color: var(--forest); font-family: var(--serif); font-size: 1.28rem; font-weight: 400; }
.advisor-card span { color: var(--muted); font-size: .88rem; }
.checklist-section { padding: 86px 0; background: white; }
.section-intro { max-width: 720px; margin-bottom: 40px; }
.section-intro h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}
.section-intro p { color: var(--muted); font-size: 1.05rem; }
.progress-wrap { position: sticky; top: 0; z-index: 10; padding: 16px 0; background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); }
.progress-row { display: flex; align-items: center; gap: 18px; }
.progress-track { flex: 1; height: 8px; overflow: hidden; border-radius: 99px; background: var(--forest-soft); }
.progress-bar { width: 0; height: 100%; background: var(--gold); transition: width .2s ease; }
.progress-text { min-width: 128px; color: var(--forest); font-weight: 700; }
.decision-list { display: grid; gap: 14px; margin-top: 26px; }
.decision {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.decision:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.decision.checked { border-color: var(--forest); background: var(--forest-soft); }
.decision input { position: absolute; opacity: 0; pointer-events: none; }
.checkmark {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--forest);
  border-radius: 50%;
  color: transparent;
  font-size: 1.25rem;
  font-weight: 700;
}
.decision.checked .checkmark { background: var(--forest); color: white; }
.decision h3 { margin: 0 0 7px; color: var(--forest); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.decision p { margin: 0; color: var(--muted); }
.decision .question { margin-top: 12px; color: var(--ink); font-weight: 600; }
.result { margin-top: 34px; padding: 30px; border-radius: 8px; background: var(--forest); color: white; }
.result h2 { margin: 0 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.result p { margin: 0; color: rgba(255, 255, 255, .8); }
.result strong { color: var(--gold-light); }
.next-step { padding: 82px 0; background: var(--forest-deep); color: white; }
.next-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.next-step h2 { max-width: 710px; margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 400; line-height: 1.05; }
.next-step p { max-width: 650px; color: rgba(255, 255, 255, .76); }
.actions { display: grid; gap: 12px; min-width: 255px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 5px; background: white; color: var(--forest); font-weight: 700; text-decoration: none; }
.phone { text-align: center; color: var(--gold-light); font-weight: 700; }
footer { padding: 42px 0; background: #071a16; color: rgba(255, 255, 255, .58); font-size: .76rem; }
footer p { margin: 0 0 12px; }
footer a { color: rgba(255, 255, 255, .76); }

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1040px); }
  nav img { width: 205px; }
  .back-link { font-size: 0; }
  .back-link::after { content: "Back"; font-size: .92rem; }
  .hero { padding: 54px 0 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .advisor-card { display: grid; grid-template-columns: 92px 1fr; gap: 15px; align-items: center; }
  .advisor-card img { width: 92px; }
  .advisor-card strong { margin-top: 0; }
  .decision { grid-template-columns: 44px 1fr; padding: 20px 17px; }
  .checkmark { width: 36px; height: 36px; }
  .next-grid { grid-template-columns: 1fr; }
  .actions { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition-duration: .01ms !important; } }
