/* Guest-demo visual system — navy + gold, mirrors Absolute stay dashboard */

:root {
  /* Dark navy + gold — parity with live Absolute guest stay dashboard */
  --guest-ink: #f2f4f8;
  --guest-ink-soft: #c5cedc;
  --guest-muted: #aeb8c9;
  --guest-navy: #0c1b33;
  --guest-gold: #c9a962;
  --guest-gold-light: #d9bc7e;
  --guest-gold-dark: #e4c98a;
  --guest-surface: #0f1624;
  --guest-surface-elevated: #1a2334;
  --guest-mist: #121a28;
  --guest-line: rgba(255, 255, 255, 0.1);
  --guest-bg: #0b111d;
  --guest-card: #1a2334;
  --guest-card-soft: #202938;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.demo-guest {
  font-family: var(--font-sans);
  color: var(--guest-ink);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201, 169, 98, 0.08), transparent 55%),
    var(--guest-bg);
}

.demo-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.72rem 0.85rem;
  background: #0c1b33;
  color: #fff;
  font-size: 0.8rem;
  min-height: 3.15rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow: 0 8px 24px rgba(7, 12, 20, 0.28);
}

.demo-banner-copy {
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-banner-title {
  color: #f0dfa8;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.demo-banner-detail {
  display: none;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.demo-banner strong {
  color: #f0dfa8;
  font-weight: 700;
}

.demo-banner-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  align-items: center;
  flex-shrink: 0;
}

.demo-banner-exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.demo-banner-exit-icon {
  display: none;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.demo-banner-exit:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.demo-preview-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.demo-device-toggle {
  display: none;
}

.demo-device-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.demo-device-btn:hover {
  color: #fff;
}

.demo-device-btn[aria-pressed='true'] {
  background: rgba(201, 169, 98, 0.28);
  color: #f0dfa8;
}

.demo-dd {
  position: relative;
  flex-shrink: 0;
}

.demo-dd-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.28rem 0.5rem 0.28rem 0.42rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.demo-dd-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.demo-dd.is-open .demo-dd-btn {
  background: rgba(201, 169, 98, 0.22);
  border-color: rgba(201, 169, 98, 0.4);
  color: #f0dfa8;
}

.demo-lang-flag {
  display: inline-flex;
  width: 1.05rem;
  height: 0.72rem;
  border-radius: 0.12rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.demo-lang-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.demo-dd-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  opacity: 0.95;
}

.demo-dd-code {
  line-height: 1;
  white-space: nowrap;
}

.demo-dd-chevron {
  width: 0.65rem;
  height: 0.65rem;
  opacity: 0.75;
  transition: transform 0.18s ease;
}

.demo-dd.is-open .demo-dd-chevron {
  transform: rotate(180deg);
}

.demo-dd-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 70;
  min-width: 7rem;
  margin: 0;
  padding: 0.28rem;
  list-style: none;
  border-radius: 0.65rem;
  background: #101a2b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(7, 12, 20, 0.45);
}

.demo-dd-menu[hidden] {
  display: none;
}

.demo-dd-menu a,
.demo-dd-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
}

.demo-dd-menu a:hover,
.demo-dd-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.demo-dd-menu a[aria-current='true'],
.demo-dd-option[aria-current='true'] {
  background: rgba(201, 169, 98, 0.22);
  color: #f0dfa8;
}

.demo-device-dd {
  display: none;
}

.demo-theme-dd .demo-dd-btn,
.demo-device-dd .demo-dd-btn {
  min-width: 0;
}

.demo-device-btn:hover {
  color: #fff;
}

.demo-device-btn[aria-pressed='true'] {
  background: rgba(201, 169, 98, 0.28);
  color: #f0dfa8;
}

@media (min-width: 768px) {
  .demo-banner {
    flex-wrap: wrap;
    gap: 0.85rem;
    padding: 0.8rem 1.15rem;
    font-size: 0.875rem;
    min-height: 3.4rem;
  }

  .demo-banner-detail {
    display: inline;
  }

  .demo-banner-copy {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .demo-banner-actions {
    gap: 0.55rem;
  }

  .demo-banner-exit {
    min-height: 2.15rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }

  .demo-device-toggle {
    display: inline-flex;
  }

  .demo-device-dd {
    display: block;
  }

  .demo-preview-toggle {
    padding: 0.2rem;
  }

  .demo-device-btn {
    font-size: 0.78rem;
    padding: 0.42rem 0.8rem;
  }

  .demo-dd-btn {
    min-height: 2.15rem;
    padding: 0.34rem 0.58rem 0.34rem 0.48rem;
    font-size: 0.78rem;
  }

  .demo-lang-flag {
    width: 1.15rem;
    height: 0.78rem;
  }
}

@media (max-width: 767px) {
  .demo-dd[data-demo-dropdown='lang'] {
    order: -1;
  }

  .demo-banner-actions {
    gap: 0.35rem;
  }

  .demo-theme-dd > .demo-dd-btn .demo-dd-code {
    display: none;
  }

  .demo-theme-dd > .demo-dd-btn {
    padding: 0.28rem 0.42rem;
    gap: 0.28rem;
  }

  .demo-banner-exit {
    min-width: 2rem;
    padding: 0.28rem 0.45rem;
  }

  .demo-banner-exit-icon {
    display: block;
  }

  .demo-banner-exit-label {
    display: none;
  }
}

.demo-device-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1rem 2rem;
  min-height: calc(100dvh - 3.6rem);
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(201, 169, 98, 0.1), transparent 55%),
    #070c14;
}

.demo-phone {
  width: min(390px, calc(100vw - 2rem));
  border-radius: 2rem;
  background: #0a101a;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 10px #121a28,
    0 28px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.demo-phone-chrome {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.35rem;
  background: #0a101a;
}

.demo-phone-speaker {
  width: 4.5rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.demo-phone-frame {
  display: block;
  width: 100%;
  height: min(760px, calc(100dvh - 7.5rem));
  border: 0;
  background: var(--guest-bg);
}

.demo-device-hint {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

body.demo-frame .demo-app {
  min-height: calc(100dvh - 3.5rem);
}

body.demo-preview-mobile {
  overflow: auto;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0.55rem 1.15rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.demo-btn:active {
  transform: scale(0.98);
}

.demo-btn-gold {
  background: var(--guest-gold);
  color: var(--guest-navy);
}

.demo-btn-gold:hover {
  background: var(--guest-gold-light);
}

.demo-btn-outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.demo-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.demo-btn-navy {
  background: var(--guest-gold);
  color: var(--guest-navy);
}

.demo-btn-ghost {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
  box-shadow: inset 0 0 0 1px var(--guest-line);
}

.demo-app {
  margin: 0 auto;
  min-height: calc(100dvh - 3rem);
  max-width: 72rem;
  padding: 0 0 6.5rem;
}

@media (min-width: 768px) {
  .demo-app {
    padding: 1rem 1.5rem 6.5rem;
  }
}

.demo-grid-home {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .demo-grid-home {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: start;
  }
}

.demo-hero {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 34rem;
  min-height: 20rem;
  overflow: hidden;
  background: #16304f;
}

@media (min-width: 640px) {
  .demo-hero {
    aspect-ratio: 5 / 4;
    max-height: 28rem;
  }
}

@media (min-width: 768px) {
  .demo-hero {
    aspect-ratio: 4 / 3;
    max-height: 26rem;
    min-height: 18rem;
    border-radius: 1.25rem;
  }
}

.demo-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 16, 24, 0.92) 0%,
    rgba(12, 27, 51, 0.72) 26%,
    rgba(12, 27, 51, 0.34) 48%,
    rgba(12, 27, 51, 0.08) 68%,
    transparent 82%
  );
}

.demo-hero-copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 4rem 1rem 1.25rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(6, 16, 24, 0.45);
}

@media (min-width: 768px) {
  .demo-hero-copy {
    padding: 5rem 1.75rem 2rem;
    gap: 1rem;
  }
}

.demo-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
  color: #f0dfa8;
}

@media (min-width: 768px) {
  .demo-hero-copy h1 {
    font-size: 1.9rem;
  }
}

.demo-hero-copy .greeting {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.demo-hero-copy .meta-line {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.demo-chip-gold {
  color: #f0dfa8;
  background: rgba(201, 169, 98, 0.16);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-panel {
  margin: 0 1rem;
  padding: 1.15rem;
  border-radius: 1.25rem;
  background: var(--guest-card);
  border: 1px solid var(--guest-line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  .demo-panel {
    margin: 0;
  }
}

.demo-panel h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.demo-panel .sub {
  margin: 0 0 1rem;
  color: var(--guest-ink-soft);
  font-size: 0.875rem;
}

.demo-actions {
  display: grid;
  gap: 0.65rem;
}

.demo-action {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--guest-line);
  background: var(--guest-card);
}

.demo-action.primary {
  background: linear-gradient(135deg, #c9a962 0%, #d9bc7e 100%);
  color: var(--guest-navy);
  border: 0;
}

.demo-action .label {
  font-weight: 600;
  font-size: 0.9375rem;
}

.demo-action .hint {
  font-size: 0.75rem;
  opacity: 0.8;
}

.demo-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.35rem;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(240, 223, 168, 0.95);
  color: var(--guest-navy);
}

.demo-section {
  padding: 1.5rem 1rem 0;
}

@media (min-width: 768px) {
  .demo-section {
    padding: 1.5rem 0 0;
    grid-column: 1 / -1;
  }
}

.demo-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.demo-section-head a {
  color: var(--guest-ink);
  font-size: 0.875rem;
  font-weight: 600;
}

.demo-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .demo-services {
    grid-template-columns: repeat(4, 1fr);
  }
}

.demo-service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--guest-card);
  border: 1px solid var(--guest-line);
}

.demo-service-card .media {
  position: relative;
  height: 7.5rem;
  overflow: hidden;
  background: var(--guest-mist);
}

.demo-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-service-card .body {
  padding: 0.7rem 0.75rem 0.9rem;
}

.demo-service-card .name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.demo-service-card .price {
  margin: 0.35rem 0 0;
  color: var(--guest-gold-dark);
  font-size: 0.8125rem;
  font-weight: 600;
}

.demo-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 50;
  border-top: 1px solid var(--guest-line);
  background: var(--guest-card);
  color: var(--guest-ink-soft);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  padding-bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.demo-nav-inner {
  display: flex;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  align-items: stretch;
  justify-content: space-around;
  padding: 0.35rem 0.25rem 0.45rem;
}

@media (min-width: 768px) {
  .demo-nav-inner {
    max-width: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.demo-nav a,
.demo-nav button.demo-nav-item,
.demo-nav .demo-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.15rem;
  min-width: 0;
  padding: 0.45rem 0.25rem;
  text-decoration: none;
  color: var(--guest-ink-soft);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;
}

.demo-nav .demo-nav-item span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.demo-nav .demo-nav-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.demo-nav a[aria-current='page'],
.demo-nav .demo-nav-item[data-active='true'] {
  color: var(--guest-gold-dark) !important;
}

.demo-nav a[aria-current='page'] svg,
.demo-nav .demo-nav-item[data-active='true'] svg {
  color: var(--guest-gold-dark);
}

.demo-page {
  padding: 1rem 1rem 0;
}

@media (min-width: 768px) {
  .demo-page {
    margin-inline: auto;
    padding: 0.5rem 0 0;
    max-width: 40rem;
  }
}

.demo-back {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--guest-ink);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.demo-card {
  border-radius: 1.25rem;
  border: 1px solid var(--guest-line);
  background: var(--guest-card);
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.demo-card h1,
.demo-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.demo-muted {
  color: var(--guest-ink-soft);
  font-size: 0.875rem;
  line-height: 1.5;
}

.demo-input,
.demo-textarea {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 0.75rem;
  border: 1px solid var(--guest-line);
  padding: 0.65rem 0.8rem;
  font: inherit;
  background: var(--guest-card-soft);
  color: var(--guest-ink);
}

.demo-textarea {
  min-height: 6rem;
  resize: vertical;
}

.demo-field {
  margin-bottom: 0.9rem;
}

.demo-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
}

.demo-notice {
  margin-top: 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 169, 98, 0.45);
  background: rgba(201, 169, 98, 0.12);
  padding: 0.75rem 0.9rem;
  font-size: 0.8125rem;
  color: var(--guest-ink);
}

.demo-messages {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 45vh;
  overflow: auto;
  margin-bottom: 1rem;
}

.demo-bubble {
  border-radius: 0.9rem;
  border: 1px solid var(--guest-line);
  padding: 0.75rem;
  font-size: 0.875rem;
  background: var(--guest-card);
}

.demo-bubble.guest {
  margin-left: 1.5rem;
  background: rgba(201, 169, 98, 0.12);
  border-color: rgba(201, 169, 98, 0.25);
}

.demo-bubble.host {
  margin-right: 1.5rem;
}

.demo-pay-summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  margin: 0.75rem 0;
}

.demo-stepper {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.demo-stepper span {
  flex: 1;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.demo-stepper span.active {
  background: var(--guest-gold);
}

.demo-disabled-block {
  opacity: 0.72;
  pointer-events: none;
  filter: grayscale(0.15);
}

.demo-mosaic {
  display: none;
}

@media (min-width: 768px) {
  .demo-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    padding: 0.35rem;
    border-radius: 0 0 1.25rem 1.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
  }

  .demo-mosaic img {
    aspect-ratio: 1.2;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
  }

  .demo-hero + .demo-mosaic {
    margin-top: 0;
  }

  .demo-hero {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.hidden {
  display: none !important;
}

.demo-field-hidden {
  display: none !important;
}

.demo-field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--guest-ink-soft, #5b6b7c);
  line-height: 1.4;
}

.demo-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--guest-gold-dark);
}

.demo-service-detail {
  padding: 0;
  overflow: hidden;
}

.demo-service-hero {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
}

.demo-service-body {
  padding: 1.15rem;
}

.demo-service-price {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--guest-gold-dark);
}

.demo-book-form {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--guest-line);
}

.demo-book-form h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.demo-estimated {
  margin: 0.5rem 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--guest-ink, #0c1b33);
}

.demo-nav-help {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.demo-nav-help[aria-current='page'],
.demo-nav a[aria-current='page'] {
  color: var(--guest-gold-dark);
}

.demo-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.demo-sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 27, 51, 0.45);
  cursor: pointer;
}

.demo-sheet-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  border-radius: 1.75rem 1.75rem 0 0;
  border: 1px solid var(--guest-line);
  background: var(--guest-card);
  padding: 1.15rem 1.25rem 1.5rem;
  box-shadow: 0 -12px 40px rgba(12, 27, 51, 0.12);
}

.demo-sheet-pill {
  width: 2.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(12, 27, 51, 0.12);
  margin: 0 auto 1rem;
}

.demo-sheet-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.demo-sheet-panel > p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: var(--guest-ink-soft, #5b6b7c);
  line-height: 1.45;
}

.demo-sheet-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.demo-sheet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--guest-line);
  background: var(--guest-card);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--guest-ink, #0c1b33);
  text-decoration: none;
}

.demo-sheet-btn-primary {
  background: var(--guest-gold);
  border-color: var(--guest-gold);
  color: var(--guest-navy);
}

.demo-sheet-icon {
  width: 1rem;
  height: 1rem;
}

.demo-sheet-close {
  border: 0;
  background: transparent;
  color: var(--guest-ink-soft, #5b6b7c);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem;
  cursor: pointer;
}

.demo-sheet-note {
  margin-top: 0.85rem !important;
  font-size: 0.75rem !important;
  text-align: center;
}

@media (min-width: 640px) {
  .demo-sheet {
    align-items: center;
  }

  .demo-sheet-panel {
    border-radius: 1.75rem;
  }

  .demo-sheet-pill {
    display: none;
  }
}

.demo-destination-card-wrap {
  grid-column: 1 / -1;
  padding: 0 0.25rem 0.5rem;
}

.demo-destination-card {
  position: relative;
  display: block;
  min-height: 15.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  color: #fff;
  text-decoration: none;
}

.demo-destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.demo-destination-card:hover img {
  transform: scale(1.04);
}

.demo-destination-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 24, 0.92), rgba(12, 27, 51, 0.35) 55%, rgba(12, 27, 51, 0.15));
}

.demo-destination-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 15.5rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.35rem;
}

.demo-destination-copy .eyebrow,
.demo-destination-hero-copy .eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0dfa8;
}

.demo-destination-copy h2 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.15;
}

.demo-destination-copy .teaser,
.demo-destination-hero-copy .teaser {
  margin: 0.5rem 0 0;
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.demo-destination-copy .see-more {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f0dfa8;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(240, 223, 168, 0.55);
}

.demo-destination-page {
  padding-bottom: 1.5rem;
}

.demo-destination-hero {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  border-radius: 0;
}

.demo-destination-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-destination-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #061018, rgba(12, 27, 51, 0.55), rgba(12, 27, 51, 0.2));
}

.demo-destination-hero-top,
.demo-destination-hero-copy {
  position: relative;
  z-index: 1;
}

.demo-destination-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem 1.5rem;
}

.demo-destination-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.demo-destination-pin {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.65);
  background: rgba(12, 27, 51, 0.5);
  color: #e4c98a;
}

.demo-destination-back {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(12, 27, 51, 0.45);
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.demo-destination-hero-copy h1 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}

.demo-destination-body {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1rem 0;
}

.demo-destination-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  text-align: center;
}

.demo-destination-sections {
  display: grid;
  gap: 1rem;
}

.demo-destination-section {
  border-radius: 1.25rem;
  border: 1px solid var(--guest-line);
  background: var(--guest-card);
  padding: 1.15rem 1.2rem;
  box-shadow: 0 1px 2px rgba(12, 27, 51, 0.04);
}

.demo-destination-section h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--guest-ink, #0c1b33);
}

.demo-destination-section p {
  margin: 0.55rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--guest-ink-soft, #5b6b7c);
}

@media (min-width: 768px) {
  .demo-destination-card {
    min-height: 18rem;
  }

  .demo-destination-copy {
    min-height: 18rem;
    padding: 1.5rem;
  }

  .demo-destination-hero {
    min-height: 22rem;
    border-radius: 1.25rem;
    padding: 2rem;
  }

  .demo-destination-body {
    padding-left: 0;
    padding-right: 0;
  }

  .demo-destination-sections {
    grid-template-columns: 1fr 1fr;
  }

  .demo-destination-cta {
    grid-column: 1 / -1;
  }

  .demo-destination-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }

  .demo-destination-cta {
    grid-column: 1 / -1;
  }

  .demo-destination-sections {
    grid-column: 1 / -1;
  }
}

.demo-trip-page {
  padding: 1rem 1rem 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.demo-unpaid-banner {
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(180, 83, 9, 0.28);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.16) 0%, rgba(180, 83, 9, 0.18) 55%, rgba(201, 169, 98, 0.1) 100%);
  padding: 1rem 1.15rem;
}

.demo-unpaid-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.demo-unpaid-banner .title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fdba74;
}

.demo-unpaid-banner .chip {
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.18);
  padding: 0.2rem 0.65rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdba74;
}

.demo-unpaid-banner > p {
  margin: 0.55rem 0 0.9rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--guest-ink-soft);
}

.demo-trip-header {
  margin-bottom: 1.25rem;
}

.demo-trip-header .eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--guest-gold-dark);
}

.demo-trip-header h1 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--guest-ink, #0c1b33);
}

.demo-trip-header .meta {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  color: var(--guest-ink-soft, #5b6b7c);
}

.demo-trip-header .summary {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--guest-ink-soft, #5b6b7c);
}

.demo-trip-grid {
  display: grid;
  gap: 1.15rem;
}

.demo-trip-media img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.demo-trip-cover {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  cursor: zoom-in;
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
}

.demo-trip-cover img {
  border-radius: 1.25rem;
}

.demo-trip-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.4rem;
}

@media (min-width: 480px) {
  .demo-trip-thumbs {
    grid-template-columns: repeat(6, 1fr);
  }
}

.demo-trip-thumbs button {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 0.65rem;
  overflow: hidden;
}

.demo-trip-thumbs img {
  aspect-ratio: 1;
  border-radius: 0.65rem;
}

.demo-mosaic-tile {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
}

.demo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.demo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 12, 22, 0.88);
  cursor: pointer;
}

.demo-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 56rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #f2f4f8;
  font-size: 0.875rem;
  font-weight: 500;
}

.demo-lightbox-bar p {
  margin: 0;
}

.demo-lightbox-close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f2f4f8;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.demo-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
}

.demo-lightbox-stage img {
  max-width: 100%;
  max-height: min(78vh, 44rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.85rem;
  background: #0b111d;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.demo-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 27, 51, 0.72);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.demo-lightbox-nav.prev {
  left: 0.35rem;
}

.demo-lightbox-nav.next {
  right: 0.35rem;
}

.demo-trip-cards {
  display: grid;
  gap: 1rem;
}

.demo-trip-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--guest-ink, #0c1b33);
}

.demo-trip-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.demo-trip-card-head h2 {
  margin: 0;
}

.demo-dl {
  margin: 0;
}

.demo-dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.875rem;
}

.demo-dl dt {
  color: var(--guest-ink-soft, #5b6b7c);
}

.demo-dl dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
  color: var(--guest-ink, #0c1b33);
}

.demo-dl dd.strong {
  color: var(--guest-ink, #0c1b33);
  font-weight: 700;
}

.demo-bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--guest-ink-soft, #5b6b7c);
  font-size: 0.875rem;
  line-height: 1.45;
}

.demo-bullets li + li {
  margin-top: 0.3rem;
}

.demo-test-note {
  margin: 0.85rem 0 0;
  border-radius: 0.75rem;
  background: rgba(14, 165, 233, 0.12);
  padding: 0.65rem 0.8rem;
  font-size: 0.75rem;
  color: #7dd3fc;
}

.demo-checkin-box {
  margin-top: 1rem;
  border-radius: 0.9rem;
  padding: 0.85rem 0.95rem;
  font-size: 0.875rem;
}

.demo-checkin-box .title {
  margin: 0;
  font-weight: 600;
}

.demo-checkin-box.pending {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
  border: 1px solid var(--guest-line);
}

.demo-checkin-box.ready {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.demo-checkin-box .instructions {
  margin: 0.45rem 0 0;
  white-space: pre-wrap;
  line-height: 1.5;
}

.demo-checkin-box .status {
  margin: 0.55rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--guest-muted);
}

.demo-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--guest-ink-soft, #5b6b7c);
}

.demo-services-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #c9a962 0%, #d9bc7e 100%);
  color: var(--guest-navy);
  text-decoration: none;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.demo-services-strip .label {
  margin: 0;
  font-weight: 600;
}

.demo-services-strip .hint {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: rgba(12, 27, 51, 0.7);
}

.demo-trip-help {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.demo-location {
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2334;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  color: #f2f4f8;
}

.demo-location-compact {
  margin-top: 0.85rem;
}

.demo-location-map {
  height: 11rem;
  background: #121a28;
}

.demo-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-location-body {
  padding: 1rem 1.1rem 1.15rem;
}

.demo-location-body .eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e4c98a;
}

.demo-location-body h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #f2f4f8;
}

.demo-location-body .demo-muted {
  color: #a8b3c5;
}

.demo-location-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.demo-location-links-secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.demo-pay-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .demo-pay-methods {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.demo-pay-method {
  appearance: none;
  display: flex;
  min-height: 4.35rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid var(--guest-line);
  background: var(--guest-card-soft);
  border-radius: 0.85rem;
  padding: 0.5rem 0.35rem 0.45rem;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--guest-ink-soft);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.demo-pay-method-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 1.55rem;
  background: #fff;
  border-radius: 0.4rem;
  padding: 0.15rem 0.25rem;
  box-shadow: inset 0 0 0 1px rgba(12, 27, 51, 0.06);
}

.demo-pay-method-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.demo-pay-method.active {
  background: rgba(201, 169, 98, 0.12);
  border-color: rgba(201, 169, 98, 0.55);
  color: var(--guest-ink);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.25);
}

@media (min-width: 900px) {
  .demo-trip-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .demo-trip-media {
    position: sticky;
    top: 1rem;
  }

  .demo-location-map {
    height: 13rem;
  }
}


/* ── Home redesign (mirrors live guest stay) ───────────────────────────── */

.demo-brand-bar {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  margin: 0;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--guest-line);
  background: rgba(26, 35, 52, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.875rem;
  color: var(--guest-ink);
}

.demo-brand-bar-brand {
  min-width: 0;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-brand-bar-brand .name {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--guest-gold-dark);
}

.demo-brand-bar .dot {
  margin: 0 0.65rem;
  color: rgba(197, 206, 220, 0.5);
}

.demo-brand-bar-brand .tag {
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--guest-ink);
}

.demo-brand-bar-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.15rem;
}

.demo-brand-bar-nav a,
.demo-brand-bar-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0.55rem;
  padding: 0.4rem 0.75rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--guest-ink-soft);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.demo-brand-bar-nav a:hover,
.demo-brand-bar-nav button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--guest-ink);
}

.demo-brand-bar-nav a[data-active='true'],
.demo-brand-bar-nav button[data-active='true'] {
  color: var(--guest-gold-dark);
}

@media (min-width: 768px) {
  .demo-brand-bar {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .demo-brand-bar {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.demo-only-mobile {
  display: block;
}

.demo-only-desktop {
  display: none !important;
}

@media (min-width: 768px) {
  .demo-only-mobile {
    display: none !important;
  }
  .demo-only-desktop {
    display: block !important;
  }
  .demo-home-left-stack.demo-only-desktop {
    display: grid !important;
  }
}

.demo-home-left-stack {
  gap: 1rem;
  margin-top: 1rem;
}

.demo-actions-section {
  padding: 1.5rem 1.15rem 0.25rem;
}

@media (min-width: 768px) {
  .demo-actions-section {
    padding: 1.5rem 0 0.25rem;
  }
}

.demo-actions-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .demo-actions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.demo-action-primary {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 1.35rem;
  text-decoration: none;
  color: var(--guest-navy);
  background: linear-gradient(135deg, #c9a962 0%, #d9bc7e 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

@media (min-width: 768px) {
  .demo-action-primary {
    grid-column: 1 / -1;
  }
}

.demo-action-primary .orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.demo-action-primary .orb-a {
  right: -1.5rem;
  top: -2rem;
  width: 7rem;
  height: 7rem;
  background: rgba(201, 169, 98, 0.22);
}

.demo-action-primary .orb-b {
  left: 2.5rem;
  bottom: -2.5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.1);
}

.demo-action-primary-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.demo-action-primary-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(12, 27, 51, 0.12);
  color: var(--guest-navy);
  box-shadow: inset 0 0 0 1px rgba(12, 27, 51, 0.18);
  flex-shrink: 0;
}

.demo-action-primary-copy {
  min-width: 0;
  flex: 1;
}

.demo-action-primary-copy .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.demo-action-primary-copy .label {
  font-size: 0.95rem;
  font-weight: 600;
}

.demo-action-primary-copy .chip {
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--guest-navy);
  background: rgba(12, 27, 51, 0.1);
  box-shadow: inset 0 0 0 1px rgba(12, 27, 51, 0.15);
}

.demo-action-primary-copy .hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: rgba(12, 27, 51, 0.7);
}

.demo-action-chev {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #c9a962;
  color: var(--guest-navy);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.demo-action-chev.soft {
  background: var(--guest-card-soft);
  color: var(--guest-gold-dark);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.35);
}

.demo-action-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .demo-action-tiles {
    display: contents;
  }
}

.demo-action-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 1.25rem;
  background: var(--guest-card-soft);
  border: 1px solid var(--guest-line);
  padding: 1.15rem 0.9rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.demo-action-tile:hover {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.demo-action-tile .label {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.demo-action-tile .hint {
  margin: 0.3rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--guest-ink-soft);
}

.demo-action-tile .chip {
  margin-top: 0.85rem;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: var(--guest-ink-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.demo-action-tile .chip.chip-gold {
  background: rgba(201, 169, 98, 0.16);
  color: var(--guest-gold-dark);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.35);
}

.demo-action-icon {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.95rem;
  color: var(--guest-gold-dark);
  background: rgba(201, 169, 98, 0.14);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.28);
}

.demo-action-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.demo-action-tile .demo-action-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1.05rem;
  background:
    linear-gradient(160deg, rgba(201, 169, 98, 0.22), rgba(201, 169, 98, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 98, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.demo-action-tile .demo-action-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke-width: 1.9;
}

@media (min-width: 768px) {
  .demo-action-tile {
    min-height: 11.5rem;
    padding: 1.5rem 1.25rem 1.35rem;
    gap: 0.1rem;
  }

  .demo-action-tile .demo-action-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
  }

  .demo-action-tile .demo-action-icon svg {
    width: 1.85rem;
    height: 1.85rem;
  }

  .demo-action-tile .label {
    margin-top: 1.05rem;
    font-size: 1rem;
  }

  .demo-action-tile .hint {
    font-size: 0.8rem;
    max-width: 12rem;
  }

  .demo-action-tile .chip {
    margin-top: 1rem;
  }
}

.demo-action-icon-gold {
  color: var(--guest-gold-dark);
  background: rgba(201, 169, 98, 0.18);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.35);
}

.demo-action-icon-pay {
  color: #fdba74;
  background: rgba(154, 52, 18, 0.18);
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, 0.25);
}

.demo-action-trip,
.demo-action-pay {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-radius: 1.25rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .demo-action-trip,
  .demo-action-pay {
    grid-column: 1 / -1;
  }
}

.demo-action-trip {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.16), var(--guest-card-soft) 55%);
  border: 1px solid rgba(201, 169, 98, 0.32);
}

.demo-action-pay {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.14) 0%, rgba(180, 83, 9, 0.16) 100%);
  border: 1px solid rgba(180, 83, 9, 0.22);
}

.demo-action-trip .copy,
.demo-action-pay .copy {
  min-width: 0;
  flex: 1;
}

.demo-action-trip .label,
.demo-action-pay .label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.demo-action-trip .hint,
.demo-action-pay .hint {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--guest-ink-soft);
}

.demo-action-pay .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.demo-action-pay .chip {
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(251, 146, 60, 0.18);
  color: #fdba74;
}

.demo-action-pay .pay-cta {
  border-radius: 999px;
  background: var(--guest-gold);
  color: var(--guest-navy);
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.demo-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--guest-ink);
}

.demo-section-sub {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--guest-ink-soft);
}

.demo-services-section {
  padding: 1.5rem 1.15rem 0.5rem;
}

@media (min-width: 768px) {
  .demo-services-section {
    padding: 1.75rem 0 0.5rem;
  }
}

.demo-see-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--guest-gold-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(168, 139, 74, 0.45);
}

.demo-service-card .media {
  position: relative;
}

.demo-service-badge {
  position: absolute;
  left: 50%;
  bottom: -0.85rem;
  transform: translateX(-50%);
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f0dfa8;
  color: var(--guest-navy);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.demo-service-card .body {
  padding-top: 1.15rem;
}

.demo-weather {
  position: relative;
  overflow: hidden;
  margin: 1rem 1.15rem 0;
  border-radius: 1.25rem;
  border: 1px solid var(--guest-line);
  background: linear-gradient(135deg, #1a2334 0%, #202938 45%, #1e2636 100%);
  padding: 1.1rem 1.15rem;
}

@media (min-width: 768px) {
  .demo-weather {
    margin: 1rem 0 0;
  }
}

.demo-weather-orb {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  background: rgba(201, 169, 98, 0.18);
  filter: blur(2px);
}

.demo-weather .eyebrow {
  margin: 0;
  position: relative;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--guest-gold-dark);
}

.demo-weather-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.45rem;
}

.demo-weather .temp {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--guest-gold-dark);
}

.demo-weather .place {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.demo-weather .source {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  color: var(--guest-ink-soft);
}

.demo-weather-days {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.demo-weather-days div {
  text-align: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem 0.25rem;
  font-size: 0.75rem;
}

.demo-weather-days span {
  display: block;
  color: var(--guest-ink-soft);
}

.demo-weather-days strong {
  display: block;
  margin-top: 0.2rem;
}

.demo-featured {
  padding: 1.25rem 1.15rem 0.25rem;
}

@media (min-width: 768px) {
  .demo-featured {
    padding: 1.5rem 0 0.25rem;
  }
}

.demo-featured .eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--guest-gold-dark);
}

.demo-featured-card {
  position: relative;
  display: block;
  min-height: 16.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .demo-featured-card {
    min-height: 20rem;
  }
}

.demo-featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-featured-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 24, 0.92), rgba(12, 27, 51, 0.2) 60%, transparent);
}

.demo-featured-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.demo-featured-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
}

.demo-featured-copy > p {
  margin: 0.4rem 0 0;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.demo-featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.demo-featured-meta .price {
  font-weight: 700;
  color: #f0dfa8;
}

.demo-featured-meta .cta {
  border-radius: 999px;
  background: var(--guest-gold);
  color: var(--guest-navy);
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.demo-trips {
  padding: 1.35rem 1.15rem 0.5rem;
}

@media (min-width: 768px) {
  .demo-trips {
    padding: 1.5rem 0 0.5rem;
  }
}

.demo-trips-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

@media (min-width: 768px) {
  .demo-trips-list {
    grid-template-columns: 1fr 1fr;
  }
}

.demo-trip-row {
  display: block;
  border-radius: 1.15rem;
  border: 1px solid var(--guest-line);
  background: var(--guest-card);
  padding: 0.95rem 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.demo-trip-row.current {
  border-color: rgba(201, 169, 98, 0.4);
  background: linear-gradient(180deg, rgba(32, 41, 56, 0.95), var(--guest-card));
}

.demo-trip-row.muted {
  opacity: 0.78;
}

.demo-trip-row .kind {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--guest-gold-dark);
}

.demo-trip-row .title {
  margin: 0.35rem 0 0;
  font-weight: 600;
}

.demo-trip-row .meta,
.demo-trip-row .code {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--guest-ink-soft);
}

.demo-destination-card-wrap {
  margin-top: 1rem;
  padding: 0 1.15rem;
}

@media (min-width: 768px) {
  .demo-destination-card-wrap {
    padding: 0;
  }
}

.demo-location-compact {
  margin: 1rem 1.15rem 0;
}

@media (min-width: 768px) {
  .demo-location-compact {
    margin: 1rem 0 0;
  }
}

.demo-location-primary {
  width: 100%;
  border-radius: 0.85rem !important;
  background: #c9a962 !important;
  color: #0c1b33 !important;
}

.demo-location-primary:hover {
  background: #d9bc7e !important;
}

.demo-location-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #a8b3c5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.demo-location-text:hover {
  color: #f2f4f8;
}

.demo-nav-item {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}

.demo-nav-item[data-active='true'] {
  color: var(--guest-gold-dark);
}

.demo-nav-item[data-active='true']::before {
  content: '';
  position: absolute;
  top: 0.2rem;
  left: 50%;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--guest-gold);
  transform: translateX(-50%);
}

.demo-mosaic {
  display: none;
}

@media (min-width: 768px) {
  .demo-hero {
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .demo-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    padding: 0.4rem;
    border-radius: 0 0 1.25rem 1.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--guest-line);
    border-top: 0;
  }

  .demo-mosaic-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.5rem;
  }

  .demo-mosaic-tile img {
    aspect-ratio: 1.2;
    width: 100%;
    object-fit: cover;
    display: block;
  }

  .demo-mosaic-tile .more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 27, 51, 0.45);
    color: #f0dfa8;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .demo-mosaic-note {
    grid-column: 1 / -1;
    margin: 0.15rem 0 0;
    font-size: 0.7rem;
    color: var(--guest-ink-soft);
  }
}

.demo-hero-media {
  animation: demoHeroIn 0.9s ease both;
}

@keyframes demoHeroIn {
  from { transform: scale(1.04); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .demo-hero-media { animation: none; }
}


/* ── Dark parity polish (live guest dashboard) ─────────────────────────── */

.demo-app {
  color: var(--guest-ink);
}

.demo-actions-section,
.demo-home-right > .demo-actions-section {
  margin: 0 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--guest-line);
  background: var(--guest-card);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  padding-bottom: 1.15rem;
}

@media (min-width: 768px) {
  .demo-actions-section {
    margin: 0;
  }
}

.demo-action-tile {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
}

.demo-action-trip,
.demo-action-pay {
  background: var(--guest-card-soft);
  border: 1px solid var(--guest-line);
  color: var(--guest-ink);
}

.demo-nav-item[data-active='true'] {
  color: var(--guest-gold-dark);
}

.demo-chip {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.demo-chip-gold {
  color: #f0dfa8;
  background: rgba(201, 169, 98, 0.16);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.35);
}

.demo-input,
.demo-textarea,
.demo-select,
select.demo-input {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
  border-color: var(--guest-line);
}

.demo-input::placeholder,
.demo-textarea::placeholder {
  color: var(--guest-muted);
  opacity: 1;
}

.demo-bubble.host {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
}

.demo-bubble.guest {
  background: rgba(201, 169, 98, 0.14);
  color: var(--guest-ink);
  border-color: rgba(201, 169, 98, 0.35);
}

.demo-bubble.guest strong,
.demo-bubble.host strong {
  color: var(--guest-gold-dark);
}

.demo-pay-method {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
}

.demo-pay-method.active {
  border-color: rgba(201, 169, 98, 0.55);
  background: rgba(201, 169, 98, 0.12);
  color: var(--guest-ink);
}

.demo-sheet-panel {
  background: var(--guest-card);
  color: var(--guest-ink);
  border: 1px solid var(--guest-line);
}

.demo-sheet-btn {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
  border: 1px solid var(--guest-line);
}

.demo-sheet-btn-primary {
  background: var(--guest-gold);
  color: var(--guest-navy);
  border: 0;
}

.demo-sheet-close {
  color: var(--guest-ink-soft);
}

.demo-unpaid-banner {
  color: var(--guest-ink);
  border: 1px solid rgba(201, 169, 98, 0.35);
}

.demo-unpaid-banner .title {
  color: var(--guest-ink);
}

.demo-unpaid-banner .chip {
  background: rgba(251, 146, 60, 0.2);
  color: #fdba74;
}

.demo-card {
  background: var(--guest-card);
  color: var(--guest-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.demo-service-card {
  background: var(--guest-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.demo-action {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
}

.demo-action.primary {
  background: linear-gradient(135deg, #c9a962 0%, #d9bc7e 100%);
  color: var(--guest-navy);
}

.demo-disabled-block {
  background: var(--guest-mist) !important;
  color: var(--guest-ink-soft) !important;
}

.demo-test-note,
.demo-muted {
  color: var(--guest-ink-soft);
}

.demo-dl dt {
  color: var(--guest-muted);
}

.demo-dl dd,
.demo-dl dd.strong {
  color: var(--guest-ink);
}

.demo-brand-bar span:last-child {
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
  color: var(--guest-ink);
}

.demo-mosaic {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--guest-line);
}

.demo-lightbox-stage img {
  background: var(--guest-bg);
}

.demo-status-row,
.demo-home-status {
  color: var(--guest-ink-soft);
}


/* ── Composer + pay logo chips ─────────────────────────────────────────── */

.demo-composer,
.demo-message-composer {
  background: var(--guest-card);
  border-top: 1px solid var(--guest-line);
}

.demo-composer input,
.demo-composer textarea,
.demo-message-composer input,
.demo-message-composer textarea {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
  border: 1px solid var(--guest-line);
}

.demo-host-badge,
.demo-messages-host {
  background: rgba(201, 169, 98, 0.14);
  color: var(--guest-gold-dark);
  border: 1px solid rgba(201, 169, 98, 0.35);
}

.demo-pay-logo,
.demo-pay-logos img,
.demo-pay-method-logo {
  background: #fff;
  border-radius: 0.45rem;
  padding: 0.25rem 0.4rem;
}

.demo-btn-send,
.demo-composer .demo-btn-gold,
button[data-send] {
  background: var(--guest-gold);
  color: var(--guest-navy);
}


.demo-pay-cta {
  background: linear-gradient(135deg, #c9a962 0%, #d9bc7e 100%) !important;
  color: var(--guest-navy) !important;
  border: none !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.demo-host-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(201, 169, 98, 0.14);
  color: var(--guest-gold-dark);
  border: 1px solid rgba(201, 169, 98, 0.35);
}

.demo-bubble.guest strong {
  color: var(--guest-gold-dark);
}


/* ── Light theme ─────────────────────────────────────────────────────────── */

body.demo-theme-light {
  --guest-ink: #0c1b33;
  --guest-ink-soft: #3d4f66;
  --guest-muted: #5c6b7c;
  --guest-navy: #0c1b33;
  --guest-gold: #c9a962;
  --guest-gold-light: #d9bc7e;
  --guest-gold-dark: #8a6f32;
  --guest-surface: #f7f8fb;
  --guest-surface-elevated: #ffffff;
  --guest-mist: #e8eef5;
  --guest-line: rgba(12, 27, 51, 0.1);
  --guest-bg: #f2f4f8;
  --guest-card: #ffffff;
  --guest-card-soft: #f0f3f7;
  color-scheme: light;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201, 169, 98, 0.14), transparent 55%),
    linear-gradient(180deg, var(--guest-surface) 0%, var(--guest-mist) 48%, var(--guest-surface) 100%);
  color: var(--guest-ink);
}

body.demo-theme-light .demo-banner {
  background: #ffffff;
  color: #0c1b33;
  border-bottom: 1px solid rgba(12, 27, 51, 0.1);
  box-shadow: 0 6px 20px rgba(12, 27, 51, 0.07);
}

body.demo-theme-light .demo-banner-title,
body.demo-theme-light .demo-banner strong {
  color: #0c1b33;
}

body.demo-theme-light .demo-banner-detail {
  color: rgba(12, 27, 51, 0.58);
}

body.demo-theme-light .demo-preview-toggle {
  background: rgba(12, 27, 51, 0.04);
  box-shadow: inset 0 0 0 1px rgba(12, 27, 51, 0.12);
}

body.demo-theme-light .demo-device-btn {
  color: rgba(12, 27, 51, 0.55);
}

body.demo-theme-light .demo-device-btn:hover {
  color: #0c1b33;
}

body.demo-theme-light .demo-device-btn[aria-pressed='true'] {
  background: rgba(201, 169, 98, 0.3);
  color: #0c1b33;
}

body.demo-theme-light .demo-dd-btn {
  color: rgba(12, 27, 51, 0.78);
  border-color: rgba(12, 27, 51, 0.14);
  background: rgba(12, 27, 51, 0.03);
}

body.demo-theme-light .demo-dd-btn:hover {
  color: #0c1b33;
  background: rgba(12, 27, 51, 0.07);
  border-color: rgba(12, 27, 51, 0.22);
}

body.demo-theme-light .demo-dd.is-open .demo-dd-btn {
  background: rgba(201, 169, 98, 0.28);
  border-color: rgba(201, 169, 98, 0.45);
  color: #0c1b33;
}

body.demo-theme-light .demo-lang-flag {
  box-shadow: inset 0 0 0 1px rgba(12, 27, 51, 0.14);
}

body.demo-theme-light .demo-dd-menu {
  background: #fff;
  border-color: rgba(12, 27, 51, 0.12);
  box-shadow: 0 12px 28px rgba(12, 27, 51, 0.12);
}

body.demo-theme-light .demo-dd-menu a,
body.demo-theme-light .demo-dd-option {
  color: rgba(12, 27, 51, 0.82);
}

body.demo-theme-light .demo-dd-menu a:hover,
body.demo-theme-light .demo-dd-option:hover {
  background: rgba(12, 27, 51, 0.05);
  color: #0c1b33;
}

body.demo-theme-light .demo-dd-menu a[aria-current='true'],
body.demo-theme-light .demo-dd-option[aria-current='true'] {
  background: rgba(201, 169, 98, 0.28);
  color: #0c1b33;
}

body.demo-theme-light .demo-banner-exit {
  color: rgba(12, 27, 51, 0.72);
  border-color: rgba(12, 27, 51, 0.14);
  background: rgba(12, 27, 51, 0.03);
}

body.demo-theme-light .demo-banner-exit:hover {
  color: #0c1b33;
  background: rgba(12, 27, 51, 0.07);
  border-color: rgba(12, 27, 51, 0.22);
}

body.demo-theme-light .demo-brand-bar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--guest-line);
  color: var(--guest-ink);
  box-shadow: 0 4px 16px rgba(12, 27, 51, 0.04);
}

body.demo-theme-light .demo-brand-bar .dot {
  color: rgba(12, 27, 51, 0.28);
}

body.demo-theme-light .demo-brand-bar-nav a,
body.demo-theme-light .demo-brand-bar-nav button {
  color: var(--guest-ink-soft);
}

body.demo-theme-light .demo-brand-bar-nav a:hover,
body.demo-theme-light .demo-brand-bar-nav button:hover {
  color: var(--guest-ink);
  background: rgba(12, 27, 51, 0.05);
}

body.demo-theme-light .demo-brand-bar-nav a[data-active='true'],
body.demo-theme-light .demo-brand-bar-nav button[data-active='true'] {
  color: var(--guest-navy);
  background: rgba(201, 169, 98, 0.18);
}

body.demo-theme-light .demo-nav {
  background: #ffffff;
  color: var(--guest-ink-soft);
  box-shadow: 0 -6px 24px rgba(12, 27, 51, 0.08);
}

body.demo-theme-light .demo-nav-item[data-active='true'] {
  color: var(--guest-gold-dark);
}

body.demo-theme-light .demo-chip {
  color: #0c1b33;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(12, 27, 51, 0.08);
}

body.demo-theme-light .demo-chip-gold {
  color: #6f5824;
  background: rgba(240, 223, 168, 0.95);
  box-shadow: inset 0 0 0 1px rgba(168, 139, 74, 0.35);
}

body.demo-theme-light .demo-panel,
body.demo-theme-light .demo-card,
body.demo-theme-light .demo-service-card,
body.demo-theme-light .demo-sheet-panel,
body.demo-theme-light .demo-actions-section,
body.demo-theme-light .demo-home-right > .demo-actions-section {
  background: var(--guest-card);
  color: var(--guest-ink);
  box-shadow: 0 10px 28px rgba(12, 27, 51, 0.07);
}

body.demo-theme-light .demo-action-tile,
body.demo-theme-light .demo-action-trip,
body.demo-theme-light .demo-action-pay,
body.demo-theme-light .demo-action,
body.demo-theme-light .demo-pay-method,
body.demo-theme-light .demo-sheet-btn,
body.demo-theme-light .demo-input,
body.demo-theme-light .demo-textarea,
body.demo-theme-light .demo-select,
body.demo-theme-light select.demo-input,
body.demo-theme-light .demo-bubble.host {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
  border-color: var(--guest-line);
}

body.demo-theme-light .demo-action-tile .chip {
  background: rgba(12, 27, 51, 0.06);
  color: var(--guest-ink-soft);
  box-shadow: inset 0 0 0 1px rgba(12, 27, 51, 0.06);
}

body.demo-theme-light .demo-action-tile .chip.chip-gold {
  background: rgba(201, 169, 98, 0.22);
  color: #6f5824;
  box-shadow: inset 0 0 0 1px rgba(168, 139, 74, 0.35);
}

body.demo-theme-light .demo-action-icon {
  color: var(--guest-gold-dark);
  background: rgba(201, 169, 98, 0.16);
  box-shadow: inset 0 0 0 1px rgba(168, 139, 74, 0.3);
}

body.demo-theme-light .demo-action-tile .demo-action-icon {
  background: linear-gradient(160deg, rgba(201, 169, 98, 0.28), rgba(201, 169, 98, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(168, 139, 74, 0.35),
    0 6px 14px rgba(12, 27, 51, 0.08);
}

body.demo-theme-light .demo-muted,
body.demo-theme-light .demo-test-note,
body.demo-theme-light .demo-field-hint,
body.demo-theme-light .demo-status-row,
body.demo-theme-light .demo-home-status,
body.demo-theme-light .demo-sheet-close,
body.demo-theme-light .demo-trip-row .meta,
body.demo-theme-light .demo-trip-row .code,
body.demo-theme-light .demo-mosaic-note {
  color: var(--guest-ink-soft);
}

body.demo-theme-light .demo-dl dt,
body.demo-theme-light .demo-input::placeholder,
body.demo-theme-light .demo-textarea::placeholder {
  color: var(--guest-muted);
}

body.demo-theme-light .demo-back {
  color: var(--guest-ink-soft);
}

body.demo-theme-light .demo-back:hover {
  color: var(--guest-ink);
}

body.demo-theme-light .demo-location-text {
  color: #3d4f66;
}

body.demo-theme-light .demo-location-text:hover {
  color: #0c1b33;
}

body.demo-theme-light .demo-trip-row {
  background: var(--guest-card);
  box-shadow: 0 8px 20px rgba(12, 27, 51, 0.06);
}

body.demo-theme-light .demo-trip-row.current {
  background: linear-gradient(180deg, #fffdf7, #ffffff);
  border-color: rgba(201, 169, 98, 0.45);
}

body.demo-theme-light .demo-unpaid-banner .chip {
  background: rgba(194, 65, 12, 0.12);
  color: #9a3412;
}

body.demo-theme-light .demo-checkin-box.ready {
  background: #ecfdf5;
  color: #065f46;
  border-color: #6ee7b7;
}

body.demo-theme-light .demo-checkin-box.ready .title {
  color: #047857;
}

body.demo-theme-light .demo-checkin-box.ready .instructions {
  color: #064e3b;
}

body.demo-theme-light .demo-checkin-box.pending {
  background: #f8fafc;
  color: var(--guest-ink);
  border-color: rgba(12, 27, 51, 0.12);
}

body.demo-theme-light .demo-bubble.guest {
  background: rgba(201, 169, 98, 0.16);
  color: var(--guest-ink);
  border-color: rgba(168, 139, 74, 0.35);
}

body.demo-theme-light .demo-bubble.guest strong,
body.demo-theme-light .demo-bubble.host strong,
body.demo-theme-light .demo-host-badge,
body.demo-theme-light .demo-messages-host,
body.demo-theme-light .demo-service-card .price,
body.demo-theme-light .demo-trip-row .kind {
  color: var(--guest-gold-dark);
}

body.demo-theme-light .demo-pay-method.active {
  background: rgba(201, 169, 98, 0.14);
  border-color: rgba(168, 139, 74, 0.5);
  color: var(--guest-ink);
}

body.demo-theme-light .demo-disabled-block {
  background: var(--guest-mist) !important;
  color: var(--guest-ink-soft) !important;
}

body.demo-theme-light .demo-notice {
  background: rgba(201, 169, 98, 0.12);
  color: var(--guest-ink-soft);
  border-color: rgba(168, 139, 74, 0.28);
}

body.demo-theme-light .demo-stepper span {
  background: rgba(12, 27, 51, 0.12);
}

body.demo-theme-light .demo-stepper span.active {
  background: var(--guest-gold);
}

body.demo-theme-light .demo-mosaic {
  background: #f7f8fb;
  border-color: var(--guest-line);
}

body.demo-theme-light .demo-mosaic-tile .more {
  background: rgba(12, 27, 51, 0.55);
  color: #f0dfa8;
}

body.demo-theme-light .demo-composer,
body.demo-theme-light .demo-message-composer {
  background: var(--guest-card);
  border-top-color: var(--guest-line);
}

body.demo-theme-light .demo-composer input,
body.demo-theme-light .demo-composer textarea,
body.demo-theme-light .demo-message-composer input,
body.demo-theme-light .demo-message-composer textarea {
  background: var(--guest-card-soft);
  color: var(--guest-ink);
  border-color: var(--guest-line);
}

body.demo-theme-light .demo-action-icon-pay {
  color: #c2410c;
  background: rgba(194, 65, 12, 0.1);
  box-shadow: inset 0 0 0 1px rgba(194, 65, 12, 0.2);
}

body.demo-theme-light .demo-pay-cta {
  box-shadow: 0 10px 24px rgba(12, 27, 51, 0.12) !important;
}

body.demo-theme-light .demo-actions-section,
body.demo-theme-light .demo-card,
body.demo-theme-light .demo-service-card {
  box-shadow: 0 10px 28px rgba(12, 27, 51, 0.07);
}

body.demo-theme-light .demo-device-stage {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(201, 169, 98, 0.16), transparent 55%),
    #e8eef5;
}

body.demo-theme-light .demo-device-hint {
  color: rgba(12, 27, 51, 0.55);
}

body.demo-theme-light .demo-phone {
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(12, 27, 51, 0.1),
    0 0 0 10px #dfe5ee,
    0 28px 60px rgba(12, 27, 51, 0.18);
}

body.demo-theme-light .demo-phone-chrome {
  background: #f2f4f8;
}

body.demo-theme-light .demo-phone-speaker {
  background: rgba(12, 27, 51, 0.18);
}

body.demo-theme-light .demo-sheet-btn-primary,
body.demo-theme-light .demo-action.primary,
body.demo-theme-light .demo-btn-gold,
body.demo-theme-light .demo-btn-navy,
body.demo-theme-light .demo-btn-send,
body.demo-theme-light .demo-composer .demo-btn-gold,
body.demo-theme-light button[data-send] {
  color: #0c1b33;
}

body.demo-theme-light .demo-lightbox {
  background: rgba(12, 27, 51, 0.72);
}

/* Hero / photo overlays stay light-on-dark for readability on imagery */
body.demo-theme-light .demo-hero-copy,
body.demo-theme-light .demo-hero-copy .greeting,
body.demo-theme-light .demo-hero-copy .meta-line {
  color: #fff;
}

body.demo-theme-light .demo-hero-copy h1 {
  color: #f0dfa8;
}

/* Light theme — remaining hard-coded dark surfaces */
body.demo-theme-light .demo-location {
  background: #ffffff;
  border-color: var(--guest-line);
  color: var(--guest-ink);
  box-shadow: 0 12px 32px rgba(12, 27, 51, 0.08);
}

body.demo-theme-light .demo-location-map {
  background: #e8eef5;
}

body.demo-theme-light .demo-location-body .eyebrow {
  color: var(--guest-gold-dark);
}

body.demo-theme-light .demo-location-body h2 {
  color: var(--guest-ink);
}

body.demo-theme-light .demo-location-body .demo-muted {
  color: var(--guest-ink-soft);
}

body.demo-theme-light .demo-weather {
  background: linear-gradient(135deg, #ffffff 0%, #f7f4ef 48%, #eef2f7 100%);
  border-color: var(--guest-line);
  color: var(--guest-ink);
  box-shadow: 0 10px 28px rgba(12, 27, 51, 0.06);
}

body.demo-theme-light .demo-weather-days div {
  background: rgba(12, 27, 51, 0.05);
  color: var(--guest-ink);
}

body.demo-theme-light .demo-weather .eyebrow,
body.demo-theme-light .demo-weather .temp {
  color: var(--guest-gold-dark);
}

body.demo-theme-light .demo-weather .place {
  color: var(--guest-ink);
}

body.demo-theme-light .demo-unpaid-banner {
  background: #fff8f1;
  border-color: rgba(194, 65, 12, 0.28);
  color: var(--guest-ink);
}

body.demo-theme-light .demo-unpaid-banner .title {
  color: #9a3412;
}

body.demo-theme-light .demo-unpaid-banner > p {
  color: var(--guest-ink-soft);
}

body.demo-theme-light .demo-services-strip {
  box-shadow: 0 8px 20px rgba(12, 27, 51, 0.12);
}

body.demo-theme-light .demo-services-strip .hint {
  color: rgba(12, 27, 51, 0.72);
}

body.demo-theme-light .demo-destination-section {
  background: var(--guest-card);
  color: var(--guest-ink);
  border-color: var(--guest-line);
}

body.demo-theme-light .demo-destination-section h2 {
  color: var(--guest-ink);
}

body.demo-theme-light .demo-destination-section p {
  color: var(--guest-ink-soft);
}

body.demo-theme-light .demo-destination-body {
  background: var(--guest-bg);
}

body.demo-theme-light .demo-pay-summary {
  color: var(--guest-ink);
}

body.demo-theme-light .demo-field label {
  color: var(--guest-ink);
}

body.demo-theme-light .demo-card h1,
body.demo-theme-light .demo-card h2,
body.demo-theme-light .demo-panel h2 {
  color: var(--guest-ink);
}

body.demo-theme-light .demo-service-badge {
  box-shadow: 0 8px 18px rgba(12, 27, 51, 0.12);
}

/* Local trust badges — SIMA + ePoint */
.demo-local-trust {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin: 0.85rem 0 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid var(--guest-line);
  background: var(--guest-card-soft);
}

.demo-local-trust p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--guest-ink-soft);
}

.demo-local-trust strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.84rem;
  color: var(--guest-ink);
}

.demo-local-trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  background: #fff;
  padding: 0.25rem 0.35rem;
  flex-shrink: 0;
}

.demo-local-trust-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.demo-local-trust-epoint {
  width: 5.5rem;
  background: #fff;
}

.demo-pay-method-logo-epoint {
  background: #fff;
  border-radius: 6px;
  padding: 0.15rem 0.3rem;
}

.demo-pay-method-logo-epoint img {
  display: block;
  width: auto;
  height: 1.15rem;
  object-fit: contain;
}

.demo-epoint-widget {
  margin-top: 1rem;
}

.demo-epoint-widget-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f4f6f9;
  border: 1px solid rgba(12, 27, 51, 0.08);
}

.demo-epoint-widget-frame iframe {
  display: block;
  border: 0;
  background: transparent;
}

body.demo-theme-light .demo-local-trust {
  background: #f7f8fb;
  border-color: rgba(12, 27, 51, 0.1);
}

body.demo-theme-light .demo-local-trust strong {
  color: #0c1b33;
}

body.demo-theme-light .demo-local-trust p {
  color: #3d4f66;
}
