/* ═══════════════════════════════════════════════════════════════
   Hotel public site design system
   Luxury / editorial aesthetic. Deep forest green, bronze gold,
   ivory. Serif display + clean sans. Image-forward with
   generous negative space.

   All class names used by hotel-book.js are preserved:
     .hotel-form-control, .hotel-form-label, .hotel-form-grid,
     .hotel-form-span-2, .hotel-form-actions, .hotel-overnight-field,
     .hotel-hourly-field, .hotel-cta, .hotel-cta-block,
     .hotel-book-results, .hotel-book-summary, .hotel-book-success,
     .hotel-book-room-card, .hotel-book-room-controls,
     .hotel-summary-block, .hotel-summary-row, .hotel-summary-line,
     .hotel-helper-text, .hotel-empty, .hotel-card, .hotel-pill,
     .hotel-pill-row.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── Palette ──────────────────────────────────────────────────── */
  --h-ink:            #12241C;   /* near-black forest */
  --h-forest:         #1F3A2E;   /* primary brand */
  --h-forest-deep:    #0F2118;   /* hover / active */
  --h-forest-soft:    #2D4A3A;
  --h-gold:           #A8823D;   /* bronze-gold, restrained */
  --h-gold-light:     #C9A866;
  --h-gold-pale:      #E8D9B5;
  --h-ivory:          #F5F0E6;   /* primary bg — slightly warmer */
  --h-ivory-2:        #ECE4D3;
  --h-sand:           #D4C4A9;
  --h-stone:          #A89982;
  --h-surface:        #FFFFFF;
  --h-line:           rgba(18, 36, 28, 0.12);
  --h-line-gold:      rgba(168, 130, 61, 0.35);
  --h-shadow:         0 30px 80px -40px rgba(18, 36, 28, 0.35);
  --h-shadow-lift:    0 40px 90px -30px rgba(18, 36, 28, 0.45);

  --h-muted:          #5C6B62;
  --h-muted-2:        #8A998F;

  /* ── Typography ───────────────────────────────────────────────── */
  --h-serif:          'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --h-sans:           'Jost', system-ui, -apple-system, sans-serif;

  /* ── Rhythm ──────────────────────────────────────────────────── */
  --h-radius:         2px;
  --h-radius-lg:      4px;
  --h-content-max:    1320px;
  --h-track-wide:     0.38em;
  --h-track:          0.22em;
}

/* ── Shell ─────────────────────────────────────────────────────── */
.hotel-shell {
  background: var(--h-ivory);
  color: var(--h-ink);
  font-family: var(--h-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.hotel-shell .container { max-width: var(--h-content-max); padding-inline: clamp(1.25rem, 3vw, 2.5rem); }

.hotel-shell a { color: inherit; text-decoration: none; transition: color .25s ease; }
.hotel-shell a:hover { color: var(--h-gold); }

.hotel-shell img { display: block; max-width: 100%; }

/* ── Typography primitives ────────────────────────────────────── */
.hotel-eyebrow {
  font-family: var(--h-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--h-track-wide);
  text-transform: uppercase;
  color: var(--h-gold);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.hotel-eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--h-gold);
  display: inline-block;
}

.hotel-display,
.hotel-title {
  font-family: var(--h-serif);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--h-ink);
  margin: 0;
}
.hotel-display { font-size: clamp(2.75rem, 6vw, 5.25rem); }
.hotel-title   { font-size: clamp(2.25rem, 4.2vw, 3.75rem); }

.hotel-title-sm {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--h-ink);
  margin: 0;
}

.hotel-subtitle {
  color: var(--h-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0;
}
.hotel-lede {
  font-family: var(--h-serif);
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--h-forest-soft);
  max-width: 58ch;
}

/* Ornamental gold rule */
.hotel-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  color: var(--h-gold);
}
.hotel-ornament::before,
.hotel-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--h-gold-light), transparent);
  max-width: 8rem;
}
.hotel-ornament span {
  font-size: 0.85rem;
  letter-spacing: var(--h-track);
}

/* ── Sections ──────────────────────────────────────────────────── */
.hotel-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.hotel-section-tight  { padding-block: clamp(2.5rem, 5vw, 4rem); }
.hotel-section-alt    { background: var(--h-ivory-2); }
.hotel-section-dark   { background: var(--h-forest); color: #E8DFCF; }
.hotel-section-dark .hotel-eyebrow { color: var(--h-gold-light); }
.hotel-section-dark .hotel-eyebrow::before { background: var(--h-gold-light); }
.hotel-section-dark .hotel-title,
.hotel-section-dark .hotel-title-sm,
.hotel-section-dark .hotel-display { color: #F3EBD8; }
.hotel-section-dark .hotel-subtitle,
.hotel-section-dark .hotel-lede { color: rgba(243, 235, 216, 0.78); }

.hotel-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hotel-section-head > div:first-child { max-width: 42rem; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hotel-hero {
  position: relative;
  min-height: clamp(540px, 82vh, 780px);
  overflow: hidden;
  background: var(--h-forest);
  color: #EADFC7;
  isolation: isolate;
}
.hotel-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: hotelHeroDrift 24s ease-in-out infinite alternate;
}
.hotel-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 36, 28, 0.15) 0%, rgba(18, 36, 28, 0.55) 55%, rgba(18, 36, 28, 0.85) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(168, 130, 61, 0.08) 0%, transparent 60%);
  z-index: 1;
}
.hotel-hero-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  max-width: var(--h-content-max);
  margin: 0 auto;
}
.hotel-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: var(--h-track-wide);
  text-transform: uppercase;
  color: var(--h-gold-light);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.hotel-hero-eyebrow::before {
  content: "";
  width: 3rem; height: 1px;
  background: var(--h-gold-light);
}
.hotel-hero-title {
  font-family: var(--h-serif);
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #F6ECD4;
  max-width: 22ch;
  margin: 0 0 1.5rem;
}
.hotel-hero-title em {
  font-style: italic;
  color: var(--h-gold-light);
  font-weight: 300;
}
.hotel-hero-sub {
  font-family: var(--h-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(246, 236, 212, 0.85);
  max-width: 52ch;
  margin-bottom: 2rem;
}

@keyframes hotelHeroDrift {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-1%, -1%, 0); }
}

/* Booking bar — Shangri-La–style horizontal strip that sits
   below the hero and overlaps slightly */
.hotel-booking-bar-wrap {
  position: relative;
  z-index: 5;
  max-width: calc(var(--h-content-max) - 2rem);
  margin: -3.75rem auto 0;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.hotel-booking-bar {
  background: var(--h-surface);
  box-shadow: var(--h-shadow);
  border-top: 3px solid var(--h-gold);
  padding: 1.75rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 0 1.25rem;
  align-items: end;
}
.hotel-booking-bar .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-right: 1px solid var(--h-line);
  padding-right: 1.25rem;
}
.hotel-booking-bar .field:nth-last-child(2) { border-right: none; }
.hotel-booking-bar .field label {
  font-size: 0.68rem;
  letter-spacing: var(--h-track);
  text-transform: uppercase;
  color: var(--h-muted);
  font-weight: 500;
}
.hotel-booking-bar .field input,
.hotel-booking-bar .field select {
  border: 0;
  background: transparent;
  padding: 0.25rem 0;
  font-family: var(--h-serif);
  font-size: 1.15rem;
  color: var(--h-ink);
  width: 100%;
}
.hotel-booking-bar .field input:focus,
.hotel-booking-bar .field select:focus {
  outline: none;
  border-bottom: 1px solid var(--h-gold);
}

@media (max-width: 900px) {
  .hotel-booking-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .hotel-booking-bar .field { border-right: none; padding-right: 0; }
  .hotel-booking-bar-wrap { margin-top: -2rem; }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.hotel-btn,
.hotel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 0.95rem 2rem;
  font-family: var(--h-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: var(--h-track);
  text-transform: uppercase;
  border: 1px solid var(--h-ink);
  background: transparent;
  color: var(--h-ink);
  cursor: pointer;
  border-radius: 0;
  transition: all .28s ease;
  position: relative;
  text-decoration: none;
}
.hotel-btn:hover,
.hotel-cta:hover {
  background: var(--h-ink);
  color: var(--h-ivory);
}
.hotel-btn-primary,
.hotel-cta {
  background: var(--h-forest);
  color: #F6ECD4;
  border-color: var(--h-forest);
}
.hotel-btn-primary:hover,
.hotel-cta:hover {
  background: var(--h-forest-deep);
  border-color: var(--h-forest-deep);
  color: var(--h-gold-light);
}
.hotel-btn-gold {
  background: var(--h-gold);
  border-color: var(--h-gold);
  color: #FFF;
}
.hotel-btn-gold:hover {
  background: #8F6B2A;
  border-color: #8F6B2A;
  color: #FFF;
}
.hotel-btn-ghost {
  border-color: rgba(246, 236, 212, 0.55);
  color: #F6ECD4;
}
.hotel-btn-ghost:hover { background: #F6ECD4; color: var(--h-forest); border-color: #F6ECD4; }
.hotel-cta-block { width: 100%; }

/* Anchor-specific button color rules override the broad hotel-shell link rule. */
.hotel-shell a.hotel-btn,
.hotel-shell a.hotel-cta {
  color: var(--h-ink);
}
.hotel-shell a.hotel-btn:hover,
.hotel-shell a.hotel-cta:hover {
  color: var(--h-ivory);
}
.hotel-shell a.hotel-btn-primary,
.hotel-shell a.hotel-cta {
  color: #F6ECD4;
}
.hotel-shell a.hotel-btn-primary:hover,
.hotel-shell a.hotel-cta:hover {
  color: var(--h-gold-light);
}
.hotel-shell a.hotel-btn-gold {
  color: #FFF;
}
.hotel-shell a.hotel-btn-gold:hover {
  color: #FFF;
}
.hotel-shell a.hotel-btn-ghost {
  color: #F6ECD4;
}
.hotel-shell a.hotel-btn-ghost:hover {
  color: var(--h-forest);
}

.hotel-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 0.78rem;
  letter-spacing: var(--h-track);
  text-transform: uppercase;
  color: var(--h-forest);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--h-gold);
  transition: gap .25s ease, color .25s ease;
}
.hotel-link:hover { gap: 1rem; color: var(--h-gold); }
.hotel-link::after { content: "→"; font-size: 1rem; }

.hotel-social-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.35rem;
  padding: .65rem .95rem;
  border: 1px solid rgba(168, 130, 61, 0.32);
  background: rgba(255, 255, 255, 0.5);
  color: var(--h-forest);
  font-size: .86rem;
  line-height: 1.35;
  letter-spacing: .02em;
  box-shadow: 0 18px 40px -32px rgba(18, 36, 28, 0.4);
}
.hotel-social-link:hover,
.hotel-social-link:focus {
  border-color: rgba(168, 130, 61, 0.58);
  background: #fff;
  color: var(--h-gold);
}
.hotel-social-link .bi {
  color: #1877F2;
  font-size: 1.15rem;
  line-height: 1;
  flex: 0 0 auto;
}
.hotel-social-link:hover .bi,
.hotel-social-link:focus .bi { color: #1877F2; }

/* ── Cards / panels ───────────────────────────────────────────── */
.hotel-card,
.hotel-panel,
.hotel-hero-card {
  background: var(--h-surface);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 2rem;
}
.hotel-card { padding: 1.75rem; }

/* Editorial feature block — image on one side, text on the other */
.hotel-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hotel-feature-reverse { grid-template-columns: 1fr 1.1fr; }
.hotel-feature-reverse > :first-child { order: 2; }
.hotel-feature-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--h-ivory-2);
}
.hotel-feature-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.hotel-feature:hover .hotel-feature-image img { transform: scale(1.04); }
.hotel-feature-image::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(246, 236, 212, 0.35);
  pointer-events: none;
  z-index: 1;
}
.hotel-feature-body { padding-block: 1rem; }
.hotel-feature-body .hotel-lede { margin-block: 1.25rem 1.75rem; }

@media (max-width: 900px) {
  .hotel-feature,
  .hotel-feature-reverse { grid-template-columns: 1fr; }
  .hotel-feature-reverse > :first-child { order: 0; }
  .hotel-feature-image { aspect-ratio: 4 / 3; }
}

/* ── Room grid / cards ────────────────────────────────────────── */
.hotel-room-collection {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
}
.hotel-room-article {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hotel-room-article .hotel-room-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--h-ivory-2);
}
.hotel-room-article .hotel-room-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.hotel-room-article:hover .hotel-room-thumb img { transform: scale(1.05); }
.hotel-room-article .hotel-room-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 36, 28, 0.35) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.hotel-room-article:hover .hotel-room-thumb::after { opacity: 1; }

.hotel-room-label {
  font-size: 0.68rem;
  letter-spacing: var(--h-track-wide);
  text-transform: uppercase;
  color: var(--h-gold);
  font-weight: 500;
}
.hotel-room-article h3 {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.15;
  margin: 0.35rem 0 .5rem;
  color: var(--h-ink);
  letter-spacing: -0.01em;
}
.hotel-room-meta-line {
  font-size: 0.82rem;
  color: var(--h-muted);
  letter-spacing: 0.05em;
  margin-bottom: .75rem;
}
.hotel-room-article p {
  color: var(--h-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.hotel-room-rate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--h-line);
}
.hotel-room-rate-row .rate-from {
  font-size: 0.7rem;
  letter-spacing: var(--h-track);
  text-transform: uppercase;
  color: var(--h-muted);
}
.hotel-room-rate-row .rate-amount {
  font-family: var(--h-serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--h-ink);
  letter-spacing: -0.015em;
}
.hotel-room-rate-row .rate-amount sup {
  font-size: 0.6em;
  color: var(--h-gold);
  margin-right: 2px;
}

/* Pills */
.hotel-pill-row,
.hotel-badges,
.hotel-amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.hotel-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-muted);
  font-weight: 500;
}
.hotel-pill::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--h-gold);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Amenity tiles on landing ─────────────────────────────────── */
.hotel-amenities,
.hotel-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.hotel-amenity {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,245,239,0.96));
  border: 1px solid rgba(36, 62, 49, 0.12);
  border-radius: 22px;
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  text-align: left;
  transition: transform .2s ease, border-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 24px rgba(15, 33, 24, 0.08);
}
.hotel-amenity:hover {
  border-color: rgba(184, 147, 65, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 33, 24, 0.12);
}
.hotel-amenity-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--h-forest), #325541);
  color: var(--h-gold-light);
  font-family: var(--h-serif);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.hotel-amenity-mark i {
  font-size: 1.35rem;
  line-height: 1;
}
.hotel-amenity-body h3 {
  margin: 0 0 .35rem;
  color: var(--h-forest);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hotel-amenity-body p {
  margin: 0;
  color: rgba(39, 45, 52, 0.78);
  line-height: 1.55;
  font-size: 0.92rem;
}

/* ── Gallery ──────────────────────────────────────────────────── */
.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.hotel-gallery-card,
.hotel-gallery .hotel-card {
  padding: 0;
  overflow: hidden;
  background: var(--h-ivory-2);
  border: 0;
  aspect-ratio: 4 / 3;
}
.hotel-gallery-card img,
.hotel-gallery .hotel-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.hotel-gallery-card:hover img,
.hotel-gallery .hotel-card:hover img { transform: scale(1.05); }

/* ── Room detail layout ───────────────────────────────────────── */
.hotel-room-detail-section {
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
}

@media (max-width: 700px) {
  .hotel-room-detail-section {
    padding-top: 2rem;
  }
}

.hotel-room-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .hotel-room-layout { grid-template-columns: 1fr; } }

.hotel-room-hero {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--h-ivory-2);
}
.hotel-room-hero img { width: 100%; height: 100%; object-fit: cover; }

.hotel-panel {
  padding: clamp(2rem, 3vw, 2.5rem);
  position: sticky;
  top: 96px;
}

/* Rate plans */
.hotel-rate-list {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 1rem;
}
.hotel-rate-item {
  background: var(--h-ivory);
  border: 1px solid var(--h-line);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color .25s ease, background .25s ease;
}
.hotel-rate-item:hover { border-color: var(--h-gold); background: var(--h-surface); }
.hotel-rate-item .fw-semibold,
.hotel-rate-item .fw-bold {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--h-ink);
}
.hotel-rate-item .text-end .fw-bold {
  font-size: 1.3rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
.hotel-footer {
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  background: var(--h-forest-deep);
  color: rgba(246, 236, 212, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   Booking wizard (served at /hotel/booking/)
   Preserves every class name hotel-book.js depends on.
   ═══════════════════════════════════════════════════════════════ */
.hotel-booking-shell {
  padding-bottom: 3rem;
  background: var(--h-ivory);
}
.hotel-booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.hotel-booking-layout-single { grid-template-columns: 1.25fr 0.75fr; }
@media (max-width: 900px) {
  .hotel-booking-layout,
  .hotel-booking-layout-single { grid-template-columns: 1fr; }
}

.hotel-booking-title {
  margin: 0 0 1.5rem;
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  color: var(--h-ink);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--h-line);
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}
.hotel-booking-title::before {
  content: attr(data-step);
  font-family: var(--h-sans);
  font-size: 0.75rem;
  letter-spacing: var(--h-track);
  color: var(--h-gold);
  font-weight: 500;
  border: 1px solid var(--h-gold);
  padding: 0.25rem 0.55rem;
  border-radius: 50%;
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-side-card {
  background: var(--h-surface);
  border: 1px solid var(--h-line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  border-radius: var(--h-radius);
}

.hotel-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.hotel-form-span-2 { grid-column: 1 / -1; }
.hotel-form-label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: var(--h-track);
  text-transform: uppercase;
  color: var(--h-muted);
}
.hotel-form-control {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid var(--h-line);
  border-radius: 0;
  background: transparent;
  color: var(--h-ink);
  font-family: var(--h-serif);
  font-size: 1.1rem;
  transition: border-color .25s ease;
}
.hotel-form-control:focus {
  outline: none;
  border-bottom-color: var(--h-gold);
}
.hotel-form-control::placeholder { color: var(--h-muted-2); font-style: italic; }
select.hotel-form-control {
  font-family: var(--h-serif);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--h-gold) 50%), linear-gradient(-45deg, transparent 50%, var(--h-gold) 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 1.75rem;
}
input[type="file"].hotel-form-control { font-family: var(--h-sans); font-size: 0.9rem; padding: 0.5rem 0; }
textarea.hotel-form-control {
  font-family: var(--h-sans);
  font-size: 0.95rem;
  padding: 1rem;
  border: 1px solid var(--h-line);
  min-height: 6rem;
  resize: vertical;
}

.hotel-form-actions {
  display: flex;
  align-items: flex-end;
  grid-column: 1 / -1;
}

.hotel-book-results {
  display: grid;
  gap: 1rem;
  max-height: 28rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.hotel-book-results.hotel-empty,
.hotel-book-summary.hotel-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--h-muted);
  font-family: var(--h-serif);
  font-style: italic;
  font-size: 1.05rem;
  border: 1px dashed var(--h-line);
  background: var(--h-ivory);
  max-height: none;
}

.hotel-book-room-card {
  background: var(--h-ivory);
  border: 1px solid var(--h-line);
  border-left: 3px solid var(--h-gold);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hotel-book-room-card h3,
.hotel-book-room-card h4 {
  font-family: var(--h-serif);
  font-weight: 400;
  color: var(--h-ink);
  margin: 0;
}
.hotel-book-room-controls {
  min-width: 240px;
  display: grid;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--h-line);
}

.hotel-book-summary,
.hotel-book-success {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hotel-summary-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hotel-summary-row,
.hotel-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}
.hotel-summary-row {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--h-line);
  font-size: 0.95rem;
}
.hotel-summary-row strong {
  font-family: var(--h-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--h-muted);
}
.hotel-summary-row span {
  font-family: var(--h-serif);
  font-size: 1.05rem;
  color: var(--h-ink);
  text-align: right;
}
.hotel-summary-line {
  padding: 0.9rem 1rem;
  border: 1px solid var(--h-line);
  background: var(--h-ivory);
  font-size: 0.95rem;
}
.hotel-helper-text {
  color: var(--h-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  font-style: italic;
}

/* ── Utility ──────────────────────────────────────────────────── */
.hotel-center { text-align: center; }
.hotel-mt-0 { margin-top: 0 !important; }
hr.hotel-rule { border: 0; height: 1px; background: var(--h-line-gold); margin: 1rem 0; }

/* Keep Bootstrap's `d-flex gap-2` spacing we relied on in JS */
.hotel-shell .d-flex { display: flex; }
.hotel-shell .gap-2 { gap: .75rem; }
.hotel-shell .flex-wrap { flex-wrap: wrap; }
.hotel-shell .text-end { text-align: right; }
.hotel-shell .text-muted { color: var(--h-muted); }
.hotel-shell .small { font-size: 0.85rem; }
.hotel-shell .fw-bold { font-weight: 500; }
.hotel-shell .fw-semibold { font-weight: 500; }
.hotel-shell .mb-1 { margin-bottom: 0.25rem; }
.hotel-shell .mb-3 { margin-bottom: 1rem; }
.hotel-shell .mt-3 { margin-top: 1rem; }
.hotel-shell .p-2 { padding: 0; }

/* Hide the old restaurant-y "container" look so our hero bleeds full width */
.hotel-full-bleed { max-width: none; padding: 0; }

.hotel-account-panel {
  border: 1px solid var(--h-line);
  background: var(--h-ivory);
  border-radius: calc(var(--h-radius) * 0.75);
  padding: 1.25rem;
}
.hotel-account-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.hotel-account-chip {
  border: 1px solid var(--h-line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--h-muted);
  background: var(--h-surface);
  white-space: nowrap;
}
.hotel-account-chip.is-authenticated {
  border-color: var(--h-gold);
  color: var(--h-ink);
}
.hotel-account-status {
  margin-bottom: 1rem;
  color: var(--h-muted);
  font-size: 0.95rem;
}
.hotel-account-status.is-success {
  color: var(--h-ink);
}
.hotel-account-status.is-error {
  color: #8b1a1a;
}
.hotel-account-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.hotel-account-auth-grid-single {
  grid-template-columns: minmax(0, 1fr);
}
.hotel-account-auth-card {
  border: 1px solid var(--h-line);
  background: var(--h-surface);
  padding: 1rem;
  border-radius: calc(var(--h-radius) * 0.6);
}
.hotel-account-auth-title {
  margin: 0 0 1rem;
  font-family: var(--h-serif);
  font-weight: 400;
  color: var(--h-ink);
}
.hotel-account-authenticated {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--h-line);
  padding-top: 1rem;
}
.hotel-ghost-btn {
  border: 1px solid var(--h-line);
  background: transparent;
  color: var(--h-ink);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  cursor: pointer;
}
.hotel-ghost-btn:hover {
  border-color: var(--h-gold);
}
@media (max-width: 900px) {
  .hotel-account-auth-grid {
    grid-template-columns: 1fr;
  }
  .hotel-account-authenticated,
  .hotel-account-head {
    flex-direction: column;
    align-items: flex-start;
  }
}


.hotel-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.hotel-policy-card {
  border: 1px solid var(--h-line);
  background: var(--h-surface);
  border-radius: calc(var(--h-radius) * 0.75);
  padding: 1.1rem 1rem;
  box-shadow: var(--h-shadow-soft);
}
.hotel-policy-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--h-muted);
  margin-bottom: 0.65rem;
}
.hotel-policy-copy {
  color: var(--h-ink);
  line-height: 1.65;
}
.hotel-summary-block .hotel-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   Shangri-La-style listing UX for /hotel/booking/
   Appended last so these rules override the earlier wizard look.
   ═══════════════════════════════════════════════════════════════ */

:root { --h-nav-offset: 64px; }

.hotel-search-strip {
  position: sticky;
  top: var(--h-nav-offset);
  z-index: 40;
  background: var(--h-surface);
  border-bottom: 1px solid var(--h-line);
  box-shadow: 0 8px 24px -20px rgba(18, 36, 28, 0.25);
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
}
.hotel-search-strip-form {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) minmax(320px, 2fr) minmax(240px, 1.5fr) auto;
  gap: 0 1rem;
  align-items: stretch;
  max-width: var(--h-content-max);
  margin: 0 auto;
}
.strip-field {
  display: flex; align-items: center; gap: .85rem;
  padding: 0.5rem 1rem 0.5rem 0.25rem;
  border-right: 1px solid var(--h-line);
  min-height: 58px;
}
.strip-field:last-of-type { border-right: none; }
.strip-icon {
  color: var(--h-muted);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.strip-value {
  font-family: var(--h-serif);
  font-size: 1.15rem; color: var(--h-ink);
  line-height: 1.15; letter-spacing: -0.005em;
}
.strip-field-dates { gap: 0.85rem; flex-wrap: wrap; }
.strip-date { display: flex; flex-direction: column; gap: 0.15rem; cursor: text; }
.strip-date-label {
  font-size: 0.62rem; letter-spacing: var(--h-track); text-transform: uppercase;
  color: var(--h-muted); font-weight: 500;
}
.strip-date input,
.strip-date select {
  border: 0; border-bottom: 1px solid transparent;
  background: transparent; padding: 0.2rem 0;
  font-family: var(--h-serif); font-size: 1.05rem; color: var(--h-ink);
  min-width: 7.5rem; transition: border-bottom-color .2s ease;
}
.strip-date input:focus,
.strip-date select:focus { outline: none; border-bottom-color: var(--h-gold); }
.strip-duration {
  align-self: flex-end;
  padding: 0.25rem 0.75rem;
  background: var(--h-ivory-2); border-radius: 999px;
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--h-forest); font-weight: 500;
  white-space: nowrap; margin-bottom: 0.15rem;
}
.strip-field-guests { gap: 1.25rem; flex-wrap: wrap; }
.strip-number { display: flex; flex-direction: column; gap: 0.15rem; }
.strip-number > span {
  font-size: 0.62rem; letter-spacing: var(--h-track); text-transform: uppercase;
  color: var(--h-muted); font-weight: 500;
}
.strip-number input {
  border: 0; border-bottom: 1px solid transparent;
  background: transparent; padding: 0.2rem 0;
  font-family: var(--h-serif); font-size: 1.05rem; color: var(--h-ink);
  width: 3.25rem; transition: border-bottom-color .2s ease;
}
.strip-number input:focus { outline: none; border-bottom-color: var(--h-gold); }

.hotel-search-btn {
  background: var(--h-gold); color: #FFF; border: 0; border-radius: 2px;
  padding: 1rem 2.75rem;
  font-family: var(--h-sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: background .2s ease, transform .2s ease;
  white-space: nowrap; align-self: stretch;
}
.hotel-search-btn:hover { background: #B89049; }
.hotel-search-btn:active { transform: translateY(1px); }

@media (max-width: 980px) {
  .hotel-search-strip { position: static; }
  .hotel-search-strip-form { grid-template-columns: 1fr; gap: 0.25rem; }
  .strip-field { border-right: 0; border-bottom: 1px solid var(--h-line); }
  .strip-field:last-of-type { border-bottom: 0; }
  .hotel-search-btn { margin-top: 0.75rem; }
}

/* ── Info ribbon ─────────────────────────────────────────────── */
.hotel-info-banner {
  max-width: var(--h-content-max);
  margin: 1.25rem auto 0;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--h-ivory-2);
  border-left: 3px solid var(--h-gold);
  color: var(--h-forest);
  font-size: 0.92rem; line-height: 1.55;
}
.hotel-info-icon {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: var(--h-forest); color: var(--h-gold-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--h-serif); font-style: italic; font-size: 0.95rem;
}

/* ── Offer tabs ──────────────────────────────────────────────── */
.hotel-offer-tabs {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--h-line);
  background: var(--h-surface);
}
.hotel-offer-tabs[hidden],
.hotel-offer-tabs-empty,
.hotel-offer-tabs-loading {
  display: none !important;
}
.hotel-offer-tabs-single {
  grid-template-columns: minmax(18rem, 42rem);
  justify-content: center;
  border: 0;
  background: transparent;
}
.hotel-offer-tabs-single .hotel-offer-tab {
  border: 1px solid var(--h-line);
}
.hotel-offer-tabs-single .hotel-offer-tab:last-of-type {
  border: 1px solid var(--h-line);
}
.hotel-offer-tabs:has(.hotel-offer-tab[hidden]) {
  grid-template-columns: minmax(18rem, 42rem);
  justify-content: center;
}
.hotel-offer-tab {
  border: 0; background: transparent; cursor: pointer;
  padding: 1.5rem 2rem; text-align: center;
  display: flex; flex-direction: column; gap: 0.35rem;
  position: relative; transition: background .25s ease;
  color: var(--h-ink); font-family: var(--h-sans);
  border-right: 1px solid var(--h-line);
}
.hotel-offer-tab[hidden] {
  display: none !important;
}
.hotel-offer-tab:last-of-type { border-right: 0; }
.hotel-offer-tab::after {
  content: ""; position: absolute; top: -1px; left: 0; right: 0;
  height: 3px; background: transparent; transition: background .25s ease;
}
.hotel-offer-tab.is-active { background: var(--h-ivory); }
.hotel-offer-tab.is-active::after { background: var(--h-gold); }
.hotel-offer-tab:not(.is-active) { color: var(--h-muted); }
.hotel-offer-tab:not(.is-active):hover { background: var(--h-ivory-2); color: var(--h-ink); }
.tab-title {
  font-family: var(--h-serif); font-weight: 400;
  font-size: 1.35rem; letter-spacing: -0.005em;
}
.tab-count {
  font-family: var(--h-sans); font-size: 0.85rem;
  color: var(--h-muted); font-weight: 400;
  margin-left: 0.25rem;
}
.tab-sub {
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--h-muted);
}
.tab-price {
  font-family: var(--h-serif); font-size: 1rem; color: var(--h-forest);
}
.hotel-offer-tabs-hidden-select {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
  padding: 0; margin: -1px; border: 0;
  clip: rect(0 0 0 0);
}
@media (max-width: 700px) {
  .hotel-offer-tabs { grid-template-columns: 1fr; }
  .hotel-offer-tab { border-right: 0; border-bottom: 1px solid var(--h-line); }
  .hotel-offer-tab:last-of-type { border-bottom: 0; }
}

/* ── Filter row ──────────────────────────────────────────────── */
.hotel-filter-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--h-line);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.filter-group { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.filter-label {
  font-size: 0.72rem; letter-spacing: var(--h-track);
  text-transform: uppercase; color: var(--h-muted); font-weight: 500;
}
.filter-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-chip {
  border: 1px solid var(--h-line);
  background: transparent;
  padding: 0.45rem 1.1rem;
  font-family: var(--h-sans); font-size: 0.82rem;
  color: var(--h-ink); cursor: pointer; border-radius: 2px;
  transition: all .2s ease;
}
.filter-chip:hover { border-color: var(--h-gold); color: var(--h-forest); }
.filter-chip.is-active {
  background: var(--h-forest); border-color: var(--h-forest); color: #F6ECD4;
}
.filter-spacer { flex: 1; }

/* ── Results list header (desktop) ───────────────────────────── */
.hotel-result-list-header {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 1.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem; letter-spacing: var(--h-track);
  text-transform: uppercase; color: var(--h-muted); font-weight: 500;
  border-bottom: 1px solid var(--h-line);
}
.col-price { text-align: right; }
@media (max-width: 900px) {
  .hotel-result-list-header { display: none; }
}

/* ── Results container — flat listing ────────────────────────── */
.hotel-booking-shell #hotel-book-results.hotel-book-results {
  display: block; max-height: none; padding: 0;
  overflow: visible; gap: 0;
}
.hotel-booking-shell #hotel-book-results.hotel-book-results.hotel-empty {
  padding: 3rem 1.25rem;
  border: 1px dashed var(--h-line);
  background: var(--h-surface); color: var(--h-muted);
  font-family: var(--h-serif); font-style: italic; font-size: 1.1rem;
  text-align: center; max-height: none;
}

/* ── .hotel-book-room-card — restyled as a horizontal listing row ── */
.hotel-booking-shell .hotel-book-room-card {
  background: var(--h-surface);
  border: 0; border-bottom: 1px solid var(--h-line); border-left: 0;
  padding: 1.5rem 1.25rem;
  display: block; margin: 0;
  transition: background .2s ease;
}
.hotel-booking-shell .hotel-book-room-card:first-of-type { border-top: 1px solid var(--h-line); }
.hotel-booking-shell .hotel-book-room-card:hover { background: var(--h-ivory); }
.hotel-booking-shell .hotel-book-room-card .hotel-card-body { padding: 0; }

.hotel-booking-shell .hotel-book-room-card .hotel-card-actions {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.2fr;
  align-items: stretch; gap: 1.5rem; padding: 0;
}
.hotel-booking-shell .hotel-book-room-card .hotel-card-actions > div:first-child {
  min-width: 0; display: flex; flex-direction: column; gap: 0.5rem;
}
.hotel-booking-shell .hotel-book-room-card .hotel-card-title {
  font-family: var(--h-serif); font-weight: 400;
  font-size: 1.5rem; line-height: 1.2;
  color: var(--h-ink); letter-spacing: -0.005em;
  margin: 0 0 0.25rem;
}
.hotel-booking-shell .hotel-book-room-card .hotel-card-text {
  font-size: 0.92rem; color: var(--h-muted); line-height: 1.55;
  margin: 0 0 0.5rem; max-width: 48ch;
}
.hotel-booking-shell .hotel-book-room-card .hotel-card-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--h-muted); font-weight: 500;
  margin-top: auto;
}
.hotel-booking-shell .hotel-book-room-card .hotel-card-meta span {
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.hotel-booking-shell .hotel-book-room-card .hotel-card-meta span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--h-gold); display: inline-block;
}
.hotel-booking-shell .hotel-book-room-card .hotel-book-room-controls {
  min-width: 0; display: flex; flex-direction: column; gap: 0.5rem;
  padding: 0; border-top: 0; justify-content: center;
}
.hotel-booking-shell .hotel-book-room-card .hotel-book-room-controls .hotel-form-label {
  margin-bottom: 0.1rem; font-size: 0.62rem; letter-spacing: var(--h-track);
}
.hotel-booking-shell .hotel-book-room-card .hotel-book-room-controls .hotel-form-control {
  padding: 0.5rem 0; font-size: 1rem;
}
.hotel-booking-shell .hotel-book-room-card [data-rate-plan] {
  font-family: var(--h-serif); color: var(--h-ink);
}

/* ── Row price column (now also hosts the Quantity picker) ───────── */
.hotel-book-room-price {
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: center;
  padding-left: 1rem;
  border-left: 1px solid var(--h-line);
  text-align: right;
}
.hotel-book-room-price .price-from-label {
  font-size: 0.62rem; letter-spacing: var(--h-track);
  text-transform: uppercase; color: var(--h-muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.hotel-book-room-price .price-amount {
  font-family: var(--h-serif); font-weight: 400;
  font-size: 2rem; line-height: 1;
  color: var(--h-ink); letter-spacing: -0.015em;
}
.hotel-book-room-price .price-unit {
  font-size: 0.68rem; letter-spacing: var(--h-track);
  text-transform: uppercase; color: var(--h-muted);
  margin-top: 0.5rem;
}
.hotel-book-room-price .price-quantity-label {
  display: block;
  font-size: 0.62rem; letter-spacing: var(--h-track);
  text-transform: uppercase; color: var(--h-muted);
  font-weight: 500;
  margin: 1rem 0 0.35rem;
}
.hotel-book-room-price .price-quantity-input {
  font-family: var(--h-serif); font-weight: 400;
  font-size: 2rem; line-height: 1;
  color: var(--h-ink); letter-spacing: -0.015em;
  text-align: right;
  width: 4rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--h-line);
  padding: 0 0 0.15rem;
  outline: none;
  -moz-appearance: textfield;
}
.hotel-book-room-price .price-quantity-input::-webkit-outer-spin-button,
.hotel-book-room-price .price-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.hotel-book-room-price .price-quantity-input:focus {
  border-bottom-color: var(--h-gold);
}

/* ── Filter: hide non-matching cards, keep them in DOM ──────────── */
.hotel-booking-shell .hotel-book-room-card.is-hidden-by-filter { display: none; }

/* ── Tablet / mobile: stack row contents ────────────────────────── */
@media (max-width: 900px) {
  .hotel-booking-shell .hotel-book-room-card .hotel-card-actions {
    grid-template-columns: 1fr; gap: 1rem;
  }
  .hotel-booking-shell .hotel-book-room-card .hotel-book-room-controls {
    border-top: 1px solid var(--h-line); padding-top: 1rem;
  }
  .hotel-book-room-price {
    align-items: flex-start;
    padding-left: 0; border-left: 0;
    border-top: 1px solid var(--h-line);
    padding-top: 1rem; text-align: left;
  }
  .hotel-book-room-price .price-quantity-input {
    text-align: left;
  }
}

/* ── Summary & section-head spacing ─────────────────────────────── */
.hotel-booking-shell .hotel-booking-layout-single { align-items: start; }
.hotel-booking-shell .hotel-section-head { align-items: center; }


/* Booking phone + upload polish */
.hotel-form-phone-help {
  display: flex;
  align-items: flex-end;
}

.hotel-iti,
.hotel-iti.iti {
  width: 100%;
  display: block;
}

.hotel-iti .iti__country-container {
  height: 100%;
}

.hotel-iti .iti__selected-country {
  padding: 0 0.35rem;
  border-right: 1px solid var(--h-line);
  background: rgba(184, 145, 65, 0.06);
}

.hotel-iti input.hotel-form-control,
.iti--separate-dial-code input.hotel-form-control {
  padding-left: 6.25rem !important;
}

.hotel-file-picker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hotel-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hotel-file-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 145, 65, 0.28);
  background: linear-gradient(180deg, #fffdfa 0%, #f5efe2 100%);
  color: var(--h-ink);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hotel-file-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 145, 65, 0.5);
  box-shadow: 0 12px 24px rgba(45, 30, 12, 0.08);
}

.hotel-file-trigger-icon {
  font-size: 1rem;
  line-height: 1;
}

.hotel-file-name {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--h-line);
  background: #fff;
  color: rgba(37, 45, 44, 0.84);
  flex: 1 1 280px;
}

@media (max-width: 768px) {
  .hotel-form-phone-help {
    align-items: stretch;
  }

  .hotel-file-picker {
    align-items: stretch;
  }

  .hotel-file-trigger,
  .hotel-file-name {
    width: 100%;
  }
}

/* ── Public hotel hero logo slot ─────────────────────────────── */
.hotel-landing-hero {
  min-height: clamp(26rem, 38vw, 34rem);
  display: flex;
  align-items: center;
}
.hotel-landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(11rem, 18rem) minmax(0, 1fr) minmax(11rem, 18rem);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: clamp(17rem, 26vw, 24rem);
}
.hotel-landing-hero-grid:not(.has-logo) {
  grid-template-columns: minmax(0, 1fr);
}
.hotel-landing-hero-grid:not(.has-logo) .hotel-landing-hero-copy {
  max-width: 58rem;
  margin: 0 auto 1.5rem;
}
.hotel-hero-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
}
.hotel-hero-logo-slot[hidden] {
  display: none !important;
}
.hotel-hero-logo-slot img {
  width: min(100%, 16rem);
  max-height: 10rem;
  object-fit: contain;
  border-radius: 1.25rem;
}
.hotel-landing-hero-copy {
  max-width: 58rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  grid-column: 2;
}
.hotel-landing-hero-grid:not(.has-logo) .hotel-landing-hero-copy {
  grid-column: 1;
}
@media (max-width: 900px) {
  .hotel-landing-hero-grid,
  .hotel-landing-hero-grid.has-logo {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }
  .hotel-landing-hero-copy {
    grid-column: 1;
  }
  .hotel-hero-logo-slot img {
    width: min(58vw, 13rem);
    max-height: 13rem;
  }
}

.hotel-pill i {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.hotel-room-amenity-pills {
  gap: .45rem;
}

/* ── Reusable hotel logo placement for public hotel pages ───────────── */
.hotel-brand-logo {
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}
.hotel-brand-logo.d-none {
  display: none !important;
}
.hotel-brand-logo-strip {
  width: 3rem;
  height: 3rem;
  border-radius: 0.45rem;
}
.hotel-brand-logo-heading {
  width: clamp(5.5rem, 10vw, 9rem);
  max-height: clamp(5.5rem, 10vw, 9rem);
  border-radius: 0.85rem;
}
.hotel-brand-heading,
.hotel-book-title-row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.25vw, 2rem);
  max-width: min(100%, 58rem);
}
.hotel-room-detail-logo {
  margin: 0 0 1.25rem;
}
@media (max-width: 700px) {
  .hotel-brand-heading,
  .hotel-book-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .hotel-brand-logo-heading {
    width: 5rem;
    max-height: 5rem;
  }
}


/* SVG hotel logos are rendered as CSS masks so page/theme CSS can recolor
   single-color uploaded SVG marks without editing the uploaded file. */
.hotel-brand-logo-mask {
  background-color: var(--hotel-logo-color, var(--h-gold));
  background-image: none !important;
  -webkit-mask: var(--hotel-logo-url) center / contain no-repeat;
  mask: var(--hotel-logo-url) center / contain no-repeat;
}
.hotel-section-dark .hotel-brand-logo-mask,
.hotel-section-dark .hotel-hero-logo-slot {
  --hotel-logo-color: #F3EBD8;
}
.hotel-search-strip,
.hotel-section-head,
.hotel-panel {
  --hotel-logo-color: var(--h-gold);
}
.hotel-brand-heading .hotel-brand-logo-mask,
.hotel-book-title-row .hotel-brand-logo-mask,
.hotel-book-strip-logo.hotel-brand-logo-mask,
.hotel-room-detail-logo.hotel-brand-logo-mask {
  color: var(--hotel-logo-color, var(--h-gold));
}

/* ── Booking-page hotel logo placement ───────────────────────────────
   The booking search strip and the available-rooms heading both pull the
   configured hotel logo from hotel_profile.hero_logo_path at runtime. */
.strip-field-property {
  justify-content: flex-start;
  gap: clamp(.85rem, 1.6vw, 1.5rem);
}
.strip-field-property .strip-value {
  flex: 0 0 auto;
}
.hotel-book-strip-logo {
  width: clamp(4.5rem, 7vw, 6.5rem);
  height: clamp(3.75rem, 6vw, 5.5rem);
  margin-left: clamp(.5rem, 1.5vw, 1.5rem);
  object-fit: contain;
  border-radius: 0;
}
.hotel-book-title-row {
  align-items: center;
  flex-wrap: nowrap;
}
.hotel-book-title-copy {
  flex: 0 1 auto;
  min-width: 0;
}
.hotel-book-heading-logo {
  width: clamp(9rem, 15vw, 14rem);
  height: clamp(5.5rem, 10vw, 9rem);
  max-height: none;
  margin-left: clamp(1rem, 3vw, 3rem);
  object-fit: contain;
  border-radius: 0;
}
@media (max-width: 980px) {
  .hotel-book-strip-logo {
    width: 4.75rem;
    height: 4rem;
    margin-left: auto;
  }
}
@media (max-width: 700px) {
  .hotel-book-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .hotel-book-heading-logo {
    width: 7rem;
    height: 5rem;
    margin-left: 0;
  }
}

/* ── Public hotel logo spacing correction ─────────────────────────
   Keep the configured hotel logo prominent without wasting the top and
   bottom of the hero area. This block intentionally appears last so it
   overrides the earlier broad .hotel-section padding rules. */
.hotel-landing-hero {
  min-height: 0;
  padding-top: calc(64px + clamp(1.75rem, 3vw, 2.75rem));
  padding-bottom: clamp(2.75rem, 5.5vw, 5rem);
}
.hotel-landing-hero-grid {
  min-height: 0;
  align-items: center;
}
.hotel-landing-hero-copy {
  margin-bottom: 0;
}
.hotel-landing-hero-grid:not(.has-logo) .hotel-landing-hero-copy {
  margin-bottom: 0;
}
.hotel-hero-logo-slot img {
  width: min(100%, 15rem);
  max-height: 12rem;
}
.hotel-booking-bar-wrap {
  margin-top: -2.75rem;
}
@media (min-width: 1200px) {
  .hotel-landing-hero {
    padding-top: calc(64px + clamp(1.75rem, 2.5vw, 2.5rem));
    padding-bottom: clamp(2.75rem, 4vw, 4.25rem);
  }
}
@media (max-width: 900px) {
  .hotel-landing-hero {
    padding-top: calc(64px + 1.25rem);
    padding-bottom: 3.25rem;
  }
  .hotel-booking-bar-wrap {
    margin-top: -2rem;
  }
}

/* ── Booking-page configured logo placement ───────────────────────
   The search strip and available-rooms heading both use the dynamic
   logo path from the hotel profile API. */
.strip-field-property {
  min-width: 0;
}
.hotel-book-strip-logo {
  display: block;
  width: clamp(4.75rem, 8vw, 7.25rem);
  height: clamp(3.75rem, 6.5vw, 5.75rem);
  margin-left: clamp(.75rem, 2vw, 2rem);
  object-fit: contain;
  border-radius: 0;
}
.hotel-book-heading-logo {
  display: block;
  width: clamp(8rem, 15vw, 14rem);
  height: clamp(5rem, 9vw, 8.5rem);
  margin-left: clamp(1rem, 4vw, 4rem);
  object-fit: contain;
  border-radius: 0;
}
.hotel-book-strip-logo.d-none,
.hotel-book-heading-logo.d-none {
  display: none !important;
}

/* ── Booking search strip compact desktop layout ─────────────────────
   Keep the booking controls in one uniform row on desktop. The earlier
   strip styles allowed date/guest controls to wrap, which made the row
   tall and stretched the Search button vertically. */
@media (min-width: 981px) {
  .hotel-search-strip {
    padding-block: 0.75rem;
  }

  .hotel-search-strip-form {
    grid-template-columns:
      minmax(170px, 0.75fr)
      minmax(470px, 2.35fr)
      minmax(290px, 1.25fr)
      minmax(128px, 0.55fr);
    gap: 0;
    align-items: center;
  }

  .strip-field {
    min-height: 64px;
    padding: 0.35rem 1rem;
    align-items: center;
  }

  .strip-field-dates,
  .strip-field-guests {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .strip-date,
  .strip-number {
    flex: 0 0 auto;
    min-width: 0;
  }

  .strip-date input,
  .strip-date select {
    min-width: 0;
    width: 8.25rem;
    font-size: 1rem;
  }

  .hotel-hourly-field #arrival-time {
    width: 6rem;
  }

  .hotel-hourly-field #hour-block {
    width: 6.5rem;
  }

  .strip-number input {
    width: 3rem;
    font-size: 1rem;
  }

  .strip-duration {
    align-self: center;
    margin-bottom: 0;
  }

  .strip-field-property {
    justify-content: center;
  }

  .hotel-book-strip-logo {
    width: 4.25rem;
    height: 3.25rem;
    margin-left: 0.5rem;
  }

  .hotel-search-btn {
    align-self: center;
    justify-self: stretch;
    height: 3.5rem;
    min-height: 0;
    padding: 0 1.25rem;
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .hotel-search-strip-form {
    grid-template-columns:
      minmax(130px, 0.6fr)
      minmax(435px, 2.25fr)
      minmax(260px, 1.15fr)
      minmax(116px, 0.5fr);
  }

  .strip-field {
    gap: 0.55rem;
    padding-inline: 0.75rem;
  }

  .strip-field-dates,
  .strip-field-guests {
    gap: 0.5rem;
  }

  .strip-date input,
  .strip-date select {
    width: 7.5rem;
    font-size: 0.95rem;
  }

  .strip-number input {
    width: 2.65rem;
  }

  .hotel-book-strip-logo {
    width: 3.75rem;
    height: 3rem;
    margin-left: 0.25rem;
  }

  .hotel-search-btn {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}


/* Booking flow refinements: quantity stepper, save profile prompt, flag-only phone input, and modal progress lock. */
.hotel-book-room-price .price-quantity-stepper {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 0.05rem;
}

.hotel-book-room-price .price-quantity-btn {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--h-line);
  border-radius: 999px;
  background: var(--h-surface);
  color: var(--h-ink);
  font-family: var(--h-serif);
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.hotel-book-room-price .price-quantity-btn:hover:not(:disabled) {
  border-color: var(--h-gold);
  background: var(--h-ivory);
}

.hotel-book-room-price .price-quantity-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.hotel-book-room-price .price-quantity-btn:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.hotel-book-room-price .price-quantity-input {
  width: 3.25rem;
  text-align: center;
}

.hotel-save-profile-panel {
  border: 1px solid var(--h-line);
  background: var(--h-ivory);
  padding: 1rem;
}

.hotel-save-profile-panel.is-authenticated {
  border-color: rgba(15, 118, 110, .28);
  background: rgba(15, 118, 110, .06);
}

.hotel-save-profile-toggle {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 0;
  cursor: pointer;
}

.hotel-save-profile-toggle input {
  margin-top: .2rem;
  accent-color: var(--h-gold);
}

.hotel-save-profile-toggle strong {
  display: block;
  font-family: var(--h-sans);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--h-ink);
}

.hotel-save-profile-toggle em {
  display: block;
  margin-top: .25rem;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--h-muted);
}

.hotel-save-profile-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.hotel-helper-text.is-error {
  color: #9b1c1c;
}

.hotel-helper-text.is-success {
  color: var(--h-forest);
}

.hotel-iti .iti__selected-dial-code {
  display: none;
}

.hotel-iti input.hotel-form-control,
.iti input.hotel-form-control {
  padding-left: 3.9rem !important;
}

.hotel-book-progress-active {
  overflow: hidden;
}

.hotel-book-progress-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(18, 36, 28, .62);
  backdrop-filter: blur(3px);
}

.hotel-book-progress-card {
  width: min(92vw, 28rem);
  background: var(--h-surface);
  color: var(--h-ink);
  border: 1px solid var(--h-line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  padding: 2rem;
  text-align: center;
}

.hotel-book-progress-card h2 {
  margin: .8rem 0 .6rem;
  font-family: var(--h-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--h-ink);
}

.hotel-book-progress-card p {
  margin: 0;
  color: var(--h-muted);
  line-height: 1.55;
}

.hotel-book-progress-spinner {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  border: 3px solid var(--h-line);
  border-top-color: var(--h-gold);
  animation: hotel-book-progress-spin .8s linear infinite;
}

@keyframes hotel-book-progress-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 700px) {
  .hotel-save-profile-fields {
    grid-template-columns: 1fr;
  }

  .hotel-book-room-price .price-quantity-stepper {
    justify-content: flex-start;
  }
}


/* Room-photo gallery for hotel booking result rows. */
.hotel-booking-shell .hotel-result-list-header {
  grid-template-columns: minmax(210px, 0.85fr) minmax(0, 1.35fr) minmax(220px, 1.1fr) minmax(190px, 0.95fr);
}

.hotel-booking-shell .hotel-book-room-card .hotel-card-actions {
  grid-template-columns: minmax(210px, 0.85fr) minmax(0, 1.35fr) minmax(220px, 1.1fr) minmax(190px, 0.95fr);
  align-items: stretch;
}

.hotel-booking-shell .hotel-book-room-card .hotel-card-actions > .hotel-book-room-details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hotel-booking-shell .hotel-book-room-card .hotel-card-actions > .hotel-book-room-media {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hotel-room-gallery-main,
.hotel-room-gallery-thumb,
.hotel-room-gallery-modal-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.hotel-room-gallery-main {
  position: relative;
  width: 100%;
  min-height: 13rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--h-line);
  background: var(--h-ivory-2);
}

.hotel-room-gallery-picture,
.hotel-room-gallery-picture img,
.hotel-room-gallery-main > img,
.hotel-room-gallery-img {
  display: block;
  width: 100%;
  height: 100%;
}

.hotel-room-gallery-picture img,
.hotel-room-gallery-img,
.hotel-room-gallery-main > img {
  object-fit: cover;
  transition: transform .28s ease;
}

.hotel-room-gallery-main:hover .hotel-room-gallery-img,
.hotel-room-gallery-main:hover img {
  transform: scale(1.035);
}

.hotel-room-gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.75rem;
  padding: 0.8rem;
  background: linear-gradient(to top, rgba(18, 36, 28, .78), rgba(18, 36, 28, 0));
  color: #fff;
  text-align: left;
}

.hotel-room-gallery-overlay span {
  font-size: 0.72rem;
  letter-spacing: var(--h-track);
  text-transform: uppercase;
  font-weight: 600;
}

.hotel-room-gallery-overlay small {
  font-size: 0.72rem;
  opacity: .86;
  white-space: nowrap;
}

.hotel-room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.hotel-room-gallery-thumb {
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  border: 1px solid var(--h-line);
  background: var(--h-ivory-2);
}

.hotel-room-gallery-thumb-picture,
.hotel-room-gallery-thumb-picture img,
.hotel-room-gallery-thumb-img,
.hotel-room-gallery-thumb > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-room-gallery-empty {
  min-height: 13rem;
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--h-line);
  background: var(--h-ivory-2);
  color: var(--h-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotel-room-gallery-open {
  overflow: hidden;
}

.hotel-room-gallery-modal[hidden] {
  display: none !important;
}

.hotel-room-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.hotel-room-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 36, 28, .72);
  backdrop-filter: blur(4px);
}

.hotel-room-gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 72rem);
  max-height: min(92vh, 50rem);
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(18rem, .85fr);
  background: var(--h-surface);
  border: 1px solid var(--h-line);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .38);
  overflow: hidden;
}

.hotel-room-gallery-stage {
  min-height: min(70vh, 42rem);
  background: #101a15;
}

.hotel-room-gallery-modal-picture,
.hotel-room-gallery-modal-picture img,
.hotel-room-gallery-modal-img,
.hotel-room-gallery-stage > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(70vh, 42rem);
  object-fit: cover;
}

.hotel-room-gallery-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  min-width: 0;
  overflow: auto;
}

.hotel-room-gallery-title {
  margin: .5rem 0 .35rem;
  font-family: var(--h-serif);
  font-weight: 400;
  color: var(--h-ink);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hotel-room-gallery-close {
  position: absolute;
  z-index: 3;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(18, 36, 28, .58);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.hotel-room-gallery-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(18, 36, 28, .58);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.hotel-room-gallery-prev { left: 1rem; }
.hotel-room-gallery-next { right: calc(18rem + 2rem); }

.hotel-room-gallery-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.25rem, 1fr));
  gap: 0.45rem;
}

.hotel-room-gallery-modal-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--h-ivory-2);
}

.hotel-room-gallery-modal-thumb.is-active {
  border-color: var(--h-gold);
}

.hotel-room-gallery-modal-thumb-picture,
.hotel-room-gallery-modal-thumb-picture img,
.hotel-room-gallery-modal-thumb-img,
.hotel-room-gallery-modal-thumb > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-room-gallery-select {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 1180px) {
  .hotel-booking-shell .hotel-book-room-card .hotel-card-actions,
  .hotel-booking-shell .hotel-result-list-header {
    grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.2fr) minmax(210px, 1fr) minmax(180px, 0.9fr);
  }
}

@media (max-width: 900px) {
  .hotel-booking-shell .hotel-book-room-card .hotel-card-actions {
    grid-template-columns: 1fr;
  }

  .hotel-room-gallery-main,
  .hotel-room-gallery-empty {
    min-height: 14rem;
  }

  .hotel-room-gallery-dialog {
    width: min(96vw, 42rem);
    max-height: 92vh;
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .hotel-room-gallery-stage,
  .hotel-room-gallery-modal-picture,
  .hotel-room-gallery-modal-picture img,
  .hotel-room-gallery-modal-img,
  .hotel-room-gallery-stage > img {
    min-height: 55vh;
  }

  .hotel-room-gallery-next { right: 1rem; }
  .hotel-room-gallery-panel { padding: 1rem; }
}

@media print {
  .public-header,
  .hotel-footer,
  .hotel-form-actions,
  #hotel-lookup-form {
    display: none !important;
  }

  body.hotel-shell {
    background: #fff !important;
  }

  .hotel-booking-shell,
  .hotel-section,
  .hotel-side-card {
    box-shadow: none !important;
  }
}
/* ── Mobile hotel landing header compaction ──────────────────────
   Keep the configured hotel mark and primary heading on one line on
   phones, while reducing the vertical footprint above the booking bar. */
@media (max-width: 700px) {
  .hotel-landing-hero {
    padding-top: calc(54px + .85rem);
    padding-bottom: 2rem;
  }

  .hotel-landing-hero-grid.has-logo {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .7rem;
    text-align: left;
  }

  .hotel-landing-hero-grid.has-logo .hotel-hero-logo-slot {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: auto;
  }

  .hotel-landing-hero-grid.has-logo .hotel-hero-logo-slot img {
    width: clamp(3.75rem, 17vw, 5rem);
    max-height: clamp(3.75rem, 17vw, 5rem);
    border-radius: .55rem;
  }

  .hotel-landing-hero-grid.has-logo .hotel-landing-hero-copy {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    text-align: left;
    min-width: 0;
  }

  .hotel-landing-hero-grid.has-logo .hotel-eyebrow {
    justify-content: flex-start !important;
    font-size: .56rem;
    letter-spacing: .22em;
    gap: .45rem;
  }

  .hotel-landing-hero-grid.has-logo .hotel-eyebrow::before {
    width: 1.25rem;
  }

  .hotel-landing-hero-grid.has-logo .hotel-title {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
    line-height: .96;
    margin-top: .35rem !important;
  }

  .hotel-landing-hero-grid.has-logo .hotel-subtitle {
    font-size: .82rem;
    line-height: 1.25;
    margin: .45rem 0 0 !important;
    text-align: left !important;
  }
}

/* ── Hotel landing compaction ─────────────────────────────────── */
.hotel-landing-hero {
  padding-top: calc(64px + clamp(1.15rem, 2.1vw, 2rem));
  padding-bottom: clamp(2rem, 3.6vw, 3.5rem);
}
.hotel-landing-hero-grid {
  gap: clamp(1rem, 2.5vw, 2.75rem);
}
.hotel-hero-logo-slot img {
  width: min(100%, 13rem);
  max-height: 10rem;
}
.hotel-booking-bar-wrap {
  margin-top: -2.25rem;
}
.hotel-booking-bar {
  padding: 1rem 1.15rem;
  gap: 0 .9rem;
}
.hotel-booking-bar .field {
  gap: .2rem;
  padding-right: .9rem;
}
.hotel-booking-bar .field input,
.hotel-booking-bar .field select {
  padding: .1rem 0;
  font-size: 1.02rem;
}
.hotel-booking-bar .hotel-btn,
.hotel-booking-bar .hotel-cta {
  min-height: 2.65rem;
}
.hotel-section.hotel-story-section,
.hotel-story-section {
  padding-top: clamp(2.25rem, 4vw, 4rem);
}
@media (min-width: 1200px) {
  .hotel-landing-hero {
    padding-top: calc(64px + clamp(1.25rem, 1.8vw, 2rem));
    padding-bottom: clamp(2rem, 3vw, 3.25rem);
  }
}
@media (max-width: 900px) {
  .hotel-landing-hero {
    padding-top: calc(64px + .9rem);
    padding-bottom: 2.35rem;
  }
  .hotel-booking-bar-wrap {
    margin-top: -1.35rem;
  }
  .hotel-booking-bar {
    padding: .9rem;
    gap: .8rem;
  }
}
@media (max-width: 700px) {
  .hotel-landing-hero {
    padding-top: calc(54px + .65rem);
    padding-bottom: 1.55rem;
  }
  .hotel-booking-bar-wrap {
    margin-top: -.85rem;
  }
}
