/* ─── Light warm palette ─────────────────────────── */
:root {
  --bg: #f6f1ea;
  --bg-mist: #efe8df;
  --bg-sand: #e8dfd3;
  --bg-white: #fbf8f3;
  --ink: #1f1a15;
  --ink-soft: #3a322a;
  --muted: #5a5148;
  --gold: #c49a45;
  --gold-deep: #a07830;
  --gold-light: #e2c47a;
  --gold-wash: rgba(196, 154, 69, 0.14);
  --line: rgba(44, 38, 31, 0.1);
  --line-gold: rgba(176, 138, 74, 0.28);
  --shadow: 0 24px 60px rgba(44, 38, 31, 0.1);
  --font-display: "Cormorant Garamond", serif;
  --font-sans: "Manrope", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --container: 1280px;
  --header-h: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --modal-duration: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body.modal-open,
body.menu-open,
html.lightbox-open,
body.lightbox-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.lightbox-open {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  touch-action: none;
}

#root {
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(212, 181, 122, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(232, 223, 211, 0.9), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(176, 138, 74, 0.12), transparent 55%);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-mist);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 9px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.section--mist {
  background: var(--bg-mist);
}

.section--sand {
  background: var(--bg-sand);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.heading em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}

.text {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

.gold-line::after,
.gold-line-center::after {
  content: "";
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 16px;
}

.gold-line-center::after {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  border: none;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn--gold {
  color: #fff;
  background: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  color: #fff;
  background: rgba(18, 16, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn--ghost:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(18, 16, 14, 0.62);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn--outline {
  color: var(--gold-deep);
  background: transparent;
  border: 1px solid var(--line-gold);
}

.btn--outline:hover {
  background: var(--gold-wash);
  border-color: var(--gold);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

.slider-nav {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: var(--bg-white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.slider-nav svg {
  width: 18px;
  height: 18px;
  display: block;
}

.slider-nav svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-nav:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.04);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, height 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(246, 241, 234, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  height: 96px;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.header__logo-img {
  display: block;
  height: 105px;
  width: auto;
  max-height: 105px;
  object-fit: contain;
  transition: height 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  filter: none;
  opacity: 1;
}

.header:not(.is-scrolled) .header__logo-img {
  filter: brightness(1.18) contrast(1.08) saturate(1.05);
  opacity: 1;
}

.header.is-scrolled .header__logo-img {
  height: 78px;
  max-height: 78px;
  filter: brightness(0.55) contrast(1.15) saturate(1.1);
  opacity: 1;
}

.header__nav--desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 28px;
  min-height: 48px;
}

.header__nav--desktop .btn--sm {
  margin-left: 4px;
  align-self: center;
}

.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.header.is-scrolled .nav-link {
  color: var(--ink);
  text-shadow: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #fff;
}

.header.is-scrolled .nav-link:hover {
  color: var(--gold-deep);
}

.nav-link:hover::after {
  width: 100%;
}

/* Burger — ring + label */
.burger {
  display: none;
  position: relative;
  width: auto;
  height: 44px;
  padding: 0 6px 0 0;
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  z-index: 120;
}

.burger__ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  position: absolute;
  left: 0;
  top: 0;
  transition: border-color 0.3s ease, transform 0.45s var(--ease), background 0.3s ease;
}

.header.is-scrolled .burger__ring,
.burger.is-open .burger__ring {
  border-color: var(--line-gold);
  background: var(--bg-white);
}

.burger.is-open .burger__ring {
  transform: rotate(90deg) scale(1.05);
  background: var(--gold);
  border-color: var(--gold);
}

.burger__lines {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1;
}

.burger__lines i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease, width 0.35s ease, background 0.3s ease;
}

.header.is-scrolled .burger__lines i {
  background: var(--ink);
}

.burger.is-open .burger__lines i {
  background: #fff;
}

.burger.is-open .burger__lines i:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 18px;
}

.burger.is-open .burger__lines i:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.is-open .burger__lines i:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 18px;
}

.burger__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.header.is-scrolled .burger__label {
  color: var(--ink);
}

.burger.is-open .burger__label {
  color: var(--gold-deep);
}

/* Fullscreen menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  visibility: hidden;
  pointer-events: none;
}

.menu-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay__wash {
  position: absolute;
  inset: 0;
  background: rgba(44, 38, 31, 0.35);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.menu-overlay.is-open .menu-overlay__wash {
  opacity: 1;
}

.menu-overlay__photo {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.7s var(--ease);
}

.menu-overlay.is-open .menu-overlay__photo {
  clip-path: inset(0 0 0 0);
}

.menu-overlay__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.2s var(--ease);
}

.menu-overlay.is-open .menu-overlay__photo img {
  transform: scale(1);
}

.menu-overlay__nav {
  position: relative;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 80px;
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.55s var(--ease) 0.08s, opacity 0.45s ease 0.08s;
}

.menu-overlay.is-open .menu-overlay__nav {
  transform: none;
  opacity: 1;
}

.menu-overlay__link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
}

.menu-overlay__link::before {
  content: attr(data-i);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.menu-overlay__link span {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  transition: transform 0.4s var(--ease), color 0.3s ease;
}

.menu-overlay__link:hover span {
  color: var(--gold-deep);
  transform: translateX(12px);
}

.menu-overlay__cta {
  margin-top: 36px;
  align-self: flex-start;
}

.menu-overlay__meta {
  position: absolute;
  left: 8vw;
  bottom: 36px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

.menu-overlay.is-open .menu-overlay__meta {
  opacity: 1;
}

.menu-overlay__close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: 20px;
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: var(--bg-white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.3s ease 0.12s, transform 0.35s var(--ease) 0.12s, background 0.25s ease, color 0.25s ease;
}

.menu-overlay.is-open .menu-overlay__close {
  opacity: 1;
  transform: scale(1);
}

.menu-overlay__close span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

.menu-overlay__close span:first-child {
  transform: rotate(45deg);
}

.menu-overlay__close span:last-child {
  transform: rotate(-45deg);
}

.menu-overlay__close:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 80px;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: heroScale 2s var(--ease) forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(28, 24, 20, 0.28) 18%, rgba(28, 24, 20, 0.16) 55%, rgba(28, 24, 20, 0.32) 100%),
    linear-gradient(to top, rgba(246, 241, 234, 0.42) 0%, transparent 26%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__city {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.hero__content {
  position: relative;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 108px);
  font-weight: 300;
  line-height: 1;
  color: #fbf8f3;
  max-width: 767px;
  margin-bottom: 32px;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero__title em {
  color: #ffb809;
  font-style: italic;
}

.hero__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(251, 248, 243, 0.82);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ─── Video hero ─────────────────────────────────── */
.hero--video {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  padding: 0;
  overflow: hidden;
}

.hero--video .hero__bg {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% center;
  display: block;
  background: #1c1814;
  filter: brightness(0.8) contrast(1.08) saturate(1.06);
}

.hero--video .hero__overlay {
  background:
    linear-gradient(to bottom, rgba(18, 16, 14, 0.62) 0%, rgba(18, 16, 14, 0.28) 12%, transparent 28%),
    linear-gradient(105deg, rgba(28, 24, 20, 0.18) 12%, rgba(28, 24, 20, 0.12) 48%, rgba(28, 24, 20, 0.34) 100%),
    linear-gradient(to top, rgba(246, 241, 234, 0.38) 0%, transparent 24%);
}

.hero--video .hero__grain {
  opacity: 0.04;
}

.hero--video .hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding-top: var(--header-h);
  padding-bottom: 120px;
}

.hero--video .hero__title {
  max-width: 767px;
  margin-bottom: 24px;
  font-size: clamp(42px, 8vw, 108px);
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.hero--video .hero__text {
  color: rgba(251, 248, 243, 0.85);
}

/* Bnovo booking widget */
.bnovo-widget {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 3;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  /* Never stay invisible if entrance animation is skipped/blocked */
  opacity: 1;
}

.bnovo-widget__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bnovo-widget #_bnovo_link_ {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 640px) {
  .hero--video .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero--video .hero__actions .btn {
    width: 100%;
  }

  .bnovo-widget {
    bottom: 12px;
    padding: 0 12px;
  }

  .hero--video .hero__content {
    padding-bottom: 140px;
  }
}

.anim-up {
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--d, 0s) var(--ease) forwards;
}

@keyframes heroScale {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee__track span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.marquee__track i {
  font-style: normal;
  color: var(--gold);
  font-size: 14px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* About */
.about.section {
  padding: 120px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 48px;
  margin-top: 16px;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1;
}

.about__stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.about__media {
  position: relative;
  overflow: hidden;
  padding-bottom: 24px;
}

.about__img-wrap {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-sand);
  position: relative;
}

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

.about__card {
  position: absolute;
  bottom: 0;
  left: 16px;
  right: auto;
  max-width: calc(100% - 32px);
  background: var(--bg-white);
  border: 1px solid var(--line-gold);
  padding: 20px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about__card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about__card-title {
  font-size: 14px;
  color: var(--ink);
}

.about__card-sub {
  font-size: 13px;
  color: var(--muted);
}

/* Rooms video slider */
.rooms-story {
  position: relative;
  z-index: 1;
  background: #1a1612;
  color: #f6f1ea;
  height: 80vh;
  height: 80dvh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.rooms-story__frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: grid;
}

.rooms-story__media {
  position: absolute;
  inset: 0;
  background: #12100e;
}

.rooms-story__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #12100e;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.rooms-story__video.is-active {
  opacity: 1;
}

.rooms-story__video--still {
  background-size: cover;
  background-position: center;
}

.rooms-story__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.72) 0%, rgba(18, 16, 14, 0.18) 28%, rgba(18, 16, 14, 0.28) 58%, rgba(18, 16, 14, 0.82) 100%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(176, 138, 74, 0.18), transparent 60%);
  pointer-events: none;
}

.rooms-story__ui {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 20px) 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.rooms-story__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.rooms-story__header .eyebrow {
  color: var(--gold-light);
}

.heading--light {
  color: #fbf8f3;
  margin: 0;
}

.rooms-story__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rooms-story__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-nav--ghost {
  background: rgba(251, 248, 243, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fbf8f3;
}

.slider-nav--ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.rooms__counter--light {
  color: #ffffff;
  background: rgba(18, 16, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 999px;
  min-width: 78px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.rooms__counter--light b {
  color: #ffffff;
}

.rooms__counter--light i {
  color: var(--gold-light);
}

.rooms__all--light {
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rooms__all--light:hover {
  color: #fff;
}

.rooms-story__card {
  align-self: flex-end;
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: 1.15fr;
  gap: 0;
  background: rgba(251, 248, 243, 0.96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.rooms-story__card.is-switching {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  pointer-events: none;
}

.rooms-story__card-media {
  display: none;
}

.rooms-story__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.rooms-story__card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rooms-story__card .rooms__name {
  font-size: clamp(26px, 3vw, 34px);
  margin-top: 12px;
  margin-bottom: 2px;
}

.rooms-story__card .rooms__subtitle {
  margin-bottom: 10px;
}

.rooms-story__card .rooms__price {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 10px;
}

.rooms-story__card .rooms__desc {
  font-size: 14px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rooms-story__card .rooms__features {
  margin-bottom: 14px;
  gap: 8px;
}

.rooms-story__card .rooms__features span {
  font-size: 12px;
  padding: 5px 10px;
  background: var(--bg-mist);
}

.rooms-story__card .rooms__note {
  margin-bottom: 12px;
}

.rooms-story__gallery-link {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #a67c52);
  text-decoration: none;
}

.rooms-story__gallery-link:hover {
  text-decoration: underline;
}

.rooms-story__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.rooms-story__progress {
  display: flex;
  gap: 10px;
  align-items: center;
}

.rooms-story__dot {
  width: 34px;
  height: 3px;
  border: 0;
  padding: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.3s ease, transform 0.3s ease;
}

.rooms-story__dot.is-active {
  background: var(--gold-light);
  transform: scaleX(1.15);
}

.rooms-story__hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.55);
  margin: 0;
}

/* Legacy rooms helpers still used in catalog/card */
.rooms__all {
  margin-top: 0;
}

.rooms__all a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
}

.rooms__all a:hover {
  color: var(--gold);
}

.rooms__counter {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #ffffff;
  min-width: 72px;
  text-align: center;
}

.rooms__counter b {
  color: #ffffff;
  font-weight: 500;
}

.rooms__counter i {
  font-style: normal;
  margin: 0 4px;
  color: var(--gold);
}

.rooms__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
  background: var(--gold-wash);
  border: 1px solid var(--line-gold);
  padding: 4px 12px;
  border-radius: 2px;
}

.rooms__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  color: var(--ink);
  margin-top: 20px;
  margin-bottom: 4px;
  line-height: 1.1;
}

.rooms__subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.rooms__price {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 300;
  color: var(--gold-deep);
  margin-bottom: 20px;
}

.rooms__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.rooms__features span {
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 2px;
  background: var(--bg);
}

.rooms__footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.rooms__note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Amenities mosaic */
.amenities {
  overflow: hidden;
}

.amenities__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.amenities__aside {
  max-width: 320px;
  margin-bottom: 0;
}

.amenities__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
}

.amenity {
  position: relative;
  grid-column: span 4;
  padding: 28px 28px 32px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.4s ease;
}

.amenity:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
  padding: 40px;
  background:
    linear-gradient(160deg, rgba(176, 138, 74, 0.1), transparent 50%),
    var(--bg-white);
}

.amenity:nth-child(2) {
  grid-column: span 3;
}

.amenity:nth-child(3) {
  grid-column: span 4;
}

.amenity:nth-child(4) {
  grid-column: span 3;
}

.amenity:nth-child(5) {
  grid-column: span 4;
}

.amenity:nth-child(6) {
  grid-column: span 5;
}

.amenity:nth-child(7) {
  grid-column: span 7;
  background:
    linear-gradient(120deg, transparent 40%, rgba(176, 138, 74, 0.08)),
    var(--bg-white);
}

.amenity::before {
  content: attr(data-index);
  position: absolute;
  right: 18px;
  top: 12px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: rgba(176, 138, 74, 0.12);
  line-height: 1;
  pointer-events: none;
}

.amenity:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.amenity__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #1a1713;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.amenity__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.amenity h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.amenity p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 36ch;
  position: relative;
  z-index: 1;
}

.amenity:nth-child(1) h3 {
  font-size: clamp(28px, 3vw, 36px);
}

.amenity:nth-child(1) p {
  font-size: 15px;
}

/* Excursions */
.excursions__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

.excursions__lead {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.excursions__photo {
  position: relative;
  margin-bottom: 48px;
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  background: var(--bg-mist);
}

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

.excursions__photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(232, 223, 211, 0.75) 0%, transparent 50%);
}

.excursions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.excursion-card {
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  gap: 20px;
  transition: background 0.3s ease;
}

.excursion-card:hover {
  background: rgba(255, 255, 255, 0.55);
}

.excursion-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.excursion-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.excursion-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.excursions__cta {
  margin-top: 48px;
  text-align: center;
}

/* Homepage gallery preview */
.home-gallery__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.home-gallery__copy .heading {
  margin-bottom: 20px;
}

.home-gallery__copy .text {
  margin-bottom: 28px;
  max-width: 38ch;
}

.home-gallery__viewport {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1c1814;
}

.home-gallery__track {
  position: absolute;
  inset: 0;
}

.home-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
  pointer-events: none;
}

.home-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(251, 248, 243, 0.88);
}

.home-gallery__nav--prev {
  left: 14px;
}

.home-gallery__nav--next {
  right: 14px;
}

.home-gallery__counter {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(18, 16, 14, 0.55);
  color: #fbf8f3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.home-gallery__counter i {
  font-style: normal;
  opacity: 0.55;
  margin: 0 2px;
}

@media (max-width: 900px) {
  .home-gallery__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-gallery__copy .text {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .home-gallery__viewport {
    aspect-ratio: 5 / 4;
  }

  .home-gallery__nav {
    width: 38px;
    height: 38px;
  }
}

/* Reviews deck */
.reviews__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.reviews__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.reviews {
  overflow: hidden;
}

.reviews-deck {
  position: relative;
  min-height: 450px;
  perspective: 1400px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.reviews-deck:active {
  cursor: grabbing;
}

.review-card {
  position: absolute;
  inset: 0;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px 44px 40px;
  box-shadow: var(--shadow);
  transition:
    transform 0.6s var(--ease),
    opacity 0.45s ease,
    filter 0.45s ease;
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
}

.review-card.is-active {
  z-index: 3;
  transform: translateX(0) rotate(0deg);
  opacity: 1;
}

.review-card.is-next {
  z-index: 2;
  transform: translateX(12px) translateY(14px) rotate(1.5deg) scale(0.97);
  opacity: 0.7;
  filter: saturate(0.9);
}

.review-card.is-prev {
  z-index: 1;
  transform: translateX(-12px) rotate(-1.5deg) scale(0.94);
  opacity: 0;
  pointer-events: none;
}

.review-card.is-far {
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px) scale(0.9);
}

.review-card__mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold-wash);
  color: rgba(176, 138, 74, 0.28);
  line-height: 0.6;
  margin-bottom: 24px;
}

.review-card__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: auto;
  font-style: italic;
}

.review-card__author {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-wash);
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-deep);
}

.review-card__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.review-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.contact__item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.contact__item .text {
  margin-bottom: 0;
}

.contact__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.contact__phone:hover,
.contact__email:hover {
  color: var(--gold-deep);
}

.contact__email {
  display: block;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__map {
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-sand);
  border: 1px solid var(--line);
  height: 340px;
  position: relative;
}

.contact__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.contact__map-pin {
  position: absolute;
  inset: 0;
  display: block;
}

.contact__map-pin iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact__map-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.contact__map-link:hover {
  color: var(--gold-deep, #8f6d38);
}

.contact__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(176, 138, 74, 0.28);
}

.contact__pin-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(251, 248, 243, 0.92);
  padding: 8px 16px;
  border-radius: 2px;
  border: 1px solid var(--line);
}

.contact__hours {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px 24px;
}

.contact__hours-text {
  font-size: 15px;
  color: var(--ink);
}

/* Directions / how to get here */
.directions__header {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.directions__lead {
  max-width: 42ch;
  margin: 0;
}

.directions__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.directions__item {
  padding: 32px 36px 36px 0;
  border-bottom: 1px solid var(--line);
}

.directions__item:nth-child(even) {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.directions__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 12px;
}

.directions__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--ink);
}

.directions__item .text {
  margin: 0;
  max-width: 46ch;
}

@media (max-width: 900px) {
  .directions__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }

  .directions__list {
    grid-template-columns: 1fr;
  }

  .directions__item,
  .directions__item:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg-white);
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-deep);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer__brand span {
  color: var(--ink);
}

.footer__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__copy {
  font-size: 12px;
  color: var(--muted);
}

.footer__credit {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer__credit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__credit-text {
  font-size: 12px;
  color: var(--muted);
}

.footer__credit-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.footer__credit-link:hover {
  opacity: 1;
}

.footer__credit-logo {
  display: block;
  height: 28px;
  width: auto;
  /* Logo asset is white — invert for light footer */
  filter: brightness(0);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}

.modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 38, 31, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--modal-duration) var(--ease);
}

.modal.is-open .modal__backdrop {
  opacity: 1;
}

.modal.is-closing .modal__backdrop {
  opacity: 0;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition:
    opacity var(--modal-duration) var(--ease),
    transform var(--modal-duration) var(--ease);
}

.modal.is-open .modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal.is-closing .modal__dialog {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
}

.modal__header {
  padding: 32px 36px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.modal__brand img {
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0.15) sepia(0.35);
}

.modal__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.modal__room {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.modal__close {
  background: none;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  color: var(--muted);
  width: 36px;
  height: 36px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.modal__close:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.modal__form {
  padding: 32px 36px;
}

.modal__success {
  padding: 56px 36px;
  text-align: center;
}

.modal__success-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}

.modal__success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 12px;
}

.modal__success p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.modal__success strong {
  color: var(--ink);
}

.modal__hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.form-row--2 {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.field {
  margin-bottom: 20px;
}

.form-row .field {
  margin-bottom: 0;
}

.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.field textarea {
  resize: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input[readonly] {
  color: var(--gold-deep);
  cursor: default;
}

.field select {
  cursor: pointer;
}

/* Reveal */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateY(28px);
}

.reveal-right {
  transform: translateY(28px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-400 {
  transition-delay: 0.4s;
}

/* Inner pages */
.hero--page {
  min-height: 72vh;
  min-height: 72dvh;
  padding: calc(var(--header-h) + 48px) 0 72px;
}

.hero--page .hero__title {
  max-width: 780px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.crumbs a {
  color: #fff;
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--gold-light);
}

.crumbs span {
  opacity: 0.75;
}

.room-catalog {
  padding: 0;
}

.room-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 640px;
  background: var(--bg);
}

.room-band--mist {
  background: var(--bg-mist);
}

.room-band--sand {
  background: var(--bg-sand);
}

.room-band--flip .room-band__media {
  order: 2;
}

.room-band__media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #1c1814;
}

.room-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--ease);
}

.room-band:hover .room-band__media img {
  transform: scale(1.04);
}

.room-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 24, 20, 0.35), transparent 42%);
  pointer-events: none;
}

.room-band__index {
  position: absolute;
  left: 28px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 300;
  line-height: 0.8;
  color: rgba(251, 248, 243, 0.18);
  pointer-events: none;
}

.room-band__body {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-band__sub {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 8px 0 20px;
}

.room-band__price {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 300;
  color: var(--gold-deep);
  margin-bottom: 20px;
}

.room-band__price small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 10px;
}

.room-band__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 10px 0;
  list-style: none;
  border: 0;
}

.room-band__facts li {
  display: inline-flex;
  align-items: center;
  background: var(--bg-mist, #efe8df);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}

.room-band__facts b {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.room-band__facts span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.room-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
}

.room-detail__lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
}

.room-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 8px;
}

.room-facts__item {
  padding: 22px 20px;
  background: var(--bg-white);
  border: 1px solid var(--line);
}

.room-facts__item b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.room-facts__item span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-bookcard {
  background: var(--bg-white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.room-bookcard--stacked {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow: auto;
}

.room-detail__aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.room-bookcard__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin: 6px 0 0;
}

.room-bookcard__actions {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.room-bookcard__price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1;
  margin: 8px 0 6px;
}

.room-bookcard__price small {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-bookcard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}

.room-bookcard__note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 20px 0 24px;
}

.room-bookcard .btn {
  width: 100%;
  margin-top: 10px;
}

.room-bookcard .btn:first-of-type,
.room-bookcard__actions .btn:first-of-type {
  margin-top: 0;
}

.room-bookcard__phone {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--gold-deep);
  text-decoration: none;
}

.room-bookcard__phone:hover {
  color: var(--gold);
}

/* Bnovo availability on room detail */
.room-avail {
  margin-top: 0;
  padding: 24px 20px 20px;
  background: var(--bg-white);
  border: 1px solid var(--line);
}

.room-avail--embedded {
  margin: 20px 0 0;
  padding: 20px 0 8px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.room-avail--embedded .room-avail__head {
  margin-bottom: 14px;
}

.room-avail--embedded .room-avail__stats {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.room-avail--embedded .room-avail__calendars {
  grid-template-columns: 1fr;
}

.room-avail__head {
  margin-bottom: 22px;
}

.room-avail__lead {
  margin: 8px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.room-avail__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.room-avail__stat {
  padding: 16px 14px;
  background: var(--bg-mist, #efe8df);
  border-radius: 12px;
}

.room-avail__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 24px);
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1.15;
  margin-bottom: 6px;
}

.room-avail__stat span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-avail__calendars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.room-avail__month-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.room-avail__weekdays,
.room-avail__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.room-avail__weekdays {
  margin-bottom: 6px;
}

.room-avail__weekdays span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-avail__day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.room-avail__day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.room-avail__day.is-free {
  background: #e7f5ea;
  border-color: #8bc99a;
  color: #1f5c32;
}

.room-avail__day.is-free:hover {
  background: #2f8f4e;
  border-color: #2f8f4e;
  color: #fff;
  transform: translateY(-1px);
}

.room-avail__day.is-busy {
  background: #f1ece8;
  border-color: #d9cfc6;
  color: #9a9086;
  text-decoration: line-through;
}

.room-avail__num {
  font-weight: 600;
}

.room-avail__price {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.room-avail__day.is-free .room-avail__price {
  color: #1a6b34;
  opacity: 1;
}

.room-avail__day.is-free:hover .room-avail__price {
  color: #fff;
}

.room-avail__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.room-avail__legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: -1px;
}

.room-avail__legend i.is-free {
  background: #2f8f4e;
  border: 1px solid #237a3e;
}

.room-avail__legend i.is-busy {
  background: #f1ece8;
  border: 1px solid #d9cfc6;
}

.room-avail__all {
  margin-left: auto;
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 500;
}

.room-avail__all:hover {
  text-decoration: underline;
}

.hero--booking {
  min-height: 48vh;
  min-height: 48dvh;
}

.hero--booking .hero__title {
  max-width: 16ch;
}

/* Bnovo booking page */
.booking-page {
  padding: 28px 0 48px;
}

.booking-page__frame {
  width: min(100% - 40px, var(--container, 1280px));
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line, rgba(44, 38, 31, 0.1));
}

.booking-page__iframe {
  display: block;
  width: 100%;
  height: 4800px;
  min-height: 640px;
  border: 0;
  background: #fff;
}

/* While Bnovo lightbox/modal is open: pin iframe to the viewport */
html.bnovo-overlay-open,
body.bnovo-overlay-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.bnovo-overlay-open {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  touch-action: none;
}

.booking-page__iframe--overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10050 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100dvh !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 0 !important;
  background: #fff;
}

@media (max-width: 900px) {
  .room-avail__stats,
  .room-avail__calendars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .booking-page {
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .booking-page__frame {
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .booking-page__iframe {
    height: 4800px;
    min-height: 640px;
  }

  .room-avail {
    padding: 20px 16px;
  }

  .room-avail__all {
    margin-left: 0;
    width: 100%;
  }
}




.room-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.room-catalog-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.room-catalog-cta .text {
  margin-top: 28px;
}

.room-perk {
  padding: 28px 26px;
  background: var(--bg-white);
  border: 1px solid var(--line);
}

.room-perk h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.room-perk p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.room-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.room-next__card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.room-next__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.room-next__card:hover img {
  transform: scale(1.05);
}

.room-next__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 24, 20, 0.78), transparent 55%);
}

.room-next__card div {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
}

.room-next__card p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.room-next__card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
}

.nav-link.is-current {
  color: var(--gold-light);
}

.header.is-scrolled .nav-link.is-current {
  color: var(--gold-deep);
}

/* Responsive */
@media (min-width: 1101px) {
  .about__card {
    left: -24px;
    bottom: 0;
  }

  .about__media {
    overflow: visible;
    padding-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .rooms-story__card {
    grid-template-columns: 1.15fr;
    width: min(560px, 100%);
  }

  .reviews__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .room-band,
  .room-band--flip {
    grid-template-columns: 1fr;
  }

  .room-band--flip .room-band__media {
    order: 0;
  }

  .room-band__media {
    min-height: 420px;
  }

  .room-band__body {
    padding: 48px 40px 64px;
  }

  .room-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .room-detail__aside,
  .room-bookcard,
  .room-bookcard--stacked {
    position: static;
    max-height: none;
  }

  .room-next {
    grid-template-columns: 1fr;
  }

  .amenities__mosaic {
    grid-template-columns: repeat(6, 1fr);
  }

  .amenity,
  .amenity:nth-child(n) {
    grid-column: span 3;
    grid-row: auto;
  }

  .amenity:nth-child(1) {
    grid-column: span 6;
  }

  .excursions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 96px;
  }

  .header.is-scrolled {
    height: 84px;
  }

  .header__logo-img {
    height: 78px;
    max-height: 78px;
  }

  .header.is-scrolled .header__logo-img {
    height: 64px;
    max-height: 64px;
  }

  .burger {
    display: flex;
    align-items: center;
  }

  .header__nav--desktop {
    display: none;
  }

  .menu-overlay {
    grid-template-columns: 1fr;
  }

  .menu-overlay__photo {
    display: none;
  }

  .menu-overlay__meta {
    left: 24px;
    right: 24px;
  }

  .hero__city {
    display: none;
  }

  .about__grid,
  .excursions__header,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .excursions__grid {
    grid-template-columns: 1fr;
  }

  .excursion-card {
    border-right: none;
  }

  .excursions__photo {
    height: 220px;
  }

  .contact__map {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .room-avail--embedded .room-avail__stats {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .section,
  .about.section {
    padding: 72px 0;
  }

  .hero,
  .hero--video {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    height: 100svh;
    padding: 0;
  }

  .hero--video .hero__title {
    font-size: clamp(42px, 14vw, 64px);
    text-shadow:
      0 2px 12px rgba(0, 0, 0, 0.55),
      0 8px 28px rgba(0, 0, 0, 0.4);
  }

  .hero--video .hero__text {
    text-shadow:
      0 1px 8px rgba(0, 0, 0, 0.5),
      0 4px 18px rgba(0, 0, 0, 0.35);
  }

  .hero--page {
    height: auto;
    min-height: 70svh;
    padding: calc(var(--header-h) + 16px) 0 48px;
  }

  .hero__title {
    font-size: clamp(36px, 11vw, 52px);
    margin-bottom: 20px;
  }

  .hero__text {
    margin-bottom: 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .rooms-story__ui {
    padding: calc(var(--header-h) + 8px) 16px 14px;
    gap: 10px;
    justify-content: flex-start;
  }

  .rooms-story__header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 100%;
  }

  .rooms-story__header > div:first-child {
    width: 100%;
  }

  .rooms-story__header .eyebrow {
    margin-bottom: 4px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  }

  .rooms-story__header .heading--light {
    font-size: clamp(28px, 8vw, 34px);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  }

  .rooms-story__meta {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .rooms-story__controls {
    gap: 8px;
  }

  .rooms-story__controls .slider-nav--ghost {
    width: 40px;
    height: 40px;
    background: rgba(18, 16, 14, 0.55);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
  }

  .rooms__all--light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(18, 16, 14, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fbf8f3;
    backdrop-filter: blur(8px);
    text-shadow: none;
    white-space: nowrap;
    letter-spacing: 0.1em;
  }

  .rooms__all--light:hover {
    color: #fff;
    background: rgba(18, 16, 14, 0.78);
    border-color: var(--gold-light);
  }

  .rooms-story__card {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: none;
    overflow: visible;
    margin-top: auto;
    flex-shrink: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  .rooms-story__card-body {
    padding: 12px 14px 12px;
    gap: 0;
  }

  .rooms-story__card .rooms__name {
    font-size: clamp(20px, 5.6vw, 24px);
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.15;
  }

  .rooms-story__card .rooms__subtitle {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .rooms-story__card .rooms__price {
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 0;
  }

  .rooms-story__card .rooms__desc,
  .rooms-story__card .rooms__note,
  .rooms-story__gallery-link {
    display: none;
  }

  .rooms-story__card .rooms__features {
    display: none;
  }

  .rooms-story__card .rooms__footer-actions {
    margin-top: 10px;
    gap: 8px;
  }

  .rooms-story__card .rooms__footer-actions .btn {
    padding: 10px 14px;
    font-size: 12px;
    flex: 1;
  }

  .rooms-story__footer {
    flex-shrink: 0;
    margin-top: 8px;
  }

  .rooms-story {
    height: min(100svh, 760px);
    min-height: 560px;
    max-height: none;
  }

  .rooms-story__veil {
    background:
      linear-gradient(180deg, rgba(18, 16, 14, 0.7) 0%, rgba(18, 16, 14, 0.12) 24%, rgba(18, 16, 14, 0.1) 52%, rgba(18, 16, 14, 0.78) 100%),
      radial-gradient(ellipse 70% 50% at 80% 70%, rgba(176, 138, 74, 0.14), transparent 60%);
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .amenities__mosaic {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .amenity,
  .amenity:nth-child(n) {
    grid-column: span 1;
  }

  .amenity:nth-child(1) {
    grid-column: span 1;
  }

  .review-card {
    padding: 32px 24px;
  }

  .room-band__media {
    min-height: 300px;
  }

  .room-band__body {
    padding: 36px 20px 56px;
  }

  .room-band__facts,
  .room-facts,
  .room-perks {
    grid-template-columns: 1fr;
  }

  .room-next__card {
    min-height: 280px;
  }

  .modal {
    padding: 12px;
    align-items: flex-end;
  }

  .modal__dialog {
    max-height: 92vh;
    border-radius: 8px 8px 0 0;
  }

  .modal.is-open .modal__dialog {
    transform: translateY(0);
  }

  .modal:not(.is-open) .modal__dialog,
  .modal.is-closing .modal__dialog {
    transform: translateY(100%);
  }

  .modal__header,
  .modal__form {
    padding: 24px 20px;
  }

  .form-row--2,
  .form-row--3 {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .menu-overlay__nav {
    padding: 100px 24px 100px;
  }

  .menu-overlay__link span {
    font-size: 40px;
  }
}

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

  .marquee__track {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .anim-up {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .rooms-story__card {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .rooms-story__hint {
    display: none;
  }
}

.modal__error{color:#a33;font-size:.88rem;margin:0 0 10px;}

/* Room gallery slider + lightbox */
.room-gallery {
  margin-bottom: 28px;
}

.room-gallery__viewport {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #1c1814;
  aspect-ratio: 16 / 10;
}

.room-gallery__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.room-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.room-gallery__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.room-gallery__slide img,
.room-gallery__open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(18, 16, 14, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.room-gallery__nav svg {
  width: 18px;
  height: 18px;
}

.room-gallery__nav svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-gallery__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.room-gallery__nav--prev {
  left: 14px;
}

.room-gallery__nav--next {
  right: 14px;
}

.room-gallery__counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(18, 16, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
}

.room-gallery__counter i {
  font-style: normal;
  margin: 0 4px;
  color: var(--gold-light);
}

.room-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.room-gallery__thumb {
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #efe8df;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.room-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-gallery__thumb:hover {
  opacity: 1;
}

.room-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.room-gallery--single .room-gallery__nav,
.room-gallery--single .room-gallery__counter,
.room-gallery--single .room-gallery__thumbs {
  display: none;
}

.room-lightbox {
  position: fixed !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 10000 !important;
  display: grid;
  place-items: center;
  margin: 0;
  background: rgba(10, 8, 6, 0.92);
  padding: 24px;
  box-sizing: border-box;
}

.room-lightbox[hidden] {
  display: none !important;
}

.room-lightbox.is-open {
  display: grid !important;
}

.room-lightbox__figure {
  margin: 0;
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 80px);
  width: 100%;
}

.room-lightbox__img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 8px;
}

.room-lightbox__close,
.room-lightbox__nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(18, 16, 14, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.room-lightbox__close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  z-index: 2;
}

.room-lightbox__close svg,
.room-lightbox__nav svg {
  width: 18px;
  height: 18px;
}

.room-lightbox__close svg path,
.room-lightbox__nav svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  z-index: 2;
}

.room-lightbox__nav--prev {
  left: 18px;
}

.room-lightbox__nav--next {
  right: 18px;
}

.room-lightbox__close:hover,
.room-lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.room-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(18, 16, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
}

.room-lightbox__counter i {
  font-style: normal;
  margin: 0 4px;
  color: var(--gold-light);
}

@media (max-width: 640px) {
  .room-gallery__viewport {
    aspect-ratio: 4 / 3;
  }

  .room-gallery__nav {
    width: 38px;
    height: 38px;
  }

  .room-gallery__thumbs {
    grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  }

  .room-lightbox {
    padding: 12px;
  }

  .room-lightbox__nav--prev {
    left: 8px;
  }

  .room-lightbox__nav--next {
    right: 8px;
  }
}

/* ─── Site photo gallery page ─────────────────────── */
.photo-gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 40px;
}

.photo-gallery__tab {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  font-weight: 600;
}

.photo-gallery__tab:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.photo-gallery__block + .photo-gallery__block {
  margin-top: 64px;
}

.photo-gallery__block .heading {
  margin-bottom: 28px;
}

.photo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.photo-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  background: #ddd4c8;
  cursor: zoom-in;
  overflow: hidden;
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease, ease), filter 0.35s ease;
}

.photo-gallery__item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.photo-gallery__room + .photo-gallery__room {
  margin-top: 40px;
}

.photo-gallery__room-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 16px;
}

.photo-gallery__room-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

.photo-gallery__room-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #a67c52);
  text-decoration: none;
}

.photo-gallery__room-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .photo-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
