.rrwc-app,
.rrwc-app * {
  box-sizing: border-box;
}

.rrwc-app {
  --rrwc-primary: #6f2638;
  --rrwc-accent: #c79a54;
  --rrwc-surface: #fffaf6;
  --rrwc-ink: #2e2024;
  --rrwc-muted: #786b6f;
  --rrwc-line: #eadfd8;
  width: 100%;
  margin: 34px auto;
  color: var(--rrwc-ink);
  font-family: inherit;
  line-height: 1.55;
}

.rrwc-app button,
.rrwc-app input,
.rrwc-app select {
  font: inherit;
}

.rrwc-app button,
.rrwc-app label,
.rrwc-app select {
  -webkit-tap-highlight-color: transparent;
}

.rrwc-shell {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(111, 38, 56, .13);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(64, 34, 41, .13);
}

.rrwc-public-header {
  position: relative;
  overflow: hidden;
  padding: 56px 56px 46px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 10% -10%, rgba(255,255,255,.13), transparent 33%),
    radial-gradient(circle at 92% 110%, rgba(199,154,84,.25), transparent 34%),
    linear-gradient(135deg, #5d1d2d 0%, var(--rrwc-primary) 55%, #4d1724 100%);
}

.rrwc-public-header::before,
.rrwc-public-header::after {
  position: absolute;
  width: 175px;
  height: 175px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}

.rrwc-public-header::before { top: -88px; left: -72px; }
.rrwc-public-header::after { right: -75px; bottom: -100px; }

.rrwc-monogram {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #f1d9ae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: .08em;
}

.rrwc-monogram i {
  width: 22px;
  height: 1px;
  background: currentColor;
  transform: rotate(-45deg);
}

.rrwc-kicker,
.rrwc-small-kicker {
  margin: 0 0 8px;
  color: var(--rrwc-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.rrwc-public-header .rrwc-kicker { color: #f2d7a7; }

.rrwc-public-header h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 13px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -.025em;
}

.rrwc-intro {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin: 0 auto;
  color: rgba(255,255,255,.83);
  font-size: 16px;
}

.rrwc-trust-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,.86);
}

.rrwc-trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.rrwc-trust-row i { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: var(--rrwc-primary); background: #f2d7a7; font-size: 11px; font-style: normal; font-weight: 800; }

.rrwc-progress-wrap {
  padding: 26px 54px 22px;
  border-bottom: 1px solid var(--rrwc-line);
  background: var(--rrwc-surface);
}

.rrwc-progress-meta { display: flex; justify-content: space-between; margin-bottom: 9px; color: var(--rrwc-muted); font-size: 12px; font-weight: 700; }
.rrwc-progress { height: 5px; overflow: hidden; border-radius: 99px; background: #eaded7; }
.rrwc-progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--rrwc-primary), var(--rrwc-accent)); transition: width .35s ease; }
.rrwc-step-labels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 12px 0 0; padding: 0; list-style: none; }
.rrwc-step-labels li { color: #a3969a; font-size: 11px; text-align: center; }
.rrwc-step-labels li.is-active { color: var(--rrwc-primary); font-weight: 800; }
.rrwc-step-labels li.is-complete { color: #7d9b79; }

.rrwc-form { padding: 42px 54px 48px; background: #fff; }
.rrwc-step[hidden], .rrwc-results[hidden], .rrwc-progress-wrap[hidden], .rrwc-form[hidden] { display: none !important; }
.rrwc-step.is-active { animation: rrwcFade .28s ease both; }

@keyframes rrwcFade {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}

.rrwc-step-heading { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 30px; }
.rrwc-step-heading > span { display: grid; flex: 0 0 44px; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(199,154,84,.55); border-radius: 50%; color: var(--rrwc-accent); font-family: Georgia, serif; font-size: 15px; background: #fffaf2; }
.rrwc-step-heading h3 { margin: 0 0 4px; color: var(--rrwc-ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3.5vw, 34px); font-weight: 500; line-height: 1.2; }
.rrwc-step-heading p { margin: 0; color: var(--rrwc-muted); font-size: 14px; }

.rrwc-choice-grid { display: grid; gap: 16px; }
.rrwc-mode-grid { grid-template-columns: 1fr 1fr; }
.rrwc-choice-card { position: relative; display: flex; min-height: 176px; flex-direction: column; align-items: flex-start; padding: 25px; border: 1px solid var(--rrwc-line); border-radius: 19px; background: #fff; cursor: pointer; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.rrwc-choice-card:hover { transform: translateY(-2px); border-color: rgba(111,38,56,.35); box-shadow: 0 13px 30px rgba(67,34,42,.08); }
.rrwc-choice-card.is-selected { border-color: var(--rrwc-primary); background: linear-gradient(150deg, #fff 0%, var(--rrwc-surface) 100%); box-shadow: inset 0 0 0 1px var(--rrwc-primary), 0 13px 30px rgba(67,34,42,.08); }
.rrwc-choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rrwc-choice-icon { display: grid; width: 42px; height: 42px; margin-bottom: 18px; place-items: center; border-radius: 50%; color: var(--rrwc-primary); background: #f7eee9; font-family: Georgia, serif; font-size: 21px; }
.rrwc-choice-card strong { margin-bottom: 6px; color: var(--rrwc-ink); font-size: 17px; }
.rrwc-choice-card small { color: var(--rrwc-muted); font-size: 13px; line-height: 1.5; }

.rrwc-budget-field { max-width: 560px; margin: 28px auto 0; padding: 22px; border: 1px solid #ead9ca; border-radius: 18px; text-align: center; background: #fffaf2; }
.rrwc-budget-field[hidden] { display: none; }
.rrwc-budget-field > label { display: block; margin-bottom: 10px; color: var(--rrwc-ink); font-weight: 700; }
.rrwc-money-input { display: flex; align-items: center; max-width: 360px; margin: 0 auto; overflow: hidden; border: 1px solid #d8c8bd; border-radius: 12px; background: #fff; }
.rrwc-money-input > span { padding: 12px 14px; color: var(--rrwc-primary); font-size: 20px; font-weight: 700; background: #f8efea; }
.rrwc-money-input input { min-width: 0; width: 100%; padding: 12px 15px; border: 0; outline: 0; color: var(--rrwc-ink); font-size: 20px; font-weight: 700; background: transparent; }
.rrwc-budget-field small { display: block; margin-top: 8px; color: var(--rrwc-muted); }

.rrwc-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.rrwc-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rrwc-span-2 { grid-column: span 2; }
.rrwc-public-field { display: flex; flex-direction: column; gap: 7px; color: var(--rrwc-ink); font-weight: 700; }
.rrwc-public-field > span { font-size: 13px; }
.rrwc-public-field select,
.rrwc-public-field input,
.rrwc-stay-card input { width: 100%; min-height: 51px; padding: 0 14px; border: 1px solid #ded3ce; border-radius: 11px; outline: 0; color: var(--rrwc-ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.rrwc-public-field select:focus,
.rrwc-public-field input:focus,
.rrwc-stay-card input:focus,
.rrwc-app .has-error { border-color: #bc364e !important; box-shadow: 0 0 0 3px rgba(188,54,78,.12) !important; }

.rrwc-option-fieldset { margin: 28px 0 0; padding: 0; border: 0; }
.rrwc-option-fieldset legend { margin-bottom: 12px; color: var(--rrwc-ink); font-size: 13px; font-weight: 800; }
.rrwc-pill-options { display: flex; flex-wrap: wrap; gap: 10px; }
.rrwc-pill-options input { position: absolute; opacity: 0; }
.rrwc-pill-options label { cursor: pointer; }
.rrwc-pill-options span { display: block; padding: 11px 17px; border: 1px solid var(--rrwc-line); border-radius: 99px; color: var(--rrwc-muted); font-size: 13px; font-weight: 700; background: #fff; transition: all .2s; }
.rrwc-pill-options input:checked + span,
.rrwc-pill-options label.is-selected span { border-color: var(--rrwc-primary); color: #fff; background: var(--rrwc-primary); }

.rrwc-guest-control { display: grid; grid-template-columns: 1fr 125px; gap: 14px 20px; align-items: center; margin-bottom: 25px; padding: 20px 22px; border-radius: 16px; background: var(--rrwc-surface); }
.rrwc-guest-control label { display: block; color: var(--rrwc-ink); font-weight: 800; }
.rrwc-guest-control small { display: block; color: var(--rrwc-muted); font-size: 12px; }
.rrwc-guest-number { width: 125px; min-height: 48px; padding: 0 12px; border: 1px solid #d9cbc4; border-radius: 11px; color: var(--rrwc-primary); text-align: center; font-size: 20px; font-weight: 800; background: #fff; }
.rrwc-guest-range { grid-column: 1 / -1; width: 100%; accent-color: var(--rrwc-primary); }

.rrwc-event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.rrwc-event-card { position: relative; display: flex; min-width: 0; min-height: 175px; flex-direction: column; padding: 19px; border: 1px solid var(--rrwc-line); border-radius: 16px; cursor: pointer; background: #fff; transition: all .2s; }
.rrwc-event-card:hover { border-color: rgba(111,38,56,.35); }
.rrwc-event-card.is-selected { border-color: var(--rrwc-primary); background: var(--rrwc-surface); box-shadow: inset 0 0 0 1px var(--rrwc-primary); }
.rrwc-event-check { position: absolute; top: 14px; right: 14px; }
.rrwc-event-check input { position: absolute; opacity: 0; }
.rrwc-event-check i { display: grid; width: 23px; height: 23px; place-items: center; border: 1px solid #d6c7c0; border-radius: 50%; color: transparent; font-style: normal; font-size: 11px; background: #fff; }
.rrwc-event-card.is-selected .rrwc-event-check i { border-color: var(--rrwc-primary); color: #fff; background: var(--rrwc-primary); }
.rrwc-event-card > strong { padding-right: 24px; color: var(--rrwc-ink); font-family: Georgia, serif; font-size: 18px; }
.rrwc-event-card > small { margin-top: 3px; color: var(--rrwc-muted); font-size: 12px; }
.rrwc-event-guests { display: flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 16px; }
.rrwc-event-guests input { min-width: 0; width: 82px; height: 37px; padding: 0 8px; border: 1px solid #d9cbc4; border-radius: 9px; text-align: center; background: #fff; }
.rrwc-event-guests input:disabled { opacity: .42; }
.rrwc-event-guests em { color: var(--rrwc-muted); font-size: 11px; font-style: normal; }

.rrwc-stay-card { display: grid; grid-template-columns: 1fr 120px 120px; gap: 20px; align-items: end; margin: 24px 0 0; padding: 22px; border: 1px solid var(--rrwc-line); border-radius: 17px; background: var(--rrwc-surface); }
.rrwc-stay-card h4 { margin: 0 0 2px; color: var(--rrwc-ink); font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.rrwc-stay-card p { margin: 0; color: var(--rrwc-muted); font-size: 12px; }
.rrwc-stay-card label { color: var(--rrwc-ink); font-size: 12px; font-weight: 800; }
.rrwc-stay-card label span { display: block; margin-bottom: 6px; }

.rrwc-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.rrwc-service-grid input { position: absolute; opacity: 0; }
.rrwc-service-grid label { cursor: pointer; }
.rrwc-service-grid label > span { display: flex; min-height: 63px; align-items: center; gap: 10px; padding: 12px 13px; border: 1px solid var(--rrwc-line); border-radius: 13px; background: #fff; transition: all .2s; }
.rrwc-service-grid label i { display: grid; flex: 0 0 27px; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: var(--rrwc-primary); font-style: normal; background: #f7ece8; }
.rrwc-service-grid label strong { color: var(--rrwc-ink); font-size: 12px; line-height: 1.35; }
.rrwc-service-grid input:checked + span { border-color: var(--rrwc-primary); background: var(--rrwc-surface); box-shadow: inset 0 0 0 1px var(--rrwc-primary); }
.rrwc-service-grid input:checked + span i { color: #fff; background: var(--rrwc-primary); transform: rotate(45deg); }
.rrwc-planning-field { margin-top: 24px; }

.rrwc-validation { margin-top: 22px; padding: 12px 15px; border-left: 3px solid #b82943; border-radius: 8px; color: #8b2034; font-size: 13px; background: #fff0f3; }
.rrwc-validation[hidden] { display: none; }
.rrwc-form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--rrwc-line); }
.rrwc-btn { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid transparent; border-radius: 11px; text-decoration: none !important; cursor: pointer; font-size: 13px; font-weight: 800; line-height: 1; transition: transform .2s, box-shadow .2s, background-color .2s; }
.rrwc-btn:hover { transform: translateY(-1px); }
.rrwc-btn-primary { margin-left: auto; color: #fff !important; background: var(--rrwc-primary); box-shadow: 0 10px 22px rgba(111,38,56,.18); }
.rrwc-btn-primary:hover { color: #fff !important; box-shadow: 0 13px 28px rgba(111,38,56,.26); }
.rrwc-btn-ghost { border-color: #d9cbc5; color: var(--rrwc-primary) !important; background: #fff; }
.rrwc-btn-whatsapp { color: #fff !important; background: #167a48; }
.rrwc-btn[hidden] { display: none; }
.rrwc-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: rrwcSpin .7s linear infinite; }
.rrwc-submit.is-loading .rrwc-spinner { display: block; }
.rrwc-submit.is-loading .rrwc-submit-label { opacity: .7; }
@keyframes rrwcSpin { to { transform: rotate(360deg); } }

.rrwc-results { padding-bottom: 44px; background: #fff; }
.rrwc-result-hero { position: relative; overflow: hidden; padding: 48px 52px 38px; color: #fff; text-align: center; background: linear-gradient(135deg, #5d1d2d, var(--rrwc-primary)); }
.rrwc-result-hero::after { position: absolute; right: -55px; bottom: -90px; width: 210px; height: 210px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.rrwc-result-hero .rrwc-kicker { color: #f2d7a7; }
.rrwc-result-hero h3 { margin: 0 0 15px; color: #fff; font-family: Georgia, serif; font-size: clamp(30px, 5vw, 45px); font-weight: 500; }
.rrwc-total-range { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 15px; }
.rrwc-total-range span { color: #fff; font-family: Georgia, serif; font-size: clamp(31px, 5.5vw, 48px); line-height: 1; }
.rrwc-total-range i { color: #e6c893; font-size: 12px; font-style: normal; letter-spacing: .15em; text-transform: uppercase; }
.rrwc-investment-label { margin: 12px 0 0; color: rgba(255,255,255,.72); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.rrwc-result-facts { position: relative; z-index: 1; display: flex; justify-content: center; flex-wrap: wrap; gap: 1px; max-width: 720px; margin: 28px auto 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: rgba(255,255,255,.08); }
.rrwc-result-facts span { flex: 1 1 180px; padding: 13px 16px; color: rgba(255,255,255,.75); font-size: 11px; }
.rrwc-result-facts strong { display: block; color: #fff; font-size: 14px; }

.rrwc-budget-status { display: flex; align-items: center; gap: 14px; margin: 26px 52px 0; padding: 17px 18px; border: 1px solid; border-radius: 15px; }
.rrwc-budget-status .rrwc-status-mark { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border-radius: 50%; font-weight: 900; }
.rrwc-budget-status strong { display: block; font-size: 14px; }
.rrwc-budget-status p { margin: 2px 0 0; font-size: 12px; }
.rrwc-budget-chip { margin-left: auto; padding: 7px 10px; border-radius: 99px; font-size: 11px; font-weight: 800; white-space: nowrap; background: rgba(255,255,255,.65); }
.rrwc-status-comfortable { border-color: #b8ddc7; color: #245f3d; background: #edf9f1; }
.rrwc-status-comfortable .rrwc-status-mark { color: #fff; background: #32845a; }
.rrwc-status-possible { border-color: #ead7a3; color: #765b17; background: #fff9e9; }
.rrwc-status-possible .rrwc-status-mark { color: #fff; background: #ae8427; }
.rrwc-status-over { border-color: #edbcc5; color: #8a2940; background: #fff1f3; }
.rrwc-status-over .rrwc-status-mark { color: #fff; background: #b53951; }

.rrwc-result-section { margin: 32px 52px 0; padding-top: 30px; border-top: 1px solid var(--rrwc-line); }
.rrwc-result-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 21px; }
.rrwc-result-title h4 { margin: 0; color: var(--rrwc-ink); font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.rrwc-result-title > span { color: var(--rrwc-muted); font-size: 11px; }
.rrwc-breakdown { display: grid; gap: 17px; }
.rrwc-breakdown-copy { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 7px; }
.rrwc-breakdown-copy strong { color: var(--rrwc-ink); font-size: 13px; }
.rrwc-breakdown-copy span { color: var(--rrwc-muted); font-size: 12px; white-space: nowrap; }
.rrwc-breakdown-bar { height: 7px; overflow: hidden; border-radius: 99px; background: #f0e9e5; }
.rrwc-breakdown-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--rrwc-primary), var(--rrwc-accent)); }

.rrwc-recommendations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.rrwc-recommendations article { padding: 18px; border: 1px solid var(--rrwc-line); border-radius: 15px; background: var(--rrwc-surface); }
.rrwc-recommendations h5 { margin: 12px 0 3px; color: var(--rrwc-ink); font-family: Georgia, serif; font-size: 20px; }
.rrwc-recommendations p { margin: 0; color: var(--rrwc-muted); font-size: 12px; }
.rrwc-fit { display: inline-block; padding: 5px 8px; border-radius: 99px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.rrwc-fit-comfortable { color: #276344; background: #ddf3e5; }
.rrwc-fit-possible { color: #765b17; background: #f8edc9; }
.rrwc-fit-over { color: #8a2940; background: #f8dfe4; }

.rrwc-tips-section ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; list-style: none; }
.rrwc-tips-section li { display: flex; gap: 10px; padding: 13px 14px; border-radius: 12px; color: var(--rrwc-muted); font-size: 12px; background: #fbf7f4; }
.rrwc-tips-section li span { color: var(--rrwc-accent); }
.rrwc-estimate-note { display: flex; gap: 10px; margin: 30px 52px 0; padding: 13px 14px; border-radius: 11px; color: var(--rrwc-muted); background: #f7f3f1; }
.rrwc-estimate-note > span { display: grid; flex: 0 0 20px; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: #fff; font-family: Georgia, serif; font-size: 12px; background: var(--rrwc-primary); }
.rrwc-estimate-note p { margin: 0; font-size: 11px; }
.rrwc-result-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 27px 52px 0; }

.rrwc-empty-admin { padding: 18px; border: 1px solid #e3c8a4; border-radius: 8px; background: #fff8e8; }

@media (max-width: 820px) {
  .rrwc-public-header { padding: 44px 30px 38px; }
  .rrwc-progress-wrap { padding: 23px 30px 18px; }
  .rrwc-form { padding: 34px 30px 40px; }
  .rrwc-event-grid, .rrwc-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rrwc-grid-3 { grid-template-columns: 1fr 1fr; }
  .rrwc-grid-3 > :last-child { grid-column: 1 / -1; }
  .rrwc-stay-card { grid-template-columns: 1fr 110px 110px; }
  .rrwc-recommendations { grid-template-columns: 1fr; }
  .rrwc-budget-status, .rrwc-result-section, .rrwc-estimate-note, .rrwc-result-actions { margin-left: 30px; margin-right: 30px; }
}

@media (max-width: 600px) {
  .rrwc-app { margin: 18px auto; }
  .rrwc-shell { border-radius: 19px; }
  .rrwc-public-header { padding: 37px 20px 31px; }
  .rrwc-public-header h2 { font-size: 32px; }
  .rrwc-intro { font-size: 14px; }
  .rrwc-trust-row { gap: 9px 14px; margin-top: 20px; font-size: 10px; }
  .rrwc-progress-wrap { padding: 19px 20px 16px; }
  .rrwc-step-labels li { font-size: 9px; }
  .rrwc-form { padding: 28px 19px 32px; }
  .rrwc-step-heading { gap: 12px; margin-bottom: 23px; }
  .rrwc-step-heading > span { flex-basis: 37px; width: 37px; height: 37px; }
  .rrwc-step-heading h3 { font-size: 25px; }
  .rrwc-mode-grid, .rrwc-field-grid, .rrwc-grid-3 { grid-template-columns: 1fr; }
  .rrwc-span-2, .rrwc-grid-3 > :last-child { grid-column: auto; }
  .rrwc-choice-card { min-height: 143px; padding: 20px; }
  .rrwc-choice-icon { margin-bottom: 12px; }
  .rrwc-event-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .rrwc-event-card { min-height: 162px; padding: 15px; }
  .rrwc-event-card > strong { font-size: 16px; }
  .rrwc-event-guests { align-items: flex-start; flex-direction: column; gap: 3px; }
  .rrwc-event-guests input { width: 100%; }
  .rrwc-service-grid { grid-template-columns: 1fr; }
  .rrwc-stay-card { grid-template-columns: 1fr 1fr; gap: 13px; }
  .rrwc-stay-card > div { grid-column: 1 / -1; }
  .rrwc-form-actions { position: sticky; z-index: 4; bottom: 0; margin: 28px -19px -32px; padding: 14px 19px; background: rgba(255,255,255,.96); box-shadow: 0 -8px 22px rgba(54,33,38,.07); }
  .rrwc-btn { min-height: 46px; padding: 0 15px; }
  .rrwc-result-hero { padding: 40px 20px 32px; }
  .rrwc-result-facts span { flex-basis: 100%; border-top: 1px solid rgba(255,255,255,.1); }
  .rrwc-budget-status { align-items: flex-start; flex-wrap: wrap; margin: 20px 19px 0; }
  .rrwc-budget-chip { width: 100%; margin: 2px 0 0 48px; text-align: center; }
  .rrwc-result-section, .rrwc-estimate-note, .rrwc-result-actions { margin-left: 19px; margin-right: 19px; }
  .rrwc-result-title { align-items: flex-start; flex-direction: column; }
  .rrwc-breakdown-copy { align-items: flex-start; flex-direction: column; gap: 2px; }
  .rrwc-tips-section ul { grid-template-columns: 1fr; }
  .rrwc-result-actions .rrwc-btn { width: 100%; }
}

@media print {
  body * { visibility: hidden !important; }
  .rrwc-app, .rrwc-app * { visibility: visible !important; }
  .rrwc-app { position: absolute; top: 0; left: 0; width: 100%; margin: 0; }
  .rrwc-shell { max-width: none; border: 0; border-radius: 0; box-shadow: none; }
  .rrwc-public-header, .rrwc-progress-wrap, .rrwc-form, .rrwc-result-actions { display: none !important; }
  .rrwc-results { padding-bottom: 0; }
  .rrwc-result-hero { color: #222; background: #fff; border-bottom: 2px solid #6f2638; }
  .rrwc-result-hero h3, .rrwc-total-range span, .rrwc-result-facts strong { color: #222; }
  .rrwc-result-hero .rrwc-kicker, .rrwc-investment-label, .rrwc-result-facts span { color: #666; }
  .rrwc-result-facts { border-color: #ddd; background: #fff; }
  .rrwc-result-section { break-inside: avoid; }
}

