@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,650;9..144,800&family=Manrope:wght@500;650;800&display=swap");

:root {
  color-scheme: light;
  --ink: #16231f;
  --muted: #52615c;
  --paper: #f7f1e4;
  --surface: #fffaf0;
  --surface-strong: #fff3dc;
  --pine: #214d43;
  --pine-bright: #2b6c5e;
  --wine: #8d3d40;
  --copper: #c77738;
  --blue: #2f6f83;
  --line: rgba(22, 35, 31, 0.13);
  --shadow: 0 18px 48px rgba(31, 43, 37, 0.16);
  --nav-height: 78px;
  --app-width: 390px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #d9e5dc;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 4%, rgba(199, 119, 56, 0.28), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(47, 111, 131, 0.25), transparent 26%),
    linear-gradient(135deg, #e7efe6 0%, #f4efe4 52%, #d7e3df 100%);
  color: var(--ink);
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.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;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(199, 119, 56, 0.72);
  outline-offset: 3px;
}

.button.is-loading,
button.is-loading {
  position: relative;
  pointer-events: none;
}

.button.is-loading::after,
button.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: button-spin 0.72s linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.app-shell {
  position: relative;
  width: 100%;
  width: min(100%, var(--app-width));
  max-width: var(--app-width);
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 241, 228, 0.18), rgba(247, 241, 228, 0.96) 255px),
    var(--paper);
  box-shadow: var(--shadow);
}

.app-update-banner {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
  color: #fffaf0;
  background:
    linear-gradient(135deg, rgba(33, 77, 67, 0.98), rgba(172, 91, 49, 0.96));
  box-shadow: 0 14px 32px rgba(33, 77, 67, 0.22);
}

.app-update-banner strong,
.app-update-banner span {
  display: block;
}

.app-update-banner strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
}

.app-update-banner span {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 750;
  opacity: 0.88;
}

.app-update-banner .button {
  min-height: 40px;
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.42);
  background: rgba(255, 250, 240, 0.12);
}

.app-hero {
  position: relative;
  min-height: 315px;
  padding: max(18px, env(safe-area-inset-top)) 18px 20px;
  color: #fffaf0;
  isolation: isolate;
}

.app-hero::before,
.app-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -2;
}

.app-hero::before {
  background-image:
    linear-gradient(180deg, rgba(12, 26, 22, 0.72), rgba(28, 49, 41, 0.48) 38%, rgba(247, 241, 228, 0.08) 100%),
    url("https://static.wixstatic.com/media/e8a4e4_3c6c8c45ced3473aa35ce29d36e7b068~mv2.jpg/v1/fill/w_675%2Ch_450%2Cal_c%2Cq_80%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/e8a4e4_3c6c8c45ced3473aa35ce29d36e7b068~mv2.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.app-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 119, 56, 0.36), transparent 27%),
    linear-gradient(180deg, transparent 57%, var(--paper) 100%);
}

.hero-top,
.hero-actions,
.section-heading,
.action-row,
.room-input-row,
.chat-form,
.restaurant-status-card,
.restaurant-reserve-strip,
.mini-pill {
  display: flex;
  align-items: center;
}

.hero-top {
  justify-content: space-between;
  gap: 12px;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(255, 250, 240, 0.46);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.12);
}

.language-switch button {
  min-width: 31px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 250, 240, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.language-switch button.is-active {
  background: #fffaf0;
  color: var(--pine);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.58);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.16);
  color: #fffaf0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand-lockup small {
  margin-top: 2px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 11px;
}

.install-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid rgba(255, 250, 240, 0.5);
  border-radius: 8px;
  padding: 8px 11px;
  background: rgba(255, 250, 240, 0.14);
  color: #fffaf0;
  font-size: 12px;
  font-weight: 800;
}

.install-nudge {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 20px;
  padding: 14px;
  background:
    radial-gradient(circle at 88% 8%, rgba(127, 196, 181, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(226, 245, 235, 0.9));
  box-shadow: 0 16px 30px rgba(33, 77, 67, 0.11);
}

.install-nudge > svg {
  width: 32px;
  height: 32px;
  color: var(--pine);
}

.install-nudge strong {
  display: block;
  color: var(--pine);
  font-size: 15px;
}

.install-nudge p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.42;
}

.install-nudge .button {
  grid-column: 1 / -1;
  min-height: 46px;
}

.hero-copy {
  margin-top: 58px;
}

.kicker,
.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  color: #f8cf99;
}

.eyebrow {
  color: var(--wine);
}

.hero-copy h1 {
  max-width: 390px;
  margin: 8px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(38px, 10.5vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-copy p:last-child {
  max-width: 335px;
  margin: 13px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: 14px;
  line-height: 1.45;
}

.hero-actions {
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 45px;
  border-radius: 8px;
  padding: 10px 14px;
  border: 0;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(135deg, var(--copper), #df9a51);
  color: #1d130b;
  box-shadow: 0 10px 24px rgba(97, 55, 23, 0.22);
}

.button-ghost {
  border: 1px solid rgba(255, 250, 240, 0.68);
  background: rgba(12, 26, 22, 0.58);
  color: #fffaf0;
  box-shadow: 0 8px 20px rgba(12, 26, 22, 0.2);
}

.button-ghost-dark {
  border: 1px solid var(--line);
  background: rgba(247, 241, 228, 0.86);
  color: var(--pine);
}

.app-main {
  position: relative;
  padding: 0 14px calc(var(--nav-height) + 24px + env(safe-area-inset-bottom));
  margin-top: -14px;
}

.app-quality-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 10px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 14px;
  padding: 7px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 12px 28px rgba(33, 77, 67, 0.09);
}

.app-quality-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  background: rgba(226, 245, 235, 0.82);
  color: var(--pine);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.app-quality-strip svg {
  width: 14px;
  height: 14px;
}

.app-quality-strip[data-network="offline"] span:first-child {
  background: rgba(255, 235, 229, 0.92);
  color: var(--wine);
}

.offline-banner {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0 0 10px;
  padding: 12px;
  border: 1px solid rgba(141, 61, 64, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 94% 0%, rgba(199, 119, 56, 0.18), transparent 30%),
    rgba(255, 235, 229, 0.94);
  color: var(--wine);
  box-shadow: 0 12px 28px rgba(141, 61, 64, 0.1);
}

.offline-banner[hidden] {
  display: none;
}

.offline-banner svg {
  width: 22px;
  height: 22px;
}

.offline-banner strong {
  display: block;
  font-size: 14px;
}

.offline-banner p {
  margin: 4px 0 0;
  color: #7a4b4d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.38;
}

.offline-banner .button {
  grid-column: 1 / -1;
  min-height: 42px;
  background: rgba(255, 250, 240, 0.84);
}

.access-link-banner {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0 0 10px;
  padding: 13px;
  border: 1px solid rgba(141, 61, 64, 0.3);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 235, 229, 0.98), rgba(255, 250, 240, 0.96));
  color: var(--wine);
  box-shadow: 0 12px 28px rgba(141, 61, 64, 0.11);
}

.access-link-banner svg {
  width: 22px;
  height: 22px;
}

.access-link-banner strong {
  display: block;
  font-size: 14px;
}

.access-link-banner p {
  margin: 4px 0 0;
  color: #703f42;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.view-panel {
  animation: panel-in 220ms ease-out;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading {
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.84);
  backdrop-filter: blur(12px);
}

.section-heading span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading strong {
  max-width: 58%;
  text-align: right;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.signal-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.guest-home-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.guest-home-action {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 18px;
  padding: 13px;
  background:
    radial-gradient(circle at 92% 0%, rgba(199, 119, 56, 0.16), transparent 30%),
    rgba(255, 250, 240, 0.94);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 14px 28px rgba(33, 77, 67, 0.08);
}

.guest-home-action.is-primary {
  min-height: 96px;
  border-color: rgba(199, 119, 56, 0.34);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 214, 151, 0.48), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(232, 245, 235, 0.96));
}

.guest-home-action[data-state="ready"] {
  border-color: rgba(33, 77, 67, 0.28);
  background:
    radial-gradient(circle at 90% 0%, rgba(127, 196, 181, 0.32), transparent 31%),
    rgba(244, 255, 249, 0.96);
}

.guest-home-action-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: rgba(33, 77, 67, 0.1);
  color: var(--pine);
}

.guest-home-action-icon svg {
  width: 22px;
  height: 22px;
}

.guest-home-action strong {
  display: block;
  color: var(--pine);
  font-size: 18px;
  line-height: 1.12;
}

.guest-home-action small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.arrival-assistant-card {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 24px;
  padding: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 191, 121, 0.34), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(127, 196, 181, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(236, 247, 239, 0.94));
  box-shadow: 0 18px 36px rgba(33, 77, 67, 0.1);
}

.arrival-assistant-head h2 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.02;
}

.arrival-assistant-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.arrival-assistant-steps {
  display: grid;
  gap: 8px;
}

.arrival-assistant-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  text-align: left;
}

.arrival-step-marker {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(33, 77, 67, 0.1);
  color: var(--pine);
  font-size: 13px;
  font-weight: 950;
}

.arrival-assistant-step strong {
  display: block;
  color: var(--pine);
  font-size: 14px;
  line-height: 1.18;
}

.arrival-assistant-step small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.34;
}

.arrival-assistant-step em {
  align-self: start;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(33, 77, 67, 0.08);
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arrival-assistant-step[data-state="done"] {
  border-color: rgba(33, 77, 67, 0.26);
  background: linear-gradient(135deg, rgba(232, 247, 238, 0.98), rgba(255, 250, 240, 0.92));
}

.arrival-assistant-step[data-state="done"] .arrival-step-marker,
.arrival-assistant-step[data-state="ready"] .arrival-step-marker {
  background: var(--pine);
  color: #fffaf0;
}

.arrival-assistant-step[data-state="done"] em {
  background: rgba(33, 77, 67, 0.15);
  color: var(--pine);
}

.arrival-assistant-step[data-state="ready"] {
  border-color: rgba(199, 119, 56, 0.34);
  background: rgba(255, 245, 226, 0.9);
}

.arrival-assistant-step[data-state="ready"] em {
  background: rgba(199, 119, 56, 0.16);
  color: #7a4b14;
}

.arrival-assistant-step[data-state="optional"] em {
  background: rgba(127, 196, 181, 0.16);
  color: var(--pine);
}

.start-next-step-card {
  display: grid;
  gap: 13px;
  margin-top: 12px;
  padding: 17px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(47, 111, 131, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(33, 77, 67, 0.98), rgba(47, 111, 131, 0.94));
  color: #fffaf0;
  box-shadow: 0 20px 42px rgba(33, 77, 67, 0.18);
}

.start-next-step-card .eyebrow,
.start-next-step-card p {
  color: rgba(255, 250, 240, 0.76);
}

.start-next-step-card h2 {
  margin: 4px 0 0;
  color: #fffaf0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.start-next-step-card p:not(.eyebrow) {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.start-next-step-card .button {
  min-height: 54px;
  border-color: rgba(255, 250, 240, 0.14);
  background: linear-gradient(135deg, #f4bf79, #c77738);
  color: #16231f;
}

.guest-reminder-list {
  display: grid;
  gap: 8px;
}

.guest-reminder-list:empty {
  display: none;
}

.guest-reminder {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.1);
}

.guest-reminder svg {
  width: 19px;
  height: 19px;
  color: #f4bf79;
}

.guest-reminder strong {
  display: block;
  color: #fffaf0;
  font-size: 13px;
  line-height: 1.22;
}

.guest-reminder span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 12px;
  line-height: 1.35;
}

.signal-grid .signal-tile:last-child {
  grid-column: 1 / -1;
}

.signal-tile,
.service-tile,
.restaurant-card,
.upsell-card,
.menu-category,
.action-button,
.info-row,
.hotel-info,
.room-finder,
.breakfast-hero,
.stay-hero,
.guest-link-hero,
.account-hero,
.upsell-hero,
.breakfast-facts,
.stay-summary-grid,
.guest-link-preview,
.account-dashboard,
.account-stay-card,
.chat-box,
.app-form,
.restaurant-copy,
.restaurant-status-card,
.restaurant-reserve-strip,
.menu-preview,
.restaurant-meta,
.hours-board,
.restaurant-feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.9);
}

.signal-tile {
  display: grid;
  min-height: 104px;
  align-content: space-between;
  padding: 13px;
  color: var(--ink);
  text-align: left;
}

.signal-tile svg,
.service-tile svg,
.restaurant-card svg,
.upsell-card svg,
.menu-category svg,
.breakfast-hero svg,
.stay-hero svg,
.guest-link-hero svg,
.account-hero svg,
.upsell-hero svg,
.breakfast-facts svg,
.mini-pill svg,
.action-button svg,
.info-row svg {
  width: 19px;
  height: 19px;
}

.signal-tile svg {
  color: var(--blue);
}

.signal-tile span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-tile strong {
  margin-top: 3px;
  font-size: 16px;
}

.start-personal-card {
  display: grid;
  gap: 13px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 191, 121, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(226, 245, 235, 0.94));
  box-shadow: 0 18px 38px rgba(33, 77, 67, 0.11);
}

.start-personal-card[hidden] {
  display: none;
}

.start-personal-card h2 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 27px;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.start-personal-card p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.start-personal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.start-personal-facts article {
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.84);
}

.start-personal-facts span,
.checkout-trust-grid span,
.account-invoice-status-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-personal-facts strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.start-personal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.start-personal-actions .button {
  min-height: 48px;
}

.start-personal-actions .button:first-child {
  grid-column: 1 / -1;
}

.start-personal-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.68;
}

.quick-stack,
.hotel-info,
.room-finder,
.restaurant-copy,
.chat-box {
  margin-top: 10px;
  padding: 16px;
}

.quick-stack {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(33, 77, 67, 0.95), rgba(47, 111, 131, 0.88)),
    var(--pine);
  color: #fffaf0;
}

.quick-stack-secondary {
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(235, 246, 239, 0.9));
  color: var(--ink);
}

.quick-stack-secondary .action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-stack .eyebrow {
  color: #f4bf79;
}

.quick-stack h2,
.hotel-info h2,
.room-finder h2,
.restaurant-copy h2 {
  margin: 6px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.action-row {
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--pine);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  flex: 1 1 136px;
}

.quick-stack .action-button {
  border-color: rgba(255, 250, 240, 0.2);
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
}

.quick-stack .action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-stack.quick-stack-secondary {
  border: 1px solid rgba(33, 77, 67, 0.1);
  color: var(--ink);
}

.quick-stack.quick-stack-secondary .eyebrow {
  color: var(--wine);
}

.quick-stack.quick-stack-secondary h2 {
  color: var(--pine);
}

.quick-stack.quick-stack-secondary .action-button {
  border-color: rgba(33, 77, 67, 0.16);
  background: rgba(255, 250, 240, 0.96);
  color: var(--pine);
  box-shadow: 0 8px 20px rgba(33, 77, 67, 0.08);
}

.quick-stack.quick-stack-secondary .action-button svg {
  color: var(--pine);
}

.quick-stack.quick-stack-secondary .action-button:hover {
  background: rgba(238, 248, 241, 0.98);
  border-color: rgba(33, 77, 67, 0.24);
}

.action-button-strong {
  background: linear-gradient(135deg, var(--pine), var(--pine-bright));
  color: #fffaf0;
}

.hotel-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
  padding: 5px;
  border-radius: 8px;
  background: rgba(22, 35, 31, 0.08);
}

.hotel-switch button {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hotel-switch button.is-active {
  background: var(--surface);
  color: var(--pine);
  box-shadow: 0 8px 22px rgba(32, 42, 36, 0.12);
}

.hotel-info > p:not(.eyebrow),
.restaurant-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.restaurant-status-card {
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
}

.restaurant-status-card h3 {
  margin: 4px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.restaurant-status-card p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.restaurant-status-card .button {
  flex: 0 0 auto;
}

.app-form {
  padding: 15px;
  background:
    radial-gradient(circle at 92% 8%, rgba(199, 119, 56, 0.14), transparent 26%),
    rgba(255, 250, 240, 0.92);
}

.upsell-hero {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  padding: 17px;
  background:
    radial-gradient(circle at 86% 18%, rgba(199, 119, 56, 0.38), transparent 34%),
    linear-gradient(135deg, rgba(33, 77, 67, 0.96), rgba(47, 111, 131, 0.92));
  color: #fffaf0;
}

.upsell-hero .eyebrow {
  color: #f4bf79;
}

.upsell-hero h2 {
  margin: 6px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.upsell-hero p:not(.eyebrow) {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.upsell-hero > svg {
  width: 54px;
  height: 54px;
  color: #f4bf79;
}

.upsell-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.upsell-card {
  display: grid;
  min-height: 134px;
  align-content: start;
  gap: 7px;
  padding: 13px;
  color: var(--ink);
  text-align: left;
}

.upsell-card svg {
  color: var(--copper);
}

.upsell-card strong {
  font-size: 15px;
  line-height: 1.15;
}

.upsell-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.upsell-card.is-featured {
  background:
    linear-gradient(135deg, rgba(141, 61, 64, 0.96), rgba(199, 119, 56, 0.92)),
    var(--wine);
  color: #fffaf0;
}

.upsell-card.is-featured span,
.upsell-card.is-featured svg {
  color: rgba(255, 250, 240, 0.84);
}

.upsell-card.is-selected {
  outline: 3px solid rgba(199, 119, 56, 0.36);
  outline-offset: -3px;
}

.form-head h2,
.form-head h3 {
  margin: 4px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.form-head p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 13px;
}

.form-grid label {
  display: grid;
  gap: 6px;
}

.form-grid label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fffefa;
  color: var(--ink);
  outline: 0;
}

.form-grid textarea {
  min-height: 108px;
  padding-top: 11px;
  line-height: 1.45;
}

.form-wide {
  grid-column: 1 / -1;
}

.opera-scope-note {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(230, 246, 237, 0.72);
  color: var(--pine);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.opera-scope-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.form-submit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 12px;
}

.form-submit-row .form-submit {
  margin-top: 0;
}

.opera-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0 4px;
  padding: 0;
  list-style: none;
}

.opera-stepper li {
  display: grid;
  gap: 6px;
  min-height: 82px;
  align-content: start;
  border: 1px solid rgba(33, 77, 67, 0.15);
  border-radius: 10px;
  padding: 10px 8px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--muted);
}

.opera-stepper span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(33, 77, 67, 0.12);
  color: var(--pine);
  font-size: 12px;
  font-weight: 900;
}

.opera-stepper strong {
  color: inherit;
  font-size: 11px;
  line-height: 1.25;
}

.opera-stepper li.is-active,
.opera-stepper li.is-done {
  border-color: rgba(33, 77, 67, 0.32);
  background: linear-gradient(135deg, rgba(237, 246, 243, 0.95), rgba(255, 250, 240, 0.96));
  color: var(--pine);
}

.opera-stepper li.is-active span,
.opera-stepper li.is-done span {
  background: var(--pine);
  color: #fffaf0;
}

.opera-stepper li.is-busy {
  border-color: rgba(199, 119, 56, 0.55);
  box-shadow: 0 0 0 3px rgba(199, 119, 56, 0.08);
}

.opera-stepper li.is-success {
  border-color: rgba(33, 77, 67, 0.42);
  background: linear-gradient(135deg, rgba(223, 242, 226, 0.94), rgba(255, 250, 240, 0.98));
}

.opera-stepper li.is-error {
  border-color: rgba(141, 61, 64, 0.5);
  background: rgba(255, 241, 215, 0.88);
  color: var(--wine);
}

.checkin-submit-progress {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 12%, rgba(244, 191, 121, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(237, 246, 243, 0.94), rgba(255, 250, 240, 0.96));
  color: var(--pine);
  padding: 14px;
}

.checkin-submit-progress-head span {
  display: block;
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkin-submit-progress-head strong {
  display: block;
  margin-top: 4px;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  line-height: 1.05;
}

.checkin-submit-progress-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
}

.checkin-submit-progress-bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(33, 77, 67, 0.12);
}

.checkin-submit-progress-bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pine), var(--copper));
  transition: width 0.28s ease;
}

.checkin-submit-progress-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkin-submit-progress-list li {
  border-radius: 999px;
  background: rgba(33, 77, 67, 0.08);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  padding: 7px 5px;
}

.checkin-submit-progress-list li[data-state="active"] {
  background: rgba(244, 191, 121, 0.28);
  color: #7a4b14;
}

.checkin-submit-progress-list li[data-state="done"] {
  background: rgba(33, 77, 67, 0.15);
  color: var(--pine);
}

.flow-ribbon {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  margin: 13px 0 2px;
  padding: 9px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(33, 77, 67, 0.08), rgba(244, 191, 121, 0.16)),
    rgba(255, 250, 240, 0.78);
  scrollbar-width: none;
}

.flow-ribbon::-webkit-scrollbar {
  display: none;
}

.flow-ribbon span {
  flex: 0 0 auto;
  color: var(--pine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.flow-ribbon i {
  flex: 0 0 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(33, 77, 67, 0.22);
}

.checkin-guidance-card,
.door-clarity-card {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 20px;
  padding: 15px;
  background:
    radial-gradient(circle at 94% 8%, rgba(244, 191, 121, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(226, 245, 235, 0.9));
  box-shadow: 0 16px 32px rgba(33, 77, 67, 0.09);
}

.checkin-guidance-card h3,
.door-clarity-card h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  line-height: 1.07;
}

.checkin-guidance-card p:not(.eyebrow),
.door-clarity-card p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.44;
}

.checkin-guidance-card ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checkin-guidance-card li {
  display: grid;
  gap: 7px;
  min-height: 86px;
  align-content: start;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 15px;
  padding: 10px;
  background: rgba(255, 250, 240, 0.78);
}

.checkin-guidance-card li span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--pine);
  color: #fffaf0;
  font-size: 12px;
  font-weight: 900;
}

.checkin-guidance-card li strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.door-clarity-card {
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  background:
    radial-gradient(circle at 94% 8%, rgba(127, 196, 181, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(232, 245, 248, 0.9));
}

.door-clarity-card > svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.remembered-stay-card {
  display: grid;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(33, 77, 67, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 95% 0%, rgba(222, 168, 92, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(236, 246, 237, 0.88));
  box-shadow: 0 14px 28px rgba(33, 77, 67, 0.1);
}

.remembered-stay-card span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.remembered-stay-card strong {
  display: block;
  margin-top: 4px;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
}

.remembered-stay-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.remembered-stay-card .button {
  width: 100%;
}

.door-one-tap-card {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(33, 77, 67, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(127, 196, 181, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(33, 77, 67, 0.98), rgba(47, 111, 131, 0.94));
  color: #fffaf0;
  box-shadow: 0 18px 36px rgba(33, 77, 67, 0.2);
}

.door-one-tap-card .eyebrow,
.door-one-tap-card p {
  color: rgba(255, 250, 240, 0.78);
}

.door-one-tap-card strong {
  display: block;
  margin-top: 4px;
  color: #fffaf0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.door-one-tap-card p:not(.eyebrow) {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.door-one-tap-card .button {
  min-height: 58px;
  width: 100%;
  border-color: rgba(255, 250, 240, 0.12);
  background: linear-gradient(135deg, #f4bf79, #c77738);
  color: #16231f;
  font-size: 15px;
}

.door-one-tap-actions {
  display: grid;
  gap: 8px;
}

.door-one-tap-actions .button.button-ghost-dark {
  border-color: rgba(255, 250, 240, 0.26);
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
}

.door-one-tap-actions .button.button-ghost-dark:hover {
  background: rgba(255, 250, 240, 0.2);
}

.key-room-location-card {
  display: grid;
  gap: 6px;
  margin: 12px 0 14px;
  padding: 14px;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 0%, rgba(127, 196, 181, 0.2), transparent 36%),
    rgba(255, 250, 240, 0.92);
  box-shadow: 0 12px 24px rgba(33, 77, 67, 0.08);
}

.key-room-location-card[hidden] {
  display: none;
}

.key-room-location-card span,
.key-room-location-card small {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.key-room-location-card strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
}

.key-room-location-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.key-room-location-card small {
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

.key-room-location-card-dark {
  margin-top: 12px;
  border-color: rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.1);
  box-shadow: none;
}

.key-room-location-card-dark span,
.key-room-location-card-dark small,
.key-room-location-card-dark p,
.key-room-location-card-dark strong {
  color: #fffaf0;
}

.key-room-location-card-dark small,
.key-room-location-card-dark p {
  color: rgba(255, 250, 240, 0.78);
}

.account-header-actions {
  display: grid;
  gap: 8px;
}

.account-refresh-note {
  white-space: pre-wrap;
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.rating-row button {
  min-height: 46px;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 8px;
  background: #fffefa;
  color: var(--pine);
  font-size: 16px;
  font-weight: 900;
}

.rating-row button.is-selected {
  border-color: var(--pine);
  background: linear-gradient(135deg, var(--pine), var(--pine-bright));
  color: #fffaf0;
  box-shadow: 0 9px 22px rgba(33, 77, 67, 0.18);
}

.form-result {
  margin: 11px 0 0;
  border-left: 4px solid var(--copper);
  padding: 8px 0 8px 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.form-result[data-tone="success"] {
  border-left-color: var(--pine);
  color: var(--pine);
}

.form-result[data-tone="busy"] {
  border-left-color: var(--blue);
  color: var(--blue);
}

.form-result[data-tone="warning"] {
  border-left-color: var(--copper);
  color: var(--ink);
}

.form-result[data-tone="error"] {
  border-left-color: var(--wine);
  color: var(--wine);
}

.reservation-choice-card {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 94% 0%, rgba(47, 111, 131, 0.13), transparent 35%),
    rgba(255, 250, 240, 0.92);
}

.reservation-choice-card strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
}

.reservation-choice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.reservation-choice-card .reservation-choice-hint {
  padding: 9px 10px;
  border-left: 4px solid var(--copper);
  border-radius: 11px;
  background: rgba(255, 243, 222, 0.88);
  color: var(--ink);
  font-weight: 850;
}

.reservation-choice-list {
  display: grid;
  gap: 9px;
}

.reservation-choice-button {
  display: grid;
  gap: 6px;
  width: 100%;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 12px;
  background: #fffefa;
  color: var(--ink);
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.reservation-choice-button:hover:not(:disabled),
.reservation-choice-button:focus-visible {
  border-color: rgba(33, 77, 67, 0.42);
  box-shadow: 0 12px 24px rgba(33, 77, 67, 0.12);
  transform: translateY(-1px);
}

.reservation-choice-button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.reservation-choice-button.is-loading {
  border-color: var(--blue);
  background: rgba(232, 245, 248, 0.94);
  box-shadow: 0 0 0 3px rgba(47, 111, 131, 0.12);
  opacity: 1;
}

.reservation-choice-topline {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.reservation-choice-position,
.reservation-choice-status {
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.reservation-choice-position {
  background: rgba(33, 77, 67, 0.08);
  color: var(--pine);
}

.reservation-choice-status {
  background: rgba(199, 119, 56, 0.12);
  color: #7a4b14;
}

.reservation-choice-status[data-tone="success"] {
  background: rgba(33, 132, 92, 0.13);
  color: var(--pine);
}

.reservation-choice-status[data-tone="muted"] {
  background: rgba(99, 105, 102, 0.1);
  color: var(--muted);
}

.reservation-choice-button .reservation-choice-title {
  color: var(--pine);
  font-size: 15px;
  font-weight: 950;
}

.reservation-choice-button .reservation-choice-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.reservation-choice-button .reservation-choice-action {
  justify-self: start;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pine), var(--blue));
  color: #fffaf0;
  font-family: inherit;
  font-size: 12px;
  padding: 7px 10px;
}

.privacy-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 12px;
  border: 1px solid rgba(47, 111, 131, 0.2);
  border-radius: 16px;
  padding: 12px;
  background: rgba(232, 245, 248, 0.82);
  color: var(--blue);
}

.privacy-note svg {
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.privacy-note strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
}

.privacy-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.42;
}

.account-privacy-note {
  margin-top: 0;
  background:
    radial-gradient(circle at 92% 6%, rgba(47, 111, 131, 0.18), transparent 30%),
    rgba(255, 250, 240, 0.86);
}

.checkin-prefill-note {
  margin: 12px 0 0;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 16px;
  background: rgba(33, 77, 67, 0.08);
  color: var(--pine);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.checkin-preview-card {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(circle at 90% 8%, rgba(199, 119, 56, 0.17), transparent 34%),
    rgba(255, 250, 240, 0.86);
}

.checkin-preview-list {
  display: grid;
  grid-template-columns: minmax(92px, 0.9fr) minmax(0, 1.4fr);
  gap: 8px 12px;
  margin: 0;
}

.checkin-preview-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.checkin-preview-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.checkin-status-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.checkin-status-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  border-radius: 14px;
  padding: 10px 11px;
  background: rgba(255, 250, 240, 0.72);
}

.checkin-status-list article[data-tone="success"] {
  border-left-color: var(--pine);
}

.checkin-status-list article[data-tone="error"] {
  border-left-color: var(--wine);
}

.checkin-status-list strong {
  font-size: 13px;
}

.checkin-status-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

@media (min-width: 640px) {
  .remembered-stay-card {
    grid-template-columns: 1fr auto;
  }

  .account-profile-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .account-dashboard-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .account-main-details {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .account-current-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .remembered-stay-card .button {
    width: auto;
  }

  .account-stay-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .account-stay-actions {
    min-width: 150px;
  }
}

.restaurant-reserve-strip,
.menu-preview,
.app-form,
.breakfast-hero,
.breakfast-facts,
.checkin-hero,
.key-hero,
.key-step-grid {
  margin-top: 10px;
}

.restaurant-reserve-strip {
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  background:
    linear-gradient(135deg, rgba(141, 61, 64, 0.96), rgba(199, 119, 56, 0.92)),
    var(--wine);
  color: #fffaf0;
}

.restaurant-reserve-strip .eyebrow {
  color: #ffe1ae;
}

.restaurant-reserve-strip h3,
.menu-preview h3,
.breakfast-hero h2 {
  margin: 4px 0 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}

.restaurant-reserve-strip h3 {
  font-size: 23px;
  line-height: 1.02;
}

.restaurant-reserve-strip p:last-child {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.menu-preview {
  padding: 15px;
}

.menu-preview-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.menu-preview h3 {
  font-size: 25px;
  line-height: 1.04;
}

.menu-preview p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 13px;
}

.menu-category {
  display: grid;
  min-height: 122px;
  align-content: start;
  gap: 7px;
  padding: 13px;
  text-align: left;
}

.menu-category svg {
  color: var(--wine);
}

.menu-category strong {
  font-size: 15px;
}

.menu-category span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.menu-category.is-featured {
  background:
    linear-gradient(135deg, rgba(33, 77, 67, 0.95), rgba(47, 111, 131, 0.92)),
    var(--pine);
  color: #fffaf0;
}

.menu-category.is-featured span,
.menu-category.is-featured svg {
  color: rgba(255, 250, 240, 0.82);
}

.menu-category.is-selected {
  outline: 3px solid rgba(199, 119, 56, 0.34);
  outline-offset: -3px;
}

.menu-preview-result {
  min-height: 46px;
  margin: 12px 0 0;
  border-left: 4px solid var(--copper);
  padding: 8px 0 8px 12px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.restaurant-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.restaurant-concierge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 10px 0;
}

.restaurant-concierge-grid article,
.restaurant-concierge-grid button {
  display: grid;
  gap: 7px;
  min-height: 112px;
  align-content: start;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 16px;
  padding: 14px;
  background:
    radial-gradient(circle at 92% 4%, rgba(244, 191, 121, 0.22), transparent 28%),
    rgba(255, 250, 240, 0.92);
  color: var(--ink);
  text-align: left;
}

.restaurant-concierge-grid button {
  cursor: pointer;
  font: inherit;
}

.restaurant-concierge-grid svg {
  color: var(--copper);
}

.restaurant-concierge-grid strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  line-height: 1.08;
}

.restaurant-concierge-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.restaurant-card {
  display: grid;
  min-height: 137px;
  align-content: start;
  gap: 7px;
  padding: 13px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
  text-align: left;
}

button.restaurant-card {
  font: inherit;
}

.restaurant-card svg {
  color: var(--blue);
}

.restaurant-card strong {
  font-size: 15px;
  line-height: 1.15;
}

.restaurant-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
}

.restaurant-card-strong {
  background:
    linear-gradient(135deg, rgba(33, 77, 67, 0.96), rgba(47, 111, 131, 0.92)),
    var(--pine);
  color: #fffaf0;
}

.restaurant-card-strong span,
.restaurant-card-strong svg {
  color: rgba(255, 250, 240, 0.82);
}

.restaurant-meta {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  background: rgba(255, 250, 240, 0.72);
}

.mini-pill {
  gap: 8px;
  min-height: 37px;
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(247, 241, 228, 0.9);
  color: var(--pine);
  font-size: 12px;
  font-weight: 800;
}

.info-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.info-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 10px;
  background: rgba(247, 241, 228, 0.8);
}

.info-row-button {
  width: 100%;
  border: 0;
  color: inherit;
  text-align: left;
}

.info-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-row strong {
  text-align: right;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.room-input-label {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-input-row {
  gap: 8px;
  margin-top: 7px;
}

.room-input-row input,
.chat-form input,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: #fffefa;
  color: var(--ink);
  outline: 0;
}

.room-input-row input:focus,
.chat-form input:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(47, 111, 131, 0.62);
  box-shadow: 0 0 0 3px rgba(47, 111, 131, 0.14);
}

.room-result {
  min-height: 48px;
  margin: 12px 0 0;
  border-left: 4px solid var(--copper);
  padding: 8px 0 8px 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.room-result.is-muted {
  border-color: rgba(97, 112, 106, 0.35);
  color: var(--muted);
}

.restaurant-feature {
  overflow: hidden;
  margin-top: 0;
  background: #21372f;
}

.restaurant-feature img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.hours-board {
  display: grid;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
}

.hours-board div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.hours-board div:last-child {
  border-bottom: 0;
}

.hours-board span {
  color: var(--muted);
  font-size: 13px;
}

.hours-board strong {
  font-size: 14px;
}

.service-tile {
  display: grid;
  min-height: 128px;
  align-content: start;
  gap: 8px;
  padding: 14px;
  text-align: left;
}

.service-tile svg {
  color: var(--wine);
}

.service-tile strong {
  font-size: 16px;
}

.service-tile span {
  color: var(--muted);
  font-size: 13px;
}

.breakfast-hero {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 12px;
  align-items: center;
  padding: 17px;
  background:
    radial-gradient(circle at 86% 18%, rgba(244, 191, 121, 0.44), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(255, 243, 220, 0.95));
}

.breakfast-hero h2 {
  font-size: 29px;
  line-height: 1.02;
}

.breakfast-hero p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.breakfast-hero > svg {
  width: 54px;
  height: 54px;
  color: var(--copper);
}

.breakfast-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.breakfast-facts div {
  display: grid;
  gap: 5px;
  min-height: 116px;
  align-content: start;
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.breakfast-facts div:nth-child(2n) {
  border-right: 0;
}

.breakfast-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.breakfast-facts svg {
  color: var(--blue);
}

.breakfast-facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breakfast-facts strong {
  font-size: 15px;
  line-height: 1.25;
}

.breakfast-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 10px;
}

.checkin-hero,
.key-hero,
.stay-hero,
.guest-link-hero,
.checkout-hero,
.account-hero {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 12px;
  align-items: center;
  padding: 17px;
}

.checkin-hero {
  background:
    radial-gradient(circle at 90% 16%, rgba(244, 191, 121, 0.4), transparent 35%),
    linear-gradient(135deg, rgba(33, 77, 67, 0.98), rgba(47, 111, 131, 0.94));
  color: #fffaf0;
}

.key-hero {
  background:
    radial-gradient(circle at 90% 16%, rgba(127, 196, 181, 0.34), transparent 35%),
    linear-gradient(135deg, rgba(18, 39, 51, 0.98), rgba(33, 77, 67, 0.95));
  color: #fffaf0;
}

.stay-hero,
.guest-link-hero {
  background:
    radial-gradient(circle at 90% 16%, rgba(244, 191, 121, 0.34), transparent 35%),
    linear-gradient(135deg, rgba(32, 69, 61, 0.98), rgba(127, 64, 54, 0.92));
  color: #fffaf0;
}

.guest-link-hero {
  background:
    radial-gradient(circle at 90% 16%, rgba(127, 196, 181, 0.32), transparent 35%),
    linear-gradient(135deg, rgba(33, 77, 67, 0.98), rgba(47, 111, 131, 0.94));
}

.checkout-hero {
  background:
    radial-gradient(circle at 86% 14%, rgba(244, 191, 121, 0.38), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(127, 196, 181, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(33, 77, 67, 0.98), rgba(127, 64, 54, 0.94));
  color: #fffaf0;
}

.account-hero {
  background:
    radial-gradient(circle at 88% 14%, rgba(244, 191, 121, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(22, 35, 31, 0.98), rgba(33, 77, 67, 0.94));
  color: #fffaf0;
}

.checkin-hero .eyebrow,
.key-hero .eyebrow,
.stay-hero .eyebrow,
.guest-link-hero .eyebrow,
.checkout-hero .eyebrow,
.account-hero .eyebrow {
  color: #f4bf79;
}

.checkin-hero h2,
.key-hero h2,
.stay-hero h2,
.guest-link-hero h2,
.checkout-hero h2,
.account-hero h2 {
  margin: 6px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.checkin-hero p:not(.eyebrow),
.key-hero p:not(.eyebrow),
.stay-hero p:not(.eyebrow),
.guest-link-hero p:not(.eyebrow),
.checkout-hero p:not(.eyebrow),
.account-hero p:not(.eyebrow) {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.checkin-hero > svg,
.key-hero > svg,
.stay-hero > svg,
.guest-link-hero > svg,
.checkout-hero > svg,
.account-hero > svg {
  width: 54px;
  height: 54px;
  color: #f4bf79;
}

.key-hero > svg,
.guest-link-hero > svg,
.checkout-hero > svg,
.account-hero > svg {
  color: #7fc4b5;
}

.account-layout {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.account-dashboard {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.account-dashboard-grid article {
  display: grid;
  min-height: 128px;
  align-content: start;
  gap: 7px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 16px;
  padding: 13px;
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 191, 121, 0.18), transparent 32%),
    rgba(255, 250, 240, 0.93);
  box-shadow: 0 12px 24px rgba(33, 77, 67, 0.07);
}

.account-dashboard-grid svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
}

.account-dashboard-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-dashboard-grid strong {
  color: var(--pine);
  font-size: 15px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.account-dashboard-grid small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.account-priority-actions {
  display: grid;
  gap: 12px;
  order: -4;
  padding: 16px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 191, 121, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(226, 245, 235, 0.93));
  box-shadow: 0 18px 38px rgba(33, 77, 67, 0.11);
}

.account-priority-actions h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.06;
}

.account-hub-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.42;
}

.account-priority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.account-priority-grid button {
  display: grid;
  min-height: 126px;
  align-content: start;
  gap: 7px;
  border: 1px solid rgba(33, 77, 67, 0.13);
  border-radius: 17px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 22px rgba(33, 77, 67, 0.07);
}

.account-priority-grid button:first-child {
  grid-column: 1 / -1;
  min-height: 108px;
  background:
    radial-gradient(circle at 94% 6%, rgba(127, 196, 181, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(33, 77, 67, 0.98), rgba(47, 111, 131, 0.94));
  color: #fffaf0;
}

.account-priority-grid button[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}

.account-priority-grid svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.account-priority-grid button:first-child svg {
  color: #7fc4b5;
}

.account-priority-grid strong {
  font-size: 15px;
  line-height: 1.16;
}

.account-priority-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.account-priority-grid button:first-child span {
  color: rgba(255, 250, 240, 0.78);
}

.account-profile-panel {
  display: grid;
  gap: 10px;
}

.account-data-rights {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(154, 106, 44, 0.28);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 239, 222, 0.94));
}

.account-data-rights h3,
.account-data-rights p {
  margin-top: 0;
}

.account-data-rights-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-danger-soft {
  color: #7a2925;
  border: 1px solid rgba(122, 41, 37, 0.35);
  background: #fff2ef;
}

.button-danger-soft:hover,
.button-danger-soft:focus-visible {
  color: #fff;
  background: #7a2925;
}

.account-profile-card {
  padding: 16px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 2%, rgba(127, 196, 181, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(231, 242, 235, 0.94));
  box-shadow: 0 16px 34px rgba(33, 77, 67, 0.1);
}

.account-profile-card h3 {
  margin: 5px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.04;
}

.account-profile-card p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.account-profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.account-profile-facts div {
  min-height: 74px;
  padding: 11px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.86);
}

.account-profile-facts span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-profile-facts strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.account-overview-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  order: -5;
  padding: 12px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 2%, rgba(244, 191, 121, 0.2), transparent 28%),
    rgba(255, 250, 240, 0.9);
  box-shadow: 0 14px 30px rgba(33, 77, 67, 0.09);
}

.account-overview-strip[hidden] {
  display: none;
}

.account-overview-strip article {
  min-height: 78px;
  padding: 10px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.88);
}

.account-overview-strip article[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.22);
  background: rgba(226, 245, 235, 0.9);
}

.account-overview-strip article[data-tone="busy"] {
  border-color: rgba(199, 119, 56, 0.26);
  background: rgba(255, 243, 222, 0.92);
}

.account-overview-strip article[data-tone="error"] {
  border-color: rgba(160, 54, 42, 0.22);
  background: rgba(255, 235, 229, 0.9);
}

.account-overview-strip span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-overview-strip strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.account-trip-phase {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 191, 121, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(231, 242, 235, 0.94));
  box-shadow: 0 16px 32px rgba(33, 77, 67, 0.1);
}

.account-trip-phase h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.06;
}

.account-trip-phase p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.account-trip-phase .button {
  min-height: 52px;
}

.account-current-stay {
  display: grid;
  gap: 12px;
  order: -3;
  padding: 17px;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 4%, rgba(127, 196, 181, 0.24), transparent 32%),
    radial-gradient(circle at 4% 92%, rgba(244, 191, 121, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(231, 242, 235, 0.95));
  box-shadow: 0 20px 42px rgba(33, 77, 67, 0.13);
}

.account-current-stay h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
}

.account-current-stay p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.account-live-dashboard {
  display: grid;
  gap: 12px;
  order: -4;
  padding: 16px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 191, 121, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(226, 245, 235, 0.94));
  box-shadow: 0 18px 34px rgba(33, 77, 67, 0.11);
}

.account-live-dashboard[hidden] {
  display: none;
}

.account-live-head {
  display: grid;
  gap: 12px;
}

.account-live-head h3,
.account-security-audit h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.06;
}

.account-live-head p:not(.eyebrow),
.account-security-audit p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.account-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.account-live-grid article {
  display: grid;
  min-height: 98px;
  gap: 6px;
  padding: 11px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.86);
}

.account-live-grid article[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.24);
  background: rgba(226, 245, 235, 0.9);
}

.account-live-grid article[data-tone="error"] {
  border-color: rgba(160, 54, 42, 0.2);
  background: rgba(255, 235, 229, 0.9);
}

.account-live-grid strong {
  color: var(--pine);
  font-size: 14px;
}

.account-live-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.account-live-grid small {
  justify-self: start;
  align-self: end;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(33, 77, 67, 0.1);
  color: var(--pine);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-current-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.account-stay-selector {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}

.account-stay-selector span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-stay-selector select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 12px;
  padding: 0 12px;
  background: #fffefa;
  color: var(--ink);
  font-weight: 800;
}

.account-main-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.account-main-details article {
  min-height: 84px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 15px;
  padding: 11px;
  background: rgba(255, 250, 240, 0.88);
}

.account-main-details span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-main-details strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.account-readiness-warning {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(199, 119, 56, 0.28);
  border-radius: 15px;
  padding: 12px;
  background: rgba(255, 243, 222, 0.9);
  color: #7a4b14;
}

.account-readiness-warning[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.22);
  background: rgba(226, 245, 235, 0.9);
  color: var(--pine);
}

.account-readiness-warning[data-tone="error"] {
  border-color: rgba(141, 61, 64, 0.24);
  background: rgba(255, 235, 229, 0.88);
  color: var(--wine);
}

.account-readiness-warning svg {
  width: 22px;
  height: 22px;
}

.account-readiness-warning strong {
  display: block;
  font-size: 14px;
}

.account-readiness-warning p {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.account-room-watch {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(199, 119, 56, 0.22);
  border-radius: 15px;
  padding: 12px;
  background: rgba(255, 243, 222, 0.88);
}

.account-room-watch[hidden] {
  display: none;
}

.account-room-watch[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.22);
  background: rgba(226, 245, 235, 0.9);
}

.account-room-watch svg {
  color: var(--blue);
}

.account-room-watch strong {
  display: block;
  color: var(--pine);
  font-size: 14px;
}

.account-room-watch p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.account-current-actions .button {
  min-height: 50px;
}

.account-invoice-files {
  display: grid;
  gap: 12px;
  order: -2;
  padding: 16px;
  border: 1px solid rgba(33, 132, 92, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(127, 196, 181, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(226, 245, 235, 0.95), rgba(255, 250, 240, 0.97));
  box-shadow: 0 16px 32px rgba(33, 77, 67, 0.1);
}

.account-invoice-files[data-has-invoice="true"] {
  border-color: rgba(33, 132, 92, 0.28);
  background:
    radial-gradient(circle at 92% 0%, rgba(127, 196, 181, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(226, 245, 235, 0.98), rgba(255, 250, 240, 0.97));
}

.account-invoice-files h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.06;
}

.account-invoice-files p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.account-invoice-file-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.account-invoice-file-actions .button {
  min-height: 50px;
}

.account-invoice-lock-note {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(199, 119, 56, 0.28);
  border-radius: 14px;
  background: rgba(255, 243, 222, 0.95);
  color: #7a4b14;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.account-invoice-state-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(47, 111, 131, 0.2);
  border-radius: 16px;
  background: rgba(232, 245, 248, 0.84);
}

.account-invoice-state-card[hidden] {
  display: none;
}

.account-invoice-state-card[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.24);
  background: rgba(226, 245, 235, 0.9);
}

.account-invoice-state-card[data-tone="busy"] {
  border-color: rgba(199, 119, 56, 0.26);
  background: rgba(255, 243, 222, 0.9);
}

.account-invoice-state-card svg {
  color: var(--blue);
}

.account-invoice-state-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-invoice-state-card strong {
  display: block;
  margin-top: 3px;
  color: var(--pine);
  font-size: 15px;
  line-height: 1.2;
}

.account-invoice-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.account-invoice-summary[hidden] {
  display: none;
}

.account-invoice-summary article {
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.84);
}

.account-invoice-summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-invoice-summary strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.account-invoice-status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.account-invoice-status-strip[hidden] {
  display: none;
}

.account-invoice-status-strip article {
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.84);
}

.account-invoice-status-strip strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.account-invoice-status-strip article[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.22);
  background: rgba(226, 245, 235, 0.92);
}

.account-invoice-status-strip article[data-tone="busy"] {
  border-color: rgba(199, 119, 56, 0.26);
  background: rgba(255, 243, 222, 0.92);
}

.account-invoice-lifecycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.account-invoice-lifecycle[hidden] {
  display: none;
}

.account-invoice-lifecycle article {
  min-height: 70px;
  padding: 10px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.84);
}

.account-invoice-lifecycle article[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.22);
  background: rgba(226, 245, 235, 0.92);
}

.account-invoice-lifecycle article[data-tone="busy"] {
  border-color: rgba(199, 119, 56, 0.26);
  background: rgba(255, 243, 222, 0.92);
}

.account-invoice-lifecycle strong {
  display: block;
  color: var(--pine);
  font-size: 13px;
  line-height: 1.25;
}

.account-invoice-lifecycle span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.account-invoice-list {
  display: grid;
  gap: 10px;
}

.account-invoice-row {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(226, 245, 235, 0.82));
  box-shadow: 0 10px 22px rgba(33, 77, 67, 0.08);
}

.account-invoice-row-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: start;
}

.account-invoice-row-head strong {
  color: var(--pine);
  font-size: 16px;
}

.account-invoice-row-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.account-invoice-row-meta {
  display: grid;
  gap: 3px;
}

.account-invoice-row-status {
  justify-self: end;
  border: 1px solid rgba(33, 132, 92, 0.2);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(226, 245, 235, 0.9);
  color: var(--pine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.account-invoice-row-status[data-tone="busy"] {
  border-color: rgba(199, 119, 56, 0.25);
  background: rgba(255, 243, 222, 0.94);
  color: #7a4b14;
}

.account-invoice-row-file {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.account-invoice-row-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.account-invoice-row-actions .button {
  min-height: 42px;
  padding-inline: 8px;
  font-size: 12px;
}

.account-invoice-archive {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(33, 77, 67, 0.1);
}

.account-invoice-archive[hidden] {
  display: none;
}

.account-invoice-archive-head {
  display: grid;
  gap: 4px;
}

.account-invoice-archive-head strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  line-height: 1.05;
}

.account-invoice-archive-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.account-invoice-archive-row {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 94% 6%, rgba(244, 191, 121, 0.17), transparent 32%),
    rgba(255, 250, 240, 0.92);
}

.account-invoice-archive-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.account-invoice-archive-badges span {
  border: 1px solid rgba(199, 119, 56, 0.2);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 243, 222, 0.88);
  color: #7a4b14;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.account-invoice-archive-badges span[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.22);
  background: rgba(226, 245, 235, 0.9);
  color: var(--pine);
}

.account-opera-retry-queue {
  display: grid;
  gap: 12px;
  order: -1;
  padding: 16px;
  border: 1px solid rgba(199, 119, 56, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 191, 121, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 243, 222, 0.94));
  box-shadow: 0 14px 30px rgba(33, 77, 67, 0.09);
}

.account-opera-retry-queue[hidden] {
  display: none;
}

.account-opera-retry-queue h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.06;
}

.account-opera-retry-queue p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.account-opera-retry-list {
  display: grid;
  gap: 8px;
}

.account-opera-retry-list article {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid rgba(199, 119, 56, 0.25);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.9);
}

.account-opera-retry-list strong {
  color: var(--pine);
  font-size: 14px;
}

.account-opera-retry-list span,
.account-opera-retry-list small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.account-collapsible {
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.82);
  overflow: hidden;
}

.account-collapsible summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  color: var(--pine);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

.account-collapsible summary::-webkit-details-marker {
  display: none;
}

.account-collapsible summary svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
  transition: transform 0.18s ease;
}

.account-collapsible[open] summary svg {
  transform: rotate(180deg);
}

.account-collapsible > .app-form {
  border: 0;
  border-top: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.account-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.account-status-grid article {
  min-height: 78px;
  padding: 11px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  background: rgba(255, 250, 240, 0.88);
}

.account-status-grid span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-status-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 14px;
  line-height: 1.2;
}

.account-status-grid[data-status-tone="success"] article:nth-child(2),
.account-status-grid[data-status-tone="success"] article:nth-child(4) {
  border-color: rgba(33, 132, 92, 0.22);
  background: rgba(226, 245, 235, 0.86);
}

.account-status-timeline {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% 4%, rgba(199, 119, 56, 0.17), transparent 28%),
    rgba(255, 250, 240, 0.88);
}

.account-status-timeline h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.06;
}

.account-status-timeline p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.account-status-timeline ol {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.account-status-timeline li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 15px;
  padding: 10px;
  background: rgba(255, 250, 240, 0.82);
}

.account-status-timeline li::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid rgba(97, 112, 106, 0.42);
  border-radius: 999px;
  background: #fffefa;
}

.account-status-timeline li[data-state="done"]::before {
  border-color: rgba(33, 132, 92, 0.45);
  background: radial-gradient(circle, var(--pine) 0 38%, rgba(226, 245, 235, 0.95) 40%);
}

.account-status-timeline li[data-state="attention"]::before {
  border-color: rgba(199, 119, 56, 0.55);
  background: radial-gradient(circle, var(--copper) 0 34%, rgba(255, 243, 222, 0.95) 36%);
}

.account-status-timeline strong {
  display: block;
  color: var(--pine);
  font-size: 14px;
}

.account-status-timeline small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.account-status-timeline .status-pill {
  align-self: center;
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(97, 112, 106, 0.12);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-status-timeline li[data-state="done"] .status-pill {
  background: rgba(226, 245, 235, 0.9);
  color: var(--pine);
}

.account-status-timeline li[data-state="attention"] .status-pill {
  background: rgba(255, 243, 222, 0.95);
  color: #7a4b14;
}

.account-breakfast-hidden,
#guestAccountDashboardGrid > article:nth-child(3),
#guestAccountStatusGrid > article:nth-child(5),
#guestAccountCurrentBreakfastButton,
#guestAccountCurrentUseButton,
#guestAccountCurrentEditButton,
.account-action-hub button[data-goto="breakfast"],
.account-stay-actions button[data-account-action="use"],
.account-stay-actions button[data-account-action="edit"],
.account-stay-actions button[data-account-action="breakfast"] {
  display: none !important;
}

.stay-action-card[data-goto="breakfast"] {
  display: none !important;
}

.account-status-grid[data-status-tone="error"] article:nth-child(2),
.account-status-grid[data-status-tone="error"] article:nth-child(4) {
  border-color: rgba(160, 54, 42, 0.2);
  background: rgba(255, 235, 229, 0.78);
}

.account-action-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.account-action-hub button {
  display: grid;
  min-height: 104px;
  align-content: start;
  gap: 6px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.account-action-hub svg {
  color: var(--blue);
}

.account-action-hub strong {
  color: var(--pine);
  font-size: 15px;
  line-height: 1.15;
}

.account-action-hub span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.guest-error-card {
  padding: 13px;
  border: 1px solid rgba(141, 61, 64, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 2%, rgba(199, 119, 56, 0.16), transparent 28%),
    rgba(255, 246, 229, 0.94);
}

.guest-error-card strong {
  display: block;
  color: var(--wine);
  font-size: 14px;
}

.guest-error-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.account-security-audit {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% 4%, rgba(127, 196, 181, 0.18), transparent 28%),
    rgba(255, 250, 240, 0.9);
}

.account-security-audit[hidden] {
  display: none;
}

.account-audit-list {
  display: grid;
  gap: 8px;
}

.account-audit-list article {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.88);
}

.account-audit-list article[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.2);
  background: rgba(226, 245, 235, 0.88);
}

.account-audit-list article[data-tone="error"] {
  border-color: rgba(160, 54, 42, 0.2);
  background: rgba(255, 235, 229, 0.88);
}

.account-audit-list strong {
  color: var(--pine);
  font-size: 13px;
  text-transform: capitalize;
}

.account-audit-list span,
.account-audit-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.account-stay-list {
  display: grid;
  gap: 10px;
}

.account-stay-section-head {
  display: grid;
  gap: 5px;
  margin-top: 4px;
  padding: 4px 2px;
}

.account-stay-section-head strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  line-height: 1.05;
}

.account-stay-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.account-group-card {
  display: grid;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(199, 119, 56, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 191, 121, 0.24), transparent 34%),
    rgba(255, 243, 222, 0.92);
}

.account-group-card strong {
  color: #7a4b14;
  font-size: 14px;
  font-weight: 950;
}

.account-group-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.account-group-room-list {
  display: grid;
  gap: 6px;
  margin-top: 3px;
  padding: 10px;
  border: 1px solid rgba(199, 119, 56, 0.18);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.72);
}

.account-group-room-list span {
  color: #7a4b14;
  font-size: 12px;
  font-weight: 950;
}

.account-group-room-list small {
  display: block;
  color: var(--pine);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.account-past-hidden-card {
  align-items: start;
}

.account-past-hidden-card .button {
  justify-self: start;
}

.account-stay-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(33, 77, 67, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(127, 196, 181, 0.18), transparent 28%),
    rgba(255, 250, 240, 0.94);
}

.account-stay-card[data-current="true"] {
  border-color: rgba(33, 132, 92, 0.32);
  box-shadow: 0 12px 24px rgba(33, 77, 67, 0.1);
}

.account-stay-card[data-past="true"] {
  border-color: rgba(97, 112, 106, 0.16);
  background:
    radial-gradient(circle at 92% 8%, rgba(97, 112, 106, 0.12), transparent 28%),
    rgba(247, 241, 228, 0.82);
}

.account-stay-card strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
}

.account-stay-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.account-room-position {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  border: 1px solid rgba(33, 132, 92, 0.24);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(226, 245, 235, 0.92);
  color: var(--pine);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-stay-facts {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.account-stay-facts span {
  display: block;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 12px;
  padding: 8px 9px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--pine);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.account-door-reason {
  margin-top: 10px !important;
  border-left: 4px solid rgba(141, 61, 64, 0.42);
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(255, 235, 229, 0.78);
  color: var(--wine) !important;
  font-size: 12px !important;
  font-weight: 850;
  line-height: 1.35 !important;
}

.account-reservation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.account-reservation-badges span {
  border: 1px solid rgba(199, 119, 56, 0.2);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 243, 222, 0.88);
  color: #7a4b14;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.account-reservation-badges span[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.22);
  background: rgba(226, 245, 235, 0.9);
  color: var(--pine);
}

.account-reservation-badges span[data-tone="error"] {
  border-color: rgba(141, 61, 64, 0.24);
  background: rgba(255, 235, 229, 0.88);
  color: var(--wine);
}

.account-stay-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.guest-link-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.guest-link-template-grid button {
  display: grid;
  min-height: 104px;
  align-content: start;
  gap: 6px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.guest-link-template-grid button.is-selected {
  border-color: rgba(33, 77, 67, 0.36);
  background: linear-gradient(135deg, rgba(237, 246, 243, 0.96), rgba(255, 250, 240, 0.95));
  box-shadow: 0 10px 24px rgba(33, 77, 67, 0.12);
}

.guest-link-template-grid svg {
  color: var(--copper);
}

.guest-link-template-grid strong {
  color: var(--pine);
  font-size: 14px;
  line-height: 1.15;
}

.guest-link-template-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.checkin-complete-card {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(33, 132, 92, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(127, 196, 181, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(226, 245, 235, 0.94), rgba(255, 250, 240, 0.96));
}

.checkin-complete-card h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.08;
}

.checkin-complete-card p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkin-complete-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.checkin-complete-pills span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(33, 77, 67, 0.1);
  color: var(--pine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkin-complete-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.checkin-complete-details article {
  display: grid;
  gap: 4px;
  padding: 11px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(33, 77, 67, 0.1);
}

.checkin-complete-details span,
.checkin-complete-details small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.checkin-complete-details strong {
  color: var(--pine);
  font-size: 15px;
  line-height: 1.15;
}

.checkin-complete-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkin-complete-actions .button {
  flex: 1 1 150px;
}

.checkin-wait-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  margin-top: 12px;
  padding: 15px;
  border: 1px solid rgba(199, 119, 56, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 0%, rgba(244, 191, 121, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 243, 220, 0.92));
  box-shadow: 0 12px 26px rgba(83, 61, 35, 0.1);
}

.checkin-wait-card[hidden] {
  display: none;
}

.checkin-wait-card > svg {
  width: 28px;
  height: 28px;
  color: var(--copper);
}

.checkin-wait-card h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  line-height: 1.08;
}

.checkin-wait-card p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.checkin-wait-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.checkin-wait-card .button {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 48px;
}

.tablet-return-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(33, 77, 67, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 4% 0%, rgba(244, 191, 121, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(226, 245, 235, 0.94));
  box-shadow: 0 12px 26px rgba(33, 77, 67, 0.12);
}

.tablet-return-card[hidden] {
  display: none;
}

.tablet-return-card > svg {
  width: 34px;
  height: 34px;
  color: var(--copper);
}

.tablet-return-card h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.tablet-return-card p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.guest-journey-card {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 191, 121, 0.2), transparent 32%),
    rgba(255, 250, 240, 0.88);
}

.guest-journey-head h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.guest-journey-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.guest-journey-steps {
  display: grid;
  gap: 8px;
}

.guest-journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 11px;
  background: rgba(255, 254, 250, 0.78);
}

.guest-journey-step i {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: rgba(199, 119, 56, 0.14);
  color: var(--copper);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 25px;
  text-align: center;
}

.guest-journey-step strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.guest-journey-step span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.guest-journey-step[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.24);
  background: rgba(226, 245, 235, 0.7);
}

.guest-journey-step[data-tone="success"] i {
  background: var(--pine);
  color: #fffaf0;
}

.guest-journey-step[data-tone="warning"] {
  border-color: rgba(199, 119, 56, 0.3);
  background: rgba(255, 243, 220, 0.7);
}

.guest-confirmation-card {
  position: sticky;
  bottom: 12px;
  z-index: 18;
  display: grid;
  gap: 10px;
  margin: 14px auto 0;
  max-width: 760px;
  border: 1px solid rgba(33, 77, 67, 0.2);
  border-radius: 20px;
  padding: 16px;
  background:
    radial-gradient(circle at 95% 10%, rgba(127, 196, 181, 0.22), transparent 30%),
    rgba(255, 250, 240, 0.98);
  box-shadow: 0 24px 54px rgba(33, 77, 67, 0.2);
}

.guest-confirmation-card[hidden] {
  display: none;
}

.guest-confirmation-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 77, 67, 0.1);
  color: var(--pine);
  font-size: 22px;
  line-height: 1;
}

.guest-confirmation-card h3 {
  margin: 2px 36px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.guest-confirmation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.guest-confirmation-mail[data-tone="success"] {
  color: var(--pine);
  font-weight: 800;
}

.guest-confirmation-mail[data-tone="error"] {
  color: var(--wine);
  font-weight: 800;
}

.guest-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-strip {
  display: grid;
  gap: 7px;
  margin: 16px auto 0;
  max-width: 760px;
  border-top: 1px solid rgba(33, 77, 67, 0.16);
  padding: 14px 4px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.legal-strip strong {
  color: var(--pine);
  font-size: 13px;
}

.legal-strip a {
  color: var(--pine);
  font-weight: 900;
  text-decoration: none;
}

.stay-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
}

.stay-summary-grid div {
  min-height: 82px;
  border-radius: 10px;
  padding: 11px;
  background: rgba(247, 241, 228, 0.72);
}

.stay-summary-grid span,
.guest-link-output span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-summary-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  line-height: 1.12;
  word-break: break-word;
}

.stay-action-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.stay-action-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  min-height: 86px;
  align-items: center;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 12px;
  padding: 13px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
  text-align: left;
}

.stay-action-card.is-featured {
  border-color: rgba(199, 119, 56, 0.35);
  background:
    radial-gradient(circle at 94% 8%, rgba(199, 119, 56, 0.18), transparent 34%),
    rgba(255, 250, 240, 0.95);
}

.stay-action-card svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: var(--copper);
}

.stay-action-card strong {
  color: var(--pine);
  font-size: 15px;
}

.stay-action-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.guest-link-preview {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 13px;
}

.guest-link-output {
  display: grid;
  gap: 9px;
}

.guest-link-output input {
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  background: rgba(247, 241, 228, 0.72);
  color: var(--ink);
  font-size: 12px;
}

.guest-link-share {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.guest-link-qr {
  display: grid;
  justify-items: center;
  gap: 9px;
  border: 1px dashed rgba(33, 77, 67, 0.2);
  border-radius: 14px;
  padding: 14px;
  background: rgba(247, 241, 228, 0.62);
}

.guest-link-qr canvas {
  width: 176px;
  height: 176px;
  border-radius: 8px;
  background: #fff;
}

.key-step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.key-step-grid div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 10px;
  align-items: start;
  padding: 13px;
  background: rgba(255, 250, 240, 0.9);
}

.key-step-grid svg {
  grid-row: span 2;
  color: var(--copper);
}

.key-step-grid svg {
  color: var(--pine-bright);
}

.key-step-grid strong {
  font-size: 14px;
}

.key-step-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.key-access-guide {
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 18px;
  padding: 10px;
  background:
    radial-gradient(circle at 90% 0%, rgba(127, 196, 181, 0.18), transparent 33%),
    rgba(255, 250, 240, 0.76);
}

.key-access-guide div {
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
}

.key-access-guide small {
  grid-column: 2;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(33, 77, 67, 0.09);
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.key-access-guide div[data-state="done"] {
  border-color: rgba(33, 132, 92, 0.24);
  background: linear-gradient(135deg, rgba(226, 245, 235, 0.95), rgba(255, 250, 240, 0.92));
}

.key-access-guide div[data-state="ready"] {
  border-color: rgba(199, 119, 56, 0.34);
  background: rgba(255, 243, 222, 0.92);
}

.key-access-guide div[data-state="done"] small {
  background: rgba(33, 132, 92, 0.14);
  color: var(--pine);
}

.key-access-guide div[data-state="ready"] small {
  background: rgba(199, 119, 56, 0.16);
  color: #7a4b14;
}

.consent-row {
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 8px;
  background: rgba(247, 241, 228, 0.78);
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--pine);
}

.consent-row span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.checkin-choice-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 94% 10%, rgba(72, 118, 99, 0.12), transparent 32%),
    rgba(247, 241, 228, 0.72);
}

.checkin-choice-group legend {
  padding: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.checkin-choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.checkin-choice-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(33, 77, 67, 0.15);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.76);
  color: var(--pine);
  font-size: 13px;
  font-weight: 900;
}

.checkin-choice-options input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--pine);
}

.door-confirm-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(160, 54, 42, 0.18);
  border-radius: 10px;
  padding: 12px;
  background:
    radial-gradient(circle at 92% 8%, rgba(160, 54, 42, 0.12), transparent 28%),
    rgba(255, 250, 240, 0.86);
}

.door-confirm-card strong {
  color: var(--wine);
  font-size: 15px;
  line-height: 1.2;
}

.door-confirm-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.door-target-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 14px;
  padding: 12px;
  background:
    radial-gradient(circle at 95% 6%, rgba(47, 111, 131, 0.12), transparent 30%),
    rgba(255, 250, 240, 0.9);
}

.door-target-card[hidden] {
  display: none;
}

.door-target-card > strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  line-height: 1.15;
}

.door-target-card-dark {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.08);
}

.door-target-card-dark > strong {
  color: #fffaf0;
}

.door-target-options {
  display: grid;
  gap: 8px;
}

.door-target-button {
  display: grid;
  gap: 3px;
  width: 100%;
  border: 1px solid rgba(33, 77, 67, 0.16);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.84);
  color: var(--pine);
  padding: 11px 12px;
  text-align: left;
}

.door-target-button strong {
  font-size: 15px;
  font-weight: 950;
}

.door-target-button span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.door-target-button.is-selected {
  border-color: rgba(33, 77, 67, 0.42);
  background: rgba(33, 77, 67, 0.1);
  box-shadow: inset 0 0 0 2px rgba(33, 77, 67, 0.18);
}

.door-target-card-dark .door-target-button {
  border-color: rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
}

.door-target-card-dark .door-target-button span,
.door-target-card-dark .door-target-status {
  color: rgba(255, 250, 240, 0.74);
}

.door-target-card-dark .door-target-button.is-selected {
  border-color: rgba(255, 250, 240, 0.72);
  background: rgba(255, 250, 240, 0.22);
  box-shadow: inset 0 0 0 2px rgba(255, 250, 240, 0.28);
}

.door-target-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.door-live-status {
  display: grid;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(47, 111, 131, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 95% 0%, rgba(47, 111, 131, 0.16), transparent 32%),
    rgba(255, 250, 240, 0.9);
  box-shadow: 0 12px 28px rgba(33, 77, 67, 0.08);
}

.door-live-status[hidden] {
  display: none;
}

.door-live-status-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.door-live-status-head span,
.door-live-status li span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.door-live-status-head strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  line-height: 1.1;
  text-align: right;
}

.door-live-status ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.door-live-status li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 11px;
  background: rgba(255, 250, 240, 0.72);
}

.door-live-status li strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.door-live-status li[data-state="busy"] {
  border-color: rgba(47, 111, 131, 0.3);
  background: rgba(47, 111, 131, 0.08);
}

.door-live-status li[data-state="busy"] strong {
  color: var(--blue);
}

.door-live-status li[data-state="done"] {
  border-color: rgba(33, 77, 67, 0.22);
  background: rgba(33, 77, 67, 0.08);
}

.door-live-status li[data-state="done"] strong {
  color: var(--pine);
}

.door-live-status li[data-state="error"] {
  border-color: rgba(160, 54, 42, 0.28);
  background: rgba(160, 54, 42, 0.08);
}

.door-live-status li[data-state="error"] strong,
.door-live-status[data-tone="error"] .door-live-status-head strong {
  color: var(--wine);
}

.door-live-status[data-tone="success"] .door-live-status-head strong {
  color: var(--pine);
}

.door-live-status[data-tone="busy"] .door-live-status-head strong {
  color: var(--blue);
}

.invoice-address-fields {
  display: grid;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(199, 119, 56, 0.32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 94% 8%, rgba(199, 119, 56, 0.16), transparent 28%),
    rgba(255, 243, 220, 0.72);
}

.invoice-address-head {
  display: grid;
  gap: 4px;
}

.invoice-address-head strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.invoice-address-head span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.checkout-guide-card {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 191, 121, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(231, 242, 235, 0.92));
  box-shadow: 0 16px 32px rgba(33, 77, 67, 0.09);
}

.checkout-guide-card h3 {
  margin: 4px 0 0;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.checkout-guide-card p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-guide-stepper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-guide-stepper li:last-child {
  grid-column: 1 / -1;
}

.checkout-guide-stepper li {
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: start;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 13px;
  padding: 10px 8px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--muted);
}

.checkout-guide-stepper span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(33, 77, 67, 0.1);
  color: var(--pine);
  font-size: 12px;
  font-weight: 950;
}

.checkout-guide-stepper strong {
  color: inherit;
  font-size: 11px;
  line-height: 1.25;
}

.checkout-guide-stepper small {
  width: fit-content;
  border-radius: 999px;
  padding: 3px 7px;
  background: rgba(33, 77, 67, 0.08);
  color: inherit;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-guide-stepper li.is-active,
.checkout-guide-stepper li.is-busy {
  border-color: rgba(199, 119, 56, 0.35);
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 191, 121, 0.2), transparent 30%),
    rgba(255, 243, 222, 0.92);
  color: #7a4b14;
}

.checkout-guide-stepper li.is-done,
.checkout-guide-stepper li.is-success {
  border-color: rgba(33, 132, 92, 0.24);
  background:
    radial-gradient(circle at 92% 0%, rgba(127, 196, 181, 0.2), transparent 30%),
    rgba(226, 245, 235, 0.92);
  color: var(--pine);
}

.checkout-guide-stepper li.is-error {
  border-color: rgba(141, 61, 64, 0.36);
  background: rgba(255, 235, 229, 0.92);
  color: var(--wine);
}

.checkout-guide-stepper li.is-active span,
.checkout-guide-stepper li.is-busy span,
.checkout-guide-stepper li.is-done span,
.checkout-guide-stepper li.is-success span,
.checkout-guide-stepper li.is-error span {
  background: var(--pine);
  color: #fffaf0;
}

.checkout-summary-card {
  display: grid;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 4%, rgba(244, 191, 121, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(231, 242, 235, 0.92));
  box-shadow: 0 16px 32px rgba(33, 77, 67, 0.1);
}

.checkout-summary-head {
  display: grid;
  gap: 6px;
}

.checkout-summary-head span,
.checkout-summary-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-summary-head strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.checkout-summary-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.checkout-summary-grid article {
  min-height: 82px;
  padding: 11px;
  border: 1px solid rgba(33, 77, 67, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.86);
}

.checkout-summary-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.checkout-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.checkout-trust-grid[hidden] {
  display: none;
}

.checkout-trust-grid article {
  min-height: 118px;
  padding: 12px;
  border: 1px solid rgba(33, 77, 67, 0.11);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.88);
}

.checkout-trust-grid article[data-tone="success"] {
  border-color: rgba(33, 132, 92, 0.22);
  background:
    radial-gradient(circle at 92% 0%, rgba(127, 196, 181, 0.22), transparent 30%),
    rgba(226, 245, 235, 0.92);
}

.checkout-trust-grid article[data-tone="busy"] {
  border-color: rgba(199, 119, 56, 0.26);
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 191, 121, 0.22), transparent 30%),
    rgba(255, 243, 222, 0.92);
}

.checkout-trust-grid article[data-tone="error"] {
  border-color: rgba(160, 54, 42, 0.22);
  background:
    radial-gradient(circle at 92% 0%, rgba(160, 54, 42, 0.12), transparent 30%),
    rgba(255, 235, 229, 0.9);
}

.checkout-trust-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--pine);
  font-size: 15px;
  line-height: 1.2;
}

.checkout-trust-grid small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.checkout-billing-card {
  display: grid;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 111, 131, 0.12), transparent 32%),
    rgba(255, 250, 240, 0.84);
}

.checkout-terminal-card {
  border-color: rgba(176, 98, 46, 0.24);
  background:
    radial-gradient(circle at 88% 0%, rgba(214, 139, 78, 0.18), transparent 34%),
    rgba(255, 250, 240, 0.92);
}

.checkout-terminal-confirmation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(33, 77, 67, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--pine);
  font-size: 13px;
  font-weight: 800;
}

.checkout-terminal-confirmation input {
  width: 19px;
  height: 19px;
  accent-color: var(--pine);
}

.checkout-terminal-card .button {
  width: 100%;
}

.checkout-billing-head {
  display: grid;
  gap: 5px;
}

.checkout-billing-head span,
.checkout-billing-address span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-billing-head strong {
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.checkout-billing-head p,
.checkout-billing-address p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-billing-choice {
  display: grid;
  gap: 8px;
}

.checkout-mode-choice {
  margin: 0 0 14px;
}

.checkout-billing-choice label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px;
  border: 1px solid rgba(33, 77, 67, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.checkout-billing-choice input {
  margin-top: 3px;
  accent-color: var(--pine);
}

.checkout-billing-choice strong {
  display: block;
  color: var(--pine);
  font-size: 14px;
}

.checkout-billing-choice small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.checkout-billing-address {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(231, 242, 235, 0.82);
}

.checkout-billing-address strong {
  color: var(--pine);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.checkout-billing-actions {
  margin-top: -2px;
}

.checkout-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.checkout-auto-refresh {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 111, 131, 0.2);
  border-radius: 13px;
  background: rgba(47, 111, 131, 0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.checkout-auto-refresh svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.checkout-ready-card {
  display: grid;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 191, 121, 0.32), transparent 38%),
    linear-gradient(145deg, var(--pine), #173b33);
  box-shadow: 0 18px 38px rgba(22, 35, 31, 0.2);
  color: #fffaf0;
}

.checkout-ready-card > div > span {
  color: #f4bf79;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-ready-card strong {
  display: block;
  margin-top: 5px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
}

.checkout-ready-card p {
  margin: 7px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-ready-card .button {
  width: 100%;
  min-height: 58px;
  background: var(--copper);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.checkout-invoice-card {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(33, 132, 92, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(127, 196, 181, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(226, 245, 235, 0.94), rgba(255, 250, 240, 0.96));
  box-shadow: 0 14px 28px rgba(33, 77, 67, 0.1);
}

.checkout-invoice-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-invoice-card strong {
  display: block;
  margin-top: 4px;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  line-height: 1.08;
}

.checkout-invoice-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-invoice-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.checkout-invoice-actions .button {
  min-height: 48px;
}

.form-grid-nested {
  margin-top: 0;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 258px;
  max-height: 45vh;
  overflow: auto;
  padding: 2px;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.chat-bubble.assistant {
  border: 1px solid rgba(47, 111, 131, 0.2);
  background: #edf6f3;
  color: var(--ink);
}

.chat-bubble.user {
  align-self: flex-end;
  background: var(--pine);
  color: #fffaf0;
}

.chat-bubble.notice {
  align-self: center;
  max-width: 100%;
  background: #fff1d7;
  color: #6f3a12;
}

.chat-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 4px;
}

.chat-suggestions button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--surface-strong);
  color: var(--pine);
  font-size: 12px;
  font-weight: 800;
}

.chat-form {
  gap: 8px;
  margin-top: 10px;
}

.chat-form .button {
  flex: 0 0 auto;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  width: min(100%, var(--app-width));
  max-width: var(--app-width);
  min-height: calc(var(--nav-height) + env(safe-area-inset-bottom));
  margin: 0;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(22, 35, 31, 0.12);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(18px);
}

.bottom-nav button {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  touch-action: manipulation;
}

.bottom-nav button svg {
  width: 20px;
  height: 20px;
}

.bottom-nav button.is-active {
  background: var(--ink);
  color: #fffaf0;
}

.bottom-nav .bottom-nav-checkout:not(.is-active) {
  background: rgba(199, 119, 56, 0.14);
  color: #8a431f;
}

@media (min-width: 760px) {
  :root {
    --app-width: 430px;
  }

  .guest-link-template-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body {
    padding: 28px 0;
  }

  .app-shell {
    margin: 0 auto;
    min-height: calc(100vh - 56px);
    border-radius: 18px;
  }

  .bottom-nav {
    bottom: 28px;
    margin: 0 auto;
    border-radius: 0 0 18px 18px;
  }

}

@media (max-width: 380px) {
  .app-hero {
    min-height: 330px;
  }

  .account-invoice-summary {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .room-input-row,
  .chat-form {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .room-input-row .button,
  .chat-form .button {
    width: 100%;
  }

  .signal-grid,
  .service-grid,
  .restaurant-action-grid,
  .quick-stack .action-row,
  .menu-category-grid,
  .upsell-card-grid,
  .form-grid,
  .breakfast-facts,
  .tablet-return-card,
  .stay-summary-grid,
  .checkin-complete-details,
  .guest-link-template-grid,
  .guest-link-share,
  .account-live-grid,
  .account-overview-strip,
  .account-main-details,
  .account-invoice-summary,
  .account-invoice-status-strip,
  .account-invoice-lifecycle,
  .start-personal-facts,
  .start-personal-actions,
  .checkout-trust-grid,
  .account-invoice-row-actions {
    grid-template-columns: 1fr;
  }

  .checkout-guide-stepper {
    grid-template-columns: 1fr;
  }

  .tablet-return-card .button {
    width: 100%;
  }

  .menu-preview-head,
  .restaurant-reserve-strip,
  .upsell-hero,
  .breakfast-hero,
  .checkin-hero,
  .key-hero,
  .stay-hero,
  .guest-link-hero,
  .checkout-hero,
  .account-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .app-hero {
    min-height: 286px;
    padding-bottom: 17px;
  }

  .hero-copy {
    margin-top: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  body.has-personal-stay .app-hero {
    min-height: 244px;
  }

  body.has-personal-stay .hero-copy {
    margin-top: 24px;
  }

  body.has-personal-stay .hero-copy p:last-child {
    margin-top: 8px;
  }

  .language-switch button,
  .install-button,
  .hero-actions .button,
  .bottom-nav button,
  .arrival-assistant-step,
  .guest-home-action,
  input,
  select,
  textarea {
    min-height: 44px;
  }

  .bottom-nav {
    padding-inline: 6px;
  }

  .bottom-nav button {
    padding-inline: 2px;
    font-size: 9px;
  }

  .start-personal-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
