:root {
  --hv-orange: #eb5c05;
  --hv-green: #009238;
  --hv-navy: #101820;
  --hv-black: #070b10;
  --hv-soft: #f8f8f6;
  --hv-gold: #f4a11a;
  --hv-white: #ffffff;
  --hv-radius: 22px;
  --hv-shadow: 0 18px 50px rgba(7, 11, 16, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1a1f26;
  background: var(--hv-soft);
}

/* Navbar: set --hv-navbar-surface / --hv-navbar-surface-2 to retune the bar; link & toggler colors track via vars. */
.hv-navbar {
  --hv-navbar-surface: #141c28;
  --hv-navbar-surface-2: #0b1018;
  --hv-navbar-bg: linear-gradient(
    180deg,
    rgba(20, 28, 40, 0.97) 0%,
    rgba(11, 16, 24, 0.96) 100%
  );
  --hv-navbar-fg: #ffffff;
  --hv-navbar-fg-muted: rgba(255, 255, 255, 0.88);
  --hv-navbar-fg-subtle: rgba(255, 255, 255, 0.72);
  --hv-navbar-border: rgba(255, 255, 255, 0.1);
  --hv-navbar-brand-pad-bg: rgba(255, 255, 255, 0.1);
  --hv-navbar-brand-pad-ring: rgba(255, 255, 255, 0.14);
  --hv-navbar-toggler-surface: rgba(255, 255, 255, 0.12);
  --hv-navbar-outline-border: rgba(255, 255, 255, 0.55);
  --hv-navbar-outline-hover-bg: rgba(255, 255, 255, 0.14);

  background: var(--hv-navbar-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hv-navbar-border);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  color: var(--hv-navbar-fg);
  /* Bootstrap 5.3 nav + toggler tokens follow our foreground */
  --bs-navbar-color: var(--hv-navbar-fg-subtle);
  --bs-navbar-hover-color: var(--hv-navbar-fg);
  --bs-navbar-active-color: var(--hv-navbar-fg);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.38);
  --bs-navbar-icon-color: var(--hv-navbar-fg);
  --bs-navbar-toggler-border-color: var(--hv-navbar-outline-border);
}

/* Light navbar: add class hv-navbar--surface-light on <nav> and set surfaces to pale values */
.hv-navbar.hv-navbar--surface-light {
  --hv-navbar-surface: #f4f1eb;
  --hv-navbar-surface-2: #ebe6de;
  --hv-navbar-bg: linear-gradient(180deg, rgba(244, 241, 235, 0.98) 0%, rgba(235, 230, 222, 0.97) 100%);
  --hv-navbar-fg: #0d1218;
  --hv-navbar-fg-muted: rgba(13, 18, 24, 0.82);
  --hv-navbar-fg-subtle: rgba(13, 18, 24, 0.65);
  --hv-navbar-border: rgba(13, 18, 24, 0.1);
  --hv-navbar-brand-pad-bg: rgba(13, 18, 24, 0.06);
  --hv-navbar-brand-pad-ring: rgba(13, 18, 24, 0.08);
  --hv-navbar-toggler-surface: rgba(13, 18, 24, 0.08);
  --hv-navbar-outline-border: rgba(13, 18, 24, 0.42);
  --hv-navbar-outline-hover-bg: rgba(13, 18, 24, 0.08);
  --bs-navbar-disabled-color: rgba(13, 18, 24, 0.35);
}

.hv-navbar .nav-link {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--hv-navbar-fg-muted) !important;
  padding: 0.55rem 0.75rem !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hv-navbar.hv-navbar--surface-light .nav-link {
  text-shadow: none;
}

/* Desktop: compact nav so links + CTAs stay on one line */
@media (min-width: 992px) {
  .hv-navbar #navMain .navbar-nav {
    flex-wrap: nowrap;
  }

  .hv-navbar #navMain .nav-link {
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
    padding: 0.35rem 0.45rem !important;
    white-space: nowrap;
  }

  .hv-navbar #navMain .ms-lg-auto {
    flex-wrap: nowrap;
  }

  .hv-navbar #navMain .btn {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.42rem 0.8rem;
    white-space: nowrap;
  }
}

.hv-navbar .nav-link:hover,
.hv-navbar .nav-link.active {
  color: var(--hv-navbar-fg) !important;
}

.hv-navbar .btn-outline-light {
  color: var(--hv-navbar-fg) !important;
  border-color: var(--hv-navbar-outline-border) !important;
  background: transparent;
}

.hv-navbar .btn-outline-light:hover,
.hv-navbar .btn-outline-light:focus {
  color: var(--hv-navbar-fg) !important;
  border-color: var(--hv-navbar-fg-muted) !important;
  background: var(--hv-navbar-outline-hover-bg);
}

.hv-navbar .btn-outline-light:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(235, 92, 5, 0.35);
}

.hv-navbar.hv-navbar--surface-light .btn-outline-light:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(235, 92, 5, 0.25);
}

/* Mobile full-screen menu (offcanvas from left) */
.hv-navbar .hv-nav-toggler {
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  color: var(--hv-navbar-fg);
  background: var(--hv-navbar-toggler-surface) !important;
  border: 1px solid var(--hv-navbar-outline-border) !important;
}

.hv-navbar .hv-nav-toggler .navbar-toggler-icon {
  /* Mask lets hamburger use currentColor so it always matches --hv-navbar-fg */
  background-image: none !important;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cg fill='black'%3E%3Crect x='4' y='7' width='22' height='2' rx='1'/%3E%3Crect x='4' y='14' width='22' height='2' rx='1'/%3E%3Crect x='4' y='21' width='22' height='2' rx='1'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cg fill='black'%3E%3Crect x='4' y='7' width='22' height='2' rx='1'/%3E%3Crect x='4' y='14' width='22' height='2' rx='1'/%3E%3Crect x='4' y='21' width='22' height='2' rx='1'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.hv-navbar .hv-nav-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 161, 26, 0.25);
}

.hv-offcanvas-nav {
  --bs-offcanvas-width: 100%;
  width: 100vw !important;
  max-width: 100%;
  background: linear-gradient(165deg, #070b10 0%, #101820 45%, #0d1520 100%) !important;
  border: none !important;
  box-shadow: none !important;
}

.hv-offcanvas-nav.offcanvas-start {
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.hv-offcanvas-nav .offcanvas-header {
  flex-shrink: 0;
}

.hv-offcanvas-close {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hv-offcanvas-close:hover {
  color: #fff;
  background: rgba(235, 92, 5, 0.35);
  border-color: rgba(235, 92, 5, 0.5);
  transform: scale(1.05);
}

.hv-offcanvas-close:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(244, 161, 26, 0.35);
}

.hv-offcanvas-links {
  gap: 0.15rem;
}

.hv-offcanvas-link {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 1rem 1.25rem !important;
  margin: 0 0.5rem;
  border-radius: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.hv-offcanvas-link:last-of-type {
  border-bottom: none;
}

.hv-offcanvas-link:hover,
.hv-offcanvas-link:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  padding-left: 1.5rem !important;
}

.hv-offcanvas-link.active {
  color: #fff !important;
  background: rgba(235, 92, 5, 0.18);
  border-left: 3px solid var(--hv-orange);
  padding-left: calc(1.25rem - 3px) !important;
}

.hv-offcanvas-nav .offcanvas-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .hv-offcanvas-nav {
    display: none !important;
  }
}

.brand-mark {
  width: 12px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--hv-gold), var(--hv-orange));
  box-shadow: 0 8px 24px rgba(235, 92, 5, 0.35);
}

.brand-text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.hv-navbar .brand-text {
  color: var(--hv-navbar-fg);
}

.hv-brand-logo {
  height: 36px;
  width: auto;
  max-width: min(160px, 42vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.hv-brand-logo--offcanvas {
  height: 40px;
  max-width: 200px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.hv-brand-logo--footer {
  height: 48px;
  max-width: 220px;
  object-position: left center;
}

.hv-navbar .navbar-brand {
  min-height: 2.25rem;
  padding: 0.25rem 0.7rem 0.25rem 0.5rem;
  margin-right: 0.25rem;
  border-radius: 14px;
  background: var(--hv-navbar-brand-pad-bg);
  box-shadow: inset 0 1px 0 var(--hv-navbar-brand-pad-ring);
}

.hv-navbar .hv-brand-logo {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.hv-navbar.hv-navbar--surface-light .hv-brand-logo {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

.btn-brand {
  background: linear-gradient(90deg, var(--hv-orange), #ff7a2e);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(235, 92, 5, 0.28);
}

.btn-brand:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(90deg, var(--hv-gold), #ffb84a);
  border: none;
  color: #101820;
  font-weight: 700;
}

.btn-pill {
  border-radius: 999px;
}

.text-brand {
  color: var(--hv-orange) !important;
}

.text-gold {
  color: var(--hv-gold) !important;
}

.hv-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #fff;
  background-color: var(--hv-black);
  background-image: linear-gradient(120deg, rgba(7, 11, 16, 0.82), rgba(16, 24, 32, 0.55)),
    var(--hv-hero-image, url("../images/hero-hotel.svg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Home hero: headline + booking form stacked in one panel */
.hv-hero.hv-hero--stacked {
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 5.25rem;
  padding-bottom: 2rem;
  min-height: min(100vh, 960px);
  overflow-x: clip;
  /* Soft “bubble” glows (radials sit above the photo, under copy) */
  background-image:
    radial-gradient(ellipse 120% 90% at 92% 8%, rgba(235, 92, 5, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 6% 55%, rgba(0, 146, 56, 0.18) 0%, transparent 38%),
    radial-gradient(circle at 78% 88%, rgba(255, 255, 255, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 42% 12%, rgba(244, 161, 26, 0.12) 0%, transparent 30%),
    linear-gradient(120deg, rgba(7, 11, 16, 0.82), rgba(16, 24, 32, 0.55)),
    var(--hv-hero-image, url("../images/hero-hotel.svg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hv-hero--stacked .hv-hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(min(100vh, 960px) - 5.25rem - 2rem);
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.hv-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  line-height: 1.22;
}

.hv-hero-title-prefix {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

/* Deep logo tones: animated gradient across the property name */
.hv-hero-title-brand {
  --hv-brand-deep-orange: #9a3200;
  --hv-brand-orange: #c94a06;
  --hv-brand-deep-green: #004a1f;
  --hv-brand-green: #007a32;
  display: inline;
  padding-bottom: 0.05em;
  background-image: linear-gradient(
    105deg,
    var(--hv-brand-deep-orange) 0%,
    var(--hv-brand-orange) 22%,
    #e0590a 36%,
    var(--hv-brand-deep-green) 50%,
    var(--hv-brand-green) 64%,
    var(--hv-brand-orange) 82%,
    var(--hv-brand-deep-orange) 100%
  );
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.42));
}

@media (prefers-reduced-motion: no-preference) {
  .hv-hero-title-brand {
    animation: hv-hero-title-brand-flow 9s ease-in-out infinite;
  }
}

@keyframes hv-hero-title-brand-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hv-hero-title-brand {
    animation: none;
    background-position: 42% 50%;
  }
}

.hv-hero-lede {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.hv-hero-head {
  flex-shrink: 0;
}

.hv-hero-cta {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.hv-booking-card {
  background: #fff;
  border-radius: var(--hv-radius);
  box-shadow: var(--hv-shadow);
  padding: 1.25rem 1.25rem 1.35rem;
  position: relative;
  z-index: 3;
}

.hv-booking-card--in-hero {
  z-index: 4;
  max-width: min(26rem, 100%);
  margin-left: auto;
  margin-right: auto;
  color-scheme: dark;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  padding: 1.35rem 1.35rem 1.45rem;
}

.hv-booking-card--in-hero .form-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.hv-booking-card--in-hero .form-control,
.hv-booking-card--in-hero .form-select {
  background-color: rgba(7, 11, 16, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hv-booking-card--in-hero .form-select {
  background-image: none;
  padding-right: 0.75rem;
}

/* Match hero policy line: same sans family, size, and weight as .hv-booking-policy.small */
.hv-booking-card--in-hero .hv-wizard-field {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
}

.hv-booking-card--in-hero .hv-wizard-field:focus {
  color: rgba(255, 255, 255, 0.88);
}

.hv-booking-card--in-hero select.hv-wizard-field:invalid {
  color: rgba(255, 255, 255, 0.52);
}

.hv-booking-card--in-hero select.hv-wizard-field option {
  color: rgba(255, 255, 255, 0.95);
  background: #101820;
}

.hv-booking-card--in-hero .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hv-booking-card--in-hero .form-control:focus,
.hv-booking-card--in-hero .form-select:focus {
  background-color: rgba(7, 11, 16, 0.52);
  border-color: rgba(244, 161, 26, 0.45);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(235, 92, 5, 0.12);
}

.hv-booking-card--in-hero .hv-booking-policy {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.45;
}

.hv-booking-card--in-hero .hv-booking-policy i {
  color: rgba(244, 161, 26, 0.85);
}

/* Hero booking: primary CTA — narrow, centered, glass fill */
.hv-btn-hero-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  min-height: 2.85rem;
  padding: 0.62rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #fff !important;
  background: rgba(235, 92, 5, 0.18) !important;
  border: 1px solid rgba(255, 160, 100, 0.42) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
}

.hv-btn-hero-glass:hover {
  background: rgba(235, 92, 5, 0.32) !important;
  border-color: rgba(255, 190, 140, 0.55) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(235, 92, 5, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hv-btn-hero-glass:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(235, 92, 5, 0.28), 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hv-btn-glass-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.hv-btn-glass-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.hv-btn-glass-outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

/* Home hero: progressive booking wizard */
.hv-booking-wizard-intro {
  display: flex;
  justify-content: center;
}

.hv-booking-wizard-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.hv-booking-wizard-step {
  display: none;
}

.hv-booking-wizard-step.is-active {
  display: block;
  animation: hv-booking-fade 0.28s ease;
}

@keyframes hv-booking-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hv-hero.hv-hero--stacked {
    min-height: 100vh;
    padding-bottom: 1.5rem;
  }

  .hv-hero--stacked .hv-hero-inner {
    min-height: calc(100vh - 5.25rem - 1.5rem);
  }
}

.hv-section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: var(--hv-navy);
}

.hv-card {
  border: 0;
  border-radius: var(--hv-radius);
  overflow: hidden;
  box-shadow: var(--hv-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.hv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(7, 11, 16, 0.22);
}

.hv-card .ratio img {
  object-fit: cover;
}

.hv-price {
  font-weight: 700;
  color: var(--hv-navy);
}

.hv-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.06);
  font-size: 0.85rem;
  color: #2b3542;
}

.hv-dark-section {
  background: radial-gradient(1200px 500px at 20% 0%, rgba(244, 161, 26, 0.12), transparent 55%),
    linear-gradient(180deg, #0b1118, #070b10);
  color: rgba(255, 255, 255, 0.86);
}

.hv-dark-section .hv-section-title {
  color: #fff;
}

.hv-amenity {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 24, 32, 0.06);
  padding: 1.25rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(7, 11, 16, 0.06);
}

.hv-amenity i {
  color: var(--hv-orange);
  font-size: 1.35rem;
}

.hv-footer {
  background: #05070c;
  color: rgba(255, 255, 255, 0.72);
}

.form-control-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.form-control-dark:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(244, 161, 26, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(244, 161, 26, 0.15);
}

.page-header-dark {
  background: linear-gradient(135deg, #070b10, #101820 55%, #15202b);
  color: #fff;
  padding: 5.5rem 0 3rem;
}

.page-header-dark--photo {
  background-image:
    linear-gradient(120deg, rgba(7, 11, 16, 0.82), rgba(16, 24, 32, 0.72)),
    var(--hv-page-header-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 14rem;
  display: flex;
  align-items: flex-end;
}

.filter-panel {
  border-radius: var(--hv-radius);
  background: #fff;
  box-shadow: var(--hv-shadow);
  padding: 1.25rem;
}

.filter-panel .hv-filter-price {
  border: 1px solid rgba(16, 24, 32, 0.28);
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(7, 11, 16, 0.06);
}

.filter-panel .hv-filter-price:focus {
  border-color: rgba(235, 92, 5, 0.65);
  box-shadow: inset 0 1px 2px rgba(7, 11, 16, 0.04), 0 0 0 0.2rem rgba(235, 92, 5, 0.18);
}

.filter-panel .hv-filter-price::placeholder {
  color: rgba(16, 24, 32, 0.45);
}

.filter-panel .hv-filter-check {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  border: 1px solid rgba(16, 24, 32, 0.2);
  border-radius: 10px;
  padding: 0.45rem 0.55rem 0.45rem 0.5rem;
  margin-bottom: 0.4rem;
  background: rgba(248, 248, 246, 0.9);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.filter-panel .hv-filter-check:has(.form-check-input:checked) {
  border-color: rgba(235, 92, 5, 0.55);
  background: rgba(235, 92, 5, 0.07);
  box-shadow: 0 0 0 1px rgba(235, 92, 5, 0.12);
}

.filter-panel .hv-filter-check .form-check-input {
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.15em;
  flex-shrink: 0;
  border: 1px solid rgba(16, 24, 32, 0.4);
  cursor: pointer;
}

.filter-panel .hv-filter-check .form-check-input:focus {
  border-color: rgba(235, 92, 5, 0.75);
  box-shadow: 0 0 0 0.2rem rgba(235, 92, 5, 0.22);
}

.filter-panel .hv-filter-check .form-check-label {
  cursor: pointer;
  line-height: 1.35;
}

.room-grid .btn-outline-dark {
  border-radius: 999px;
}

.steps {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.step-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.06);
  font-weight: 600;
  font-size: 0.9rem;
}

.step-pill.active {
  background: rgba(235, 92, 5, 0.12);
  color: var(--hv-orange);
  border: 1px solid rgba(235, 92, 5, 0.35);
}

/* SweetAlert2 — align with Vegas dark / glass UI */
.hv-swal-popup {
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45) !important;
  padding: 1.35rem 1.25rem 1.5rem !important;
}

.hv-swal-popup .swal2-html-container {
  text-align: center;
}

.hv-swal-popup .swal2-actions {
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hv-swal-unit-list {
  max-height: 280px;
  overflow-y: auto;
  text-align: left;
}

/* About page */
.hv-about .letter-spacing-wide {
  letter-spacing: 0.14em;
}

.hv-about-panel {
  border-radius: var(--hv-radius);
  background: var(--hv-soft);
  border: 1px solid rgba(16, 24, 32, 0.06);
}

.hv-about-panel--accent {
  background: linear-gradient(145deg, rgba(235, 92, 5, 0.08), rgba(244, 161, 26, 0.06));
  border-color: rgba(235, 92, 5, 0.12);
}

.hv-about-panel-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(235, 92, 5, 0.12);
  color: var(--hv-orange);
  font-size: 1.15rem;
}

.hv-about-panel--accent .hv-about-panel-icon {
  background: rgba(0, 146, 56, 0.12);
  color: var(--hv-green);
}

.hv-about-value {
  border-radius: var(--hv-radius);
  background: #fff;
  box-shadow: var(--hv-shadow);
  height: 100%;
}

.hv-about-value-icon {
  font-size: 1.65rem;
  color: var(--hv-orange);
}

.hv-about-nearby li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  color: #4a5563;
}

.hv-about-nearby li:last-child {
  border-bottom: 0;
}

.hv-about-map-card {
  border-radius: var(--hv-radius);
  background: linear-gradient(135deg, #070b10 0%, #101820 55%, #15202b 100%);
  color: #fff;
}

.hv-about-map-card h3 {
  color: #fff;
}

.hv-about-map-card .text-secondary {
  color: rgba(255, 255, 255, 0.65) !important;
}

.hv-about-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hv-about-stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--hv-gold);
}

.hv-about-cta {
  background: linear-gradient(120deg, #070b10, #101820 50%, #1a2836);
  box-shadow: var(--hv-shadow);
}
