:root {
  --ink: #152724;
  --muted: #5d6a67;
  --paper: #f6f1e8;
  --card: #fffdf8;
  --sage: #8ba89c;
  --deep: #183d37;
  --gold: #c3914b;
  --line: #d9ddd7;
  --danger: #8e2b2b;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif; }
button, input, select { font: inherit; }
.shell { max-width: 1120px; margin: auto; padding: 20px; }
.hero { min-height: 72vh; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 56px; }
.eyebrow { color: var(--deep); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { font-family: Georgia, serif; font-size: clamp(3.2rem, 7vw, 6.8rem); line-height: .88; margin: 18px 0 24px; font-weight: 500; }
h2 { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
.lede { max-width: 620px; font-size: 1.18rem; line-height: 1.65; color: var(--muted); }
.portrait { position: relative; }
.portrait img { width: 100%; max-height: 720px; object-fit: cover; object-position: 50% 35%; border-radius: 220px 220px 24px 24px; box-shadow: 0 35px 80px #173a2d26; }
.tag { position: absolute; left: -24px; bottom: 34px; max-width: 270px; padding: 18px 20px; background: #fffdf8ed; backdrop-filter: blur(10px); border: 1px solid #fff; border-radius: 16px; font-size: .92rem; line-height: 1.45; }
.button { display: inline-flex; border: 0; border-radius: 999px; padding: 15px 24px; background: var(--deep); color: white; cursor: pointer; font-weight: 750; text-decoration: none; }
.button:hover { background: #0e2c27; }
.micro { margin-top: 14px; color: var(--muted); font-size: .82rem; }
.checkin { padding: 70px 0 110px; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: 26px; padding: clamp(22px, 4vw, 48px); box-shadow: 0 20px 50px #243b3020; }
.progress { height: 7px; background: #e6e7e1; border-radius: 999px; overflow: hidden; margin-bottom: 35px; }
.progress > div { height: 100%; width: 10%; background: var(--gold); transition: width .3s ease; }
.question { display: none; }
.question.active { display: block; animation: rise .26s ease; }
.question legend { font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.1; margin-bottom: 25px; }
.options { display: grid; gap: 11px; }
.option { display: flex; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 15px; cursor: pointer; }
.option:hover, .option:has(input:checked) { border-color: var(--sage); background: #eef4ef; }
.nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.secondary { background: transparent; color: var(--deep); border: 1px solid var(--deep); }
.result { display: none; }
.result.visible { display: block; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.note { border-left: 3px solid var(--gold); padding-left: 18px; color: var(--muted); }
.list { padding-left: 20px; line-height: 1.65; }
.urgent { border-color: #d7a2a2; background: #fff7f5; }
.urgent h2 { color: var(--danger); }
blockquote { margin: 30px 0 18px; padding: 24px 28px; background: #edf3ef; border-radius: 18px; font: 1.35rem/1.45 Georgia, serif; color: var(--deep); }
.interpretation { color: var(--muted); line-height: 1.65; margin-bottom: 34px; }
.shelf { margin-top: 48px; padding-top: 38px; border-top: 1px solid var(--line); }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 25px 0 15px; }
.tier { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.tier.featured { border-color: var(--gold); box-shadow: 0 14px 35px #77501b1a; transform: translateY(-8px); }
.tier-role { color: var(--gold); font-size: .73rem; text-transform: uppercase; font-weight: 800; letter-spacing: .1em; }
.tier h3 { font: 1.7rem Georgia, serif; margin: 9px 0; }
.tier p { color: var(--muted); min-height: 48px; }
.tier ul { padding-left: 18px; line-height: 1.7; min-height: 118px; }
.tier span { display: block; color: var(--deep); font-weight: 800; font-size: .85rem; }
footer { border-top: 1px solid var(--line); padding: 35px 0 60px; color: var(--muted); font-size: .85rem; }
footer a { color: inherit; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 35px; gap: 30px; }
  .hero-copy { order: 2; }
  .portrait { order: 1; }
  .portrait img { max-height: 520px; }
  .tag { left: 12px; right: 12px; bottom: 18px; max-width: none; }
  .result-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
}
