:root {
  color-scheme: light;
  --ink: #21332b;
  --muted: #68736c;
  --cream: #fbf6ea;
  --paper: #fffdf7;
  --green: #236b55;
  --green-deep: #184d3e;
  --lime: #dce7a0;
  --apricot-soft: #fae3d1;
  --line: #d9d6ca;
  --danger: #9b4938;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-display: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--font-body); text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
[hidden] { display: none !important; }

[data-ah-icon] { width: 1.15em; height: 1.15em; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
[data-ah-icon] svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.site-header { border-bottom: 1px solid var(--line); background: rgba(251,246,234,0.94); }
.nav { width: min(1040px, calc(100% - 40px)); min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; }
.back-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-size: 0.82rem; font-weight: 800; text-decoration: none; }

.page { width: min(1040px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 80px; }
.intro { max-width: 800px; margin-bottom: 34px; }
.eyebrow { width: fit-content; display: inline-flex; align-items: center; gap: 8px; margin: 0 0 15px; padding: 7px 11px; border: 1px solid #bdc99f; border-radius: 999px; background: #eff3d2; color: #35543d; font-size: 0.73rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { max-width: 780px; margin: 0; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.7rem); font-weight: 600; line-height: 0.94; letter-spacing: -0.045em; }
.lead { max-width: 720px; margin: 19px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

.layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr); gap: 26px; align-items: start; }
.panel { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: 0 18px 50px rgba(43,59,49,0.07); }
.panel.sticky { position: sticky; top: 24px; }
.panel-head { margin-bottom: 24px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.panel-head h2 { margin: 0; font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1.05; }
.panel-head p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }

.question-list { display: grid; gap: 18px; }
.question { margin: 0; padding: 0 0 20px; border: 0; border-bottom: 1px solid var(--line); }
.question:last-child { padding-bottom: 0; border-bottom: 0; }
.question legend { width: 100%; margin-bottom: 11px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.25; }
.choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { min-height: 46px; display: grid; place-items: center; padding: 9px 10px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--muted); font-size: 0.78rem; font-weight: 700; text-align: center; cursor: pointer; }
.choice input:checked + span { border-color: var(--green); background: #e9f1eb; color: var(--green-deep); box-shadow: inset 0 0 0 1px var(--green); }
.choice input:focus-visible + span { outline: 3px solid rgba(35,107,85,0.2); outline-offset: 2px; }

.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span { font-size: 0.8rem; font-weight: 800; }
input, select { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid #cfcfc5; border-radius: 12px; background: white; color: var(--ink); font: inherit; }
input:focus, select:focus { outline: 3px solid rgba(35,107,85,0.16); border-color: var(--green); }
.hint { color: var(--muted); font-size: 0.72rem; line-height: 1.5; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin-top: 18px; padding: 15px; border: 1px solid #d7dfd2; border-radius: 14px; background: #f2f6ed; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }
.consent input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--green); }

.button { width: 100%; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; margin-top: 20px; padding: 13px 17px; border: 1px solid var(--green); border-radius: 999px; background: var(--green); color: white; font: inherit; font-weight: 800; text-decoration: none; cursor: pointer; }
.button.secondary { background: transparent; color: var(--green); }
.button:disabled { opacity: 0.55; cursor: wait; }
.form-error { margin: 13px 0 0; color: var(--danger); font-size: 0.8rem; line-height: 1.5; }
.privacy-note { display: flex; gap: 9px; margin: 17px 0 0; color: var(--muted); font-size: 0.72rem; line-height: 1.55; }
.privacy-note [data-ah-icon] { margin-top: 0.2em; color: var(--green); }

.summary-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.summary-list li { display: flex; gap: 10px; color: var(--muted); font-size: 0.85rem; line-height: 1.55; }
.summary-list [data-ah-icon] { margin-top: 0.2em; color: var(--green); }
.mini-price { margin: 18px 0 4px; font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; }
.mini-price small { color: var(--muted); font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; }

.result { padding: 31px; border: 2px solid var(--green); border-radius: 24px; background: var(--paper); box-shadow: 0 24px 60px rgba(35,107,85,0.13); }
.result-label { margin: 0 0 9px; color: var(--green); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.result h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; line-height: 1; letter-spacing: -0.035em; }
.result-copy { color: var(--muted); line-height: 1.7; }
.order-reference { width: fit-content; margin: 16px 0 0; padding: 9px 12px; border: 1px solid #ccd8c9; border-radius: 10px; background: #f2f6ed; color: var(--green-deep); font-size: 0.83rem; font-weight: 800; letter-spacing: 0.02em; }
.action-box { margin-top: 20px; padding: 18px; border-left: 4px solid var(--green); background: #eff5ec; }
.action-box strong { display: block; margin-bottom: 5px; }
.action-box p { margin: 0; color: var(--muted); line-height: 1.6; }
.result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.result-actions .button { margin: 0; }
.status-note { margin: 14px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }
.status-note.warning { color: #82542f; }

.package-summary { padding: 22px; border: 1px solid #ccd8c9; border-radius: 18px; background: #f2f6ed; }
.package-summary .tag { width: fit-content; display: inline-flex; margin-bottom: 13px; padding: 6px 9px; border-radius: 999px; background: var(--lime); color: var(--green-deep); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; }
.package-summary h2 { margin: 0; font-family: var(--font-display); font-size: 2.3rem; font-weight: 600; }
.package-summary p { color: var(--muted); line-height: 1.6; }
.package-summary.waitlist { border-color: #d4d5ce; background: #f0f0eb; }

footer { padding: 24px 0; border-top: 1px solid var(--line); background: var(--paper); color: var(--muted); font-size: 0.75rem; line-height: 1.6; }
footer .wrap { width: min(1040px, calc(100% - 40px)); display: flex; justify-content: space-between; gap: 20px; margin: 0 auto; flex-wrap: wrap; }
footer a { color: var(--green); }

@media (prefers-reduced-motion: no-preference) {
  .button { transition: transform 160ms ease, box-shadow 160ms ease; }
  .button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(35,107,85,0.16); }
  .panel, .intro { animation: enter 650ms cubic-bezier(.22,1,.36,1) both; }
  .layout > :nth-child(2) { animation-delay: 90ms; }
  @keyframes enter { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
}

@media (max-width: 800px) {
  .layout { grid-template-columns: 1fr; }
  .panel.sticky { position: static; }
  .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (max-width: 560px) {
  .nav, .page, footer .wrap { width: min(100% - 26px, 500px); }
  .nav { min-height: 64px; }
  .page { padding-top: 40px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .panel, .result { padding: 22px 18px; border-radius: 20px; }
  .choices { grid-template-columns: 1fr; }
  .choice span { min-height: 42px; }
  .result-actions { grid-template-columns: 1fr; }
}
