:root {
  --stay-bone: #f7f2e8;
  --stay-paper: #fffdfa;
  --stay-pine: #2d523e;
  --stay-pine-dark: #1b3025;
  --stay-ink: #1d2b23;
  --stay-sage: #84907c;
  --stay-clay: #c9633d;
  --stay-clay-soft: #f6e9dc;
  --stay-oat: #dfd5c3;
  --stay-oat-soft: #ede6d8;
  --stay-success: #e7f0e8;
  --stay-warn: #fff4de;
  --stay-serif: "DM Serif Display", Georgia, serif;
  --stay-sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body.guest-stay-page {
  min-height: 100dvh;
  margin: 0;
  color: var(--stay-ink);
  font-family: var(--stay-sans);
  background: #e8ece7;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

.guest-stay-brand {
  width: min(1120px, calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #69766e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.guest-stay-brand img { width: 118px; height: auto; display: block; }

.stay-shell {
  width: min(720px, calc(100% - 32px));
  margin: 16px auto 72px;
}

.stay-card {
  overflow: hidden;
  background: var(--stay-bone);
  border: 1px solid rgba(45, 82, 62, .10);
  border-radius: 34px;
  box-shadow: 0 32px 90px rgba(32, 52, 42, .13);
}

.stay-card__body { padding: 36px 32px 42px; }
.stay-card--step .stay-card__body { max-width: 650px; margin: 0 auto; padding: 38px 40px 58px; }
.stay-card--portal .stay-card__body { padding: 42px 32px 52px; }

.stay-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--stay-pine-dark);
}

.stay-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background: repeating-radial-gradient(ellipse at 100% 0, transparent 0 30px, rgba(255,255,255,.25) 31px 32px, transparent 33px 56px);
}

.stay-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stay-hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,24,17,.05) 28%, rgba(10,24,17,.73) 100%); }

.stay-host-pill {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 19px 8px 9px;
  color: var(--stay-ink);
  background: rgba(255,253,250,.94);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 8px 30px rgba(13,29,21,.12);
  backdrop-filter: blur(8px);
}

.stay-host-pill span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--stay-pine);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.stay-hero__title { position: relative; z-index: 1; padding: 36px 32px 31px; }
.stay-hero__title h1 { margin: 0; font: 400 48px/.98 var(--stay-serif); letter-spacing: -.02em; }
.stay-hero__title p { margin: 10px 0 0; color: rgba(255,255,255,.86); font-size: 17px; font-weight: 500; letter-spacing: .01em; }

.stay-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 34px;
  row-gap: 26px;
  padding: 27px 29px;
  background: var(--stay-paper);
  border: 1px solid var(--stay-oat);
  border-radius: 27px;
  box-shadow: 0 1px 2px rgba(50,55,40,.02);
}

.stay-summary > div { display: flex; flex-direction: column; min-width: 0; }
.stay-summary span, .stay-kicker {
  color: var(--stay-sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.stay-summary strong { margin-top: 6px; font-size: 17px; font-weight: 600; line-height: 1.28; }
.stay-summary__total { grid-column: 1 / -1; flex-direction: row !important; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--stay-oat-soft); }
.stay-summary__total span { font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.stay-summary__total strong { margin: 0; font-size: 21px; }

.stay-requirement {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 17px;
  margin-top: 24px;
  padding: 25px 27px;
  color: #5f4738;
  background: var(--stay-clay-soft);
  border: 1px solid #eac9ad;
  border-radius: 25px;
}

.stay-requirement > svg { width: 27px; height: 27px; margin-top: 1px; fill: none; stroke: var(--stay-clay); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stay-requirement strong { display: block; color: var(--stay-ink); font-size: 16px; }
.stay-requirement p { margin: 7px 0 0; font-size: 15px; line-height: 1.55; }
.stay-requirement.is-complete { color: var(--stay-pine); background: var(--stay-success); border-color: #cbdcca; }
.stay-requirement.is-complete > svg { stroke: var(--stay-pine); }

.stay-checklist-heading { margin-top: 34px; }
.stay-checklist-heading > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.stay-checklist-heading h2, .stay-addons h2 { margin: 0; font: 400 33px/1.08 var(--stay-serif); letter-spacing: -.015em; }
.stay-checklist-heading > div > span { flex: 0 0 auto; color: var(--stay-sage); font-size: 13px; font-weight: 600; }
.stay-progress-bar { height: 7px; margin-top: 17px; overflow: hidden; background: #e4dccf; border-radius: 999px; }
.stay-progress-bar span { display: block; height: 100%; background: var(--stay-pine); border-radius: inherit; transition: width .4s ease; }

.stay-checklist { display: grid; gap: 11px; margin: 25px 0 24px; }
.stay-task {
  min-height: 101px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 22px 15px 16px;
  background: var(--stay-paper);
  border: 1px solid var(--stay-oat);
  border-radius: 25px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.stay-task:hover { transform: translateY(-2px); border-color: #bcae96; box-shadow: 0 12px 28px rgba(46,55,42,.07); }
.stay-task.is-complete { background: #fbfdf9; border-color: #c9d9c9; }
.stay-task__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--stay-pine);
  background: var(--stay-oat-soft);
  border-radius: 19px;
}
.stay-task__icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stay-task.is-complete .stay-task__icon { background: var(--stay-success); }
.stay-task__copy, .stay-guest__copy, .stay-success > div, .stay-addon > span { display: flex; flex: 1; flex-direction: column; min-width: 0; }
.stay-task__copy strong { font-size: 17px; font-weight: 600; line-height: 1.3; }
.stay-task__copy small { margin-top: 3px; color: var(--stay-sage); font-size: 14px; line-height: 1.35; }
.stay-task__chevron { width: 22px; height: 22px; flex: 0 0 auto; fill: none; stroke: #b5aa96; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.stay-task__check { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--stay-pine); border-radius: 50%; font-size: 13px; font-weight: 700; }

.stay-primary, .stay-secondary {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  color: #fff;
  font-weight: 700;
  border: 0;
  border-radius: 16px;
  background: var(--stay-pine);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.stay-primary:hover, .stay-secondary:hover { transform: translateY(-1px); background: var(--stay-pine-dark); }
.stay-primary:focus-visible, .stay-secondary:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid rgba(201,99,61,.34); outline-offset: 3px; }
.stay-primary:disabled, .stay-secondary:disabled { opacity: .48; cursor: default; transform: none; }
.stay-primary--wide { width: 100%; }
.stay-secondary { color: var(--stay-pine); background: transparent; border: 2px solid #9eaca3; }
.stay-secondary:hover { color: #fff; border-color: var(--stay-pine-dark); }
.stay-secondary--wide { width: 100%; }
.stay-lock-note, .stay-privacy-note { margin: 18px 0 0; color: var(--stay-sage); text-align: center; font-size: 12px; }

.stay-flash { margin: 20px 32px -16px; padding: 13px 16px; font-size: 13px; border-radius: 13px; }
.stay-flash--notice { color: var(--stay-pine-dark); background: var(--stay-success); }
.stay-flash--alert { color: #78321f; background: #fce7df; }

.stay-step-header { margin-bottom: 25px; }
.stay-back {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  color: var(--stay-ink);
  background: var(--stay-paper);
  border: 2px solid var(--stay-oat);
  border-radius: 50%;
  transition: transform .16s ease, border-color .16s ease;
}
.stay-back:hover { transform: translateX(-2px); border-color: #bcae96; }
.stay-back svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stay-step-header h1, .stay-portal-heading h1, .stay-state h1 { margin: 8px 0 10px; font: 400 43px/1.03 var(--stay-serif); letter-spacing: -.02em; }
.stay-step-header p, .stay-portal-heading p, .stay-state p { margin: 0; color: var(--stay-sage); font-size: 16px; line-height: 1.65; }
.stay-step-count { margin: -7px 0 24px; color: var(--stay-clay); font-size: 14px; font-weight: 700; }
.stay-guest-step > .stay-step-header { margin-bottom: 9px; }
.stay-invite-status { margin: 0 0 22px; }
.stay-invite-status__link { padding: 0; color: var(--stay-pine); background: transparent; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; font-size: 14px; font-weight: 700; }
.stay-invite-status__link:hover { color: var(--stay-pine-dark); }
.stay-invite-status p { margin: 5px 0 0; color: var(--stay-sage); font-size: 12.5px; }

.stay-occupancy { margin-bottom: 30px; overflow: hidden; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 25px; }
.stay-occupancy__heading { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 19px 20px 17px 24px; }
.stay-occupancy__heading strong { display: block; margin-top: 5px; font: 400 24px/1.15 var(--stay-serif); }
.stay-add-guest { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 17px; color: #fff; background: var(--stay-pine); border: 0; border-radius: 13px; cursor: pointer; font-size: 12px; font-weight: 700; }
.stay-add-guest:hover { background: var(--stay-pine-dark); }
.stay-occupancy__fields { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--stay-oat-soft); border-bottom: 1px solid var(--stay-oat-soft); }
.stay-occupancy__fields label { position: relative; display: grid; grid-template-columns: 1fr 78px; align-items: center; min-height: 90px; padding: 17px 22px; }
.stay-occupancy__fields label + label { border-left: 1px solid var(--stay-oat-soft); }
.stay-occupancy__fields span { align-self: end; font-size: 15px; font-weight: 700; }
.stay-occupancy__fields small { align-self: start; color: var(--stay-sage); font-size: 11px; }
.stay-occupancy__fields input { width: 72px; height: 52px; grid-column: 2; grid-row: 1 / 3; padding: 0 8px; color: var(--stay-pine); text-align: center; background: #fbf8f1; border: 1.5px solid #d9ceb9; border-radius: 15px; font-size: 19px; font-weight: 700; }
.stay-occupancy__footer { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 14px 11px 24px; }
.stay-occupancy__footer > span { color: var(--stay-sage); font-size: 12px; }
.stay-secondary--compact { min-height: 43px; padding: 0 17px; border-width: 1.5px; border-radius: 13px; font-size: 12px; }

body.has-stay-modal { overflow: hidden; }
.stay-guest-dialog {
  width: min(570px, calc(100% - 32px));
  max-width: none;
  max-height: min(760px, calc(100dvh - 48px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--stay-ink);
  background: var(--stay-bone);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(20, 37, 28, .28);
}
.stay-guest-dialog::backdrop { background: rgba(20, 34, 27, .54); backdrop-filter: blur(4px); }
.stay-guest-dialog[open] { animation: stay-dialog-in .22s ease-out; }
.stay-guest-dialog__panel { max-height: inherit; display: flex; flex-direction: column; }
.stay-guest-dialog__header { position: relative; flex: 0 0 auto; padding: 29px 72px 22px 30px; background: var(--stay-bone); border-bottom: 1px solid var(--stay-oat); }
.stay-guest-dialog__header h2 { margin: 5px 0 7px; font: 400 31px/1.08 var(--stay-serif); }
.stay-guest-dialog__header p { margin: 0; color: var(--stay-sage); font-size: 13px; line-height: 1.5; }
.stay-dialog-close { position: absolute; top: 23px; right: 24px; width: 42px; height: 42px; display: grid; place-items: center; padding: 0 0 3px; color: var(--stay-ink); background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 50%; cursor: pointer; font-size: 27px; font-weight: 300; line-height: 1; }
.stay-dialog-close:hover { border-color: #b9aa92; }
.stay-guest-dialog__body { min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 22px 24px 27px; }
.stay-dialog-flash { margin: 0 0 16px; padding: 13px 15px; border-radius: 13px; font-size: 12px; line-height: 1.45; }
.stay-guest-dialog .stay-guest-list { margin-bottom: 0; }
.stay-guest-dialog .stay-form--guest { padding: 0; background: transparent; border: 0; border-radius: 0; }

.stay-guest-list { display: grid; gap: 10px; margin-bottom: 24px; }
.stay-guest { min-height: 86px; display: flex; align-items: center; gap: 15px; padding: 13px 18px; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 23px; }
.stay-avatar { width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--stay-pine); border-radius: 50%; font-size: 14px; font-weight: 700; }
.stay-guest__copy strong { font-size: 16px; }
.stay-guest__copy small { margin-top: 2px; color: var(--stay-sage); font-size: 13px; }
.stay-text-button { padding: 8px 0; color: var(--stay-clay); background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 700; }

.stay-form { display: grid; gap: 16px; padding: 24px; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 25px; }
.stay-form h2 { margin: 0 0 2px; font-size: 16px; }
.stay-form > div > h2 { margin-top: 5px; }
.stay-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stay-form label:not(.stay-check) { display: grid; gap: 7px; }
.stay-form label > span { color: var(--stay-sage); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.stay-form input[type="text"], .stay-form input[type="email"] { width: 100%; min-height: 55px; padding: 0 15px; color: var(--stay-ink); background: #fbf8f1; border: 1.5px solid #d9ceb9; border-radius: 15px; }
.stay-form input::placeholder { color: #abb3a8; }
.stay-form__hint { margin: -4px 0 0; color: var(--stay-sage); font-size: 11.5px; line-height: 1.5; }
.stay-invites-complete { display: flex; align-items: center; gap: 13px; padding: 18px 20px; color: var(--stay-pine); background: var(--stay-success); border: 1px solid #cddfd2; border-radius: 20px; }
.stay-invites-complete > span { width: 35px; height: 35px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--stay-pine); border-radius: 50%; font-size: 12px; font-weight: 700; }
.stay-invites-complete p { display: grid; gap: 2px; margin: 0; }
.stay-invites-complete strong { color: var(--stay-ink); font-size: 13px; }
.stay-invites-complete small { color: var(--stay-sage); font-size: 11.5px; }
.stay-step-actions { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-top: 22px; color: var(--stay-sage); font-size: 13px; }
.stay-link-button { padding: 0; color: var(--stay-pine); background: transparent; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; font-weight: 500; }
.stay-link-button:disabled { color: var(--stay-sage); cursor: default; opacity: .6; }

@keyframes stay-dialog-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.stay-agreement { max-height: 430px; overflow: auto; margin-bottom: 22px; padding: 25px; color: #405046; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 24px; font-size: 13.5px; line-height: 1.7; }
.stay-agreement-actions { display: flex; justify-content: flex-end; margin: -10px 0 12px; }
.stay-agreement-download { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; color: var(--stay-forest); border: 1px solid var(--stay-oat); border-radius: 999px; background: var(--stay-paper); font-size: 13px; font-weight: 700; text-decoration: none; }
.stay-agreement-download:hover { border-color: var(--stay-sage); }
.stay-agreement-download span { font-size: 18px; line-height: 1; }
.stay-agreement-unavailable { margin-bottom: 22px; padding: 24px; color: var(--stay-ink); background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 24px; }
.stay-agreement-unavailable p { margin: 7px 0 0; color: var(--stay-sage); line-height: 1.55; }
.stay-agreement h1, .stay-agreement h2, .stay-agreement h3 { color: var(--stay-ink); font-family: var(--stay-serif); font-weight: 400; }
.stay-agreement h2 { margin: 24px 0 8px; font-size: 23px; }
.stay-agreement p { margin: 0 0 12px; }
.stay-rule { padding: 12px 0; border-top: 1px solid var(--stay-oat-soft); }
.stay-rule p { margin: 3px 0 0; color: var(--stay-sage); }
.stay-check { display: flex; align-items: flex-start; gap: 11px; }
.stay-check input { width: 19px; height: 19px; accent-color: var(--stay-pine); }
.stay-check span { color: var(--stay-ink) !important; font-weight: 500 !important; line-height: 1.5; text-transform: none !important; letter-spacing: 0 !important; }
.stay-signature__hint { margin: -5px 0 0; color: var(--stay-sage); font-size: 11px; }

.stay-success, .stay-pending { display: flex; align-items: center; gap: 14px; margin: 20px 0; padding: 20px; background: var(--stay-success); border: 1px solid #cddfd2; border-radius: 20px; }
.stay-success > span { width: 41px; height: 41px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--stay-pine); border-radius: 50%; font-size: 13px; font-weight: 700; }
.stay-success strong { font-size: 14px; }
.stay-success small { margin-top: 2px; color: var(--stay-sage); font-size: 12px; }
.stay-pending { display: block; background: var(--stay-warn); border-color: #ead9af; }
.stay-pending p { margin: 4px 0 0; color: var(--stay-sage); font-size: 13px; }

/* Keep the established Identity illustration and Stripe flow visually intact. */
.stay-identity-visual { position: relative; height: 170px; margin: 12px 0 22px; display: flex; align-items: center; justify-content: center; gap: 48px; background: #eff3ef; border-radius: 20px; overflow: hidden; }
.stay-identity-visual::before { content: ""; position: absolute; width: 320px; height: 320px; border: 1px dashed #bac9bf; border-radius: 50%; }
.stay-id-card { z-index: 1; width: 120px; height: 78px; padding: 15px; background: #fff; border: 1px solid #c8d3cb; border-radius: 10px; transform: rotate(-4deg); box-shadow: 0 9px 20px rgba(31,55,45,.08); }
.stay-id-card span { float: left; width: 27px; height: 34px; margin-right: 9px; background: #f1ded3; border-radius: 50% 50% 42% 42%; }
.stay-id-card i { display: block; height: 5px; margin: 5px 0; background: #d8dfd9; border-radius: 5px; }
.stay-face { z-index: 1; width: 88px; height: 88px; display: grid; place-items: center; border: 2px solid var(--stay-pine); border-radius: 25px; }
.stay-face span { width: 42px; height: 52px; background: #f1ded3; border-radius: 50% 50% 45% 45%; }
.stay-identity-visual b { position: absolute; color: #b86242; font-size: 20px; }
.stay-benefits { display: grid; gap: 10px; margin: 0 0 24px; padding: 0; list-style: none; color: #68766f; font-size: 13px; }
.stay-benefits span { margin-right: 8px; color: var(--stay-pine); font-weight: 700; }
.stay-identity-action { display: grid; gap: 9px; }
.stay-identity-action__status, .stay-identity-action__error, .stay-privacy-note { margin: 0; text-align: center; color: #68766f; font-size: 11.5px; line-height: 1.45; }
.stay-identity-action__error { padding: 10px 12px; color: #8e311e; background: #fce7df; border-radius: 10px; }
.stay-identity-error { margin: 20px 0; padding: 17px 18px; color: #712b20; background: #fce7df; border: 1px solid #efc6ba; border-radius: 15px; }
.stay-identity-error strong { font-size: 14px; }
.stay-identity-error p { margin: 4px 0 0; font-size: 12.5px; line-height: 1.5; }
.stay-identity-action + .stay-privacy-note { margin-top: 9px; }
.stay-identity-action .stay-primary:disabled { cursor: wait; opacity: .72; }

.stay-protection { display: grid; gap: 13px; }
.stay-option { position: relative; display: flex; flex-direction: column; padding: 22px; text-align: left; color: var(--stay-ink); background: var(--stay-paper); border: 1.5px solid var(--stay-oat); border-radius: 23px; cursor: pointer; }
.stay-option:hover, .stay-option.is-selected { border-color: var(--stay-pine); background: #fbfdf9; }
.stay-option__badge { position: absolute; top: 0; right: 20px; padding: 5px 10px; color: #fff; background: var(--stay-clay); border-radius: 0 0 9px 9px; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.stay-option__top { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.stay-option__top strong { font-size: 16px; }
.stay-option__top b { font: 400 27px var(--stay-serif); }
.stay-option__sub { margin: 3px 0 11px; color: var(--stay-clay); font-size: 11px; font-weight: 700; }
.stay-option__details { color: var(--stay-sage); font-size: 13px; line-height: 1.55; }
.stay-payment { margin-top: 5px; padding: 22px; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 22px; }
.stay-payment > strong { display: block; margin: 5px 0 17px; }
.stay-payment__element { min-height: 95px; margin-bottom: 16px; }
.stay-payment__error { margin-bottom: 12px; padding: 10px; color: #8e311e; background: #fce7df; border-radius: 9px; font-size: 12px; }

.stay-portal-heading { margin-bottom: 27px; }
.stay-portal-heading .stay-kicker { color: var(--stay-clay); }
.stay-portal-heading h1 { font-size: 46px; }
.arrival-pass { position: relative; padding: 32px 35px; color: #fff; background: var(--stay-pine); border-radius: 31px; overflow: hidden; }
.arrival-pass::after { content: ""; position: absolute; width: 270px; height: 270px; top: -165px; right: -100px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255,255,255,.025), 0 0 0 64px rgba(255,255,255,.025); }
.arrival-pass__code { position: relative; z-index: 1; margin: 0 0 25px; }
.arrival-pass__code small { display: block; color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; letter-spacing: .21em; text-transform: uppercase; }
.arrival-pass__code strong { display: block; margin-top: 4px; font: 400 50px var(--stay-serif); letter-spacing: .22em; }
.arrival-pass__code--pending strong { max-width: 420px; font-size: 29px; line-height: 1.1; letter-spacing: 0; }
.arrival-pass dl { position: relative; z-index: 1; margin: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.arrival-pass dl div { display: grid; grid-template-columns: 92px 1fr; gap: 14px; margin-top: 12px; font-size: 13px; }
.arrival-pass dt { color: rgba(255,255,255,.58); }
.arrival-pass dd { margin: 0; text-align: right; font-weight: 600; }
.stay-portal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 14px; }
.stay-portal-action { min-height: 75px; display: grid; grid-template-columns: 27px 1fr; align-items: center; column-gap: 11px; padding: 12px 15px; color: var(--stay-ink); text-align: left; text-decoration: none; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 22px; }
.stay-portal-action:disabled { opacity: .73; }
.stay-portal-actions svg { width: 25px; height: 25px; grid-row: 1 / 3; fill: none; stroke: var(--stay-pine); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stay-portal-actions span { align-self: end; font-size: 14px; font-weight: 700; }
.stay-portal-actions small { align-self: start; color: var(--stay-clay); font-size: 10px; }
.stay-addons { margin-top: 38px; }
.stay-addons h2 { font-size: 35px; }
.stay-addons > div:first-child p { margin: 7px 0 20px; color: var(--stay-sage); font-size: 13px; }
.stay-addon { min-height: 83px; display: flex; align-items: center; gap: 14px; margin-top: 11px; padding: 15px 20px; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 23px; }
.stay-addon strong { font-size: 15px; }
.stay-addon small { margin-top: 3px; color: var(--stay-sage); font-size: 12px; }
.stay-addon button { flex: 0 0 auto; padding: 9px 12px; color: var(--stay-pine); background: transparent; border: 1.5px solid var(--stay-pine); border-radius: 999px; font-size: 10px; font-weight: 700; }
.stay-addon button:disabled { opacity: .65; }
.stay-addon--link { color: inherit; }
.stay-addon--link b { flex: 0 0 auto; padding: 9px 12px; color: var(--stay-pine); border: 1.5px solid var(--stay-pine); border-radius: 999px; font-size: 10px; }
.stay-footer-link { display: block; margin-top: 28px; color: var(--stay-sage); text-align: center; text-decoration: underline; font-size: 12px; }

.stay-upgrade-task {
  min-height: 88px;
  margin: 18px 0;
  padding: 14px 17px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto 20px;
  align-items: center;
  gap: 14px;
  color: var(--stay-ink);
  background: linear-gradient(115deg, #fffaf0, #f4e7ce);
  border: 1px solid #ddc9a6;
  border-radius: 22px;
  box-shadow: 0 11px 25px rgba(76, 56, 25, .07);
}
.stay-upgrade-task__mark { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--stay-clay); border-radius: 16px; font: 400 22px var(--stay-serif); }
.stay-upgrade-task strong, .stay-upgrade-task small { display: block; }
.stay-upgrade-task strong { font-size: 14px; }
.stay-upgrade-task small { margin-top: 4px; color: #766552; font-size: 11px; line-height: 1.35; }
.stay-upgrade-task > b { min-width: 24px; height: 24px; display: grid; place-items: center; color: #fff; background: var(--stay-clay); border-radius: 50%; font-size: 10px; }
.stay-upgrade-task > svg { width: 19px; fill: none; stroke: var(--stay-pine); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.stay-upgrades { max-width: 650px; margin: 0 auto; }
.stay-upgrades > .stay-step-header { margin-bottom: 32px; }
.stay-edge-offers, .stay-upgrade-catalog, .stay-upgrade-history { margin-top: 35px; }
.stay-edge-offers > header h2, .stay-upgrade-catalog > header h2, .stay-upgrade-history > header h2 { margin: 7px 0 0; font: 400 31px/1.08 var(--stay-serif); letter-spacing: -.015em; }
.stay-edge-offers > header p { max-width: 540px; margin: 9px 0 20px; color: var(--stay-sage); font-size: 13px; line-height: 1.55; }
.stay-edge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.stay-edge-card { min-width: 0; padding: 20px; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 25px; }
.stay-edge-card__heading { display: flex; align-items: center; gap: 12px; }
.stay-edge-card__heading > span { width: 39px; height: 39px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--stay-pine); border-radius: 13px; font-size: 19px; }
.stay-edge-card__heading h3 { margin: 0; font-size: 14px; }
.stay-edge-card__heading p { margin: 2px 0 0; color: var(--stay-sage); font-size: 10px; }
.stay-edge-card__base { margin: 17px 0 9px; color: var(--stay-sage); font-size: 10px; }
.stay-edge-card__base strong { color: var(--stay-ink); }
.stay-hour-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.stay-hour-strip button { min-width: 0; padding: 10px; color: #fff; text-align: left; background: var(--stay-pine-dark); border: 0; border-radius: 13px; cursor: pointer; transition: transform .16s ease, background .16s ease; }
.stay-hour-strip button:hover { background: var(--stay-pine); transform: translateY(-1px); }
.stay-hour-strip small, .stay-hour-strip strong, .stay-hour-strip b { display: block; }
.stay-hour-strip small { color: #e8c997; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.stay-hour-strip strong { margin-top: 3px; font-size: 12px; white-space: nowrap; }
.stay-hour-strip b { margin-top: 7px; color: rgba(255,255,255,.66); font-size: 9px; font-weight: 500; }
.stay-edge-card__notice, .stay-edge-card__empty { margin: 13px 0 0; color: var(--stay-sage); font-size: 9.5px; line-height: 1.45; }
.stay-edge-card__notice strong { color: var(--stay-clay); }
.stay-edge-card.is-unavailable { background: rgba(255,253,250,.52); }
.stay-edge-card.is-unavailable .stay-edge-card__heading > span { color: var(--stay-sage); background: var(--stay-oat-soft); }
.stay-edge-card__empty { min-height: 70px; display: flex; align-items: center; margin-top: 14px; padding: 14px; color: #736b61; background: var(--stay-oat-soft); border-radius: 15px; }

.stay-upgrade-catalog > header { margin-bottom: 17px; }
.stay-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.stay-product-card { min-height: 250px; display: flex; flex-direction: column; overflow: hidden; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 25px; }
.stay-product-card:nth-child(3) { min-height: 190px; grid-column: 1 / -1; display: grid; grid-template-columns: 104px 1fr; align-items: center; }
.stay-product-card__icon { height: 88px; display: grid; place-items: center; color: #fff; background: var(--stay-pine); font: 400 38px var(--stay-serif); }
.stay-product-card__icon--fire { background: #9d4f34; }
.stay-product-card__icon--celebration { background: #c08b3f; }
.stay-product-card:nth-child(3) .stay-product-card__icon { width: 74px; height: 74px; margin-left: 21px; border-radius: 22px; }
.stay-product-card__copy { flex: 1; padding: 17px 18px 12px; }
.stay-product-card__copy > p { margin: 0 0 8px; color: var(--stay-clay); font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.stay-product-card__copy h3 { margin: 0; font: 400 22px/1.08 var(--stay-serif); }
.stay-product-card__copy > span { display: block; margin-top: 7px; color: var(--stay-sage); font-size: 11px; line-height: 1.5; }
.stay-product-card footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 18px 17px; }
.stay-product-card:nth-child(3) footer { grid-column: 2; align-self: start; padding-top: 0; }
.stay-product-card footer strong { font-size: 14px; }
.stay-product-card footer strong small { color: var(--stay-sage); font-size: 9px; font-weight: 500; }
.stay-product-card footer button { min-height: 37px; padding: 0 15px; color: #fff; background: var(--stay-pine); border: 0; border-radius: 12px; cursor: pointer; font-size: 10px; font-weight: 700; }
.stay-product-card footer button:hover { background: var(--stay-pine-dark); }

.stay-upgrade-history > header { margin-bottom: 15px; }
.stay-upgrade-history > div { display: grid; gap: 9px; }
.stay-order-card { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; align-items: center; gap: 13px; padding: 15px 17px; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 20px; }
.stay-order-card__status { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: var(--stay-pine); border-radius: 13px; font-size: 14px; }
.stay-order-card__status.is-attention { background: var(--stay-clay); }
.stay-order-card small, .stay-order-card strong, .stay-order-card p { display: block; }
.stay-order-card small { color: var(--stay-clay); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.stay-order-card strong { margin-top: 3px; font-size: 13px; }
.stay-order-card p { margin: 3px 0 0; color: var(--stay-sage); font-size: 10px; line-height: 1.4; }
.stay-order-card > b { font: 400 17px var(--stay-serif); white-space: nowrap; }
.stay-order-card form { grid-column: 2 / -1; }
.stay-order-card__withdraw { padding: 0; color: var(--stay-clay); background: transparent; border: 0; text-decoration: underline; cursor: pointer; font-size: 10px; font-weight: 700; }
.stay-order-card__resume { grid-column: 2 / -1; justify-self: start; padding: 7px 10px; color: #fff; background: var(--stay-pine); border: 0; border-radius: 9px; cursor: pointer; font-size: 10px; font-weight: 700; }

.stay-upgrade-dialog__description { margin: 0 0 16px; color: var(--stay-sage); font-size: 13px; line-height: 1.55; }
.stay-upgrade-quantity { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 15px; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 17px; }
.stay-upgrade-quantity > span strong, .stay-upgrade-quantity > span small { display: block; }
.stay-upgrade-quantity > span strong { font-size: 13px; }
.stay-upgrade-quantity > span small { margin-top: 2px; color: var(--stay-sage); font-size: 10px; }
.stay-upgrade-quantity > div { display: flex; align-items: center; gap: 9px; }
.stay-upgrade-quantity button { width: 34px; height: 34px; padding: 0; color: var(--stay-pine); background: var(--stay-oat-soft); border: 0; border-radius: 11px; cursor: pointer; font-size: 18px; }
.stay-upgrade-quantity output { width: 24px; text-align: center; font-size: 15px; font-weight: 700; }
.stay-upgrade-note { display: grid; gap: 7px; margin-top: 14px; }
.stay-upgrade-note > span { color: var(--stay-sage); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.stay-upgrade-note textarea { width: 100%; resize: vertical; padding: 13px 14px; color: var(--stay-ink); background: var(--stay-paper); border: 1.5px solid var(--stay-oat); border-radius: 15px; font: inherit; font-size: 13px; line-height: 1.45; }
.stay-upgrade-total { display: flex; align-items: baseline; justify-content: space-between; margin: 16px 0 0; padding: 16px 4px 0; border-top: 1px solid var(--stay-oat); }
.stay-upgrade-total span { color: var(--stay-sage); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.stay-upgrade-total strong { font: 400 27px var(--stay-serif); }
.stay-upgrade-payment { margin: 16px 0; }
.stay-upgrade-dialog__charge { margin: 10px 0 0; color: var(--stay-sage); text-align: center; font-size: 9.5px; line-height: 1.45; }
.stay-request-consent { margin-top: 14px; padding: 14px 15px; color: var(--stay-ink); background: var(--stay-oat-soft); border: 1px solid var(--stay-oat); border-radius: 16px; }
.stay-request-consent strong { font-size: 12px; }
.stay-request-consent p { margin: 4px 0 0; color: var(--stay-sage); font-size: 10px; line-height: 1.5; }

.stay-conversation { max-width: 720px; margin: 0 auto; }
.stay-message-thread { display: flex; flex-direction: column; gap: 13px; min-height: 220px; max-height: 54vh; margin: 26px 0 18px; padding: 22px; overflow-y: auto; background: #f4efe5; border: 1px solid var(--stay-oat); border-radius: 28px; }
.stay-message-empty { margin: auto; padding: 38px 20px; color: var(--stay-sage); text-align: center; }
.stay-message-empty > span { display: block; margin-bottom: 10px; color: var(--stay-clay); font-size: 25px; }
.stay-message-empty strong { color: var(--stay-ink); font: 400 24px var(--stay-serif); }
.stay-message-empty p { margin: 7px auto 0; max-width: 330px; font-size: 13px; line-height: 1.55; }
.stay-message { max-width: 78%; padding: 13px 16px; border-radius: 18px; }
.stay-message--mine { align-self: flex-end; color: #fff; background: var(--stay-pine); border-bottom-right-radius: 5px; }
.stay-message--theirs { align-self: flex-start; background: #fff; border: 1px solid var(--stay-oat); border-bottom-left-radius: 5px; }
.stay-message header { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 5px; }
.stay-message header strong { font-size: 11px; }
.stay-message time { color: inherit; opacity: .62; font-size: 9px; white-space: nowrap; }
.stay-message p, .stay-message p span { margin: 0; font-size: 14px; line-height: 1.5; overflow-wrap: anywhere; }
.stay-message-composer { padding: 17px; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 23px; }
.stay-message-composer label { display: block; margin: 0 0 9px 2px; font-size: 12px; font-weight: 700; }
.stay-message-composer textarea { width: 100%; min-height: 92px; resize: vertical; padding: 13px 14px; color: var(--stay-ink); background: #fff; border: 1.5px solid var(--stay-oat); border-radius: 15px; font: inherit; line-height: 1.5; }
.stay-message-composer textarea:focus { outline: 3px solid rgba(164, 107, 76, .17); border-color: var(--stay-clay); }
.stay-message-composer > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 11px; }
.stay-message-composer small { color: var(--stay-sage); font-size: 10px; }
.stay-message-composer .stay-primary { min-height: 43px; padding: 0 20px; }

.stay-change-task {
  min-height: 88px;
  margin: 18px 0;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: var(--stay-pine);
  border: 1px solid var(--stay-pine-dark);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(36, 73, 58, .16);
}
.stay-change-task__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--stay-pine);
  background: #f4ead8;
  border-radius: 16px;
  font-size: 23px;
}
.stay-change-task strong, .stay-change-task small { display: block; }
.stay-change-task strong { font-size: 14px; }
.stay-change-task small { margin-top: 4px; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.35; }
.stay-change-task > svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stay-change-task--portal { margin: 24px 0 18px; }

.stay-change-review { max-width: 620px; margin: 0 auto; }
.stay-change-seam {
  overflow: hidden;
  background: var(--stay-paper);
  border: 1px solid var(--stay-oat);
  border-radius: 25px;
}
.stay-change-seam > header,
.stay-change-seam__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: center;
}
.stay-change-seam > header {
  padding: 14px 20px;
  color: var(--stay-sage);
  background: var(--stay-oat-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.stay-change-seam > header span:last-child { color: var(--stay-pine-dark); }
.stay-change-seam__row {
  min-height: 82px;
  padding: 16px 20px;
  border-top: 1px solid var(--stay-oat);
}
.stay-change-seam__row > span { min-width: 0; }
.stay-change-seam__row small,
.stay-change-seam__row strong { display: block; }
.stay-change-seam__row small { margin-bottom: 5px; color: var(--stay-sage); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.stay-change-seam__row strong { font-size: 13px; line-height: 1.4; overflow-wrap: anywhere; }
.stay-change-seam__row b { color: var(--stay-clay); text-align: center; font-size: 18px; font-weight: 400; }

.stay-change-balance {
  margin: 16px 0;
  padding: 20px;
  background: var(--stay-pine-dark);
  border-radius: 22px;
  color: #fff;
}
.stay-change-balance > span { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.stay-change-balance small { color: rgba(255,255,255,.64); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.stay-change-balance strong { font: 400 27px var(--stay-serif); white-space: nowrap; }
.stay-change-balance p { margin: 10px 0 0; color: rgba(255,255,255,.74); font-size: 11px; line-height: 1.5; }
.stay-change-note { margin: 16px 0; padding: 19px 20px; background: var(--stay-clay-soft); border: 0; border-left: 3px solid var(--stay-clay); border-radius: 4px 20px 20px 4px; }
.stay-change-note span { color: var(--stay-clay); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.stay-change-note p { margin: 7px 0 0; font: 400 17px/1.5 var(--stay-serif); }
.stay-change-expiry { margin: 17px 0; color: var(--stay-sage); text-align: center; font-size: 11px; }
.stay-change-payment { margin: 18px 0; }
.stay-save-choice { margin: 18px 0; color: var(--stay-ink); background: var(--stay-paper); border-color: var(--stay-oat); }
.stay-save-choice small { color: var(--stay-sage); }
.stay-save-choice.is-locked { opacity: .72; cursor: default; }
.stay-change-decline {
  width: 100%;
  margin-top: 11px;
  padding: 12px;
  color: var(--stay-pine);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.stay-change-state { margin: 10px auto 24px; padding: 38px 28px; text-align: center; background: var(--stay-paper); border: 1px solid var(--stay-oat); border-radius: 27px; }
.stay-change-state > span { width: 54px; height: 54px; margin: 0 auto 15px; display: grid; place-items: center; color: var(--stay-pine); background: var(--stay-oat-soft); border-radius: 18px; font-size: 24px; }
.stay-change-state.is-success > span { background: var(--stay-success); }
.stay-change-state.is-pending { border-color: #e8d2a6; }
.stay-change-state.is-pending > span { color: #8a5a18; background: var(--stay-warn); }
.stay-change-state.is-attention { border-color: rgba(201, 99, 61, .42); background: #fffaf5; }
.stay-change-state.is-attention > span { color: #9d3f23; background: var(--stay-clay-soft); }
.stay-change-state strong { display: block; font: 400 26px var(--stay-serif); }
.stay-change-state p { max-width: 440px; margin: 8px auto 0; color: var(--stay-sage); font-size: 13px; line-height: 1.55; }

.stay-message-event {
  align-self: center;
  width: min(92%, 440px);
  padding: 13px 16px;
  text-align: center;
  background: var(--stay-oat-soft);
  border: 1px solid var(--stay-oat);
  border-radius: 17px;
}
.stay-message-event strong { color: var(--stay-pine); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.stay-message-event p { margin: 5px 0 0; font-size: 12px; line-height: 1.45; }
.stay-message-event__action { display: inline-flex; margin-top: 10px; padding: 7px 11px; color: #fff; background: var(--stay-pine); border-radius: 9px; font-size: 10px; font-weight: 700; }
.stay-message-event__action:hover { background: var(--stay-pine-dark); }
.stay-message-event time { display: block; margin-top: 5px; color: var(--stay-sage); font-size: 9px; }

.stay-state { padding: 70px 45px; text-align: center; }
.stay-state p { max-width: 480px; margin: 0 auto 24px; }

@media (max-width: 640px) {
  body.guest-stay-page { background: var(--stay-bone); }
  .guest-stay-brand { display: none; }
  .stay-shell { width: 100%; margin: 0; }
  .stay-card { min-height: 100dvh; border: 0; border-radius: 0; box-shadow: none; }
  .stay-card--step { border-radius: 30px 30px 0 0; }
  .stay-hero { min-height: 310px; }
  .stay-host-pill { top: 18px; left: 18px; min-height: 46px; padding-right: 16px; font-size: 14px; }
  .stay-host-pill span { width: 30px; height: 30px; font-size: 12px; }
  .stay-hero__title { padding: 31px 24px 27px; }
  .stay-hero__title h1 { font-size: clamp(38px, 11vw, 47px); }
  .stay-hero__title p { font-size: 15px; }
  .stay-card__body, .stay-card--portal .stay-card__body { padding: 29px 20px 40px; }
  .stay-card--step .stay-card__body { padding: 22px 22px 42px; }
  .stay-summary { column-gap: 19px; row-gap: 23px; padding: 25px 22px; border-radius: 25px; }
  .stay-summary strong { font-size: 15px; }
  .stay-summary span { font-size: 10px; }
  .stay-requirement { grid-template-columns: 29px 1fr; gap: 12px; padding: 22px 20px; }
  .stay-requirement strong { font-size: 15px; }
  .stay-requirement p { font-size: 14px; }
  .stay-checklist-heading h2 { font-size: 30px; }
  .stay-checklist-heading > div > span { font-size: 12px; }
  .stay-task { min-height: 92px; gap: 14px; padding: 13px 17px 13px 13px; border-radius: 22px; }
  .stay-task__icon { width: 54px; height: 54px; border-radius: 18px; }
  .stay-task__copy strong { font-size: 15px; }
  .stay-task__copy small { font-size: 12.5px; }
  .stay-step-header { margin-bottom: 18px; }
  .stay-back { width: 46px; height: 46px; margin-bottom: 20px; }
  .stay-back svg { width: 22px; height: 22px; }
  .stay-step-header h1, .stay-portal-heading h1, .stay-state h1 { font-size: 36px; }
  .stay-step-header p, .stay-portal-heading p { font-size: 15px; }
  .stay-occupancy { margin-bottom: 22px; border-radius: 21px; }
  .stay-invite-status { margin-bottom: 18px; }
  .stay-invite-status__link { font-size: 13px; }
  .stay-invite-status p { font-size: 11.5px; }
  .stay-occupancy__heading { grid-template-columns: 1fr auto; gap: 12px; padding: 14px 13px 13px 17px; }
  .stay-occupancy__heading strong { font-size: 21px; }
  .stay-add-guest { min-height: 42px; padding: 0 13px; font-size: 11px; }
  .stay-occupancy__fields label { grid-template-columns: minmax(0, 1fr) 50px; min-height: 72px; padding: 11px 12px; }
  .stay-occupancy__fields span { font-size: 13px; }
  .stay-occupancy__fields small { font-size: 9.5px; }
  .stay-occupancy__fields input { width: 48px; height: 46px; padding: 0 4px; border-radius: 13px; font-size: 17px; }
  .stay-occupancy__footer { min-height: 58px; padding: 8px 10px 8px 16px; }
  .stay-secondary--compact { min-height: 40px; padding: 0 14px; }
  .stay-guest-dialog { width: 100%; max-height: 92dvh; margin: auto 0 0; border-radius: 25px 25px 0 0; }
  .stay-guest-dialog[open] { animation-name: stay-sheet-in; }
  .stay-guest-dialog__header { padding: 24px 62px 18px 22px; }
  .stay-guest-dialog__header h2 { font-size: 28px; }
  .stay-guest-dialog__header p { font-size: 12px; }
  .stay-dialog-close { top: 18px; right: 17px; width: 40px; height: 40px; }
  .stay-guest-dialog__body { padding: 18px 18px calc(22px + env(safe-area-inset-bottom)); }
  .stay-guest { min-height: 74px; gap: 12px; padding: 11px 13px; border-radius: 19px; }
  .stay-avatar { width: 45px; height: 45px; }
  .stay-guest__copy strong { font-size: 14px; overflow-wrap: anywhere; }
  .stay-guest__copy small { font-size: 11.5px; overflow-wrap: anywhere; }
  .stay-form { padding: 20px; border-radius: 21px; }
  .stay-form__grid { grid-template-columns: 1fr; }
  .stay-step-actions { flex-wrap: wrap; }
  .stay-identity-visual { gap: 34px; }
  .stay-portal-heading h1 { font-size: 39px; }
  .arrival-pass { padding: 27px 24px; border-radius: 27px; }
  .arrival-pass__code strong { font-size: 45px; }
  .arrival-pass__code--pending strong { font-size: 25px; }
  .arrival-pass dl div { grid-template-columns: 70px 1fr; font-size: 12px; }
  .stay-portal-action { grid-template-columns: 24px 1fr; padding: 11px; }
  .stay-change-seam__row { padding: 14px 13px; }
  .stay-change-seam > header { padding: 13px; }
  .stay-change-seam__row strong { font-size: 11.5px; }
  .stay-change-balance { padding: 18px; }
  .stay-upgrade-task { grid-template-columns: 44px minmax(0, 1fr) auto 17px; gap: 10px; padding-inline: 13px; }
  .stay-upgrade-task__mark { width: 44px; height: 44px; }
  .stay-edge-grid, .stay-product-grid { grid-template-columns: 1fr; }
  .stay-product-card:nth-child(3) { min-height: 250px; grid-column: auto; display: flex; }
  .stay-product-card:nth-child(3) .stay-product-card__icon { width: auto; height: 88px; margin: 0; border-radius: 0; }
  .stay-product-card:nth-child(3) footer { grid-column: auto; align-self: auto; padding-top: 13px; }
  .stay-order-card { grid-template-columns: 34px minmax(0, 1fr); }
  .stay-order-card__status { width: 34px; height: 34px; }
  .stay-order-card > b { grid-column: 2; }
}

@media (max-width: 380px) {
  .stay-card__body, .stay-card--portal .stay-card__body, .stay-card--step .stay-card__body { padding-left: 17px; padding-right: 17px; }
  .stay-summary { padding: 22px 18px; }
  .stay-checklist-heading > div:first-child { align-items: flex-start; flex-direction: column; gap: 4px; }
  .stay-task__icon { width: 48px; height: 48px; }
  .stay-portal-actions { grid-template-columns: 1fr; }
}

@keyframes stay-sheet-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
