/* =============================================================================
   Hotel Marketplace Design System — Premium Hospitality UI
   Bootstrap 5 compatible. Preserve existing class names.
   ============================================================================= */

:root {
  /* Brand */
  --brand-primary: #0a3d2e;
  --brand-primary-dark: #072a20;
  --brand-primary-light: #1a6b4f;
  --brand-accent: #b8954a;
  --brand-accent-soft: #f5edd8;

  /* Surfaces */
  --surface: #ffffff;
  --surface-muted: #f7f5f0;
  --surface-elevated: #fffcf8;
  --surface-inverse: #0a3d2e;

  /* Text */
  --text-primary: #1a2420;
  --text-secondary: #5a675f;
  --text-inverse: #f7f5f0;
  --text-muted: #7a877f;

  /* Borders & feedback */
  --border: rgba(10, 61, 46, 0.1);
  --border-strong: rgba(10, 61, 46, 0.18);
  --success: #1a6b4f;
  --warning: #b8860b;
  --danger: #9b2c2c;
  --info: #2c5f7a;

  /* Radius — restrained */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Shadows — soft, not flashy */
  --shadow-sm: 0 1px 2px rgba(26, 36, 32, 0.04), 0 2px 8px rgba(26, 36, 32, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 36, 32, 0.07);
  --shadow-lg: 0 12px 40px rgba(10, 61, 46, 0.12);

  /* Spacing rhythm */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4.5rem;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;
  --lh-body: 1.55;

  /* Layout */
  --nav-h: 4rem;
  --bottom-nav-h: 4.25rem;
  --touch: 44px;
  --container: 1140px;

  /* Legacy aliases (existing markup) */
  --brand: var(--brand-primary);
  --brand-2: var(--brand-primary-light);
  --accent: var(--brand-accent);
  --ink: var(--text-primary);
  --muted: var(--text-secondary);
  --sand: var(--surface-muted);
  --fog: #e9f0ec;
  --card: var(--surface);
  --radius: var(--radius-lg);
  --shadow: var(--shadow-lg);
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  background: var(--surface-muted);
  min-height: 100vh;
  overflow-x: hidden;
}

body.has-bottom-nav {
  padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
}

h1, h2, h3, h4, .display, .brand-mark, .section-title {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
}

a {
  color: var(--brand-primary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--brand-primary); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

::selection {
  background: rgba(184, 149, 74, 0.28);
  color: var(--text-primary);
}

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

/* -------------------------------------------------------------------------- */
/* Forms & controls                                                           */
/* -------------------------------------------------------------------------- */

.form-control,
.form-select {
  min-height: var(--touch);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  padding: 0.55rem 0.85rem;
  background: var(--surface);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-primary-light);
  box-shadow: 0 0 0 3px rgba(26, 107, 79, 0.15);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-select-sm {
  min-height: 2.25rem;
  font-size: var(--fs-sm);
}

.btn {
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 650;
  border-radius: var(--radius-md);
  padding: 0.55rem 1.15rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-sm {
  min-height: 2.25rem;
  padding: 0.35rem 0.85rem;
  font-size: var(--fs-sm);
}

.btn-lg {
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.05rem;
}

.btn-brand {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-primary-light);
  border-color: var(--brand-primary-light);
  color: #fff;
}

.btn-accent {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #1a1608;
}
.btn-accent:hover {
  background: #c9a85a;
  border-color: #c9a85a;
  color: #1a1608;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
}
.btn-ghost:hover {
  background: var(--fog);
  color: var(--brand-primary);
}

.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* -------------------------------------------------------------------------- */
/* Public navbar                                                              */
/* -------------------------------------------------------------------------- */

.navbar-platform {
  --bs-navbar-padding-y: 0.65rem;
  background: #0a3d2e;
  z-index: 1040;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: var(--nav-h);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.navbar-platform.is-scrolled {
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.navbar-platform > .container {
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
}

.navbar-platform .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f7f5f0 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  max-width: min(52vw, 16rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar-platform .navbar-brand .brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  flex-shrink: 0;
}

.navbar-platform .nav-link {
  color: rgba(247, 245, 240, 0.88) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
}
.navbar-platform .nav-link:hover,
.navbar-platform .nav-link:focus {
  color: var(--brand-accent) !important;
}

.navbar-platform .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.45rem 0.6rem;
  min-width: var(--touch);
  min-height: var(--touch);
  flex-shrink: 0;
}
.navbar-platform .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-platform .currency-select {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #f7f5f0;
  min-width: 5.5rem;
}
.navbar-platform .currency-select option,
.nav-drawer .currency-select option,
select.currency-select option,
select[data-currency-switcher] option {
  background-color: #ffffff !important;
  color: #1a2420 !important;
}
.navbar-platform .currency-select option:checked,
.nav-drawer .currency-select option:checked,
select[data-currency-switcher] option:checked {
  background-color: #0a3d2e !important;
  color: #ffffff !important;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch);
  height: var(--touch);
  border-radius: var(--radius-md);
  color: #f7f5f0;
  border: 0;
  background: transparent;
}
.nav-icon-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--brand-accent);
}

.nav-desktop-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .nav-desktop-actions { display: flex; }
  .nav-mobile-quick { display: none !important; }
  .navbar-platform .navbar-brand {
    max-width: none;
  }
  .nav-menu-backdrop { display: none !important; }
}

.nav-mobile-quick {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
}

/* Mobile: slide-in sidebar drawer */
@media (max-width: 991.98px) {
  .nav-drawer,
  .navbar-platform .navbar-collapse.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1055;
    display: flex !important;
    flex-direction: column;
    width: min(86vw, 320px);
    height: 100dvh !important;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem 1.1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    margin: 0;
    background: linear-gradient(180deg, #0a3d2e 0%, #0c4635 100%);
    border: 0;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.28);
    visibility: visible;
    opacity: 1;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }

  .nav-drawer.show,
  .nav-drawer.collapsing,
  .navbar-platform .navbar-collapse.nav-drawer.show,
  .navbar-platform .navbar-collapse.nav-drawer.collapsing {
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-drawer.collapsing,
  .navbar-platform .navbar-collapse.nav-drawer.collapsing {
    height: 100dvh !important;
    transition: transform 0.28s ease;
  }

  .nav-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-drawer-kicker {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 0.2rem;
  }

  .nav-drawer-head strong {
    color: #f7f5f0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .nav-drawer .navbar-nav {
    flex: 1;
    margin-bottom: 1rem !important;
  }

  .nav-drawer .nav-link {
    min-height: var(--touch);
    display: flex;
    align-items: center;
    padding: 0.65rem 0.5rem !important;
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: rgba(247, 245, 240, 0.92) !important;
  }

  .nav-drawer .nav-link:hover,
  .nav-drawer .nav-link.active {
    background: rgba(255,255,255,0.08);
  }

  .nav-drawer .currency-select {
    width: 100%;
    min-height: var(--touch);
    margin-bottom: 0.85rem;
    background: #ffffff;
    border-color: rgba(255,255,255,0.35);
    color: #1a2420;
  }
  .nav-drawer .currency-select option {
    background-color: #ffffff !important;
    color: #1a2420 !important;
  }

  .nav-drawer .nav-desktop-actions {
    display: flex;
    width: 100%;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-drawer .nav-desktop-actions .btn {
    flex: 1;
    min-height: var(--touch);
  }

  .nav-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(7, 24, 18, 0.35);
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .nav-menu-backdrop.is-open {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Mobile bottom navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: rgba(255, 252, 248, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(26, 36, 32, 0.06);
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: var(--touch);
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.25rem;
}
.mobile-bottom-nav a i,
.mobile-bottom-nav a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: var(--brand-primary);
  background: rgba(10, 61, 46, 0.06);
}

@media (max-width: 991.98px) {
  .mobile-bottom-nav { display: flex; }
  body.has-bottom-nav { padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px)); }
}

/* -------------------------------------------------------------------------- */
/* Hero & homepage                                                            */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 32, 24, 0.2) 0%, rgba(7, 32, 24, 0.55) 45%, rgba(7, 32, 24, 0.88) 100%),
    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-inner {
  width: 100%;
  padding: 3.5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 0.75rem;
}

.brand-mark {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 0.45rem;
  color: #fff;
  max-width: 16ch;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.65rem;
  max-width: 28rem;
}

.hero p.lead {
  max-width: 34rem;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 0;
}

/* Trust strip under hero */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.trust-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}
@media (min-width: 768px) {
  .trust-strip__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.trust-strip__list li {
  text-align: center;
}
.trust-strip__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--brand-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.trust-strip__list span {
  font-size: var(--fs-xs);
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* How it works */
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.how-steps__item {
  padding: 0.25rem 0;
}
.how-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.how-steps__item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.how-steps__item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

/* FAQ */
.faq-list {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0.65rem 0 0.15rem;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.search-panel {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  color: var(--text-primary);
  margin-top: 1.75rem;
  border: 1px solid rgba(255,255,255,0.45);
}

.hero-search {
  display: grid;
  gap: 0.75rem;
  align-items: end;
}

.hero-search__field {
  min-width: 0;
}

.hero-search__field .form-label {
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-search__control {
  position: relative;
}

.hero-search__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.05rem;
  height: 1.05rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 2;
}

.hero-search__control .form-control,
.hero-search__guests-btn {
  min-height: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--surface-muted);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.55rem 0.9rem;
}

.hero-search__control .form-control:focus,
.hero-search__guests-btn:focus {
  background: #fff;
  border-color: var(--brand-primary-light);
  box-shadow: 0 0 0 3px rgba(26, 107, 79, 0.14);
}

.hero-search__field--dest .form-control {
  padding-left: 2.4rem;
}

.hero-search__guests {
  width: 100%;
}

.hero-search__guests-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-left: 2.4rem;
  position: relative;
  appearance: none;
  --bs-btn-bg: transparent;
}

.hero-search__guests-btn .hero-search__icon {
  left: 0.85rem;
}

.hero-search__guests-btn::after {
  margin-left: auto;
  opacity: 0.55;
}

.hero-search__guests-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.hero-search__guests-menu {
  width: min(320px, calc(100vw - 2rem));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 0.35rem !important;
}

.hero-search__stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-search__stepper:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-search__stepper-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-search__stepper-controls .form-control {
  width: 3rem;
  min-height: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: #fff;
}

.hero-search__step {
  width: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
  border-radius: 999px;
}

.hero-search__submit {
  width: 100%;
  min-height: 3rem;
  height: 3rem;
  padding-inline: 1.35rem;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .search-panel {
    padding: 0.85rem;
    transform: translateY(1.25rem);
    margin-top: 1rem;
  }

  .hero-search {
    grid-template-columns: minmax(0, 1.55fr) minmax(9.5rem, 0.85fr) minmax(9.5rem, 0.85fr) minmax(11.5rem, 1.1fr) auto;
    gap: 0.55rem;
    align-items: end;
  }

  .hero-search__field--action {
    align-self: end;
  }

  .hero-search__field--action .form-label {
    display: none;
  }

  .hero-search__submit {
    width: auto;
    min-width: 8.5rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    align-items: stretch;
    padding-top: 2.5rem;
  }
  .hero-inner { padding: 1.5rem 0 2rem; }
  .brand-mark { max-width: none; font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .hero-title { max-width: none; }
  .search-panel {
    margin-top: 1.25rem;
    border-radius: var(--radius-lg);
    padding: 1rem;
  }
  .hero-search {
    grid-template-columns: 1fr 1fr;
  }
  .hero-search__field--dest,
  .hero-search__field--guests,
  .hero-search__field--action {
    grid-column: 1 / -1;
  }
}

/* -------------------------------------------------------------------------- */
/* Sections                                                                   */
/* -------------------------------------------------------------------------- */

.section {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.section-muted {
  background: rgba(10, 61, 46, 0.035);
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 0.35rem;
}

.section-sub {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  max-width: 38rem;
  font-size: 1rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section-head .section-sub { margin-bottom: 0; }

/* -------------------------------------------------------------------------- */
/* Cards — hotel tiles & result cards                                         */
/* -------------------------------------------------------------------------- */

.hotel-tile {
  display: block;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.hotel-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.hotel-tile .media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.hotel-tile:hover .media {
  transform: scale(1.03);
}
.hotel-tile .media-wrap {
  overflow: hidden;
}
.hotel-tile .body {
  padding: 1rem 1.1rem 1.2rem;
}

.price-tag {
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--fog);
  color: var(--brand-primary);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 650;
  margin: 0.12rem;
  border: 1px solid transparent;
}

/* Horizontal result card (search) */
.hotel-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.hotel-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.hotel-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
}
.hotel-card__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hotel-card:hover .hotel-card__media-img {
  transform: scale(1.04);
}
.hotel-card__media-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.hotel-card:hover .hotel-card__media-bg {
  transform: scale(1.04);
}

.hotel-card__fav {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: var(--touch);
  height: var(--touch);
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.92);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 2;
}
.hotel-card__fav.is-saved { color: #e11d48; }
.hotel-card__fav.is-saved svg {
  fill: currentColor;
  stroke: currentColor;
}
.hotel-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(10, 61, 46, 0.9);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-sm);
}

.hotel-card__body {
  padding: 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.hotel-card__brand {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-accent);
}
.hotel-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.2;
}
.hotel-card__meta {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.hotel-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  font-weight: 650;
}
.hotel-card__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.65rem;
  padding: 0 0.4rem;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
}
.hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.hotel-card__price-col {
  padding: 1rem 1.15rem 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
}
.hotel-card__price-col .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .hotel-card {
    grid-template-columns: 38% 1fr auto;
    align-items: stretch;
  }
  .hotel-card__media {
    aspect-ratio: auto;
    min-height: 100%;
  }
  .hotel-card__body {
    padding: 1.25rem 1.35rem;
  }
  .hotel-card__price-col {
    border-top: 0;
    border-left: 1px solid var(--border);
    min-width: 11.5rem;
    max-width: 13rem;
    text-align: right;
    align-items: flex-end;
    padding: 1.25rem;
  }
  .hotel-card__price-col .btn { width: auto; min-width: 8.5rem; }
}

/* Destination cards */
.dest-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}
.dest-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a3d2e, #1a6b4f 55%, #b8954a);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.dest-card:hover .dest-card__bg { transform: scale(1.05); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 32, 24, 0.85) 100%);
}
.dest-card__label {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
}
.dest-card__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.dest-card__label span {
  font-size: var(--fs-sm);
  opacity: 0.85;
}

.destination-hero {
  position: relative;
  min-height: clamp(240px, 40vw, 380px);
  display: flex;
  align-items: flex-end;
  background-color: #0a3d2e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 0;
}
.destination-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}
.destination-hero .section-title {
  color: #f7f5f0;
}

/* Feature / why cards */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-item {
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.feature-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: var(--fog);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.feature-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

/* Partner CTA band */
.partner-cta {
  background: var(--brand-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 768px) {
  .partner-cta { grid-template-columns: 1.4fr auto; }
}
.partner-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}
.partner-cta p {
  margin: 0;
  color: rgba(247, 245, 240, 0.8);
  max-width: 36rem;
}

/* Testimonial */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--text-primary);
}
.testimonial-card cite {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-weight: 650;
}

/* -------------------------------------------------------------------------- */
/* Stat cards, alerts, empty states                                           */
/* -------------------------------------------------------------------------- */

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.stat-card .value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.stat-card-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 5.5rem;
}
.stat-card-metric .label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}
.empty-state__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--brand-primary-light);
  opacity: 0.7;
}
.empty-state h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.alert {
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 0.95rem;
}
.alert-success {
  background: #e8f5ef;
  border-color: rgba(26, 107, 79, 0.2);
  color: #0a3d2e;
}
.alert-danger {
  background: #fdeeee;
  border-color: rgba(155, 44, 44, 0.2);
  color: #7a1f1f;
}
.alert-warning {
  background: #fff8e8;
  border-color: rgba(184, 134, 11, 0.25);
  color: #6b4e08;
}
.alert-info {
  background: #eef5f8;
  border-color: rgba(44, 95, 122, 0.2);
  color: #1e4255;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, #ece8e0 25%, #f5f2eb 50%, #ece8e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
  border-radius: var(--radius-md);
}
.skeleton-line { height: 0.85rem; margin-bottom: 0.5rem; }
.skeleton-card { height: 8rem; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* -------------------------------------------------------------------------- */
/* Search page                                                                */
/* -------------------------------------------------------------------------- */

.search-layout {
  padding-top: 1.75rem;
  padding-bottom: 3rem;
}

.search-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.search-toolbar__summary h1 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin: 0 0 0.2rem;
}
.search-toolbar__summary p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.filter-toggle-btn {
  display: inline-flex;
  min-height: var(--touch);
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 992px) {
  .filter-toggle-btn { display: none !important; }
}

.search-filters {
  position: sticky;
  top: calc(var(--nav-h) + 0.75rem);
  max-height: calc(100vh - var(--nav-h) - 1.5rem);
  overflow-y: auto;
}

@media (max-width: 991.98px) {
  .search-filters-col {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(10, 61, 46, 0.35);
    padding: 0;
    display: none;
    align-items: flex-end;
  }
  .search-filters-col.is-open { display: flex; }
  .search-filters-col .search-filters {
    position: relative;
    top: auto;
    max-height: min(88vh, 640px);
    width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin: 0;
    overflow-y: auto;
    animation: sheetUp 0.25s ease;
  }
}

@keyframes sheetUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.filter-chip-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-chip-row::-webkit-scrollbar { display: none; }
.filter-chip {
  flex: 0 0 auto;
  min-height: 2.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-size: var(--fs-sm);
  font-weight: 650;
  color: var(--text-secondary);
  white-space: nowrap;
}
.filter-chip.is-active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

/* -------------------------------------------------------------------------- */
/* Hotel detail                                                               */
/* -------------------------------------------------------------------------- */

.hotel-detail-top {
  padding: 1.25rem 0 0;
}

.breadcrumb-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.breadcrumb-premium a { color: var(--text-secondary); }
.breadcrumb-premium a:hover { color: var(--brand-primary); }
.breadcrumb-premium .sep { opacity: 0.45; }

.hotel-detail-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.hotel-detail-header h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  margin: 0 0 0.35rem;
}
.hotel-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hotel-save-btn {
  gap: 0.4rem;
}
.hotel-save-btn .icon,
.hotel-save-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  transition: color 0.15s ease, fill 0.15s ease, transform 0.15s ease;
}
.hotel-save-btn.is-saved {
  color: #e11d48;
  border-color: rgba(225, 29, 72, 0.28);
  background: rgba(225, 29, 72, 0.08);
}
.hotel-save-btn.is-saved:hover {
  color: #be123c;
  background: rgba(225, 29, 72, 0.14);
}
.hotel-save-btn.is-saved .icon,
.hotel-save-btn.is-saved svg {
  fill: currentColor;
  stroke: currentColor;
  color: #e11d48;
}

.gallery-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
.gallery-grid__main,
.gallery-grid__thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-primary);
  background-size: cover;
  background-position: center;
}
.gallery-grid__main {
  aspect-ratio: 16 / 10;
  min-height: 220px;
}
.gallery-grid__thumbs {
  display: none;
  gap: 0.5rem;
}
.gallery-grid__thumb {
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 380px;
  }
  .gallery-grid__main {
    grid-row: 1 / -1;
    aspect-ratio: auto;
    height: 100%;
    min-height: 380px;
  }
  .gallery-grid__thumbs {
    display: contents;
  }
  .gallery-grid__thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .gallery-swipe {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-swipe .hotel-detail-photo {
    flex: 0 0 85%;
    scroll-snap-align: start;
    aspect-ratio: 16 / 10;
  }
  .gallery-grid { display: none; }
}

.hotel-detail-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: #1a6b4f center/cover no-repeat;
  box-shadow: var(--shadow-sm);
}

.detail-tabs {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
  -webkit-overflow-scrolling: touch;
}
.detail-tabs a {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  font-weight: 650;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.detail-tabs a:hover,
.detail-tabs a.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-accent);
}

.mobile-book-bar {
  display: none;
}

.mobile-book-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  pointer-events: none;
  padding: 0 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
}

.mobile-book-dock__sheet {
  pointer-events: auto;
  background: rgba(255, 252, 248, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  box-shadow: 0 -10px 36px rgba(26, 36, 32, 0.16);
  padding: 0.45rem 0.85rem 0.85rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.mobile-book-dock.is-ready .mobile-book-dock__sheet {
  border-color: rgba(10, 61, 46, 0.35);
  box-shadow: 0 -12px 40px rgba(10, 61, 46, 0.2);
}
.mobile-book-dock.is-ready .mobile-book-dock__title {
  color: var(--brand-primary);
}

.mobile-book-dock__handle {
  width: 2.4rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(26, 36, 32, 0.16);
  margin: 0.15rem auto 0.65rem;
}

.mobile-book-dock__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-book-dock__copy {
  min-width: 0;
  flex: 1;
}

.mobile-book-dock__title {
  font-weight: 800;
  color: var(--brand-primary);
  font-size: 1.02rem;
  line-height: 1.2;
}

.mobile-book-dock__sub {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-book-dock__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.mobile-book-dock__actions .btn-ghost {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  padding-inline: 0.7rem;
}

.mobile-book-dock__actions .btn-brand {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  body.has-book-bar .mobile-book-dock { display: block; }
  body.has-book-bar .room-cart__bar { display: none !important; }
  body.has-book-bar.has-bottom-nav,
  body.has-book-bar:not(.has-bottom-nav) {
    padding-bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
  }
  body.has-book-bar .mobile-bottom-nav { display: none; }
}

@media (max-width: 420px) {
  .mobile-book-dock__row {
    flex-direction: column;
    align-items: stretch;
  }
  .mobile-book-dock__actions {
    width: 100%;
  }
  .mobile-book-dock__actions .btn {
    flex: 1;
  }
  body.has-book-bar.has-bottom-nav,
  body.has-book-bar:not(.has-bottom-nav) {
    padding-bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 992px) {
  .mobile-book-dock { display: none !important; }
}

.availability-panel {
  position: sticky;
  top: calc(var(--nav-h) + 0.85rem);
  z-index: 1;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.stay-dates-card {
  margin-bottom: 0.25rem;
}

.availability-form,
.availability-form .row,
.availability-form [class*="col-"] { min-width: 0; }

.availability-form .form-control,
.availability-form .form-select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.availability-room {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  overflow-wrap: anywhere;
  background: var(--surface-elevated);
  margin-bottom: 0.75rem;
}
.availability-room:last-of-type { margin-bottom: 0; }

.room-pick {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1rem 1.1rem;
  margin-bottom: 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.room-pick.is-selected {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 1px rgba(10, 61, 46, 0.18);
}
.room-pick.is-unavailable {
  opacity: 0.78;
  background: #f4f2ee;
  border-style: dashed;
}
.room-pick.is-unavailable .room-pick__controls {
  pointer-events: none;
}
.room-pick__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}
.room-pick__controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.room-pick__line {
  margin-top: 0.65rem;
}
.room-pick.is-selected .room-pick__line {
  color: var(--brand-primary);
  font-weight: 700;
}
.room-stepper {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) 2.2rem;
  gap: 0.25rem;
  align-items: center;
}
.room-stepper__btn {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border-radius: 0.55rem;
  font-size: 1.15rem;
  line-height: 1;
  border: 1px solid var(--border);
  background: #fff;
}
.room-stepper__input {
  text-align: center;
  font-weight: 700;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.room-stepper__input:read-only {
  background: var(--surface-elevated, #fff);
}
.room-cart__bar {
  position: sticky;
  bottom: 4.5rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  margin-top: 1rem;
  box-shadow: var(--shadow-md);
}
.room-cart__bar .small { color: rgba(255,255,255,0.82); }
.room-cart__bar .btn { white-space: nowrap; }
@media (min-width: 992px) {
  .room-cart__bar { bottom: 1rem; }
}
@media (max-width: 575.98px) {
  .room-pick__controls { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
  .availability-panel {
    position: static !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Checkout                                                                   */
/* -------------------------------------------------------------------------- */

.checkout-steps {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.checkout-step {
  flex: 1;
  min-width: 4.5rem;
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  padding-top: 1.75rem;
}
.checkout-step::before {
  content: attr(data-step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--fog);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.checkout-step.is-active,
.checkout-step.is-done {
  color: var(--brand-primary);
}
.checkout-step.is-active::before,
.checkout-step.is-done::before {
  background: var(--brand-primary);
  color: #fff;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--nav-h) + 0.85rem);
}
.checkout-summary__total {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.booking-mode-options {
  display: grid;
  gap: 0.65rem;
}

.booking-mode-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
  margin: 0;
  color: inherit;
  text-decoration: none;
  min-height: var(--touch);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-mode-card:hover,
.booking-mode-card:focus-within {
  border-color: var(--brand-primary-light);
  color: inherit;
}

.booking-mode-card:has(input:checked) {
  border-color: var(--brand-primary);
  background: rgba(10, 61, 46, 0.04);
  box-shadow: 0 0 0 1px var(--brand-primary);
}

.booking-mode-card .form-check-input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.booking-mode-card__radio {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  flex-shrink: 0;
}

.booking-mode-card--link:hover .booking-mode-card__radio {
  border-color: var(--brand-primary);
}

.booking-mode-card__body strong {
  display: block;
  margin-bottom: 0.15rem;
}

.payment-method-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}
.payment-method {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  cursor: pointer;
  background: var(--surface);
  min-height: var(--touch);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  font-size: var(--fs-sm);
}
.payment-method:has(input:checked) {
  border-color: var(--brand-primary);
  background: rgba(10, 61, 46, 0.04);
  box-shadow: 0 0 0 1px var(--brand-primary);
}
.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-xs);
  font-weight: 650;
  color: var(--success);
  background: #e8f5ef;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

@media (max-width: 991.98px) {
  .checkout-summary { position: static; }
}

/* -------------------------------------------------------------------------- */
/* Guest account                                                              */
/* -------------------------------------------------------------------------- */

.loyalty-profile-banner {
  border-color: rgba(184, 149, 74, 0.35);
  background:
    linear-gradient(135deg, rgba(184, 149, 74, 0.08), transparent 45%),
    var(--surface);
}

.loyalty-profile-banner .value {
  color: var(--brand-primary);
}
@media (min-width: 992px) {
  .account-shell {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.account-nav {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  /* Scroll with the page — sticky made profile/security content slide underneath */
  position: static;
  top: auto;
  z-index: auto;
}
.account-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: var(--touch);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 650;
  font-size: 0.92rem;
}
.account-nav a:hover,
.account-nav a.active {
  background: var(--fog);
  color: var(--brand-primary);
}

.saved-hotel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.saved-hotel-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--brand-primary);
}
.saved-hotel-card__photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.saved-hotel-card__photo--empty {
  background:
    linear-gradient(135deg, rgba(184, 149, 74, 0.35), transparent 55%),
    linear-gradient(160deg, #0a3d2e, #145c45);
}
.saved-hotel-card__heart {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #e11d48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.saved-hotel-card__heart svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  stroke: currentColor;
}
.saved-hotel-card__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: rgba(10, 61, 46, 0.92);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-sm);
}
.saved-hotel-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.1rem 1.15rem;
  min-width: 0;
  flex: 1;
}
.saved-hotel-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0;
}
.saved-hotel-card__meta,
.saved-hotel-card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.saved-hotel-card__meta .icon,
.saved-hotel-card__meta svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}
.saved-hotel-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}
.saved-hotel-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trip-pass {
  background: linear-gradient(135deg, #0a3d2e 0%, #145c45 100%);
  color: #f7f5f0;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.trip-pass::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -30%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(184, 149, 74, 0.2);
}
.trip-pass__ref {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 700;
}
.trip-pass__hotel {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.35rem 0 0.5rem;
  position: relative;
  z-index: 1;
}
.trip-pass__meta {
  font-size: var(--fs-sm);
  opacity: 0.88;
  position: relative;
  z-index: 1;
}
.trip-pass__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

/* In-stay companion */
.stay-companion {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.stay-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 576px) {
  .stay-quick-actions { grid-template-columns: repeat(3, 1fr); }
}
.stay-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 5.5rem;
  padding: 0.85rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-weight: 650;
  font-size: var(--fs-sm);
  text-align: center;
}
.stay-action:hover {
  border-color: var(--brand-primary-light);
  color: var(--brand-primary);
  background: var(--fog);
}
.stay-action i, .stay-action svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--brand-primary);
}

/* -------------------------------------------------------------------------- */
/* Admin shells                                                               */
/* -------------------------------------------------------------------------- */

.admin-shell {
  min-height: 100vh;
  background: #f2f4f3;
}

.admin-shell.platform-shell {
  background: #eef1f4;
}

.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a3d2e 0%, #0f4636 100%);
  color: #eef6f2;
  padding: 1.25rem 0.85rem;
  position: sticky;
  top: 0;
  flex-shrink: 0;
  overflow-y: auto;
  max-height: 100vh;
}

.platform-shell .admin-sidebar {
  background: linear-gradient(180deg, #0d1f2d 0%, #1a3145 100%);
}

.admin-sidebar__brand {
  padding: 0.35rem 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
}
.admin-sidebar__brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}
.admin-sidebar__brand-sub {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.15rem;
}

.admin-sidebar__section {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  padding: 0.85rem 0.85rem 0.35rem;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.82);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.15rem;
  font-weight: 600;
  font-size: 0.88rem;
  min-height: 2.5rem;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.admin-sidebar a.active {
  box-shadow: inset 3px 0 0 var(--brand-accent);
}

.admin-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.admin-topbar h1 {
  font-size: 1.35rem;
  margin: 0;
}
.admin-shell main {
  min-width: 0;
  flex: 1;
}

.admin-shell .table {
  font-size: 0.92rem;
}
.admin-shell .table > :not(caption) > * > * {
  vertical-align: middle;
  padding: 0.75rem 0.85rem;
}
.admin-shell .table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 700;
  border-bottom-width: 1px;
  background: var(--surface-muted);
}
.admin-shell .progress {
  background: #e7eee9;
  border-radius: 999px;
  overflow: hidden;
}
.admin-shell .badge {
  font-weight: 650;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 0.35em 0.55em;
}

.chart-box {
  position: relative;
  width: 100%;
  height: 320px;
}
.chart-box-sm { height: 260px; }

@media (max-width: 767.98px) {
  .chart-box, .chart-box-sm { height: 220px; }
  .admin-table-cards .table thead { display: none; }
  .admin-table-cards .table,
  .admin-table-cards .table tbody,
  .admin-table-cards .table tr,
  .admin-table-cards .table td {
    display: block;
    width: 100%;
  }
  .admin-table-cards .table tr {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    padding: 0.65rem 0.85rem;
  }
  .admin-table-cards .table td {
    padding: 0.35rem 0;
    border: 0;
  }
  .admin-table-cards .table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
  }
}

@media (max-width: 991.98px) {
  .admin-sidebar {
    width: 100%;
    min-height: auto;
    max-height: none;
    position: relative;
    padding: 1rem;
  }
  .admin-sidebar__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .admin-sidebar a {
    margin: 0;
    font-size: 0.8rem;
    padding: 0.45rem 0.7rem;
  }
  .admin-sidebar__section { width: 100%; }
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.footer-platform {
  margin-top: 3rem;
  padding: 3rem 0 2rem;
  background: linear-gradient(165deg, #072a20 0%, #0a3d2e 55%, #0c4635 100%);
  color: rgba(247, 245, 240, 0.78);
  border-top: 2px solid var(--brand-accent);
}

.footer-platform h5,
.footer-platform h6 {
  color: #f7f5f0;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

.footer-platform p {
  color: rgba(247, 245, 240, 0.78);
  max-width: 22rem;
  line-height: 1.6;
}

.footer-platform a {
  color: #e4d0a0;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.45rem;
}
.footer-platform a:hover { color: #fff; }

.footer-platform hr {
  border-color: rgba(247, 245, 240, 0.15);
  opacity: 1;
}

.footer-platform .footer-copy {
  color: rgba(247, 245, 240, 0.5);
}

@media (max-width: 991.98px) {
  .footer-platform {
    margin-bottom: 0;
    padding-bottom: calc(2rem + var(--bottom-nav-h));
  }
  body.has-book-bar .footer-platform {
    padding-bottom: calc(2rem + 5rem);
  }
}

/* -------------------------------------------------------------------------- */
/* Shared utilities & legacy feature styles                                   */
/* -------------------------------------------------------------------------- */

.fade-up {
  animation: fadeUp 0.55s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.map-embed {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-lg);
}

.nav-pills .nav-link {
  border-radius: 999px;
  color: var(--brand-primary);
  font-weight: 650;
  background: rgba(10, 61, 46, 0.06);
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}
.nav-pills .nav-link.active {
  background: var(--brand-primary);
  color: #fff;
}

.menu-admin-photo,
.menu-public-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(10,61,46,0.85), rgba(184,149,74,0.55)),
    #1a6b4f;
  background-size: cover;
  background-position: center;
}

.menu-public-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}

.members-preview {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(10,61,46,0.96), rgba(26,107,79,0.9));
  color: #f7f5f0;
  box-shadow: var(--shadow-md);
}
.members-preview-glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,74,0.4), transparent 70%);
  pointer-events: none;
}
.members-preview-content { position: relative; z-index: 1; max-width: 34rem; }
.members-preview-kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.members-preview .btn-brand {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #14201b;
}
.members-preview .btn-brand:hover {
  background: #c9a85a;
  border-color: #c9a85a;
  color: #14201b;
}
.members-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.members-preview-tags span {
  border: 1px solid rgba(247,245,240,0.28);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.82rem;
  background: rgba(255,255,255,0.06);
}
.members-preview-mosaic {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 54px);
  gap: 0.4rem;
  opacity: 0.85;
}
.mosaic {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
.mosaic-a {
  background-image: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35)),
    url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=200&q=80');
  grid-row: span 2;
  height: 112px;
}
.mosaic-b {
  background-image: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3)),
    url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=200&q=80');
}
.mosaic-c {
  background-image: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3)),
    url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?auto=format&fit=crop&w=200&q=80');
}

.hotel-unlock-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  width: min(340px, calc(100vw - 2rem));
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(247, 245, 240, 0.96);
  border: 1px solid rgba(184,149,74,0.35);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  animation: toastIn 0.45s ease both;
}
.hotel-unlock-toast strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-primary);
  margin-bottom: 0.35rem;
}
.hotel-unlock-toast p {
  margin: 0 0 0.85rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.hotel-unlock-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a7b2f;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.hotel-unlock-close {
  position: absolute;
  top: 0.35rem;
  right: 0.55rem;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  min-width: var(--touch);
  min-height: var(--touch);
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 767.98px) {
  .members-preview-mosaic { display: none; }
  .hotel-unlock-toast {
    left: 1rem;
    right: 1rem;
    width: auto;
    bottom: calc(var(--bottom-nav-h) + 0.75rem);
  }
}

.listing-plan-card {
  display: block;
  height: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1rem;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.listing-plan-card input { margin-bottom: 0.5rem; }
.listing-plan-card.is-selected,
.listing-plan-card:has(input:checked) {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.order-pick-card {
  cursor: pointer;
  border: 1px solid var(--border);
}
.order-pick-card:has(.order-pick-check:checked) {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}
.order-box-list {
  min-height: 90px;
  max-height: 260px;
  overflow: auto;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  background: rgba(243,246,244,0.7);
}
.order-box-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.order-box-row:last-child { border-bottom: 0; }

.inventory-cal-head,
.inventory-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}
.inventory-cal-head {
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
}
.inventory-cal-cell {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: #fff;
  min-height: 92px;
  padding: 0.45rem;
  text-align: left;
  cursor: pointer;
}
.inventory-cal-cell.is-empty {
  border: 0;
  background: transparent;
  cursor: default;
}
.inventory-cal-cell.is-stopsell { background: #fde8e8; border-color: #c45c5c; }
.inventory-cal-cell.is-soldout { background: #f3efe6; }
.inventory-cal-cell.is-cta { background: #fff6e5; }
.inventory-cal-cell .badge { font-size: 0.65rem; }
.inventory-cal-cell.is-lowocc { background: #fff8e8; border-color: #d4a84b; }
.inventory-cal-cell.is-highocc { background: #e8f5ef; border-color: #1a6b4f; }
.chart-wrap { position: relative; height: 220px; }

.hk-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 0.85rem;
  align-items: start;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.hk-column {
  background: #f4f1eb;
  border-radius: var(--radius-lg);
  min-height: 280px;
  border: 1px solid var(--border);
}
.hk-column-head {
  padding: 0.85rem 1rem 0.55rem;
  border-bottom: 1px solid var(--border);
}
.hk-column-body { padding: 0.65rem; display: grid; gap: 0.65rem; }
.hk-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hk-column-dirty .hk-column-head { background: #fde8e8; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.hk-column-cleaning .hk-column-head { background: #e7f0ff; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.hk-column-inspected .hk-column-head { background: #fff4d6; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.hk-column-ready .hk-column-head { background: #e7f6ee; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.hk-empty { padding: 1rem 0.5rem; text-align: center; }
.hk-mobile-card .display-6 { font-size: 2.4rem; line-height: 1; }

@media (max-width: 991.98px) {
  .hk-board { grid-template-columns: repeat(4, minmax(240px, 1fr)); }
}

/* Room status board colors */
.room-status-available { --rs: #1a6b4f; }
.room-status-occupied { --rs: #2c5f7a; }
.room-status-reserved { --rs: #b8954a; }
.room-status-cleaning { --rs: #5b7cfa; }
.room-status-maintenance { --rs: #9b2c2c; }
.room-status-ooo { --rs: #6b7280; }

.icon {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 1.75;
  flex-shrink: 0;
}
