/* ==========================================================================
   Calypso Residence — public site
   Nav · Hero · Booking bar · Assurances · Footer
   Template A's luxury mood in Template B's spacing rhythm.
   ========================================================================== */

/* ==========================================================================
   NAVIGATION — pill-shaped, floating, translucent (Template B)
   ========================================================================== */
.site-nav {
  position: fixed;
  top: var(--space-4);
  left: 0; right: 0;
  z-index: var(--z-nav);
  padding-inline: var(--gutter);
  transition: top var(--dur-base) var(--ease-state);
}

.site-nav__bar {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  background: var(--glass-light);
  backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  transition:
    background-color var(--dur-base) var(--ease-state),
    box-shadow var(--dur-base) var(--ease-state),
    border-color var(--dur-base) var(--ease-state);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-nav__bar { background: rgba(255, 255, 255, 0.95); }
}

/* Over the hero: transparent, light ink. */
.site-nav--transparent:not(.is-stuck) .site-nav__bar {
  background: transparent;
  border-color: rgba(245, 240, 232, 0.18);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-nav--transparent:not(.is-stuck) .site-nav__link,
.site-nav--transparent:not(.is-stuck) .site-nav__name { color: var(--text-on-dark); }
.site-nav--transparent:not(.is-stuck) .site-nav__mark {
  border-color: rgba(224, 200, 146, 0.5);
  color: var(--gold-soft);
}
.site-nav--transparent:not(.is-stuck) .site-nav__burger-line { background: var(--text-on-dark); }

/* Solidified on scroll. */
.site-nav.is-stuck .site-nav__bar {
  background: rgba(250, 248, 245, 0.9);
  box-shadow: var(--shadow-card);
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary);
  flex: 0 0 auto;
}
.site-nav__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  transition: color var(--dur-base) var(--ease-state), border-color var(--dur-base) var(--ease-state);
}
.site-nav__name {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-display);
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-state);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
}
.site-nav__link {
  position: relative;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-state);
}
.site-nav__link::after {
  content: '';
  position: absolute;
  left: var(--space-4); right: var(--space-4);
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-quick) var(--ease-entrance);
}
.site-nav__link:hover { color: var(--gold-ink); }
.site-nav__link:hover::after { transform: scaleX(1); }
.site-nav__link.is-current { color: var(--gold-ink); font-weight: var(--weight-semibold); }
.site-nav__link.is-current::after { transform: scaleX(1); }

.site-nav__actions { display: flex; align-items: center; gap: var(--space-2); flex: 0 0 auto; }

/* Burger + full-screen overlay. Pure CSS via the hidden checkbox. */
.site-nav__checkbox { position: absolute; }
.site-nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-nav__burger-line {
  width: 20px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--dur-quick) var(--ease-state), opacity var(--dur-fast);
}
.site-nav__checkbox:focus-visible + .site-nav__burger { box-shadow: var(--focus-ring); }
.site-nav__checkbox:checked + .site-nav__burger .site-nav__burger-line:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.site-nav__checkbox:checked + .site-nav__burger .site-nav__burger-line:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.site-nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-10);
  padding: var(--space-20) var(--gutter) var(--space-10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--dur-base) var(--ease-state),
    transform var(--dur-base) var(--ease-entrance),
    visibility var(--dur-base);
  overflow-y: auto;
}
.site-nav__checkbox:checked ~ .site-nav__overlay {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.site-nav__overlay-links { display: flex; flex-direction: column; gap: var(--space-2); }
.site-nav__overlay-links li {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--dur-slow) var(--ease-entrance),
    transform var(--dur-slow) var(--ease-entrance);
  transition-delay: var(--reveal-delay, 0ms);
}
.site-nav__checkbox:checked ~ .site-nav__overlay .site-nav__overlay-links li {
  opacity: 1;
  transform: none;
}
.site-nav__overlay-links a {
  display: block;
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-display);
  color: var(--text-on-dark);
  text-decoration: none;
}
.site-nav__overlay-links a:hover { color: var(--gold-soft); }
.site-nav__overlay-cta { color: var(--gold-soft) !important; }
.site-nav__overlay-foot { border-top: 1px solid var(--line-on-dark); padding-top: var(--space-6); }

@media (max-width: 1024px) {
  .site-nav__links { display: none; }
  .site-nav__burger { display: flex; }
  .site-nav__cta { display: none; }
}
@media (min-width: 1025px) {
  .site-nav__overlay { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-bottom: clamp(var(--space-20), 16vh, var(--space-32));
}

.hero__slides { position: absolute; inset: 0; will-change: transform; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1600ms var(--ease-state);
}
.hero__slide.is-active { opacity: 1; }

.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Ken Burns: a slow push from 1.0 to 1.08 over the life of the slide. */
.hero__slide.is-active img {
  animation: ken-burns 12s var(--ease-state) forwards;
}
@keyframes ken-burns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.08) translate3d(0, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-active img { animation: none; }
  .hero__slide { transition-duration: 400ms; }
}

/* Nothing uploaded yet — a warm gradient rather than a black hole. */
.hero__slide--placeholder {
  opacity: 1;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(193,151,75,.22), transparent 60%),
    linear-gradient(160deg, var(--c-char-800), var(--c-char-950) 60%);
}

/* Bottom-weighted scrim so the headline always has something to sit on. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,17,15,.88) 0%,
    rgba(20,17,15,.55) 32%,
    rgba(20,17,15,.15) 62%,
    rgba(20,17,15,.35) 100%
  );
}

.hero__content { position: relative; z-index: 2; will-change: transform, opacity; }
.hero__eyebrow { color: var(--gold-soft); }

.hero__headline { max-width: 16ch; margin-bottom: var(--space-5); }

/* Each word sits inside a mask and rises out of it. */
.hero__word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hero__word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 900ms var(--ease-entrance);
}
.hero__headline.is-revealed .hero__word > span { transform: translateY(0); }
.no-js .hero__word > span { transform: none; }

.hero__subhead {
  font-size: var(--text-lg);
  color: rgba(245, 240, 232, 0.82);
  max-width: 46ch;
  opacity: 0;
  animation: fade-in 900ms var(--ease-entrance) 700ms forwards;
}
.no-js .hero__subhead { opacity: 1; animation: none; }

/* Prev / next */
.hero__controls {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(var(--space-20), 16vh, var(--space-32));
  z-index: 3;
  display: flex;
  gap: var(--space-2);
}
.hero__arrow {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(245,240,232,.3);
  border-radius: 50%;
  color: var(--text-on-dark);
  background: rgba(20,17,15,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color var(--dur-fast) var(--ease-state),
              border-color var(--dur-fast) var(--ease-state);
}
.hero__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--text-on-gold); }

/* Slim vertical indicator on the right. */
.hero__indicator {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hero__dot {
  width: 2px; height: 28px;
  border-radius: var(--radius-pill);
  background: rgba(245,240,232,.3);
  transition: background-color var(--dur-base) var(--ease-state), height var(--dur-base) var(--ease-state);
}
.hero__dot.is-active { background: var(--gold); height: 44px; }

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: var(--space-6);
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(245,240,232,.7);
  animation: scroll-cue 2.4s ease-in-out infinite;
}
.hero__scroll-cue:hover { color: var(--gold-soft); }

@media (max-width: 900px) {
  .hero { min-height: 88svh; padding-bottom: var(--space-24); }
  .hero__indicator { display: none; }
  .hero__controls { left: var(--gutter); right: auto; bottom: var(--space-16); }
}

/* ==========================================================================
   BOOKING BAR
   ========================================================================== */
.booking-bar-wrap { position: relative; z-index: var(--z-raised); }

/* Overlaps the hero's bottom edge. */
.booking-bar--floating { margin-top: -68px; }

.booking-bar {
  display: flex;
  align-items: stretch;
  gap: var(--space-2);
  padding: var(--space-3);
  position: relative;
  flex-wrap: wrap;
}

.booking-bar__field {
  flex: 1 1 150px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  position: relative;
  transition: background-color var(--dur-fast) var(--ease-state);
}
.booking-bar__field:hover { background: rgba(255,255,255,.5); }

.booking-bar__label {
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-bar__trigger {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  text-align: left;
  padding: 2px 0;
  border-radius: var(--radius-xs);
  width: 100%;
}
.booking-bar__trigger .icon { color: var(--gold-dark); }
.booking-bar__trigger span.is-empty { color: var(--text-faint); font-weight: var(--weight-regular); }

.booking-bar__select {
  border: 0;
  background: transparent;
  padding: 2px 0;
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  width: 100%;
  appearance: none;
  cursor: pointer;
}

/* The real date inputs. Visible until JS confirms it is running. */
.booking-bar__native {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  padding: 2px 0;
  color: var(--text-primary);
}
.booking-bar__native.is-js-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.js .booking-bar__trigger { display: flex; }
.no-js .booking-bar__trigger { display: none; }

.booking-bar__divider {
  width: 1px;
  align-self: stretch;
  margin-block: var(--space-2);
  background: var(--line);
  flex: 0 0 auto;
}

.booking-bar__submit { flex: 0 0 auto; align-self: center; }

.booking-bar__summary {
  flex-basis: 100%;
  font-size: var(--text-xs);
  color: var(--text-muted);
  padding: var(--space-2) var(--space-4) 0;
  border-top: 1px solid var(--line);
  margin-top: var(--space-2);
}

/* Compact sticky strip once the hero has gone. */
.booking-bar.is-stuck {
  position: fixed;
  top: 84px;
  left: var(--gutter);
  right: var(--gutter);
  max-width: var(--container);
  margin-inline: auto;
  z-index: var(--z-sticky);
  padding: var(--space-2);
  box-shadow: var(--shadow-lift);
  animation: slide-down var(--dur-base) var(--ease-entrance) both;
}
.booking-bar.is-stuck .booking-bar__label { display: none; }
.booking-bar.is-stuck .booking-bar__summary { display: none; }

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .booking-bar--floating { margin-top: -40px; }
  .booking-bar { flex-direction: column; align-items: stretch; }
  .booking-bar__divider { display: none; }
  .booking-bar__field { border-bottom: 1px solid var(--line); border-radius: 0; }
  .booking-bar__field:last-of-type { border-bottom: 0; }
  .booking-bar__submit { width: 100%; margin-top: var(--space-2); }
  .booking-bar.is-stuck { position: static; }
}

/* ---- guests popover ---- */
.guests-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: var(--z-dropdown);
  width: 280px;
  padding: var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  animation: scale-fade-in var(--dur-quick) var(--ease-entrance) both;
}
.guests-popover__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
}
.guests-popover__row + .guests-popover__row { border-top: 1px solid var(--line); }

/* ---- calendar popover ---- */
.calendar-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: var(--z-dropdown);
  width: min(660px, calc(100vw - 2 * var(--gutter)));
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  animation: scale-fade-in var(--dur-quick) var(--ease-entrance) both;
  overflow: hidden;
}

.calendar-popover__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--line);
}
.calendar-popover__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
}
.calendar-popover__nav {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: background-color var(--dur-fast) var(--ease-state);
}
.calendar-popover__nav:hover { background: var(--gold-wash); color: var(--gold-ink); }

.calendar-popover__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  padding: var(--space-5);
}
@media (max-width: 620px) {
  .calendar-popover__months { grid-template-columns: 1fr; }
  .calendar-popover__months .calendar-month:last-child { display: none; }
}

.calendar-month { width: 100%; border-collapse: collapse; }
.calendar-month__caption {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  padding-bottom: var(--space-3);
  text-align: left;
}
.calendar-month th {
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  color: var(--text-faint);
  text-transform: uppercase;
  padding-bottom: var(--space-2);
  background: transparent;
  border: 0;
  position: static;
}
.calendar-month td { padding: 1px; border: 0; }

.calendar-day {
  width: 100%;
  aspect-ratio: 1;
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xs);
  font-size: var(--text-sm);
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  position: relative;
  transition: background-color var(--dur-fast) var(--ease-state), color var(--dur-fast) var(--ease-state);
}
.calendar-day:hover:not(.is-disabled) { background: var(--gold-wash); }

/* Availability tint sits as a dot underneath, so colour is never the only cue —
   the aria-label on every button says how many are left. */
.calendar-day::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: transparent;
}
.calendar-day--plenty::after { background: var(--success); }
.calendar-day--few::after    { background: var(--warning); }
.calendar-day--full::after   { background: var(--danger); }

.calendar-day.is-disabled {
  color: var(--text-faint);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: var(--danger);
}
.calendar-day.is-disabled::after { display: none; }

.calendar-day.is-start,
.calendar-day.is-end {
  background: var(--gold);
  color: var(--text-on-gold);
  font-weight: var(--weight-semibold);
}
.calendar-day.is-start::after,
.calendar-day.is-end::after { background: var(--text-on-gold); }

.calendar-day.is-between { background: var(--gold-wash-strong); border-radius: 0; }

.calendar-popover__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  border-top: 1px solid var(--line);
  background: var(--bg-sunken);
  flex-wrap: wrap;
}
.calendar-legend { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.calendar-legend li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.calendar-legend__dot { width: 7px; height: 7px; border-radius: 50%; }
.calendar-legend__dot--plenty { background: var(--success); }
.calendar-legend__dot--few    { background: var(--warning); }
.calendar-legend__dot--full   { background: var(--danger); }

/* ==========================================================================
   ASSURANCES BAND (§3.1d)
   ========================================================================== */
.assurances-band {
  position: relative;
  background: var(--bg-sand);
  padding-block: var(--space-12);
  overflow: hidden;
}
.assurances-band--dark { background: var(--bg-deep); }

.assurances-band .rule-gold {
  position: absolute;
  left: 0; right: 0;
}
.assurances-band .rule-gold:first-of-type { top: 0; }
.assurances-band .rule-gold:last-of-type  { bottom: 0; }

.assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

/* Slim vertical gold divider rules between the three columns. */
.assurances__item {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-4) var(--space-6);
  position: relative;
  border-radius: var(--radius-md);
  transition: transform var(--dur-base) var(--ease-entrance);
}
.assurances__item + .assurances__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.45;
}
.assurances__item:hover { transform: translateY(var(--lift-item)); }

.assurances__ring {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--line), 0 6px 18px rgba(26, 22, 20, 0.06);
  transform: scale(0.85);
  transition:
    transform var(--dur-slow) var(--ease-entrance),
    background-color var(--dur-base) var(--ease-state),
    box-shadow var(--dur-base) var(--ease-state);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed .assurances__ring,
.assurances__item.is-revealed .assurances__ring { transform: scale(1); }
.no-js .assurances__ring { transform: scale(1); }

.assurances-band--dark .assurances__ring {
  background: var(--bg-deep-alt);
  box-shadow: 0 0 0 1px var(--line-on-dark);
}

.assurances__icon {
  width: 30px; height: 30px;
  stroke-width: 1.5;
  color: var(--gold-dark);
  transition: color var(--dur-base) var(--ease-state);
}
.assurances-band--dark .assurances__icon { color: var(--gold-soft); }

/* Hover: soft gold fill, icon brightens, one restrained delight each. */
.assurances__item:hover .assurances__ring {
  background: var(--gold-wash);
  box-shadow: 0 0 0 1px var(--gold), 0 10px 26px rgba(193, 151, 75, 0.22);
}
.assurances__item:hover .assurances__icon { color: var(--gold); }

.assurances__item:hover .assurances__icon--power {
  animation: power-glow 900ms var(--ease-state) 1;
}
@keyframes power-glow {
  0%, 100% { filter: none; }
  45%      { filter: drop-shadow(0 0 6px rgba(193, 151, 75, 0.9)); }
}

.assurances__item:hover .assurances__icon--wifi {
  animation: wifi-out 900ms var(--ease-entrance) 1;
}
@keyframes wifi-out {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.09); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .assurances__item:hover .assurances__icon--power,
  .assurances__item:hover .assurances__icon--wifi { animation: none; }
  .assurances__ring { transform: scale(1); }
}

.assurances__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-snug);
  margin: 0 0 var(--space-1);
}
.assurances__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  text-wrap: pretty;
}

/* Tablet: three columns, tighter. */
@media (max-width: 1024px) {
  .assurances__item { flex-direction: column; text-align: center; gap: var(--space-3); padding: var(--space-4) var(--space-3); }
  .assurances__ring { width: 56px; height: 56px; }
  .assurances__icon { width: 26px; height: 26px; }
  .assurances__title { font-size: var(--text-md); }
}

/* Mobile: horizontal snap-scroll, never a cramped three-across squeeze. */
@media (max-width: 720px) {
  .assurances {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78%);
    gap: var(--space-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: var(--space-2);
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
  }
  .assurances::-webkit-scrollbar { display: none; }
  .assurances__item {
    scroll-snap-align: center;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    flex-direction: row;
    text-align: left;
    gap: var(--space-4);
    padding: var(--space-5);
  }
  .assurances__item + .assurances__item::before { display: none; }
  .assurances-band--dark .assurances__item { background: var(--bg-deep-alt); }
}

/* ---- COMPACT variant ---- */
.assurances--compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-4);
  padding: var(--space-3) 0;
}
.assurances__compact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  white-space: nowrap;
}
.assurances__compact-item .icon { color: var(--gold-dark); }
.assurances--compact.on-dark .assurances__compact-item { color: var(--text-on-dark-muted); }
.assurances--compact.on-dark .icon { color: var(--gold-soft); }

/* A hairline dot separator, so the row reads as one statement. */
.assurances__compact-item + .assurances__compact-item::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
  margin-right: var(--space-2);
}

/* ==========================================================================
   WELCOME — two offset images with a parallax drift
   ========================================================================== */
.welcome__images { position: relative; min-height: 420px; }

.welcome__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.welcome__image img { width: 100%; height: 100%; object-fit: cover; }

.welcome__image--back { width: 74%; aspect-ratio: 4 / 5; }
.welcome__image--front {
  position: absolute;
  right: 0;
  bottom: -6%;
  width: 56%;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--bg-base);
  will-change: transform;
}

.welcome__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.welcome__stats li { display: flex; flex-direction: column; gap: 2px; }
.welcome__stats strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--gold-ink);
  line-height: 1;
}
.welcome__stats span { font-size: var(--text-sm); color: var(--text-muted); }

@media (max-width: 900px) {
  .welcome__images { min-height: 340px; }
}

/* ==========================================================================
   QUICK ACTIONS
   ========================================================================== */
.quick-actions__row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}
.chip--action { padding: var(--space-3) var(--space-5); min-height: 46px; }

/* ==========================================================================
   ROOM CARDS
   ========================================================================== */
.amenity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-3);
}
.amenity-strip li {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.amenity-strip .icon { color: var(--gold-dark); }
.on-dark .amenity-strip .icon { color: var(--gold-soft); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gold-ink);
}
.link-arrow .icon { transition: transform var(--dur-fast) var(--ease-state); }
.card--interactive:hover .link-arrow .icon { transform: translateX(3px); }

/* ==========================================================================
   CAROUSEL
   ========================================================================== */
.carousel { position: relative; }

.carousel__track {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--space-4);
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scroll-behavior: smooth;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * {
  flex: 0 0 clamp(240px, 26vw, 300px);
  scroll-snap-align: start;
}
@media (prefers-reduced-motion: reduce) {
  .carousel__track { scroll-behavior: auto; }
}

.carousel__arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--text-primary);
  box-shadow: var(--shadow-lift);
  transition: background-color var(--dur-fast) var(--ease-state), color var(--dur-fast) var(--ease-state);
}
.carousel__arrow:hover { background: var(--gold); color: var(--text-on-gold); }
.carousel__arrow--prev { left: calc(var(--gutter) * -0.5); }
.carousel__arrow--next { right: calc(var(--gutter) * -0.5); }
.carousel__arrow[disabled] { opacity: .3; pointer-events: none; }

@media (max-width: 900px) { .carousel__arrow { display: none; } }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-pill);
  background: var(--line-strong);
  transition: width var(--dur-base) var(--ease-state), background-color var(--dur-base) var(--ease-state);
}
.carousel__dot.is-active { width: 26px; background: var(--gold); }
.carousel__dots--light .carousel__dot { background: rgba(245,240,232,.28); }
.carousel__dots--light .carousel__dot.is-active { background: var(--gold-soft); }

/* ==========================================================================
   FACILITIES
   ========================================================================== */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-8) var(--space-6);
}
.facility { display: flex; gap: var(--space-4); align-items: flex-start; }
.facility__icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--line);
  color: var(--gold-dark);
}
.facility__icon .icon { width: 22px; height: 22px; }
.facility__name { font-size: var(--text-base); font-weight: var(--weight-semibold); }
.facility__note { font-size: var(--text-sm); color: var(--text-muted); margin-top: 2px; }

/* ==========================================================================
   DINING
   ========================================================================== */
/* The bar and the terrace.
   ---------------------------------------------------------------------------
   Every photograph of these rooms was taken portrait, on a phone. The old
   layout put two of them in 4:3 landscape slots, which crops a standing shot
   through the middle and throws away most of the room — the reason this
   section looked wrong rather than merely plain.

   A triptych of portraits instead: same orientation as the photographs, so
   nothing is cut off to fit a shape it was never in. The first image is
   allowed slightly more width because it is the bar, which is the thing worth
   looking at. */
.dining__collage {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}

.dining__image {
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  background: var(--bg-sunken);
}

.dining__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* A slow, small drift on hover. Enough to feel alive, not enough to
     distract from reading the menu beside it. */
  transition: transform 900ms var(--ease-entrance);
}

.dining__image:hover img { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  .dining__image img { transition: none; }
  .dining__image:hover img { transform: none; }
}

/* On a phone the three sit side by side too narrow to read, so the bar keeps
   full width and the two terrace shots pair up beneath it. */
@media (max-width: 720px) {
  .dining__collage { grid-template-columns: 1fr 1fr; }
  .dining__image--1 { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
}

.menu-highlights { display: grid; gap: var(--space-3); }
.menu-highlight {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.menu-highlight h3 { font-size: var(--text-base); font-weight: var(--weight-semibold); }
.menu-highlight p { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }

/* "Jollof Rice + Chicken" — shows the guest where the figure comes from. */
.menu-highlight__parts { font-style: italic; color: var(--text-faint) !important; }

.menu-highlight__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex: 0 0 auto;
  text-align: right;
}
.menu-highlight__price small {
  font-size: var(--text-2xs);
  color: var(--text-faint);
  white-space: nowrap;
}
.menu-highlight__price .money {
  font-weight: var(--weight-semibold);
  color: var(--gold-ink);
  font-size: var(--text-md);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3);
  grid-auto-rows: 180px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-md); }
.gallery-item:nth-child(4n + 1) { grid-row: span 2; }
.gallery-item__button { width: 100%; height: 100%; display: block; cursor: zoom-in; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-entrance);
}
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 640px) {
  .gallery-grid { grid-auto-rows: 140px; }
  .gallery-item:nth-child(4n + 1) { grid-row: span 1; }
}

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; }
.lightbox::backdrop { background: rgba(20,17,15,.94); }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox__close, .lightbox__nav {
  position: fixed;
  color: var(--text-on-dark);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.lightbox__close { top: var(--space-5); right: var(--space-5); }
.lightbox__nav--prev { left: var(--space-5); top: 50%; }
.lightbox__nav--next { right: var(--space-5); top: 50%; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--text-on-gold); }

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.location__info { padding: clamp(var(--space-6), 4vw, var(--space-12)); }
.location__map { min-height: 380px; background: var(--bg-sunken); }
.location__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.location__distances { display: grid; gap: var(--space-3); }
.location__distances li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}
.location__distances .icon { color: var(--gold-dark); }
.location__distances strong { margin-left: auto; color: var(--gold-ink); }

@media (max-width: 900px) {
  .location__panel { grid-template-columns: 1fr; }
  .location__map { min-height: 280px; order: -1; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-carousel { position: relative; max-width: 720px; margin-inline: auto; min-height: 260px; }
.testimonial {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur-slow) var(--ease-state), transform var(--dur-slow) var(--ease-entrance);
  pointer-events: none;
}
.testimonial.is-active { opacity: 1; transform: none; pointer-events: auto; }
.testimonial .stars { justify-content: center; color: var(--gold-soft); }
.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  margin-top: var(--space-5);
  text-wrap: balance;
}
.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.testimonial__author cite {
  display: block;
  font-style: normal;
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
}
.testimonial__author span { font-size: var(--text-xs); color: var(--text-on-dark-muted); }
.testimonial__author > div { text-align: left; }

/* ==========================================================================
   SERVICE CARDS + NEWSLETTER
   ========================================================================== */
.service-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-wash);
  color: var(--gold-ink);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
}

.contact-card {
  padding: var(--space-6);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.contact-card--dark {
  background: var(--bg-deep);
  border-color: var(--bg-deep);
  color: var(--text-on-dark);
}

.contact-list { display: grid; gap: var(--space-4); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
}
.contact-list .icon { color: var(--gold-dark); flex: 0 0 auto; margin-top: 2px; }
.contact-list a { color: var(--text-primary); text-decoration: none; font-weight: var(--weight-medium); }
.contact-list a:hover { color: var(--gold-ink); }

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.gallery-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.menu-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 860px) {
  .menu-layout { grid-template-columns: minmax(0, 1fr); }
  .menu-nav { display: none; }
}

.menu-nav ul { display: grid; gap: var(--space-1); }
.menu-nav a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: background-color var(--dur-fast) var(--ease-state),
              color var(--dur-fast) var(--ease-state);
}
.menu-nav a:hover { background: var(--gold-wash); color: var(--gold-ink); }

.menu-section + .menu-section { margin-top: var(--space-12); }

.menu-items { display: grid; gap: var(--space-4); }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.menu-item__body { flex: 0 1 auto; }
.menu-item h3 { font-size: var(--text-base); font-weight: var(--weight-semibold); }
.menu-item p { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.menu-item__parts { font-style: italic; color: var(--text-faint) !important; }

/* The dotted leader line between the dish and the price, as on a real menu. */
.menu-item__dots {
  flex: 1 1 auto;
  min-width: var(--space-6);
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-3px);
}

.menu-item__price {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  text-align: right;
}
.menu-item__price small {
  font-size: var(--text-2xs);
  color: var(--text-faint);
  white-space: nowrap;
}
.menu-item__price .money {
  font-weight: var(--weight-semibold);
  color: var(--gold-ink);
}

@media (max-width: 520px) {
  .menu-item { flex-wrap: wrap; }
  .menu-item__dots { display: none; }
  .menu-item__price { margin-left: auto; }
}

/* ==========================================================================
   PAGE HEADER (rooms listing, about, etc.)
   ========================================================================== */
.page-header {
  padding-top: calc(var(--space-32) + var(--space-4));
  padding-bottom: var(--space-10);
  background: var(--bg-sand);
}
.page-header .container > * + * { margin-top: var(--space-2); }

.breadcrumb ol { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.breadcrumb li { display: flex; gap: var(--space-2); font-size: var(--text-xs); color: var(--text-muted); }
.breadcrumb li + li::before { content: '/'; color: var(--text-faint); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-ink); }

/* ==========================================================================
   ROOMS LISTING
   ========================================================================== */
.rooms-layout {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 900px) { .rooms-layout { grid-template-columns: 1fr; } }

.rooms-filters {
  position: sticky;
  top: calc(var(--space-24));
  padding: var(--space-6);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
@media (max-width: 900px) { .rooms-filters { position: static; } }

.rooms-filters__group { padding-bottom: var(--space-5); margin-bottom: var(--space-5); border-bottom: 1px solid var(--line); }
.rooms-filters__group:last-of-type { border-bottom: 0; }
.rooms-filters__heading {
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.range { width: 100%; accent-color: var(--gold); }

.rooms-results__count { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-5); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: var(--space-6);
}

/* ==========================================================================
   ROOM DETAIL
   ========================================================================== */
.room-hero { padding-top: calc(var(--space-32) + var(--space-2)); }

.room-gallery { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.room-gallery__main { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 16 / 9; }
.room-gallery__zoom { width: 100%; height: 100%; cursor: zoom-in; }
.room-gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.room-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-3);
}
.room-gallery__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  display: block;
}
.room-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease-entrance);
}
.room-gallery__thumb:hover img { transform: scale(1.06); }
.room-gallery__thumb--more {
  display: grid;
  place-items: center;
  background: var(--bg-deep);
  color: var(--text-on-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 1000px) { .room-detail-layout { grid-template-columns: 1fr; } }

.room-facts { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.room-facts li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.room-facts .icon { color: var(--gold-dark); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--space-3);
}
.amenity-grid li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  padding: var(--space-3);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.amenity-grid .icon { color: var(--gold-dark); }

.policy-list { display: grid; gap: var(--space-4); }
.policy-list > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.policy-list dt { font-weight: var(--weight-semibold); font-size: var(--text-sm); }
.policy-list dd { font-size: var(--text-sm); color: var(--text-muted); }
@media (max-width: 560px) {
  .policy-list > div { grid-template-columns: 1fr; gap: var(--space-1); }
}

/* ---- the sticky booking card ---- */
.booking-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}
.booking-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-5);
}
.booking-card__price strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--gold-ink);
}
.booking-card__price span { font-size: var(--text-sm); color: var(--text-muted); }

.booking-card__dates { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.booking-card__dates .field + .field { margin-top: 0; }

.booking-card__breakdown {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  display: grid;
  gap: var(--space-3);
}
.booking-card__breakdown > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
}
.booking-card__breakdown dt { color: var(--text-muted); }
.booking-card__total {
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  font-size: var(--text-md) !important;
  font-weight: var(--weight-semibold);
}
.booking-card__total dt { color: var(--text-primary) !important; }
.booking-card__total dd { color: var(--gold-ink); font-size: var(--text-lg); }

.booking-card__stock {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--success-wash);
  color: var(--success-ink);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
}
.booking-card__stock.is-low { background: var(--warning-wash); color: var(--warning-ink); }

.booking-card .assurances--compact {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  justify-content: center;
}
.booking-card .btn { margin-top: var(--space-4); }
.booking-card__note {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-align: center;
}

/* Availability strip on the detail page */
.availability-calendar {
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--space-12) var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--line-on-dark);
}
@media (max-width: 1024px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .site-footer__top { grid-template-columns: 1fr; gap: var(--space-8); } }

.site-footer__mark {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
}
.site-footer__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-display);
}
.site-footer__tagline {
  color: var(--text-on-dark-muted);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
  margin-bottom: var(--space-5);
}

.site-footer__heading {
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--space-4);
}
.site-footer__col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.site-footer__col a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--dur-fast) var(--ease-state);
}
.site-footer__col a:hover { color: var(--gold-soft); }

.site-footer__contact p { font-size: var(--text-sm); color: var(--text-on-dark-muted); margin-bottom: var(--space-2); }
.site-footer__hours { font-size: var(--text-sm); color: var(--text-on-dark-muted); margin-top: var(--space-5); }
.site-footer__hours strong { color: var(--text-on-dark); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
  flex-wrap: wrap;
}
.site-footer__small { font-size: var(--text-xs); color: var(--text-on-dark-muted); }

/* The discreet staff-portal link. Visible enough to be reachable by keyboard,
   quiet enough that a guest never wonders what it is. */
.site-footer__staff {
  color: var(--text-on-dark-muted);
  opacity: 0.35;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease-state);
}
.site-footer__staff:hover,
.site-footer__staff:focus-visible { opacity: 1; color: var(--gold-soft); }

/* ===========================================================================
   MAP PANEL  —  click to load
   ---------------------------------------------------------------------------
   The placeholder carries the address and the two links that work without any
   JavaScript. Once loaded it is replaced wholesale by the iframe, so the
   container has to look right in both states: a bordered card while it waits,
   and an edge-to-edge frame once the map is in.
   =========================================================================== */

.map-panel {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-sunken);
  border: 1px solid var(--border-subtle);
}

.map-panel__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  min-height: 340px;
  padding: var(--space-8) var(--space-5);
  text-align: center;

  /* A faint grid, so it reads as "a map goes here" rather than a broken box. */
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center;
}

.map-panel__placeholder .icon {
  color: var(--gold-ink);
  opacity: 0.8;
}

.map-panel__address {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text-strong);
  max-width: 32ch;
  margin: 0;
}

.map-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.map-panel__note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0;
}

.map-panel.is-loaded { min-height: 420px; }
.map-panel iframe { display: block; width: 100%; height: 420px; border: 0; }

@media (max-width: 640px) {
  .map-panel,
  .map-panel__placeholder { min-height: 280px; }
  .map-panel.is-loaded,
  .map-panel iframe { height: 320px; min-height: 320px; }
  .map-panel__actions { flex-direction: column; align-self: stretch; }
}

/* ===========================================================================
   LANDMARKS  —  "you know the place beside…"
   ---------------------------------------------------------------------------
   More useful than a map to anybody already in town, so it is plain text and
   costs nothing to render.
   =========================================================================== */

.landmark-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.landmark {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}

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

.landmark .icon {
  color: var(--gold-ink);
  align-self: center;
}

.landmark__name {
  color: var(--text-strong);
  font-size: var(--text-sm);
}

.landmark__distance {
  font-size: var(--text-xs);
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===========================================================================
   DINING GALLERY
   ---------------------------------------------------------------------------
   One lead photograph with two smaller ones beside it. Collapses to a single
   column on a phone, where a three-across grid would make every picture too
   small to show a room.
   =========================================================================== */

.dining-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}

.dining-shot {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-sunken);
}

.dining-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.dining-shot--lead { grid-row: span 2; }
.dining-shot--lead img { min-height: 460px; }

.dining-shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-6) var(--space-4) var(--space-3);
  font-size: var(--text-sm);
  color: #fff;
  background: linear-gradient(to top, rgba(20, 17, 15, 0.78), transparent);
}

@media (max-width: 860px) {
  .dining-gallery { grid-template-columns: 1fr; }
  .dining-shot--lead { grid-row: auto; }
  .dining-shot--lead img { min-height: 260px; }
}

/* ===========================================================================
   GRID CHILDREN  —  the min-width:0 that stops a column blowing out
   ---------------------------------------------------------------------------
   These sit inside grids that are already defined (.rooms-layout,
   .room-detail-layout, .contact-layout). A grid item defaults to
   min-width:auto, which means one wide thing inside it — a long reference, a
   table, an un-broken URL — pushes the whole column wider than its track and
   the page starts scrolling sideways.

   Setting min-width:0 is the fix, and it is the reason these classes exist as
   hooks at all.
   =========================================================================== */

.rooms-results,
.room-detail-main,
.room-detail-aside,
.contact-details,
.menu-sections { min-width: 0; }

.rooms-results   { display: grid; gap: var(--space-6); align-content: start; }
.room-detail-main { display: block; }
.room-detail-aside,
.contact-details  { display: grid; gap: var(--space-5); align-content: start; }
.menu-sections    { display: grid; gap: var(--space-10); }

/* Section hooks. They carry no layout of their own — .band and .card already
   do that — but they are the handles the page is themed with, so they are
   declared here rather than left looking like typos. */
.welcome,
.quick-actions,
.rooms-band,
.dining,
.location,
.testimonials { position: relative; }

.room-type-card,
.service-card { min-width: 0; }

.site-footer__brand { display: grid; gap: var(--space-3); }
.assurances__copy   { min-width: 0; }
