:root {
  --ink: #18162a;
  --muted: #706d7d;
  --purple: #332668;
  --purple-2: #493990;
  --purple-soft: #ece8f8;
  --accent: #d7e58d;
  --accent-dark: #26320e;
  --cream: #f5f1e9;
  --paper: #fffdf9;
  --line: #dfdbe5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(35, 27, 65, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: radial-gradient(circle at 84% 8%, rgba(213, 228, 140, .24), transparent 24rem), var(--cream); }
button, input, select { font: inherit; }
button, label { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.topbar { height: 112px; max-width: 1180px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { display: block; width: auto; height: 98px; mix-blend-mode: multiply; }
.private-badge { display: flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 99px; background: rgba(255,255,255,.72); border: 1px solid rgba(51,38,104,.14); font-size: 12px; font-weight: 700; color: var(--purple); }
.private-badge span { width: 8px; height: 8px; border-radius: 50%; background: #62a64f; box-shadow: 0 0 0 4px rgba(98,166,79,.13); }

main { max-width: 1180px; margin: 0 auto; padding: 42px 28px 70px; }
.hero { display: grid; grid-template-columns: 1.45fr .65fr; gap: 70px; align-items: end; padding: 20px 0 54px; }
.eyebrow, .kicker { margin: 0 0 12px; color: var(--purple-2); font-size: 12px; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 0; max-width: 800px; color: var(--purple); font-family: Georgia, "Times New Roman", serif; font-size: clamp(46px, 7vw, 88px); font-weight: 500; line-height: .94; letter-spacing: -.052em; }
.hero-copy { max-width: 650px; margin: 28px 0 0; color: #575365; font-size: 18px; line-height: 1.55; }
.hero-note { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 10px; padding: 21px 22px; border: 1px solid rgba(51,38,104,.14); border-radius: 18px; background: rgba(255,255,255,.55); }
.hero-note-icon { flex: 0 0 auto; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: var(--accent-dark); font-size: 15px; }
.hero-note p { margin: 0; color: #625e6d; font-size: 13px; line-height: 1.5; }.hero-note strong { color: var(--ink); }

.selector-shell { overflow: hidden; border: 1px solid rgba(51,38,104,.12); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.stepper { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; max-width: 720px; margin: 0 auto; padding: 30px 40px 0; }
.step { display: flex; align-items: center; gap: 9px; padding: 0; color: #9a96a2; background: none; border: 0; cursor: pointer; }
.step span { display: grid; width: 29px; height: 29px; place-items: center; flex: 0 0 auto; border: 1px solid #cfcbd5; border-radius: 50%; font-size: 12px; font-style: normal; font-weight: 800; }
.step em { font-size: 12px; font-style: normal; font-weight: 750; }
.step.is-active, .step.is-complete { color: var(--purple); }.step.is-active span { color: white; background: var(--purple); border-color: var(--purple); }.step.is-complete span { background: var(--accent); border-color: var(--accent); color: var(--accent-dark); }
.step-line { height: 1px; margin: 0 15px; overflow: hidden; background: #ddd9e2; }.step-line i { display: block; width: 0; height: 100%; background: var(--purple); transition: width .3s ease; }.step-line.is-complete i { width: 100%; }
.panel { display: none; min-height: 510px; padding: 48px clamp(28px, 6vw, 76px) 44px; }.panel.is-active { display: block; animation: panel-in .32s ease both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.panel-heading { max-width: 670px; margin: 0 auto 36px; text-align: center; }.panel-heading h2, .results-head h2 { margin: 0 0 10px; color: var(--purple); font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 44px); font-weight: 500; line-height: 1.04; letter-spacing: -.03em; }.panel-heading > p:last-child { margin: 0; color: var(--muted); font-size: 14px; }
fieldset { border: 0; padding: 0; }
.choice-grid { display: grid; gap: 12px; }.choice-grid--five { grid-template-columns: repeat(5, 1fr); }
.choice-card, .need-card { position: relative; min-width: 0; cursor: pointer; }
.choice-card input, .need-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card { display: flex; min-height: 138px; align-items: center; justify-content: center; flex-direction: column; padding: 18px 8px; border: 1px solid var(--line); border-radius: 16px; background: white; text-align: center; transition: .2s ease; }
.choice-card:hover, .need-card:hover { border-color: #978dbd; transform: translateY(-2px); }.choice-card:has(input:focus-visible), .need-card:has(input:focus-visible), .comfort-option:has(input:focus-visible) { outline: 3px solid rgba(73,57,144,.24); outline-offset: 2px; }
.choice-card:has(input:checked) { color: white; border-color: var(--purple); background: var(--purple); box-shadow: 0 12px 28px rgba(51,38,104,.19); }
.choice-icon { display: grid; place-items: center; width: 39px; height: 39px; margin-bottom: 10px; border-radius: 12px; background: var(--purple-soft); color: var(--purple); font-family: Georgia, serif; font-size: 18px; }.choice-card:has(input:checked) .choice-icon { color: var(--accent-dark); background: var(--accent); }
.choice-card strong, .need-card strong { font-size: 14px; }.choice-card small, .need-card small { margin-top: 4px; color: #8a8692; font-size: 11px; }.choice-card:has(input:checked) small { color: #d6d0e6; }
.fields-row { display: grid; grid-template-columns: 1fr 1fr; max-width: 620px; gap: 16px; margin: 24px auto 0; }.fields-row--wide { max-width: 760px; }
.field { display: grid; gap: 7px; color: #4e4a59; font-size: 12px; font-weight: 760; }.field input, .field select { width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: white; outline: none; }.field input:focus, .field select:focus { border-color: var(--purple-2); box-shadow: 0 0 0 3px rgba(73,57,144,.1); }
.comfort-list { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 910px; gap: 12px; margin: 32px auto 0; }.comfort-list legend, .accessory-box legend { grid-column: 1 / -1; margin-bottom: 2px; color: #4e4a59; font-size: 12px; font-weight: 760; }
.comfort-option { position: relative; cursor: pointer; }.comfort-option input { position: absolute; opacity: 0; }.comfort-option > span { display: grid; grid-template-columns: 18px 1fr; min-height: 106px; column-gap: 10px; align-content: center; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: white; transition: .2s ease; }.comfort-option i { grid-row: 1 / 3; width: 17px; height: 17px; margin-top: 1px; border: 1.5px solid #aaa5b2; border-radius: 50%; box-shadow: inset 0 0 0 4px white; }.comfort-option strong { font-size: 13px; }.comfort-option small { margin-top: 5px; color: #7f7b87; font-size: 11px; line-height: 1.35; }.comfort-option:has(input:checked) > span { border-color: var(--purple); background: #f6f3ff; }.comfort-option:has(input:checked) i { background: var(--purple); border-color: var(--purple); }
.need-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 960px; gap: 14px; margin: 0 auto; }
.need-card { display: grid; min-height: 138px; align-content: center; justify-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: white; text-align: center; transition: .2s ease; }.need-card:has(input:checked) { border-color: var(--purple); background: #f8f6ff; }.need-card small { display: block; }.checkmark { position: absolute; top: 12px; right: 12px; display: none; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: white; background: var(--purple); font-size: 11px; }.need-card:has(input:checked) .checkmark { display: grid; }.need-icon { margin-bottom: 8px; color: var(--purple); font-size: 29px; line-height: 1; }.need-icon--base { font-size: 37px; }
.accessory-box { display: flex; flex-wrap: wrap; max-width: 800px; gap: 9px; margin: 25px auto 0; }.accessory-box legend { width: 100%; }.accessory-box label { position: relative; cursor: pointer; }.accessory-box input { position: absolute; opacity: 0; }.accessory-box span { display: block; padding: 9px 15px; border: 1px solid var(--line); border-radius: 99px; color: #666271; background: white; font-size: 12px; font-weight: 700; }.accessory-box label:has(input:checked) span { color: var(--purple); border-color: var(--purple); background: var(--purple-soft); }.accessory-box.is-disabled { opacity: .4; pointer-events: none; }
.linen-box { display: grid; grid-template-columns: 1fr .46fr; max-width: 960px; gap: 12px; margin: 22px auto 0; }.linen-box > legend { grid-column: 1 / -1; margin-bottom: 2px; color: #4e4a59; font-size: 12px; font-weight: 760; }.linen-group, .bath-option { padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: white; }.linen-group-head { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; }.linen-group-head > div { display: grid; gap: 3px; }.linen-group-head strong, .bath-option strong { color: var(--purple); font-size: 13px; }.linen-group-head small, .bath-option small { color: #7d7886; font-size: 10px; line-height: 1.4; }.linen-symbol { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border-radius: 9px; color: var(--purple); background: var(--purple-soft); font-size: 17px; }.linen-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }.linen-option { position: relative; cursor: pointer; }.linen-option input { position: absolute; opacity: 0; }.linen-option > span { display: grid; min-height: 88px; align-content: start; padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; transition: .2s ease; }.linen-option i { width: 14px; height: 14px; margin-bottom: 8px; border: 1.5px solid #aaa5b2; border-radius: 50%; box-shadow: inset 0 0 0 3px white; }.linen-option strong { font-size: 11px; }.linen-option small { margin-top: 4px; color: #7d7886; font-size: 9px; line-height: 1.35; }.linen-option:has(input:checked) > span { border-color: var(--purple); background: #f6f3ff; }.linen-option:has(input:checked) i { border-color: var(--purple); background: var(--purple); }.bath-option { position: relative; display: flex; align-items: center; gap: 12px; cursor: pointer; }.bath-option input { position: absolute; opacity: 0; }.bath-option > span:last-child { display: grid; gap: 4px; }.bath-option .checkmark { display: none; }.bath-option:has(input:checked) { border-color: var(--purple); background: #f8f6ff; }.bath-option:has(input:checked) .checkmark { display: grid; }.linen-box.is-disabled { opacity: .4; pointer-events: none; }
.form-error { min-height: 18px; margin: 14px 0 0; color: #a03232; text-align: center; font-size: 12px; font-weight: 700; }
.allocation-bar { display: flex; max-width: 960px; align-items: center; justify-content: space-between; margin: 0 auto 12px; padding: 11px 15px; border-radius: 12px; color: var(--purple); background: var(--purple-soft); font-size: 12px; font-weight: 760; }
.allocation-bar strong { font-size: 14px; }.allocation-bar.is-mismatch { color: #8a2f2f; background: #f8e6e4; }
.room-types { display: grid; max-width: 960px; gap: 12px; margin: 0 auto; }
.room-type-card { position: relative; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.room-type-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }.room-type-head strong { color: var(--purple); font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }.remove-room-type { padding: 5px 8px; color: #8a5860; border: 0; background: transparent; cursor: pointer; font-size: 11px; font-weight: 750; }.remove-room-type[hidden] { display: none; }
.room-type-fields { display: grid; grid-template-columns: .58fr 1fr 1fr 1.18fr; gap: 12px; }
.add-room-type { display: flex; align-items: center; justify-content: center; gap: 8px; width: max-content; margin: 14px auto 0; padding: 10px 14px; color: var(--purple); border: 1px dashed #978dbd; border-radius: 10px; background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }.add-room-type:hover { background: var(--purple-soft); }.add-room-type:disabled { opacity: .45; cursor: not-allowed; }
.panel-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }.panel-actions--end { justify-content: flex-end; }
.button { display: inline-flex; min-height: 45px; align-items: center; justify-content: center; gap: 12px; padding: 0 19px; border: 0; border-radius: 10px; cursor: pointer; font-size: 12px; font-weight: 800; text-decoration: none; transition: .2s ease; }.button:hover { transform: translateY(-1px); }.button--primary { color: white; background: var(--purple); box-shadow: 0 8px 20px rgba(51,38,104,.18); }.button--accent { color: var(--accent-dark); background: var(--accent); box-shadow: 0 8px 20px rgba(105,124,36,.15); }.button--ghost { color: var(--purple); border: 1px solid var(--line); background: transparent; }.button--light { color: var(--purple); background: white; }

.results { padding-top: 76px; }.results[hidden] { display: none; }.results-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }.results-head h2 { margin-bottom: 0; }.project-summary { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }.summary-chip { padding: 8px 12px; border: 1px solid rgba(51,38,104,.13); border-radius: 99px; color: #5f596f; background: rgba(255,255,255,.7); font-size: 11px; font-weight: 720; }.summary-chip strong { color: var(--purple); }
.recommendations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }.recommendation-card { position: relative; overflow: hidden; min-height: 300px; padding: 27px; border: 1px solid rgba(51,38,104,.12); border-radius: 20px; background: var(--paper); }.recommendation-card--primary { color: white; border-color: var(--purple); background: var(--purple); }.recommendation-card--wide { grid-column: 1 / -1; min-height: auto; }.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }.product-type { color: #777281; font-size: 10px; font-weight: 820; letter-spacing: .13em; text-transform: uppercase; }.recommendation-card--primary .product-type { color: #c9c2df; }.brand-pill { padding: 6px 9px; border-radius: 99px; color: var(--purple); background: var(--purple-soft); font-size: 9px; font-weight: 850; letter-spacing: .08em; }.recommendation-card--primary .brand-pill { color: var(--accent-dark); background: var(--accent); }.recommendation-card h3 { margin: 30px 0 9px; font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 500; letter-spacing: -.025em; }.recommendation-card .reason { margin: 0 0 22px; color: #676271; font-size: 13px; line-height: 1.55; }.recommendation-card--primary .reason { color: #d8d3e5; }.facts { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 24px; padding: 0; list-style: none; }.facts li { padding: 7px 9px; border-radius: 8px; color: #555060; background: #f0edf4; font-size: 10px; font-weight: 720; }.recommendation-card--primary .facts li { color: #ece9f4; background: rgba(255,255,255,.11); }.product-link { display: inline-flex; align-items: center; gap: 8px; color: var(--purple); font-size: 11px; font-weight: 820; text-decoration: none; }.recommendation-card--primary .product-link { color: var(--accent); }.product-link:hover { text-decoration: underline; }.card-rank { position: absolute; right: -16px; bottom: -32px; color: rgba(255,255,255,.05); font-family: Georgia, serif; font-size: 150px; line-height: 1; }
.room-result { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); gap: 15px; }.room-result-head { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 18px; border-radius: 14px; color: var(--purple); background: rgba(255,255,255,.68); border: 1px solid rgba(51,38,104,.12); }.room-result-head strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }.room-result-head span { color: #6e6879; font-size: 11px; font-weight: 720; text-align: right; }
.accessory-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }.accessory-item { display: flex; justify-content: space-between; gap: 15px; padding: 13px 15px; border-radius: 12px; background: #f2eff4; }.accessory-item span { color: #3e3a47; font-size: 12px; font-weight: 750; }.accessory-item a { flex: 0 0 auto; color: var(--purple); font-size: 10px; font-weight: 800; text-decoration: none; }
.quote-card { display: grid; grid-template-columns: 1.25fr .75fr; gap: 36px; align-items: center; margin-top: 18px; padding: 34px; border-radius: 22px; color: white; background: #25203d; }.quote-card h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 500; }.quote-card p { max-width: 680px; margin: 0; color: #c8c3d3; font-size: 12px; line-height: 1.55; }.quote-card .kicker { color: var(--accent); margin-bottom: 9px; }.quote-actions { display: grid; gap: 10px; }.text-button { padding: 4px; color: #d2ccdc; border: 0; background: none; cursor: pointer; font-size: 11px; text-decoration: underline; text-underline-offset: 3px; }.copy-status { grid-column: 1 / -1; min-height: 0; color: var(--accent) !important; font-weight: 700; }.validation-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 16px; padding: 17px 19px; border: 1px solid #dcd7df; border-radius: 14px; background: rgba(255,255,255,.56); }.validation-note > span { display: grid; place-items: center; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; color: white; background: var(--purple); font-family: Georgia, serif; font-size: 13px; font-weight: bold; }.validation-note p { margin: 1px 0 0; color: #6c6873; font-size: 11px; line-height: 1.5; }.validation-note strong { color: var(--ink); }
footer { display: flex; max-width: 1180px; justify-content: space-between; gap: 20px; margin: 0 auto; padding: 30px 28px 38px; border-top: 1px solid rgba(51,38,104,.12); color: #77727e; font-size: 10px; }footer p { margin: 0; }footer div { display: flex; gap: 20px; }footer a { color: var(--purple); font-weight: 750; text-decoration: none; }
@media (max-width: 800px) {
  main { padding-top: 24px; }.hero { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }.hero-note { max-width: 520px; }.choice-grid--five { grid-template-columns: repeat(2, 1fr); }.choice-grid--five .choice-card:last-child { grid-column: 1 / -1; }.comfort-list { grid-template-columns: 1fr; }.step em { display: none; }.stepper { max-width: 360px; }.need-grid { grid-template-columns: 1fr 1fr; }.need-card { min-height: 110px; }.linen-box { grid-template-columns: 1fr; }.linen-box > legend { grid-column: auto; }.linen-options { grid-template-columns: 1fr; }.linen-option > span { min-height: auto; }.fields-row, .room-type-fields { grid-template-columns: 1fr 1fr; }.recommendations, .room-result { grid-template-columns: 1fr; }.recommendation-card--wide { grid-column: auto; }.room-result-head { align-items: flex-start; flex-direction: column; }.room-result-head span { text-align: left; }.quote-card { grid-template-columns: 1fr; }.accessory-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .topbar { height: 82px; padding: 0 18px; }.brand-logo { height: 72px; }.private-badge { padding: 7px 10px; font-size: 10px; }main { padding: 24px 14px 50px; }h1 { font-size: 48px; }.hero-copy { font-size: 15px; }.selector-shell { border-radius: 20px; }.stepper { padding: 22px 24px 0; }.panel { padding: 38px 18px 28px; }.choice-card { min-height: 120px; }.need-grid { grid-template-columns: 1fr; }.need-card { min-height: 92px; }.panel-actions { gap: 10px; }.panel-actions .button { flex: 1; padding: 0 12px; }.results { padding-top: 54px; }.results-head { align-items: flex-start; flex-direction: column; }.recommendation-card { padding: 23px; }.quote-card { padding: 25px 22px; }footer { flex-direction: column; padding: 26px 18px; }
}

@media print {
  body { background: white; }.topbar, .hero, .selector-shell, .results-head .button, .quote-actions, footer { display: none !important; }main { max-width: none; padding: 0; }.results { padding: 0; }.recommendation-card, .quote-card, .validation-note { break-inside: avoid; box-shadow: none; }.quote-card { color: var(--ink); background: white; border: 1px solid #bbb; }.quote-card p { color: #555; }
}
