:root {
  --ink: #17120f;
  --white: #fffaf4;
  --muted-white: rgba(255, 250, 244, 0.82);
  --soft-white: rgba(255, 250, 244, 0.68);
  --copper: #cf9e4f;
  --copper-light: #cf9e4f;
  --gold: #cf9e4f;
  --shadow: rgba(0, 0, 0, 0.56);
  --header-height: 4.5rem;
  --container: min(100% - 2rem, 73.75rem);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #0b0908;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #0b0908;
  color: var(--white);
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  min-height: 100svh;
  background: #0b0908;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: var(--header-height) 1rem 5.9rem;
  background: #18120f;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: var(--slide-desktop);
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
  transition: opacity 760ms ease, transform 1600ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.68), rgba(7, 6, 5, 0.16) 43%, rgba(7, 6, 5, 0.64)),
    linear-gradient(180deg, rgba(7, 6, 5, 0.36), rgba(7, 6, 5, 0.42) 50%, rgba(7, 6, 5, 0.72));
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  width: var(--container);
  min-height: var(--header-height);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-block: 0.9rem;
  opacity: 0;
  animation: headerReveal 800ms ease forwards;
}

.brand {
  display: inline-grid;
  place-items: center;
  min-height: 3.1rem;
  justify-self: start;
}

.brand__logo-frame {
  position: relative;
  width: 4.1rem;
  height: 4.3rem;
  display: block;
  overflow: hidden;
}

.brand__logo {
  position: absolute;
  top: -1.13rem;
  left: 50%;
  width: 6.4rem;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: brightness(1.12) contrast(1.04) drop-shadow(0 0.25rem 0.8rem rgba(0, 0, 0, 0.36));
}

.primary-nav {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 0.75rem 1.8rem rgba(0, 0, 0, 0.32), 0 0 0 0.24rem rgba(37, 211, 102, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-float svg {
  width: 1.42rem;
  height: 1.42rem;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1fbd5a;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.36), 0 0 0 0.45rem rgba(37, 211, 102, 0.18);
  transform: translateY(-0.16rem) scale(1.03);
  outline: 0;
}

.menu-toggle {
  justify-self: end;
  position: relative;
  width: 2.9rem;
  height: 2.9rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.34);
  background: rgba(11, 9, 8, 0.18);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(0.35rem);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 1.16rem;
  height: 1px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 220ms ease, opacity 180ms ease, width 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -0.36rem);
}

.menu-toggle span:nth-child(2) {
  width: 0.9rem;
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 0.36rem);
}

.site-header.is-open .menu-toggle {
  border-color: rgba(212, 173, 139, 0.74);
  background: rgba(11, 9, 8, 0.58);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 250, 244, 0.58);
  background: rgba(255, 250, 244, 0.08);
  outline: 0;
}

.mobile-menu {
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 0;
  width: min(18.5rem, calc(100vw - 2rem));
  padding: 0.75rem;
  display: grid;
  gap: 0.25rem;
  background: rgba(18, 13, 10, 0.92);
  border: 1px solid rgba(212, 173, 139, 0.32);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(1rem);
  opacity: 0;
  transform: translateY(-0.4rem);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.site-header.is-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  color: rgba(255, 250, 244, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 250, 244, 0.07);
  outline: 0;
}

.mobile-menu a.mobile-menu__active {
  color: var(--white);
  background: rgba(189, 146, 112, 0.18);
}

.mobile-menu__reservation {
  margin-top: 0.25rem;
  justify-content: center;
  background: var(--copper);
  color: #17110f !important;
}

.hero__content {
  width: min(100%, 42rem);
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-items: center;
  transform: translateY(-0.4rem);
}

.hero__stars {
  display: flex;
  gap: 0.22rem;
  color: var(--gold);
  font-size: 0.86rem;
  line-height: 1;
  margin-bottom: 0.95rem;
  opacity: 0;
  animation: contentRise 700ms 260ms ease forwards;
}

.hero__stars span {
  filter: drop-shadow(0 0 0.4rem rgba(210, 167, 61, 0.25));
  animation: starGlimmer 2200ms ease-in-out infinite;
}

.hero__stars span:nth-child(2) {
  animation-delay: 110ms;
}

.hero__stars span:nth-child(3) {
  animation-delay: 220ms;
}

.hero__stars span:nth-child(4) {
  animation-delay: 330ms;
}

.hero__stars span:nth-child(5) {
  animation-delay: 440ms;
}

.hero h1 {
  margin: 0;
  max-width: 13ch;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 12vw, 4.15rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 0.75rem 2.2rem rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: contentRise 760ms 360ms ease forwards;
}

.hero p {
  margin: 0.98rem 0 0;
  max-width: 36rem;
  color: var(--muted-white);
  font-size: 0.96rem;
  line-height: 1.65;
  opacity: 0;
  animation: contentRise 760ms 470ms ease forwards;
}

.explore-link {
  min-height: 2.75rem;
  margin-top: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  animation: contentRise 760ms 580ms ease forwards;
}

.explore-link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.explore-link:hover svg {
  transform: translateX(0.18rem);
}

.booking-panel {
  width: min(100%, 22.5rem);
  margin-top: 0.82rem;
  display: grid;
  overflow: hidden;
  background: rgba(12, 9, 8, 0.62);
  border: 1px solid rgba(212, 173, 139, 0.64);
  border-radius: 0.9rem;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(1rem);
  opacity: 0;
  animation: contentRise 760ms 680ms ease forwards;
}

.mobile-booking-head,
.mobile-booking-trigger,
.mobile-booking-backdrop {
  display: none;
}

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid rgba(212, 173, 139, 0.36);
}

.booking-tab {
  position: relative;
  min-width: 0;
  min-height: 4.25rem;
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 0.72rem 0.45rem 0.78rem;
  border: 0;
  border-right: 1px solid rgba(212, 173, 139, 0.24);
  border-bottom: 1px solid rgba(212, 173, 139, 0.18);
  background: rgba(255, 250, 244, 0.035);
  color: rgba(255, 250, 244, 0.78);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.booking-tab:nth-child(2n) {
  border-right: 0;
}

.booking-tab:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.booking-tab::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 0.12rem;
  background: var(--copper-light);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.booking-tab svg {
  width: 1.42rem;
  height: 1.42rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--copper-light);
}

.booking-tab span {
  min-width: 0;
  color: inherit;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.booking-tab:hover,
.booking-tab:focus-visible,
.booking-tab.is-active {
  background: rgba(255, 250, 244, 0.07);
  color: var(--white);
  outline: 0;
}

.booking-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.booking-fields {
  display: grid;
  gap: 0.55rem;
  padding: 0.72rem 0.72rem 0;
}

.booking-field {
  min-width: 0;
  min-height: 4.22rem;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 0.68rem 0.74rem;
  text-align: left;
  background: rgba(6, 5, 4, 0.34);
  border: 1px solid rgba(212, 173, 139, 0.32);
  border-radius: 0.34rem;
}

.booking-field--date {
  cursor: pointer;
}

.booking-field > span,
.booking-field__label {
  color: rgba(255, 250, 244, 0.56);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-width: 0;
  min-height: 1.35rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  outline: 0;
  color-scheme: dark;
}

.booking-field em {
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}

.booking-field select {
  appearance: none;
  padding-right: 1.35rem;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 0.72rem) 56%,
    calc(100% - 0.48rem) 56%;
  background-size: 0.28rem 0.28rem, 0.28rem 0.28rem;
  background-repeat: no-repeat;
}

.booking-field select option {
  background: #1e1713;
  color: #fffaf4;
  font-weight: 700;
}

.booking-field select option:checked {
  background: var(--copper);
  color: #17110f;
}

.booking-field input:focus-visible,
.booking-field select:focus-visible {
  outline: 1px solid rgba(212, 173, 139, 0.84);
  outline-offset: 0.22rem;
}

.booking-field:focus-within {
  border-color: rgba(212, 173, 139, 0.62);
  background: rgba(255, 250, 244, 0.1);
}

.booking-field input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1) sepia(0.35) saturate(1.8) hue-rotate(342deg) brightness(1.05);
  opacity: 0.72;
}

.booking-submit {
  min-height: 3.15rem;
  margin: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 0;
  border-radius: 0.3rem;
  background: var(--gold);
  color: #17110f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.booking-submit svg {
  width: 1.02rem;
  height: 1.02rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  background: #b9893d;
  transform: translateY(-1px);
  outline: 0;
}

.booking-submit:hover svg,
.booking-submit:focus-visible svg {
  transform: translateX(0.18rem);
}

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

.hero-arrow {
  position: absolute;
  z-index: 12;
  top: 50%;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 244, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.hero-arrow svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-arrow--left {
  left: 0.5rem;
}

.hero-arrow--right {
  right: 0.5rem;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: var(--white);
  background: rgba(255, 250, 244, 0.08);
  outline: 0;
}

.hero-arrow--left:hover {
  transform: translate(-0.18rem, -50%);
}

.hero-arrow--right:hover {
  transform: translate(0.18rem, -50%);
}

.scroll-cue {
  display: none;
}

.hero-meta {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 14;
  width: var(--container);
  transform: translateX(-50%);
  display: grid;
  gap: 0.7rem;
  padding-bottom: 1rem;
}

.hero-meta__right {
  display: flex;
  align-items: stretch;
}

.hero-meta__right {
  justify-content: center;
  gap: 0.95rem;
  color: var(--white);
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  color: rgba(255, 250, 244, 0.78);
}

.stat strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
}

.gold-star {
  color: var(--gold);
}

.benefits-section,
.welcome-section {
  background: #fff;
  color: #1e1713;
}

.benefits-section {
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
}

.benefits-grid {
  width: min(100% - 2rem, 26rem);
  margin-inline: auto;
  padding: 1.2rem 0 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.benefit-card {
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: 5rem;
  padding: 0.68rem;
  border: 1px solid rgba(189, 146, 112, 0.18);
  background: #fbfaf8;
  text-align: left;
}

.benefit-card svg {
  width: 1.28rem;
  height: 1.28rem;
  margin-bottom: 0.38rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 0.14rem rgba(207, 158, 79, 0.22));
}

.benefit-card h2 {
  margin: 0;
  max-width: 9.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.14;
  color: #211915;
}

.benefit-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0.34rem 0 0;
  max-width: 10rem;
  overflow: hidden;
  color: rgba(30, 23, 19, 0.62);
  font-size: 0.62rem;
  line-height: 1.35;
}

.welcome-section {
  padding: 2.45rem 0 1.85rem;
}

.welcome-grid {
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.welcome-images {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0.78rem;
  align-items: center;
}

.welcome-image-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #eee7df;
  isolation: isolate;
}

.welcome-image-slot::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 250, 244, 0.42) 48%, transparent 74%);
  transform: translateX(-115%);
}

.welcome-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1);
  clip-path: inset(0);
  transition:
    opacity 460ms ease,
    filter 520ms ease,
    clip-path 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.welcome-image-slot--left {
  aspect-ratio: 214 / 283;
}

.welcome-image-slot--right {
  aspect-ratio: 223 / 298;
}

.welcome-images.is-changing .welcome-image-slot::after {
  animation: welcomeGallerySweep 760ms ease forwards;
}

.welcome-images.is-changing .welcome-image {
  opacity: 0;
  filter: saturate(0.78) contrast(0.95) blur(1.5px);
  clip-path: inset(8% 0);
}

.welcome-images.is-changing .welcome-image-slot--left .welcome-image {
  transform: scale(1.055) translateY(0.8rem);
}

.welcome-images.is-changing .welcome-image-slot--right .welcome-image {
  transform: scale(1.055) translateY(-0.8rem);
}

.welcome-copy {
  max-width: 32rem;
}

.section-eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.welcome-copy h2 {
  margin: 0;
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 8vw, 3.05rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.welcome-copy p {
  margin: 1.1rem 0 0;
  padding-right: 4.25rem;
  color: rgba(30, 23, 19, 0.66);
  font-size: 0.84rem;
  line-height: 1.75;
}

.read-more-button {
  min-height: 2.78rem;
  margin-top: 1.32rem;
  padding: 0 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--copper);
  color: #17110f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.read-more-button svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.read-more-button:hover,
.read-more-button:focus-visible {
  background: #b9893d;
  transform: translateY(-1px);
  outline: 0;
}

.review-row {
  width: min(100% - 2rem, 24rem);
  margin: 1.7rem auto 0;
  padding: 0.55rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(189, 146, 112, 0.22);
  border-bottom: 1px solid rgba(189, 146, 112, 0.22);
}

.review-badge {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.46rem;
  min-width: 0;
  padding: 0.35rem 0.3rem 0.25rem;
  text-align: center;
}

.review-badge + .review-badge {
  border-left: 1px solid rgba(189, 146, 112, 0.16);
}

.review-logo {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  background: #f4f2ef;
  color: #273b78;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.review-logo--agoda {
  color: #5b5650;
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
}

.review-logo--trip {
  color: #221f1c;
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
}

.review-badge strong {
  display: block;
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

.review-badge strong span {
  color: var(--gold);
}

.review-badge em {
  display: block;
  margin-top: 0.18rem;
  color: #40a458;
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
}

.review-badge p {
  margin: 0;
  color: rgba(30, 23, 19, 0.7);
  font-size: 0.62rem;
  line-height: 1.28;
}

.review-volume,
.review-source {
  display: block;
}

.review-source {
  color: rgba(30, 23, 19, 0.82);
  font-weight: 700;
}

.review-label {
  display: none;
}

.rooms-section {
  position: relative;
  padding: 2.45rem 0 2.65rem;
  background: #f2f0eb;
  color: #1e1713;
}

.section-heading {
  width: min(100% - 2rem, 42rem);
  margin-inline: auto;
  text-align: center;
}

.section-heading .section-eyebrow {
  margin-bottom: 0.48rem;
}

.section-heading h2 {
  margin: 0;
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 2.7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.room-stage {
  position: relative;
  width: min(100% - 2rem, 30rem);
  margin: 1.65rem auto 0;
  display: grid;
}

.room-showcase {
  order: 2;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1.2rem 3rem rgba(50, 38, 30, 0.08);
}

.room-copy {
  order: 2;
  padding: 1.25rem 1.1rem 1.15rem;
}

.room-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.14rem;
  color: rgba(30, 23, 19, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  line-height: 1;
}

.room-price strong {
  color: #17110f;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.36rem;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  line-height: 1;
}

.room-price span {
  margin-left: 0;
  color: rgba(30, 23, 19, 0.62);
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-copy h3 {
  margin: 0.72rem 0 0;
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
}

.room-copy > p:not(.room-price) {
  margin: 0.72rem 0 0;
  max-width: 28rem;
  color: rgba(30, 23, 19, 0.66);
  font-size: 0.72rem;
  line-height: 1.55;
}

.room-features {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem 0.7rem;
}

.room-features span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #211915;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.room-features svg {
  width: 0.88rem;
  height: 0.88rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #bf9574;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.book-now-button,
.view-room-button {
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.95rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.book-now-button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
}

.view-room-button {
  border: 1px solid rgba(30, 23, 19, 0.42);
  background: #fff;
  color: #17110f;
}

.book-now-button svg,
.view-room-button svg {
  width: 0.88rem;
  height: 0.88rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-now-button:hover,
.book-now-button:focus-visible,
.view-room-button:hover,
.view-room-button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.book-now-button:hover,
.book-now-button:focus-visible {
  border-color: #b9893d;
  background: #b9893d;
}

.view-room-button:hover,
.view-room-button:focus-visible {
  border-color: var(--copper);
}

.room-media {
  order: 1;
  margin: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: #e8e1d8;
}

.room-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: opacity 260ms ease, transform 420ms ease;
}

.room-media.is-changing img {
  opacity: 0.58;
  transform: scale(1.025);
}

.room-controls {
  order: 1;
  margin-bottom: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.room-arrow {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 146, 112, 0.34);
  border-radius: 999px;
  background: #fff;
  color: #1e1713;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.room-arrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-arrow:hover,
.room-arrow:focus-visible {
  background: #f8f4ef;
  transform: translateY(-1px);
  outline: 0;
}

.room-counter {
  min-width: 0;
  color: rgba(30, 23, 19, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.room-live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.amenities-section {
  padding: 2.65rem 0 3rem;
  background: #fff;
  color: #1e1713;
}

.amenities-grid {
  width: min(100% - 2rem, 30rem);
  margin: 1.75rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 0.82rem;
}

.amenity-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.56rem;
  align-items: start;
}

.amenity-item svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 0.16rem rgba(207, 158, 79, 0.28));
}

.amenity-item h3 {
  margin: 0;
  color: #211915;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.15;
}

.amenity-item p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0.34rem 0 0;
  overflow: hidden;
  color: rgba(30, 23, 19, 0.62);
  font-size: 0.64rem;
  line-height: 1.45;
}

.bar-experience-section,
.restaurant-section {
  background: #16110f;
  color: var(--white);
}

.bar-experience-section::after,
.restaurant-section::after,
.events-space-section::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.8;
  opacity: 0.035;
}

.bar-experience-section::after {
  content: "BAR";
  right: -1.5rem;
  bottom: 1rem;
  color: #fff;
}

.bar-experience-section,
.events-space-section {
  position: relative;
  overflow: hidden;
}

.restaurant-section {
  position: relative;
  overflow: hidden;
}

.restaurant-section::after {
  content: "DINING";
  left: -1rem;
  bottom: -0.35rem;
  color: #fff;
}

.events-space-section::after {
  content: "EVENTS";
  right: -2rem;
  top: 1.3rem;
  color: #1e1713;
}

.bar-experience-grid,
.restaurant-shell,
.events-space-grid,
.location-grid,
.footer-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 30rem);
  margin-inline: auto;
}

.bar-experience-section {
  padding: 3.2rem 0;
}

.bar-experience-grid,
.events-space-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.bar-experience-grid {
  grid-template-areas:
    "copy"
    "stage"
    "features";
}

.bar-copy {
  grid-area: copy;
}

.bar-copy h2,
.restaurant-heading h2,
.events-space-copy h2,
.location-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 2.85rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.bar-copy p,
.restaurant-heading p,
.events-space-copy p,
.location-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 250, 244, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}

.bar-menu-button {
  min-height: 2.9rem;
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--copper);
  color: #17110f;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0.85rem 1.8rem rgba(11, 8, 7, 0.22);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.bar-menu-button svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.bar-menu-button:not(:disabled):hover,
.bar-menu-button:not(:disabled):focus-visible {
  border-color: #b9893d;
  background: #b9893d;
  transform: translateY(-1px);
  outline: 0;
}

.bar-menu-button:not(:disabled):hover svg,
.bar-menu-button:not(:disabled):focus-visible svg {
  transform: translateX(0.16rem);
}

.bar-menu-button:disabled {
  border-color: rgba(255, 250, 244, 0.22);
  background: rgba(255, 250, 244, 0.08);
  color: rgba(255, 250, 244, 0.46);
  box-shadow: none;
  cursor: not-allowed;
}

.bar-stage,
.restaurant-showcase,
.events-space-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bar-stage {
  grid-area: stage;
  min-height: 25rem;
  border: 1px solid rgba(255, 250, 244, 0.12);
  background:
    radial-gradient(circle at 80% 18%, rgba(198, 146, 106, 0.28), transparent 13rem),
    #211713;
}

.bar-stage::before,
.events-space-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 32%, rgba(14, 10, 8, 0.18), rgba(14, 10, 8, 0.78));
}

.bar-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(198, 146, 106, 0.28), rgba(255, 250, 244, 0.2), transparent),
    linear-gradient(90deg, rgba(18, 13, 11, 0.92), rgba(18, 13, 11, 0.28), rgba(18, 13, 11, 0.92));
  opacity: 0;
  transform: translateX(-110%);
}

.bar-image,
.restaurant-showcase,
.events-space-image {
  margin: 0;
  overflow: hidden;
}

.bar-image {
  position: absolute;
  inset: 0;
  background: #2b221d;
}

.bar-image img,
.restaurant-showcase img,
.events-space-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 360ms ease, transform 700ms ease, object-position 700ms ease;
}

.bar-image img {
  object-position: 72% center;
}

.bar-stage.is-changing img,
.restaurant-showcase.is-changing img,
.events-space-stage.is-changing img {
  opacity: 0.28;
  transform: scale(1.07);
}

.bar-stage.is-changing img {
  opacity: 1;
  filter: blur(1.5px) saturate(0.9);
  transform: scale(1.08) translateX(1rem);
}

.bar-stage.is-changing::after {
  animation: barCurtainSweep 620ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

.bar-stage.is-changing .bar-stage__card {
  opacity: 0;
  transform: translateY(0.9rem);
}

.bar-stage__card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 244, 0.16);
  background: rgba(18, 13, 11, 0.72);
  backdrop-filter: blur(12px);
  transition: opacity 260ms ease, transform 360ms ease;
}

.bar-stage__card span,
.restaurant-showcase figcaption span,
.event-plan-card > span {
  display: block;
  color: var(--copper-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bar-stage__card h3,
.restaurant-showcase figcaption strong,
.event-plan-card h3,
.events-space-stats strong {
  margin: 0.35rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.bar-stage__card h3,
.event-plan-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.08;
}

.bar-stage__card p,
.event-plan-card p {
  margin: 0.55rem 0 0;
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.78rem;
  line-height: 1.6;
}

.bar-stage__count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.bar-stage__hint {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bar-feature-list {
  grid-area: features;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(14rem, 1fr);
  gap: 0.72rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.bar-feature-list::-webkit-scrollbar {
  display: none;
}

.bar-feature-button,
.restaurant-course,
.event-format-button {
  width: 100%;
  border: 0;
  border-radius: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bar-feature-button {
  min-height: 5.35rem;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.6rem 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 250, 244, 0.12);
  background: rgba(255, 250, 244, 0.035);
  color: var(--white);
  scroll-snap-align: start;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.bar-feature-button span {
  color: var(--copper-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.bar-feature-button strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.bar-feature-button em {
  grid-column: 2;
  color: rgba(255, 250, 244, 0.64);
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1.45;
}

.bar-feature-button:hover,
.bar-feature-button.is-active {
  transform: translateY(-0.08rem);
  border-color: rgba(198, 146, 106, 0.66);
  background: rgba(198, 146, 106, 0.13);
}

.location-section {
  background: #fff;
  color: #1e1713;
}

.restaurant-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(207, 158, 79, 0.12), transparent 24rem),
    #16110f;
  color: var(--white);
  padding: 3.2rem 0;
}

.restaurant-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.restaurant-heading {
  text-align: center;
}

.restaurant-heading p {
  color: rgba(255, 250, 244, 0.7);
}

.restaurant-showcase {
  min-height: 22rem;
  border: 1px solid rgba(255, 250, 244, 0.12);
  background: #211713;
  box-shadow: 0 1.8rem 3.5rem rgba(7, 5, 4, 0.28);
}

.restaurant-showcase img {
  position: absolute;
  inset: 0;
  object-position: 52% center;
}

.restaurant-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(20, 13, 9, 0.72));
}

.restaurant-showcase figcaption {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 244, 0.14);
  background: rgba(18, 13, 11, 0.8);
  box-shadow: 0 1.2rem 2.2rem rgba(7, 5, 4, 0.24);
  backdrop-filter: blur(12px);
}

.restaurant-showcase figcaption strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.1;
}

.restaurant-showcase figcaption em {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 250, 244, 0.7);
  font-size: 0.73rem;
  font-style: normal;
  line-height: 1.5;
}

.restaurant-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.restaurant-course {
  min-height: 5.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 244, 0.12);
  background: rgba(255, 250, 244, 0.045);
  color: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.restaurant-course span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--copper);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.restaurant-course strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.restaurant-course em {
  display: block;
  margin: 0.45rem 0 0;
  color: rgba(255, 250, 244, 0.66);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.62;
}

.restaurant-course:hover,
.restaurant-course.is-active {
  transform: translateY(-0.08rem);
  border-color: rgba(207, 158, 79, 0.72);
  background: rgba(207, 158, 79, 0.12);
  box-shadow: 0 1.2rem 2.2rem rgba(7, 5, 4, 0.22);
}

.events-space-section {
  background: #f2f0eb;
  color: #1e1713;
  padding: 3.2rem 0;
}

.events-space-copy p {
  color: rgba(30, 23, 19, 0.68);
}

.events-format-list {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.event-format-button {
  min-height: 4.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(30, 23, 19, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: #1e1713;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.event-format-button span {
  color: rgba(30, 23, 19, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-format-button strong {
  color: #a97828;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-format-button:hover,
.event-format-button.is-active {
  transform: translateX(0.12rem);
  border-color: rgba(207, 158, 79, 0.72);
  background: rgba(207, 158, 79, 0.14);
}

.events-space-stage {
  min-height: 34rem;
  background: #241912;
}

.events-space-stage::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 244, 0.12);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 250, 244, 0.12) 50%, transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(255, 250, 244, 0.1) 50%, transparent calc(50% + 1px));
  opacity: 0.42;
}

.events-space-image {
  position: absolute;
  inset: 0;
  background: #2b221d;
}

.events-space-image img {
  object-position: 50% center;
}

.event-plan-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 244, 0.15);
  background: rgba(18, 13, 11, 0.76);
  backdrop-filter: blur(12px);
}

.events-space-stats {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.46rem;
  border-top: 1px solid rgba(255, 250, 244, 0.16);
  padding-top: 0.82rem;
}

.events-space-stats span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.52rem 0.62rem;
  border: 1px solid rgba(255, 250, 244, 0.1);
  background: rgba(255, 250, 244, 0.055);
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.events-space-stats strong {
  margin: 0;
  display: block;
  color: var(--white);
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.12em;
}

.events-space-stats em {
  flex: 0 0 auto;
  color: rgba(212, 173, 139, 0.86);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.location-section {
  position: relative;
  min-height: 50rem;
  overflow: hidden;
  padding: 0;
  background: #17110f;
  color: var(--white);
  isolation: isolate;
}

.location-map-canvas {
  position: relative;
  min-height: 50rem;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.location-map-canvas::before,
.location-map-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.location-map-canvas::before {
  background:
    linear-gradient(180deg, rgba(16, 12, 10, 0.05), rgba(16, 12, 10, 0.1) 34%, rgba(16, 12, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(16, 12, 10, 0.78), rgba(16, 12, 10, 0.2) 70%, rgba(16, 12, 10, 0.08));
}

.location-map-canvas::after {
  box-shadow: inset 0 0 7rem rgba(9, 6, 5, 0.42);
}

.location-map-canvas iframe {
  position: absolute;
  top: -50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 136%;
  height: 150%;
  display: block;
  border: 0;
  filter: saturate(0.48) sepia(0.12) contrast(1.05) brightness(0.78);
  pointer-events: none;
  transition: filter 320ms ease;
}

.location-map-canvas.is-map-active iframe {
  filter: saturate(0.82) sepia(0.04) contrast(1.02) brightness(0.9);
  pointer-events: auto;
}

.map-control-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 250, 244, 0.22);
  background: rgba(18, 13, 11, 0.8);
  color: var(--white);
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.map-control-toggle:hover,
.map-control-toggle:focus-visible,
.map-control-toggle[aria-pressed="true"] {
  border-color: rgba(207, 158, 79, 0.76);
  background: rgba(18, 13, 11, 0.94);
  transform: translateY(-1px);
  outline: 0;
}

.map-control-toggle svg,
.location-directions svg,
.location-quick-actions svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-control-toggle svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 1.35;
}

.location-overlay {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, 64rem);
  margin-inline: auto;
  padding: 15rem 0 8.25rem;
  pointer-events: none;
}

.location-card {
  width: min(100%, 29rem);
  padding: 1.45rem;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-left: 2px solid var(--gold);
  background: rgba(18, 13, 11, 0.88);
  color: var(--white);
  box-shadow: 0 2rem 5rem rgba(8, 5, 4, 0.32);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.location-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 9vw, 3.65rem);
  font-weight: 400;
  line-height: 0.98;
}

.location-card p {
  margin: 0.9rem 0 0;
  color: rgba(255, 250, 244, 0.7);
  font-size: 0.8rem;
  line-height: 1.6;
}

.location-directions {
  min-height: 3.6rem;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  grid-template-areas:
    "icon label"
    "icon note";
  column-gap: 0.7rem;
  align-items: center;
  padding: 0.72rem 0.9rem;
  background: var(--gold);
  color: #17110f;
  transition: background 180ms ease, transform 180ms ease;
}

.location-directions:hover,
.location-directions:focus-visible {
  background: #b9893d;
  transform: translateY(-1px);
  outline: 0;
}

.location-directions svg {
  grid-area: icon;
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 1.6;
}

.location-directions span {
  grid-area: label;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-directions em {
  grid-area: note;
  font-size: 0.62rem;
  font-style: normal;
  opacity: 0.72;
}

.location-quick-actions {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.location-quick-actions a {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 250, 244, 0.16);
  background: rgba(255, 250, 244, 0.055);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.location-quick-actions a:hover,
.location-quick-actions a:focus-visible {
  border-color: rgba(207, 158, 79, 0.68);
  background: rgba(207, 158, 79, 0.12);
  transform: translateY(-1px);
  outline: 0;
}

.location-quick-actions svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  stroke-width: 1.5;
}

.location-email {
  display: inline-block;
  margin-top: 0.9rem;
  color: rgba(255, 250, 244, 0.64);
  font-size: 0.66rem;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(207, 158, 79, 0.48);
  text-underline-offset: 0.22rem;
}

.location-email:hover,
.location-email:focus-visible {
  color: var(--white);
  outline: 0;
}

.location-landmarks {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(11rem, 1fr));
  grid-template-rows: auto auto;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.55rem;
  border: 1px solid rgba(255, 250, 244, 0.14);
  background: rgba(18, 13, 11, 0.82);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.location-landmarks > .location-landmarks__label {
  grid-column: 1 / -1;
  padding: 0.15rem 0.65rem 0;
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-landmarks::-webkit-scrollbar {
  display: none;
}

.location-landmarks span {
  min-height: 3.45rem;
  display: grid;
  grid-template-columns: 1.7rem 1fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-left: 1px solid rgba(207, 158, 79, 0.42);
  color: var(--white);
}

.location-landmarks em {
  color: var(--gold);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.location-landmarks strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 400;
}

.location-landmarks small {
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 1.25rem;
  background:
    radial-gradient(circle at 16% 0%, rgba(198, 146, 106, 0.16), transparent 22rem),
    linear-gradient(135deg, #0d0908 0%, #17100d 58%, #0b0807 100%);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 146, 106, 0.5), transparent);
}

.footer-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.65rem;
}

.footer-brand {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 250, 244, 0.12);
}

.footer-brand img {
  width: 5.4rem;
  height: 6.2rem;
  object-fit: contain;
  filter: drop-shadow(0 0.6rem 1.2rem rgba(198, 146, 106, 0.18));
}

.footer-eyebrow,
.footer-link-group h3 {
  display: block;
  color: var(--copper-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-brand h2 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand p {
  max-width: 18rem;
  margin: 0.55rem 0 0;
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-brand .footer-brand__unit {
  max-width: none;
  margin-top: 0.38rem;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.4;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer-link-group {
  display: grid;
  gap: 0.15rem;
}

.footer-link-group h3 {
  margin: 0 0 0.35rem;
}

.footer-link-group a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.74rem;
  line-height: 1.45;
}

.footer-link-group a,
.footer-contact a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-link-group a {
  color: rgba(255, 250, 244, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-link-disabled {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  color: rgba(255, 250, 244, 0.34);
  cursor: not-allowed;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-link-group a:hover,
.footer-contact a:hover {
  color: var(--white);
  transform: translateX(0.18rem);
}

.footer-contact {
  display: grid;
  gap: 0.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 250, 244, 0.12);
  font-style: normal;
}

.footer-contact a {
  min-height: 2.35rem;
}

.footer-contact p {
  max-width: 16rem;
  margin: 0.55rem 0 0;
  color: rgba(255, 250, 244, 0.55);
}

.footer-bottom {
  width: min(100% - 2rem, 30rem);
  margin: 1.9rem auto 0;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 250, 244, 0.12);
  display: grid;
  gap: 1rem;
  color: rgba(255, 250, 244, 0.48);
  font-size: 0.68rem;
  line-height: 1.45;
}

.footer-copyright {
  white-space: nowrap;
}

.footer-legal {
  display: grid;
  gap: 0.25rem;
  max-width: 42rem;
  padding-right: 3.75rem;
}

.footer-legal strong {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-legal span {
  color: rgba(255, 250, 244, 0.52);
  font-size: 0.64rem;
  line-height: 1.55;
}

.footer-legal .footer-gstin {
  color: rgba(255, 250, 244, 0.78);
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 23.5rem) {
  .footer-brand {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .footer-brand img {
    width: 4rem;
    height: 4.8rem;
  }

  .footer-brand h2 {
    font-size: 1.28rem;
  }

  .footer-brand p {
    font-size: 0.7rem;
  }
}

.room-page-shell {
  background: #f2f0eb;
  color: #1e1713;
}

.room-detail-hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: var(--header-height) 1rem 3rem;
  background: #17110f;
  color: var(--white);
}

.room-detail-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #1b1512;
}

.room-detail-backdrop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02);
  transform: scale(1.02);
}

.room-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.78), rgba(8, 6, 5, 0.18) 58%, rgba(8, 6, 5, 0.62)),
    linear-gradient(180deg, rgba(8, 6, 5, 0.22), rgba(8, 6, 5, 0.52) 54%, rgba(8, 6, 5, 0.82));
}

.room-detail-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  margin-inline: auto;
}

.room-back-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 244, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.room-back-link::before {
  content: "←";
  margin-right: 0.48rem;
  color: var(--copper-light);
  font-size: 0.9rem;
  line-height: 1;
}

.room-back-link:hover,
.room-back-link:focus-visible {
  color: var(--white);
  transform: translateX(-0.12rem);
  outline: 0;
}

.room-detail-hero h1 {
  margin: 0;
  max-width: 9.5ch;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 14vw, 5.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.room-detail-hero p {
  max-width: 32rem;
  margin: 1rem 0 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.94rem;
  line-height: 1.65;
}

.room-detail-meta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.room-detail-meta span {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 250, 244, 0.16);
  background: rgba(18, 13, 11, 0.48);
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(0.65rem);
}

.room-detail-meta strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.room-detail-meta em {
  color: rgba(255, 250, 244, 0.58);
  font-size: 0.56rem;
  font-style: normal;
}

.room-detail-section {
  padding: 2.5rem 0 3rem;
  background: #f2f0eb;
}

.room-detail-grid {
  width: min(100% - 2rem, 30rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.room-selector {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(13.5rem, 1fr);
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.18rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.room-selector::-webkit-scrollbar {
  display: none;
}

.room-choice {
  min-height: 5.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.24rem 0.7rem;
  align-content: center;
  padding: 0.9rem;
  border: 1px solid rgba(30, 23, 19, 0.12);
  border-radius: 0;
  background: #fff;
  color: #1e1713;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.room-choice span {
  grid-row: 1 / span 2;
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.room-choice strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.1;
}

.room-choice em {
  color: rgba(30, 23, 19, 0.6);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-choice:hover,
.room-choice:focus-visible,
.room-choice.is-active {
  border-color: rgba(189, 146, 112, 0.66);
  background: #fffaf4;
  box-shadow: 0 1rem 2.2rem rgba(50, 38, 30, 0.08);
  transform: translateY(-0.08rem);
  outline: 0;
}

.room-detail-main {
  display: grid;
  gap: 1rem;
}

.room-detail-main-image,
.room-gallery-strip figure {
  margin: 0;
  overflow: hidden;
  background: #e8e1d8;
}

.room-detail-main-image {
  aspect-ratio: 16 / 10;
}

.room-detail-main-image img,
.room-gallery-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease, filter 700ms ease;
}

.room-detail-main-image:hover img,
.room-gallery-strip figure:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.room-overview-panel,
.room-reserve-panel {
  background: #fff;
  color: #1e1713;
  box-shadow: 0 1.2rem 3rem rgba(50, 38, 30, 0.08);
}

.room-overview-panel {
  padding: 1.25rem;
}

.room-overview-panel h2,
.room-reserve-panel h2,
.room-included-grid h2 {
  margin: 0;
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.room-overview-panel p,
.room-reserve-panel p {
  margin: 0.9rem 0 0;
  color: rgba(30, 23, 19, 0.66);
  font-size: 0.86rem;
  line-height: 1.7;
}

.room-feature-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.room-feature-item {
  min-height: 4.1rem;
  display: grid;
  align-content: center;
  gap: 0.22rem;
  padding: 0.72rem;
  border: 1px solid rgba(30, 23, 19, 0.08);
  background: #fbfaf8;
}

.room-feature-item span {
  color: var(--copper);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-feature-item strong {
  color: #211915;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.room-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.room-gallery-strip figure {
  aspect-ratio: 1 / 1;
}

.room-reserve-panel {
  padding: 1.2rem;
}

.room-reserve-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.58rem;
}

.room-reserve-form .booking-field {
  border-color: rgba(255, 250, 244, 0.13);
  background: rgba(18, 13, 11, 0.94);
}

.room-reserve-form .booking-submit {
  width: 100%;
}

.room-included-section {
  padding: 3rem 0;
  background: #fff;
  color: #1e1713;
}

.room-included-grid {
  width: min(100% - 2rem, 30rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.room-included-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.room-included-list article {
  min-height: 4.3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(30, 23, 19, 0.12);
}

.room-included-list span {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 146, 112, 0.46);
  color: var(--copper);
  font-size: 1.1rem;
  line-height: 1;
}

.room-included-list strong {
  color: #211915;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.2;
}

.drinks-page-shell {
  background: #f2f0eb;
  color: #1e1713;
}

.drinks-hero {
  position: relative;
  min-height: 44svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: var(--header-height) 1rem 1.65rem;
  background:
    linear-gradient(90deg, rgba(12, 8, 6, 0.9), rgba(18, 13, 11, 0.54), rgba(12, 8, 6, 0.88)),
    url("assets/hotel-2026/suite-lounge-mug9983.webp") center / cover;
  color: var(--white);
}

.drinks-hero::after {
  content: "MENU";
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  z-index: -1;
  color: rgba(255, 250, 244, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 22vw, 16rem);
  line-height: 0.8;
  pointer-events: none;
}

.food-hero::after {
  content: "FOOD";
}

.food-hero {
  background:
    linear-gradient(90deg, rgba(12, 8, 6, 0.9), rgba(18, 13, 11, 0.54), rgba(12, 8, 6, 0.88)),
    url("assets/mock-hospitality/food-menu-kitchen-hero-v1.webp") center / cover;
}

.drinks-hero__content {
  width: min(100%, 31rem);
  margin-inline: auto;
}

.drinks-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 10vw, 4.65rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.drinks-hero p {
  max-width: 32rem;
  margin: 0.65rem 0 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.drinks-order-section {
  position: relative;
  padding: 0.9rem 0 3rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(189, 146, 112, 0.16), transparent 22rem),
    linear-gradient(180deg, #f2f0eb, #fff 52%, #f2f0eb);
  color: #1e1713;
}

.drinks-order-layout {
  width: min(100% - 2rem, 30rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.drinks-menu-panel,
.drinks-cart {
  min-width: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1.2rem 3rem rgba(50, 38, 30, 0.08);
}

.drinks-menu-panel {
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.drinks-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.22rem;
  background: linear-gradient(90deg, #17110f, var(--copper), #17110f);
  opacity: 0.72;
}

.drinks-toolbar {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}

.drinks-toolbar h2,
.drinks-cart h2 {
  margin: 0;
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.drinks-toolbar p {
  margin: 0.72rem 0 0;
  max-width: 26rem;
  color: rgba(30, 23, 19, 0.58);
  font-size: 0.82rem;
  line-height: 1.55;
}

.drinks-search {
  display: grid;
  gap: 0.38rem;
}

.drinks-search span {
  color: var(--copper);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.drinks-search input {
  width: 100%;
  min-height: 2.9rem;
  border: 1px solid rgba(30, 23, 19, 0.14);
  border-radius: 0;
  background: #fbfaf8;
  color: #17110f;
  font: inherit;
  font-size: 0.9rem;
  outline: 0;
  padding: 0 0.9rem;
}

.drinks-search input:focus-visible {
  border-color: rgba(189, 146, 112, 0.74);
}

.drinks-category-tabs {
  margin-top: 1.15rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.18rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.drinks-category-tabs::-webkit-scrollbar {
  display: none;
}

.food-menu-notice {
  margin: 0.9rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem 0.8rem;
  color: rgba(30, 23, 19, 0.48);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.food-menu-notice span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.food-menu-notice span:not(:last-child)::after {
  content: "";
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--copper);
}

.drinks-category-tab {
  min-height: 2.75rem;
  min-width: 4.6rem;
  padding: 0 0.82rem;
  border: 1px solid rgba(30, 23, 19, 0.12);
  border-radius: 0;
  background: #fbfaf8;
  color: rgba(30, 23, 19, 0.7);
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  scroll-snap-align: start;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.drinks-category-tab span,
.drinks-category-tab em {
  display: block;
}

.drinks-category-tab em {
  margin-top: 0.22rem;
  color: rgba(30, 23, 19, 0.42);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}

.drinks-category-tab:hover,
.drinks-category-tab:focus-visible,
.drinks-category-tab.is-active {
  border-color: var(--copper);
  background: #17110f;
  color: var(--white);
  transform: translateY(-1px);
  outline: 0;
}

.drinks-category-tab:hover em,
.drinks-category-tab:focus-visible em,
.drinks-category-tab.is-active em {
  color: rgba(255, 250, 244, 0.58);
}

.drinks-menu-grid {
  min-width: 0;
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.drink-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.82rem;
  padding: 1rem;
  border: 1px solid rgba(30, 23, 19, 0.1);
  background:
    linear-gradient(135deg, #fff 0%, #fbfaf8 72%, rgba(189, 146, 112, 0.1) 100%);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.drink-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.18rem;
  background: var(--copper);
  opacity: 0;
  transition: opacity 180ms ease;
}

.drink-card:hover,
.drink-card:focus-within {
  border-color: rgba(189, 146, 112, 0.55);
  box-shadow: 0 1rem 2.2rem rgba(50, 38, 30, 0.08);
  transform: translateY(-1px);
}

.drink-card:hover::before,
.drink-card:focus-within::before {
  opacity: 1;
}

.drink-card__top {
  display: grid;
  align-content: start;
}

.drink-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.drink-card__meta span,
.drink-card__meta em {
  color: var(--copper);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.drink-card__meta em {
  color: rgba(30, 23, 19, 0.28);
  font-style: normal;
  letter-spacing: 0.1em;
}

.food-card .drink-card__meta {
  justify-content: flex-start;
  gap: 0.52rem;
}

.food-card .drink-card__meta em {
  margin-left: auto;
}

.drink-card__meta .food-type-mark {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid currentColor;
  letter-spacing: 0;
}

.food-type-mark::before {
  content: "";
  display: block;
}

.drink-card__meta .food-type-mark--veg {
  color: #16833b;
}

.food-type-mark--veg::before {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: currentColor;
}

.drink-card__meta .food-type-mark--non-veg {
  color: #c7352d;
}

.food-type-mark--non-veg::before {
  width: 0;
  height: 0;
  border-left: 0.24rem solid transparent;
  border-right: 0.24rem solid transparent;
  border-bottom: 0.42rem solid currentColor;
}

.drink-card__meta .food-type-mark--both {
  color: #b27a3f;
}

.food-type-mark--both::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: conic-gradient(#16833b 0 50%, #c7352d 50% 100%);
}

.drink-card h3 {
  margin: 0.38rem 0 0;
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.34rem, 5.3vw, 1.62rem);
  font-weight: 400;
  line-height: 1.08;
}

.drink-card p {
  margin: 0.5rem 0 0;
  color: rgba(30, 23, 19, 0.62);
  font-size: 0.78rem;
  line-height: 1.52;
}

.drink-card__from {
  width: max-content;
  margin-top: 0.7rem;
  padding: 0.34rem 0.52rem;
  border: 1px solid rgba(189, 146, 112, 0.3);
  background: rgba(189, 146, 112, 0.09);
  color: rgba(30, 23, 19, 0.76);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.food-card__price {
  width: max-content;
  margin-top: 0.82rem;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(189, 146, 112, 0.32);
  background: rgba(189, 146, 112, 0.1);
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  font-weight: 400;
  line-height: 1;
}

.menu-tax-note {
  width: max-content;
  margin-top: 0.36rem;
  color: rgba(30, 23, 19, 0.48);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.food-card {
  align-content: space-between;
}

.food-card .drink-add-button {
  align-self: end;
}

.drink-card--featured {
  border-color: rgba(189, 146, 112, 0.46);
  background:
    linear-gradient(135deg, rgba(23, 17, 15, 0.98), rgba(54, 39, 31, 0.94)),
    linear-gradient(135deg, #fff 0%, #fbfaf8 100%);
  box-shadow: 0 1.4rem 3rem rgba(23, 17, 15, 0.12);
}

.drink-card--featured h3 {
  color: var(--white);
}

.drink-card--featured p {
  color: rgba(255, 250, 244, 0.67);
}

.drink-card--featured .drink-card__meta em {
  color: rgba(255, 250, 244, 0.24);
}

.drink-card--featured .drink-card__from {
  border-color: rgba(212, 173, 139, 0.46);
  background: rgba(255, 250, 244, 0.08);
  color: rgba(255, 250, 244, 0.78);
}

.drink-card--featured .food-card__price {
  border-color: rgba(212, 173, 139, 0.46);
  background: rgba(255, 250, 244, 0.08);
  color: var(--white);
}

.drink-card--featured .menu-tax-note {
  color: rgba(255, 250, 244, 0.52);
}

.drink-price-options {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.drink-price-option {
  min-width: 0;
}

.drink-price-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.drink-price-option span {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.45rem;
  border: 1px solid rgba(30, 23, 19, 0.12);
  background: #fff;
  color: rgba(30, 23, 19, 0.72);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.drink-card--featured .drink-price-option span {
  border-color: rgba(255, 250, 244, 0.14);
  background: rgba(255, 250, 244, 0.06);
  color: rgba(255, 250, 244, 0.72);
}

.drink-price-option input:checked + span,
.drink-price-option input:focus-visible + span {
  border-color: var(--copper);
  background: rgba(189, 146, 112, 0.14);
  color: #17110f;
}

.drink-card--featured .drink-price-option input:checked + span,
.drink-card--featured .drink-price-option input:focus-visible + span {
  background: var(--copper);
  color: #17110f;
}

.drink-add-button,
.place-order-button {
  min-height: 2.9rem;
  border: 1px solid var(--copper);
  border-radius: 0;
  background: var(--copper);
  color: #17110f;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.drink-add-button:hover,
.drink-add-button:focus-visible,
.place-order-button:hover,
.place-order-button:focus-visible {
  border-color: #b9893d;
  background: #b9893d;
  transform: translateY(-1px);
  outline: 0;
}

.place-order-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.drinks-empty-state {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(30, 23, 19, 0.1);
  color: rgba(30, 23, 19, 0.66);
  font-size: 0.88rem;
}

.drinks-cart {
  padding: 1rem;
}

.drinks-cart__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.drinks-cart-count {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 146, 112, 0.45);
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
}

.drinks-cart-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.drinks-cart-empty {
  margin: 0;
  color: rgba(30, 23, 19, 0.58);
  font-size: 0.84rem;
  line-height: 1.55;
}

.drinks-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(30, 23, 19, 0.1);
}

.drinks-cart-item strong {
  display: block;
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.18;
}

.drinks-cart-item span {
  display: block;
  margin-top: 0.28rem;
  color: rgba(30, 23, 19, 0.6);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-qty-control {
  display: grid;
  grid-template-columns: 2.2rem 2rem 2.2rem;
  align-items: center;
  border: 1px solid rgba(30, 23, 19, 0.12);
}

.cart-qty-control button {
  min-height: 2.2rem;
  border: 0;
  background: #fbfaf8;
  color: #17110f;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.cart-qty-control span {
  margin: 0;
  color: #17110f;
  font-size: 0.74rem;
  line-height: 1;
  text-align: center;
}

.drinks-cart-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 23, 19, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.drinks-cart-total span {
  color: rgba(30, 23, 19, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drinks-cart-total strong {
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.place-order-button {
  width: 100%;
  margin-top: 1rem;
}

.place-order-note {
  margin: 0.72rem 0 0;
  color: rgba(30, 23, 19, 0.58);
  font-size: 0.72rem;
  line-height: 1.45;
}

.drinks-cart[hidden],
.drinks-cart-backdrop[hidden],
.order-review-bar[hidden] {
  display: none !important;
}

.drinks-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(11, 9, 8, 0.54);
  backdrop-filter: blur(0.22rem);
}

.drinks-cart {
  position: fixed;
  right: 0.85rem;
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  left: 0.85rem;
  z-index: 40;
  max-height: min(38rem, calc(100svh - 2rem));
  overflow-y: auto;
  border: 1px solid rgba(189, 146, 112, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 1.5rem));
  transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drinks-cart.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.cart-drawer-open {
  overflow: hidden;
}

.drinks-cart__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.drinks-cart-close {
  position: relative;
  width: 2.55rem;
  height: 2.55rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(30, 23, 19, 0.12);
  background: #fbfaf8;
  color: #17110f;
  cursor: pointer;
}

.drinks-cart-close span {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: currentColor;
}

.drinks-cart-close span:first-child {
  transform: rotate(45deg);
}

.drinks-cart-close span:last-child {
  transform: rotate(-45deg);
}

.order-review-bar {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 38;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.65rem 0.72rem 0.65rem 0.95rem;
  border: 1px solid rgba(212, 173, 139, 0.46);
  background: rgba(23, 17, 15, 0.96);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 1rem 2rem rgba(11, 9, 8, 0.24);
  backdrop-filter: blur(0.6rem);
}

.order-review-bar span {
  display: grid;
  gap: 0.18rem;
  text-align: left;
}

.order-review-bar strong,
.order-review-bar em,
.order-review-bar b {
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.order-review-bar strong {
  color: var(--copper-light);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.order-review-bar em {
  color: #17110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.order-review-bar b {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
  background: var(--copper);
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bar-experience-grid.is-visible .bar-stage,
.restaurant-shell.is-visible .restaurant-showcase,
.events-space-grid.is-visible .events-space-stage {
  animation: experienceStageIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bar-experience-grid.is-visible .bar-feature-button,
.restaurant-shell.is-visible .restaurant-course,
.events-space-grid.is-visible .event-format-button {
  animation: experienceOptionIn 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bar-experience-grid.is-visible .bar-feature-button:nth-child(2),
.restaurant-shell.is-visible .restaurant-course:nth-child(2),
.events-space-grid.is-visible .event-format-button:nth-child(2) {
  animation-delay: 90ms;
}

.bar-experience-grid.is-visible .bar-feature-button:nth-child(3),
.restaurant-shell.is-visible .restaurant-course:nth-child(3),
.events-space-grid.is-visible .event-format-button:nth-child(3) {
  animation-delay: 180ms;
}

@media (min-width: 36rem) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-row {
    width: min(100% - 2rem, 46rem);
    margin-top: 2.25rem;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: center;
    gap: 1.2rem;
    border: 0;
  }

  .review-badge {
    grid-template-columns: auto 1fr;
    justify-items: initial;
    gap: 0.78rem;
    padding: 0;
    text-align: left;
  }

  .review-badge + .review-badge {
    border-left: 0;
  }

  .review-badge strong {
    font-size: 1.05rem;
  }

  .review-badge em {
    display: inline;
    margin-top: 0;
    font-size: 0.6rem;
  }

  .review-badge p {
    margin-top: 0.24rem;
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .review-volume,
  .review-source {
    display: inline;
  }

  .review-source {
    color: inherit;
    font-weight: inherit;
  }

  .review-label {
    display: inline;
  }

  .amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .room-included-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.5rem;
  }

  .drinks-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 48rem) {
  :root {
    --header-height: 4.85rem;
    --container: min(100% - 4.5rem, 73.75rem);
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 3.1rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 1.4rem;
  }

  .site-header::after {
    content: "";
    width: 4.9rem;
  }

  .brand__logo-frame {
    width: 4.9rem;
    height: 5.1rem;
  }

  .brand__logo {
    top: -1.34rem;
    width: 7.6rem;
  }

  .primary-nav {
    display: flex;
    justify-self: center;
    align-items: center;
    justify-content: center;
    gap: clamp(0.7rem, 1.45vw, 1.28rem);
  }

  .primary-nav__link {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 250, 244, 0.75);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 160ms ease;
  }

  .primary-nav__link:hover,
  .primary-nav__link:focus-visible,
  .primary-nav__link--active {
    color: var(--white);
    outline: 0;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .whatsapp-float {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3.15rem;
    height: 3.15rem;
  }

  .whatsapp-float svg {
    width: 1.55rem;
    height: 1.55rem;
  }

  .hero__content {
    width: min(100%, 58rem);
    transform: translateY(-0.15rem);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.65rem, 3.4vw, 3.75rem);
    line-height: 1.04;
  }

  .hero p {
    font-size: 0.88rem;
    max-width: 34rem;
    line-height: 1.55;
  }

  .booking-panel {
    width: min(100%, 39.5rem);
    margin-top: 1.45rem;
    gap: 0;
    padding: 0;
  }

  .booking-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-tab {
    min-height: 5.05rem;
    border-bottom: 0;
  }

  .booking-tab:nth-child(2n) {
    border-right: 1px solid rgba(212, 173, 139, 0.24);
  }

  .booking-tab:last-child {
    border-right: 0;
  }

  .booking-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0.95rem 0.95rem 0;
  }

  .booking-field {
    min-height: 4.9rem;
    padding: 0.82rem 0.86rem;
  }

  .booking-field > span,
  .booking-field__label {
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }

  .booking-field input,
  .booking-field select {
    font-size: 0.82rem;
  }

  .booking-submit {
    min-height: 3.6rem;
    margin: 0.95rem;
    padding: 0 1.35rem;
  }

  .hero-arrow--left {
    left: max(1rem, calc((100vw - 73.75rem) / 2 - 2.25rem));
  }

  .hero-arrow--right {
    right: max(1rem, calc((100vw - 73.75rem) / 2 - 2.25rem));
  }

  .scroll-cue {
    position: absolute;
    right: max(7rem, calc((100vw - 73.75rem) / 2 + 5.8rem));
    bottom: clamp(6.6rem, 13vh, 8rem);
    z-index: 13;
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    color: rgba(255, 250, 244, 0.7);
    transform: none;
    pointer-events: none;
  }

  .scroll-cue span {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 0.52rem;
    letter-spacing: 0.22em;
  }

  .scroll-cue i {
    position: relative;
    width: 1px;
    height: 3.2rem;
    overflow: hidden;
    background: rgba(255, 250, 244, 0.35);
  }

  .scroll-cue i::after {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    width: 1px;
    height: 40%;
    background: var(--white);
    animation: scrollLine 1600ms ease-in-out infinite;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 1rem;
    padding-bottom: 0;
  }

  .hero-meta__right {
    justify-content: end;
    align-items: center;
    padding-bottom: 0.55rem;
  }

  .benefits-grid {
    width: min(100% - 7.4rem, 56rem);
    min-height: 10rem;
    padding: 1.8rem 0 2.35rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.4rem;
    align-items: start;
  }

  .benefit-card svg {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.72rem;
  }

  .benefit-card {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    justify-items: center;
    text-align: center;
  }

  .benefit-card h2 {
    max-width: 15rem;
    font-size: 1.03rem;
    line-height: 1.2;
  }

  .benefit-card p {
    display: block;
    max-width: 14.6rem;
    margin-top: 0.7rem;
    overflow: visible;
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .welcome-section {
    padding: 4.2rem 0 1.9rem;
  }

  .welcome-grid {
    width: min(100% - 7.4rem, 56rem);
    grid-template-columns: minmax(0, 28rem) minmax(0, 1fr);
    gap: 2.3rem;
    justify-content: center;
  }

  .welcome-images {
    grid-template-columns: minmax(0, 13.4rem) minmax(0, 13.95rem);
    gap: 0.62rem;
    justify-content: end;
  }

  .welcome-image-slot--right {
    transform: translateY(-1.65rem);
  }

  .welcome-copy {
    align-self: start;
    padding-top: 0.25rem;
    padding-left: 0;
  }

  .section-eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.66rem;
  }

  .welcome-copy h2 {
    font-size: clamp(2.25rem, 2.9vw, 2.75rem);
    line-height: 1;
  }

  .welcome-copy p {
    margin-top: 1rem;
    max-width: 31rem;
    padding-right: 0;
    font-size: 0.75rem;
    line-height: 1.72;
  }

  .read-more-button {
    min-height: 2.1rem;
    margin-top: 1.35rem;
    padding: 0 1.05rem;
    font-size: 0.58rem;
  }

  .review-row {
    width: min(100% - 4.5rem, 43.8rem);
    margin-top: 2.1rem;
    gap: 2.7rem;
  }

  .review-badge {
    gap: 0.86rem;
  }

  .rooms-section {
    padding: 4rem 0 3.65rem;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .room-stage {
    width: min(100% - 7.4rem, 56rem);
    margin-top: 1.95rem;
  }

  .room-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    order: 0;
    margin: 0;
    pointer-events: none;
  }

  .room-counter {
    display: none;
  }

  .room-showcase {
    height: 19.1rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    box-shadow: none;
  }

  .room-copy {
    order: 0;
    padding: 2.28rem 2.45rem 2rem;
  }

  .room-price {
    font-size: 0.76rem;
  }

  .room-price strong {
    font-size: 1.45rem;
  }

  .room-copy h3 {
    margin-top: 0.95rem;
    font-size: 1.35rem;
  }

  .room-copy > p:not(.room-price) {
    max-width: 24.5rem;
    font-size: 0.7rem;
    line-height: 1.52;
  }

  .room-features {
    max-width: 24.2rem;
    margin-top: 0.9rem;
    gap: 0.5rem 1.85rem;
  }

  .room-actions {
    margin-top: 0.95rem;
  }

  .book-now-button,
  .view-room-button {
    min-height: 2.18rem;
    padding: 0 0.98rem;
    font-size: 0.56rem;
  }

  .room-media {
    order: 0;
    height: 19.1rem;
    overflow: hidden;
    aspect-ratio: auto;
  }

  .room-arrow {
    position: absolute;
    top: 50%;
    width: 2.18rem;
    height: 2.18rem;
    border: 0;
    background: rgba(67, 65, 61, 0.72);
    color: #fff;
    pointer-events: auto;
    transform: translateY(-50%);
  }

  .room-arrow--prev {
    left: -1.1rem;
  }

  .room-arrow--next {
    right: -1.1rem;
  }

  .room-arrow:hover,
  .room-arrow:focus-visible {
    background: rgba(67, 65, 61, 0.88);
    transform: translateY(-50%) translateY(-1px);
  }

  .amenities-section {
    padding: 3.9rem 0 4rem;
  }

  .amenities-grid {
    width: min(100% - 7.4rem, 56rem);
    margin-top: 2.15rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.05rem 3.35rem;
  }

  .amenity-item {
    grid-template-columns: 2rem 1fr;
    gap: 0.8rem;
  }

  .amenity-item svg {
    width: 2.1rem;
    height: 2.1rem;
  }

  .amenity-item h3 {
    font-size: 1.02rem;
  }

  .amenity-item p {
    display: block;
    margin-top: 0.5rem;
    overflow: visible;
    font-size: 0.66rem;
    line-height: 1.58;
  }

  .bar-experience-section,
  .restaurant-section,
  .events-space-section {
    padding: 4.4rem 0;
  }

  .bar-experience-grid,
  .restaurant-shell,
  .events-space-grid,
  .location-grid,
  .footer-shell {
    width: min(100% - 7.4rem, 56rem);
  }

  .bar-experience-grid {
    width: min(100% - 7.4rem, 64rem);
    min-height: 38rem;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "stage";
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 244, 0.12);
    background: #211713;
  }

  .bar-copy {
    position: relative;
    z-index: 5;
    grid-area: stage;
    align-self: start;
    width: min(28rem, calc(100% - 4rem));
    margin: 2rem 0 0 2rem;
    padding: 1.2rem 1.25rem 1.35rem;
    border-left: 2px solid rgba(198, 146, 106, 0.72);
    background: linear-gradient(90deg, rgba(18, 13, 11, 0.8), rgba(18, 13, 11, 0.22));
    backdrop-filter: blur(8px);
  }

  .bar-feature-list {
    position: relative;
    z-index: 5;
    grid-area: stage;
    align-self: end;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .bar-stage {
    grid-area: stage;
    position: absolute;
    inset: 0;
    min-height: auto;
    border: 0;
  }

  .bar-stage__card {
    right: 1.3rem;
    bottom: 9.95rem;
    left: auto;
    width: min(24rem, calc(100% - 2.6rem));
  }

  .bar-stage__hint {
    top: auto;
    bottom: 9.95rem;
    left: 2rem;
  }

  .bar-feature-button {
    min-height: 6.7rem;
    background: rgba(18, 13, 11, 0.68);
    backdrop-filter: blur(10px);
  }

  .bar-copy h2,
  .restaurant-heading h2,
  .events-space-copy h2,
  .location-copy h2 {
    font-size: 2.75rem;
  }

  .bar-copy p,
  .restaurant-heading p,
  .events-space-copy p,
  .location-copy p {
    max-width: 29rem;
    font-size: 0.82rem;
  }

  .restaurant-shell {
    width: min(100% - 7.4rem, 64rem);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-areas:
      "heading heading heading heading showcase showcase showcase showcase showcase showcase showcase showcase"
      "menu menu menu menu menu menu menu menu menu menu menu menu";
    gap: 1.55rem 2.2rem;
    align-items: start;
  }

  .restaurant-heading {
    grid-area: heading;
    padding-top: 1.25rem;
    text-align: left;
  }

  .restaurant-menu {
    grid-area: menu;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .restaurant-showcase {
    grid-area: showcase;
    min-height: 28.5rem;
  }

  .restaurant-showcase figcaption {
    right: auto;
    bottom: 1.3rem;
    left: 1.3rem;
    width: min(21rem, calc(100% - 2.6rem));
  }

  .restaurant-course {
    min-height: 7.6rem;
    padding: 1.05rem 1.15rem;
  }

  .events-space-grid {
    width: min(100% - 7.4rem, 64rem);
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  .events-space-copy {
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
  }

  .events-space-copy p {
    margin-inline: auto;
  }

  .events-format-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .events-space-stage {
    min-height: 29rem;
  }

  .event-plan-card {
    right: 1.3rem;
    bottom: 1.3rem;
    left: auto;
    width: min(23rem, calc(100% - 2.6rem));
  }

  .location-section,
  .location-map-canvas {
    min-height: 46rem;
  }

  .location-map-canvas {
    align-items: center;
  }

  .location-map-canvas iframe {
    top: 0;
    bottom: 0;
    width: 160%;
    height: 100%;
  }

  .location-map-canvas::before {
    background:
      linear-gradient(180deg, rgba(16, 12, 10, 0.08), rgba(16, 12, 10, 0.22)),
      linear-gradient(90deg, rgba(16, 12, 10, 0.9) 0%, rgba(16, 12, 10, 0.62) 34%, rgba(16, 12, 10, 0.1) 70%, rgba(16, 12, 10, 0.04));
  }

  .map-control-toggle {
    top: 1.5rem;
    right: 1.5rem;
  }

  .location-overlay {
    width: min(100% - 7.4rem, 64rem);
    padding: 4.5rem 0 7.25rem;
  }

  .location-card {
    width: 30rem;
    padding: 2rem;
  }

  .location-card h2 {
    font-size: 3.65rem;
  }

  .location-landmarks {
    right: auto;
    left: 50%;
    width: min(100% - 7.4rem, 64rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: translateX(-50%);
  }

  .location-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 3.4rem;
    align-items: center;
  }

  .location-grid {
    width: min(100% - 7.4rem, 56rem);
  }

  .map-panel,
  .map-panel iframe {
    min-height: 25rem;
  }

  .footer-shell {
    width: min(100% - 3rem, 42rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 1.5rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: 6rem 1fr;
    align-items: start;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-brand img {
    width: 6rem;
    height: 6.8rem;
  }

  .footer-brand h2 {
    font-size: 1.85rem;
  }

  .footer-nav {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.45rem;
  }

  .footer-contact {
    grid-column: 2;
    padding-top: 0;
    border-top: 0;
  }

  .footer-bottom {
    width: min(100% - 3rem, 42rem);
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }

  .footer-legal {
    justify-self: end;
    text-align: right;
  }

  .room-detail-hero {
    min-height: 82svh;
    padding-inline: 2.25rem;
    padding-bottom: 4rem;
  }

  .room-detail-hero__inner {
    width: min(100%, 56rem);
  }

  .room-detail-hero h1 {
    max-width: 12ch;
    font-size: clamp(4rem, 7vw, 6.4rem);
  }

  .room-detail-hero p {
    font-size: 0.98rem;
  }

  .room-detail-section {
    padding: 4rem 0;
  }

  .room-detail-grid {
    width: min(100% - 7.4rem, 56rem);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
  }

  .room-selector {
    grid-column: 1 / -1;
    grid-auto-columns: minmax(15rem, 1fr);
  }

  .room-detail-main {
    grid-column: 1 / 8;
  }

  .room-reserve-panel {
    position: sticky;
    top: 1.25rem;
    grid-column: 8 / -1;
  }

  .room-overview-panel,
  .room-reserve-panel {
    padding: 1.55rem;
  }

  .room-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-included-section {
    padding: 4rem 0;
  }

  .room-included-grid {
    width: min(100% - 7.4rem, 56rem);
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: start;
  }

  .drinks-hero {
    min-height: 48svh;
    padding-inline: 2.25rem;
    padding-bottom: 2rem;
  }

  .drinks-hero__content {
    width: min(100% - 7.4rem, 56rem);
  }

  .drinks-hero h1 {
    font-size: clamp(3.8rem, 5.8vw, 5.2rem);
  }

  .drinks-order-section {
    padding: 1.7rem 0 4rem;
  }

  .drinks-order-layout {
    width: min(100% - 7.4rem, 56rem);
    gap: 1.25rem;
  }

  .drinks-order-layout.has-cart {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
  }

  .drinks-menu-panel,
  .drinks-cart {
    padding: 1.35rem;
  }

  .drinks-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.46fr);
    gap: 1.25rem;
  }

  .drinks-category-tabs {
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .drinks-cart {
    position: sticky;
    top: 1.25rem;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: auto;
    max-height: calc(100svh - 2.5rem);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .drinks-cart-close,
  .drinks-cart-backdrop,
  .order-review-bar {
    display: none !important;
  }
}

@media (min-width: 64rem) {
  .hero__stars {
    font-size: 0.92rem;
  }

  .footer-shell {
    width: min(100% - 7.4rem, 64rem);
    grid-template-columns: minmax(20rem, 1.35fr) minmax(15rem, 0.85fr) minmax(15rem, 0.7fr);
    gap: 1.4rem 2.4rem;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-nav {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-contact {
    grid-column: 3;
    grid-row: 1;
  }

  .footer-bottom {
    width: min(100% - 7.4rem, 64rem);
  }

  .room-detail-hero__inner,
  .room-detail-grid,
  .room-included-grid {
    width: min(100% - 7.4rem, 64rem);
  }

  .room-detail-grid {
    grid-template-columns: minmax(12rem, 0.5fr) minmax(0, 1.28fr) minmax(16rem, 0.68fr);
    gap: 1.4rem;
  }

  .room-selector {
    position: sticky;
    top: 1.25rem;
    grid-column: 1;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    padding-bottom: 0;
  }

  .room-detail-main {
    grid-column: 2;
  }

  .room-reserve-panel {
    grid-column: 3;
  }

  .room-choice {
    min-height: 6rem;
  }

  .room-overview-panel,
  .room-reserve-panel {
    padding: 1.7rem;
  }

  .room-detail-main-image {
    aspect-ratio: 16 / 11;
  }

  .drinks-hero__content,
  .drinks-order-layout {
    width: min(100% - 7.4rem, 64rem);
  }

  .drinks-order-layout {
    gap: 1.4rem;
  }

  .drinks-order-layout.has-cart {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.36fr);
  }

  .drinks-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 59.98rem) {
  .room-controls {
    position: relative;
    inset: auto;
    z-index: 1;
    order: 3;
    margin: 0.95rem 0 0;
    pointer-events: auto;
  }

  .room-counter {
    display: block;
  }

  .room-showcase {
    order: 2;
  }

  .room-arrow {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(189, 146, 112, 0.34);
    background: #fff;
    color: #1e1713;
    transform: none;
  }

  .room-arrow:hover,
  .room-arrow:focus-visible {
    background: #f8f4ef;
    transform: translateY(-1px);
  }
}

@media (max-width: 47.98rem) {
  .hero__slide {
    background-image: var(--slide-mobile);
    background-size: cover;
    background-position: center center;
  }

  .hero-arrow {
    top: auto;
    bottom: 7.5rem;
    border: 1px solid rgba(255, 250, 244, 0.22);
    background: rgba(10, 8, 7, 0.28);
    backdrop-filter: blur(0.45rem);
    transform: none;
  }

  .hero-arrow--left {
    left: 1rem;
  }

  .hero-arrow--right {
    right: 1rem;
  }

  .hero-arrow--left:hover,
  .hero-arrow--right:hover {
    transform: none;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 6, 5, 0.64), rgba(7, 6, 5, 0.2) 50%, rgba(7, 6, 5, 0.64)),
      linear-gradient(180deg, rgba(7, 6, 5, 0.46), rgba(7, 6, 5, 0.52) 52%, rgba(7, 6, 5, 0.84));
  }
}

@media (max-width: 29.98rem) {
  .hero {
    min-height: 100svh;
    padding-inline: 0.88rem;
    padding-bottom: 7.8rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 13vw, 3.1rem);
  }

  .hero p {
    max-width: 20rem;
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .explore-link {
    min-height: 2.35rem;
    margin-top: 0.7rem;
  }

  .booking-panel {
    width: min(100%, 18.2rem);
    margin-top: 0.58rem;
  }

  .booking-tab {
    min-height: 3.45rem;
    gap: 0.24rem;
    padding: 0.52rem 0.3rem 0.58rem;
  }

  .booking-tab svg {
    width: 1.12rem;
    height: 1.12rem;
  }

  .booking-tab span {
    font-size: 0.47rem;
    letter-spacing: 0.14em;
  }

  .booking-fields {
    gap: 0.38rem;
    padding: 0.48rem 0.48rem 0;
  }

  .booking-field {
    min-height: 3.12rem;
    padding: 0.48rem 0.52rem;
  }

  .booking-field > span,
  .booking-field__label {
    font-size: 0.42rem;
    letter-spacing: 0.11em;
  }

  .booking-field input,
  .booking-field select {
    font-size: 0.64rem;
  }

  .booking-field em {
    font-size: 0.54rem;
  }

  .booking-submit {
    min-height: 2.75rem;
    margin: 0.48rem;
    font-size: 0.58rem;
  }

  .hero-arrow {
    bottom: 6.4rem;
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero-meta {
    padding-bottom: 0.78rem;
  }

  .hero-meta__right {
    flex-wrap: wrap;
    gap: 0.4rem 0.85rem;
  }

  .stat strong {
    font-size: 0.86rem;
  }
}

@media (max-width: 29.98rem) and (max-height: 46.25rem) {
  .hero-arrow {
    bottom: 4.65rem;
  }
}

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

@keyframes heroBreath {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -0.65rem);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes contentRise {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes starGlimmer {
  0%,
  100% {
    opacity: 0.82;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(9rem);
  }
}

@keyframes welcomeGallerySweep {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }

  30% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes experienceStageIn {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes experienceOptionIn {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barCurtainSweep {
  0% {
    opacity: 0;
    transform: translateX(-112%);
  }

  18% {
    opacity: 1;
  }

  52% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(112%);
  }
}

@media (max-width: 47.98rem) {
  .restaurant-menu,
  .bar-feature-list,
  .events-format-list {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .restaurant-course,
  .bar-feature-button,
  .event-format-button {
    min-width: 0;
    min-height: 4.75rem;
    padding: 0.7rem 0.55rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.35rem;
  }

  .restaurant-course span,
  .bar-feature-button span,
  .event-format-button span {
    margin: 0;
    font-size: 0.52rem;
    line-height: 1.2;
  }

  .restaurant-course strong,
  .bar-feature-button strong,
  .event-format-button strong {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .restaurant-course em,
  .bar-feature-button em {
    display: none;
  }

  .event-format-button:hover,
  .event-format-button.is-active {
    transform: translateY(-0.08rem);
  }

  .swipe-carousel {
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    -webkit-user-select: none;
    user-select: none;
  }

  .swipe-carousel img {
    -webkit-user-drag: none;
    user-select: none;
  }

  .swipe-carousel.is-swiping {
    cursor: grabbing;
  }

  body.mobile-booking-open {
    overflow: hidden;
  }

  body.mobile-booking-open .whatsapp-float {
    opacity: 0;
    pointer-events: none;
  }

  .hero {
    padding: var(--header-height) 1rem 5.75rem;
  }

  .hero.is-mobile-booking-open {
    z-index: 100;
  }

  .site-header {
    overflow: visible;
  }

  .brand {
    position: absolute;
    top: 50svh;
    left: 50%;
    width: clamp(10rem, 47vw, 12.5rem);
    min-height: 0;
    transform: translate(-50%, -53%);
    justify-self: auto;
  }

  .brand__logo-frame {
    width: 100%;
    height: clamp(10.5rem, 51vw, 13.5rem);
    overflow: visible;
  }

  .brand__logo {
    position: static;
    width: 100%;
    height: 100%;
    max-width: 100%;
    transform: none;
    object-fit: contain;
    filter: brightness(1.18) contrast(1.05) drop-shadow(0 0.65rem 1.4rem rgba(0, 0, 0, 0.46));
  }

  .site-header--room .brand {
    position: static;
    width: 4.1rem;
    min-height: 3.1rem;
    transform: none;
    justify-self: start;
  }

  .site-header--room .brand__logo-frame {
    width: 4.1rem;
    height: 4.3rem;
    overflow: hidden;
  }

  .site-header--room .brand__logo {
    position: absolute;
    top: -1.13rem;
    left: 50%;
    width: 6.4rem;
    height: auto;
    max-width: none;
    transform: translateX(-50%);
    object-fit: fill;
    filter: brightness(1.12) contrast(1.04) drop-shadow(0 0.25rem 0.8rem rgba(0, 0, 0, 0.36));
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
  }

  .mobile-menu {
    z-index: 4;
  }

  .hero__content {
    position: static;
    width: auto;
    margin: 0;
    display: block;
    transform: none;
  }

  .hero__stars,
  .hero__content > h1,
  .hero__content > p,
  .hero__content > .explore-link,
  .hero__content > .slide-live,
  .hero-arrow,
  .scroll-cue {
    display: none;
  }

  .mobile-booking-trigger {
    position: absolute;
    left: 50%;
    bottom: max(1.35rem, env(safe-area-inset-bottom));
    z-index: 18;
    min-width: 10.6rem;
    min-height: 3rem;
    padding: 0.75rem 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 246, 226, 0.46);
    border-radius: 999px;
    background: #cf9e4f;
    color: #fff;
    box-shadow: 0 0.9rem 2.2rem rgba(0, 0, 0, 0.34);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: translateX(-50%);
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
  }

  .mobile-booking-trigger svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-booking-trigger:hover,
  .mobile-booking-trigger:focus-visible {
    background: #d9aa5c;
    outline: 2px solid rgba(255, 255, 255, 0.82);
    outline-offset: 3px;
  }

  .hero.is-mobile-booking-open .mobile-booking-trigger {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-booking-backdrop {
    position: fixed;
    inset: 0;
    z-index: 28;
    display: block;
    border: 0;
    background: rgba(5, 4, 3, 0.67);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0.28rem);
    transition: opacity 220ms ease;
  }

  .hero.is-mobile-booking-open .mobile-booking-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .booking-panel {
    position: fixed;
    left: 0.9rem;
    right: 0.9rem;
    bottom: max(0.9rem, env(safe-area-inset-bottom));
    z-index: 31;
    width: auto;
    max-height: calc(100svh - 1.8rem);
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 1rem;
    background: #17110f;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(100% + 2rem));
    animation: none;
    pointer-events: none;
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 260ms;
  }

  .hero.is-mobile-booking-open .booking-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .booking-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-field {
    min-height: 3.35rem;
    height: auto;
    background: #211916;
  }

  .mobile-booking-head {
    min-height: 3.4rem;
    padding: 0.75rem 0.8rem 0.7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 173, 139, 0.28);
    color: #fff;
  }

  .mobile-booking-head > span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
  }

  .mobile-booking-head button {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 250, 244, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
  }

  .mobile-booking-head button:focus-visible {
    outline: 2px solid #cf9e4f;
    outline-offset: 2px;
  }

  .mobile-booking-head svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
  }
}

/* Image-led rooms editorial — intentionally scoped to the V6 home collection. */
.rooms-section {
  min-height: 100svh;
  padding: clamp(1.5rem, 4svh, 2.2rem) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(207, 158, 79, 0.12), transparent 28rem),
    #17120f;
  color: #fffaf4;
}

.rooms-shell {
  width: min(calc(100% - 2rem), 92rem);
  margin-inline: auto;
}

.rooms-heading {
  display: grid;
  gap: 0.75rem;
}

.rooms-heading .section-eyebrow {
  display: block;
  margin-bottom: 0.55rem;
  color: #cf9e4f;
}

.rooms-heading h2 {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.15em;
  color: #fffaf4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 13vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.79;
  text-transform: uppercase;
}

.rooms-heading h2 em {
  color: #cf9e4f;
  font-size: 0.54em;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.rooms-heading > p {
  display: none;
}

.rooms-section .room-selector {
  position: static;
  top: auto;
  grid-column: auto;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 0;
  overflow: visible;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.rooms-section .room-selector::-webkit-scrollbar {
  display: none;
}

.room-selector__item {
  position: relative;
  min-height: 4.65rem;
  padding: 0.7rem 0.55rem;
  display: grid;
  grid-template-columns: 1.3rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 0.35rem;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-right: 0;
  background: transparent;
  color: #fffaf4;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.room-selector__item:last-child {
  border-right: 1px solid rgba(255, 250, 244, 0.16);
}

.room-selector__item::after {
  content: "";
  position: absolute;
  inset: auto 0.5rem -1px;
  height: 2px;
  background: #cf9e4f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.room-selector__item > span {
  grid-row: 1 / 3;
  color: #cf9e4f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  line-height: 1.2;
}

.room-selector__item strong {
  align-self: end;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.room-selector__item small {
  display: none;
}

.room-selector__item:hover,
.room-selector__item:focus-visible,
.room-selector__item.is-active {
  border-color: rgba(207, 158, 79, 0.56);
  background: rgba(207, 158, 79, 0.08);
  outline: 0;
}

.room-selector__item:focus-visible {
  box-shadow: inset 0 0 0 2px #cf9e4f;
}

.room-selector__item.is-active::after {
  transform: scaleX(1);
}

.room-stage {
  width: 100%;
  margin: 0.65rem auto 0;
  display: block;
}

.room-showcase {
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.room-gallery {
  position: relative;
  order: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(13.5rem, 28svh) 4.5rem;
  gap: 0.55rem;
}

.rooms-section .room-media {
  position: relative;
  order: initial;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: auto;
  background: #2a211b;
}

.rooms-section .room-media--primary {
  grid-column: 1 / -1;
}

.rooms-section .room-media--support {
  grid-row: 2;
}

.rooms-section .room-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: opacity 260ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rooms-section .room-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(7, 5, 4, 0.58));
  pointer-events: none;
}

.room-media--primary figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0.7rem 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 250, 244, 0.82);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.room-media--primary figcaption span:last-child {
  flex: 0 0 auto;
  color: #cf9e4f;
}

.room-showcase.is-changing .room-media img {
  opacity: 0.16;
  transform: scale(1.035);
}

.room-showcase.is-changing .room-copy > * {
  opacity: 0.28;
  transform: translateY(0.35rem);
}

.room-controls {
  position: absolute;
  z-index: 4;
  inset: auto 0.55rem 5.05rem auto;
  width: auto;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  pointer-events: auto;
}

.rooms-section .room-arrow {
  position: relative;
  inset: auto;
  top: auto;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 250, 244, 0.24);
  border-radius: 0;
  background: rgba(14, 10, 8, 0.72);
  color: #fffaf4;
  transform: none;
  backdrop-filter: blur(0.6rem);
}

.rooms-section .room-arrow:hover,
.rooms-section .room-arrow:focus-visible {
  border-color: #cf9e4f;
  background: #cf9e4f;
  color: #17120f;
  outline: 0;
  transform: none;
}

.rooms-section .room-counter {
  display: none;
}

.rooms-section .room-copy {
  order: 2;
  padding: 1.15rem 0.1rem 0;
  color: #fffaf4;
}

.room-copy > * {
  transition: opacity 220ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.room-position {
  display: none;
  margin: 0;
  align-items: baseline;
  gap: 0.45rem;
  color: rgba(255, 250, 244, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.room-position strong {
  color: #cf9e4f;
  font-size: 2.4rem;
  font-weight: 400;
}

.room-position span {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.room-copy__eyebrow {
  display: block;
  color: #cf9e4f;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.rooms-section .room-copy h3 {
  margin: 0.45rem 0 0;
  color: #fffaf4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 9vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.rooms-section .room-copy > p[data-room-copy] {
  max-width: 34rem;
  margin: 0.7rem 0 0;
  color: rgba(255, 250, 244, 0.63);
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.72rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rooms-section .room-features {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 250, 244, 0.14);
}

.rooms-section .room-features > span {
  min-height: 3.25rem;
  padding: 0.65rem 0.5rem 0.65rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 250, 244, 0.14);
  color: rgba(255, 250, 244, 0.74);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.rooms-section .room-features > span:nth-child(odd) {
  border-right: 1px solid rgba(255, 250, 244, 0.14);
}

.rooms-section .room-features > span:nth-child(even) {
  padding-left: 0.7rem;
}

.rooms-section .room-features [data-room-feature] {
  min-width: 0;
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.rooms-section .room-features svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  stroke: #cf9e4f;
}

.rooms-section .room-price {
  margin: 0.8rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: rgba(255, 250, 244, 0.48);
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
}

.rooms-section .room-price strong {
  color: #fffaf4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.rooms-section .room-price span {
  color: rgba(255, 250, 244, 0.48);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.rooms-section .room-actions {
  margin-top: 0.75rem;
  padding-right: 3.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.rooms-section .book-now-button,
.rooms-section .view-room-button {
  min-height: 2.8rem;
  padding: 0 0.8rem;
  font-size: 0.56rem;
}

.rooms-section .book-now-button {
  color: #17120f;
}

.rooms-section .view-room-button {
  border-color: rgba(255, 250, 244, 0.34);
  background: transparent;
  color: #fffaf4;
}

.rooms-section .view-room-button:hover,
.rooms-section .view-room-button:focus-visible {
  border-color: #cf9e4f;
  background: rgba(207, 158, 79, 0.08);
}

@media (min-width: 48rem) {
  .rooms-section {
    height: 100svh;
    min-height: 0;
    padding: clamp(1.1rem, 2.8svh, 2rem) 0;
  }

  .rooms-shell {
    width: min(calc(100% - 4rem), 92rem);
    height: 100%;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: clamp(0.6rem, 1.4svh, 0.9rem);
  }

  .rooms-heading {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.28fr);
    align-items: end;
    gap: 2rem;
  }

  .rooms-heading h2 {
    flex-wrap: nowrap;
    font-size: clamp(3.9rem, 7vw, 7.25rem);
    line-height: 0.78;
    white-space: nowrap;
  }

  .rooms-heading > p {
    display: block;
    max-width: 24rem;
    margin: 0;
    padding-bottom: 0.15rem;
    color: rgba(255, 250, 244, 0.64);
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .rooms-section .room-selector {
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow: visible;
    scroll-snap-type: none;
  }

  .room-selector__item {
    min-height: clamp(3.7rem, 7.5svh, 5rem);
    padding-inline: clamp(1rem, 2vw, 1.8rem);
  }

  .room-selector__item small {
    display: block;
    margin-top: 0.22rem;
    color: rgba(255, 250, 244, 0.48);
    font-size: 0.56rem;
    letter-spacing: 0.03em;
    line-height: 1.25;
  }

  .room-selector__item::after {
    inset-inline: clamp(1rem, 2vw, 1.8rem);
  }

  .room-showcase {
    height: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.34fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: stretch;
  }

  .room-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.34fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 100%;
    min-height: 0;
    gap: 0.7rem;
  }

  .rooms-section .room-media--primary {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .rooms-section .room-media--support {
    grid-column: 2;
    grid-row: auto;
  }

  .room-controls {
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .rooms-section .room-copy {
    align-self: center;
    padding: 0;
  }

  .rooms-section .room-copy h3 {
    font-size: clamp(2.65rem, 3.8vw, 4.15rem);
  }

  .rooms-section .room-copy > p[data-room-copy] {
    margin-top: 0.65rem;
    font-size: 0.7rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }

  .rooms-section .room-features {
    max-width: none;
    margin-top: 0.8rem;
    display: grid;
  }

  .rooms-section .room-features > span {
    min-height: clamp(2.25rem, 5svh, 2.8rem);
    padding-block: 0.4rem;
    font-size: 0.49rem;
  }

  .rooms-section .room-price {
    margin-top: 0.85rem;
  }

  .rooms-section .room-price strong {
    font-size: 1.65rem;
  }

  .rooms-section .room-actions {
    margin-top: 0.7rem;
    padding-right: clamp(3.7rem, 5vw, 4.2rem);
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  }

  .rooms-section .book-now-button,
  .rooms-section .view-room-button {
    min-height: 2.75rem;
  }
}

@media (min-width: 75rem) {
  .room-selector__item {
    grid-template-columns: 2.2rem minmax(0, 1fr);
  }

  .room-selector__item strong {
    font-size: 0.76rem;
  }

  .room-selector__item small {
    font-size: 0.65rem;
  }

  .rooms-section .room-copy > p[data-room-copy] {
    font-size: 0.83rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .room-selector__item,
  .room-selector__item::after,
  .rooms-section .room-media img,
  .room-copy > * {
    transition: none;
  }
}
