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

:root {
  --ink: #0E0E0E;
  --ink-60: rgba(14,14,14,0.6);
  --surface-dark: #141414;
  --surface-mid: #1E1C1A;
  --ivory: #F2EDE6;
  --ivory-dark: #E8E2D9;
  --gold: #C9A96E;
  --gold-pale: rgba(201,169,110,0.15);
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,0.70);
  --white-40: rgba(255,255,255,0.40);
  --white-15: rgba(255,255,255,0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--surface-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe, svg { max-width: 100%; display: block; }
iframe { border: 0; }
h1, h2, h3, h4, p, a, li { overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; }

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── CUSTOM CURSOR ───────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background 0.3s, opacity 0.3s;
  mix-blend-mode: normal;
}
.cursor.expand {
  width: 56px; height: 56px;
  background: transparent;
  border: 1px solid var(--gold);
}
.cursor-label {
  position: fixed; z-index: 9998;
  pointer-events: none;
  font-family: var(--sans);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor-label.show { opacity: 1; }
@media (hover: none) {
  .cursor, .cursor-label { display: none; }
}

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: calc(28px + env(safe-area-inset-top, 0px)) clamp(16px, 4vw, 48px) 28px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.6s var(--ease-out), background 0.6s, backdrop-filter 0.6s;
}
nav.scrolled {
  padding: calc(18px + env(safe-area-inset-top, 0px)) clamp(16px, 4vw, 48px) 18px;
  background: rgba(14,14,14,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.nav-logo {
  font-family: var(--serif);
  font-size: clamp(14px, 2.4vw, 17px); font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: clamp(16px, 2.4vw, 36px);
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white-70);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-book {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 24px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(201,169,110,0.6);
  color: var(--gold);
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}
.nav-book:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.hamburger {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
  background: none; border: none; padding: 10px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; inset: 0; z-index: 999;
  background: var(--surface-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: clamp(16px, 5vh, 40px);
  padding: calc(88px + env(safe-area-inset-top, 0px)) calc(24px + env(safe-area-inset-right, 0px)) calc(40px + env(safe-area-inset-bottom, 0px)) calc(24px + env(safe-area-inset-left, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(28px, 8vw, 36px); font-weight: 400;
  letter-spacing: 0.04em; color: var(--white);
  transition: color 0.3s;
  text-align: center;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-book {
  margin-top: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-img {
  position: absolute;
  top: -4%; right: -4%; bottom: -4%; left: -4%;
  inset: -4%;
  overflow: hidden;
  transform: scale(1.04);
  animation: heroSettle 3.5s var(--ease-out) forwards;
}
.hero-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  -webkit-user-drag: none;
  pointer-events: none;
}
@keyframes heroSettle {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.30) 0%,
    rgba(10,8,6,0.45) 50%,
    rgba(10,8,6,0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 780px;
  width: 100%;
  padding: 0 24px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 300; line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: 15px; font-weight: 300;
  color: var(--white-70); line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.8s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  transition: background 0.35s, color 0.35s;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.35s, color 0.35s;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}
.btn-outline:hover { border-color: var(--white); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
}
.hero-scroll-label {
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-40);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.7), transparent);
  animation: scrollLine 2s ease-in-out 2.5s infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@supports (-webkit-touch-callout: none) {
  .hero-content {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

/* ── INTRO SECTION ────────────────────────────── */
.intro {
  background: var(--ivory);
  padding: 110px clamp(16px, 4vw, 48px);
  color: var(--ink);
}
.intro-inner {
  max-width: 1200px; margin: 0 auto;
  width: 100%;
  display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px, 6vw, 80px); align-items: start;
}
.intro-left {}
.intro-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  writing-mode: horizontal-tb;
}
.intro-divider {
  width: 40px; height: 1px; background: var(--gold);
  margin: 20px 0;
}
.intro-right {}
.intro-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--ink);
}
.intro-heading em { font-style: italic; color: #6B5A3E; }
.intro-body {
  font-size: 15px; font-weight: 300;
  line-height: 1.85; color: #4A3F32;
  max-width: 560px; margin-bottom: 36px;
}
.intro-highlights {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.intro-hl {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  padding-left: 16px;
  border-left: 1px solid var(--gold);
  line-height: 1.5;
}

/* ── SECTION BASE ─────────────────────────────── */
.section-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px);
  width: 100%;
}
.section-header {
  margin-bottom: 60px;
}
.eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400; line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 14px; font-weight: 300;
  line-height: 1.7; color: var(--white-70);
  margin-top: 14px; max-width: 480px;
}
.dark-section { background: var(--surface-dark); padding: 110px 0; }
.ivory-section { background: var(--ivory); color: var(--ink); padding: 110px 0; }
.ivory-section .section-title { color: var(--ink); }
.ivory-section .section-sub { color: #6B5A3E; }
.ivory-section .eyebrow { color: var(--gold); }
.mid-section { background: var(--surface-mid); padding: 110px 0; }

/* ── ROOMS ────────────────────────────────────── */
.rooms-list { display: flex; flex-direction: column; gap: 0; }
.room-item {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.room-item:nth-child(even) .room-img-wrap { order: 2; }
.room-item:nth-child(even) .room-content { order: 1; }
.room-img-wrap {
  position: relative; overflow: hidden;
  min-height: 520px;
  min-width: 0;
}
.room-img-wrap img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s var(--ease-out);
}
.room-img-wrap:hover img { transform: scale(1.04); }
.room-img-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0;
  background: rgba(10,8,6,0);
  transition: background 0.5s;
  display: flex; align-items: center; justify-content: center;
}
.room-img-wrap:hover .room-img-overlay {
  background: rgba(10,8,6,0.25);
}
.room-view-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white-70);
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.room-img-wrap:hover .room-view-label {
  opacity: 1; transform: translateY(0);
}
.room-content {
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface-mid);
  min-width: 0;
}
.room-number {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  font-family: var(--sans);
}
.room-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 18px;
}
.room-desc {
  font-size: 14px; font-weight: 300;
  line-height: 1.8; color: var(--white-70);
  margin-bottom: 32px; max-width: 360px;
}
.room-features {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.room-feat {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-40);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-room {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.35s;
  width: fit-content;
}
.btn-room:hover { border-color: var(--gold); }
.btn-room-arrow { transition: transform 0.35s var(--ease-out); }
.btn-room:hover .btn-room-arrow { transform: translateX(5px); }

/* ── SUITE SECTION ────────────────────────────── */
.suite {
  background: var(--surface-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  min-height: 90dvh;
  display: grid; grid-template-columns: 1fr 1fr;
}
.suite-img-col {
  position: relative; overflow: hidden;
  min-height: 90vh;
  min-height: 90dvh;
  min-width: 0;
  cursor: pointer;
}
.suite-img-col img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.suite-content-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px);
  background: var(--surface-dark);
  position: relative;
  min-width: 0;
}
.suite-content-col::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.suite-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.suite-title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 12px;
}
.suite-tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300; font-style: italic;
  color: var(--gold); margin-bottom: 28px;
}
.suite-desc {
  font-size: 14.5px; font-weight: 300;
  line-height: 1.8; color: var(--white-70);
  max-width: 380px; margin-bottom: 40px;
}
.suite-gold-line {
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}

/* ── AMENITIES ────────────────────────────────── */
.amenities-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center;
}
.amenities-img-wrap {
  position: relative; overflow: hidden;
  height: 560px;
  min-width: 0;
}
.amenities-img-wrap img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.amenities-content {}
.amenities-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 36px;
}
.amenity {
  padding: 20px;
  border: 1px solid rgba(201,169,110,0.15);
}
.amenity-name {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); line-height: 1.5;
}
.amenity-icon {
  font-size: 18px; margin-bottom: 10px;
}

/* ── DINING ───────────────────────────────────── */
.dining-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3px;
  min-height: 600px;
}
.dining-img-main, .dining-img-sec {
  position: relative; overflow: hidden;
  min-height: 600px;
  min-width: 0;
}
.dining-img-main { flex: 1; }
.dining-img-sec { flex: 0; }
.dining-img-main img, .dining-img-sec img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.9s var(--ease-out);
}
.dining-img-main:hover img, .dining-img-sec:hover img {
  transform: scale(1.04);
}
.dining-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10,8,6,0.7));
}
.dining-caption-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.dining-caption-name {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--white);
}
.dining-text-block {
  padding: 60px 0 0;
  max-width: 640px;
}
.dining-desc {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: #6B5A3E;
}

/* ── GALLERY ──────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 3px;
}
.gal-item {
  overflow: hidden; cursor: pointer;
  position: relative;
  min-width: 0;
  min-height: 0;
}
.gal-item img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.7s var(--ease-out);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0;
  background: rgba(10,8,6,0);
  transition: background 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.gal-item:hover .gal-item-overlay {
  background: rgba(10,8,6,0.30);
}
.gal-view { font-size: 8.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); border: 1px solid rgba(255,255,255,0.6); padding: 8px 16px; opacity: 0; transition: opacity 0.35s; }
.gal-item:hover .gal-view { opacity: 1; }
.gal-1 { grid-column: span 5; grid-row: span 2; }
.gal-2 { grid-column: span 4; grid-row: span 1; }
.gal-3 { grid-column: span 3; grid-row: span 1; }
.gal-4 { grid-column: span 3; grid-row: span 1; }
.gal-5 { grid-column: span 4; grid-row: span 1; }

/* ── LIGHTBOX ─────────────────────────────────── */
.lightbox {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; inset: 0; z-index: 9990;
  background: rgba(8,6,4,0.97);
  display: none; align-items: center; justify-content: center;
  pointer-events: none;
}
.lightbox.active { display: flex; pointer-events: auto; }
.lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 85vh;
  max-height: 85dvh;
  width: auto; height: auto;
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none; border: none;
  color: var(--white-70); cursor: pointer;
  font-family: var(--sans); font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px;
  transition: color 0.3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close { top: 28px; right: 36px; font-size: 22px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white-40);
}

/* ── LOCATION ─────────────────────────────────── */
.location-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center;
}
.location-facts { display: flex; flex-direction: column; gap: 28px; margin: 40px 0; }
.loc-fact {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.loc-fact:last-child { border-bottom: none; }
.loc-num {
  font-family: var(--serif);
  font-size: 36px; font-weight: 300;
  color: var(--gold); line-height: 1;
  min-width: 50px;
}
.loc-detail-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white-40); margin-bottom: 4px;
}
.loc-detail-val {
  font-size: 14px; font-weight: 400;
  color: var(--white); line-height: 1.5;
}
.map-embed {
  height: 420px; overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}
.map-embed iframe {
  width: 100%; height: 100%; border: none;
  max-width: 100%;
}
.map-overlay-label {
  position: absolute; top: 20px; left: 20px;
  background: var(--surface-dark);
  padding: 10px 16px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.25);
}
.btn-directions {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
  transition: background 0.35s, color 0.35s;
}
.btn-directions:hover { background: var(--gold); color: var(--ink); }

/* ── FINAL CTA ────────────────────────────────── */
.final-cta {
  position: relative; overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0;
}
.final-cta-bg {
  position: absolute;
  top: -5%; right: -5%; bottom: -5%; left: -5%;
  inset: -5%;
  overflow: hidden;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  -webkit-user-drag: none;
  pointer-events: none;
}
.final-cta-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0;
  background: rgba(10,8,6,0.72);
}
.final-cta-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  width: 100%;
  max-width: 900px;
}
.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 16px;
}
.final-cta-sub {
  font-size: 15px; font-weight: 300;
  color: var(--white-70); margin-bottom: 40px;
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: #0A0A0A;
  padding: 80px clamp(16px, 4vw, 48px) 40px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-city {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-tagline {
  font-size: 13px; font-weight: 300;
  color: var(--white-40); line-height: 1.7;
  max-width: 240px; margin-bottom: 28px;
}
.footer-socials {
  display: flex; gap: 16px;
}
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white-40);
  transition: border-color 0.3s, color 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: var(--white-40);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  font-size: 13px; font-weight: 300;
  color: var(--white-40); line-height: 1.6;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-contact-item a {
  color: var(--white-40);
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 11px; font-weight: 300;
  color: var(--white-40); letter-spacing: 0.06em;
}
.footer-site {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(201,169,110,0.4);
}

/* ── MOBILE STICKY BAR ────────────────────────── */
.sticky-mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--surface-dark);
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 12px max(20px, env(safe-area-inset-right, 0px)) 12px max(20px, env(safe-area-inset-left, 0px));
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-mobile-bar a {
  flex: 1 1 0; text-align: center;
  font-size: clamp(9px, 2.8vw, 10.5px); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 8px;
  min-width: 0;
}
.sticky-bar-book { background: var(--gold); color: var(--ink); }
.sticky-bar-call { border: 1px solid rgba(201,169,110,0.4); color: var(--gold); }

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  animation: revealFailsafe 0.7s var(--ease-out) 1.8s forwards;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  animation: none;
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }
@keyframes revealFailsafe {
  to { opacity: 1; transform: none; }
}

/* If JS marks the document ready, never leave copy invisible */
.hero-ready .hero-eyebrow,
.hero-ready .hero-title,
.hero-ready .hero-sub,
.hero-ready .hero-ctas,
.hero-ready .hero-scroll {
  opacity: 1 !important;
  animation: none;
}

/* ── REDUCED MOTION ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { animation: none; transform: scale(1); }
  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-img {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  :where(.reveal, .reveal-img) img {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .booking-modal,
  .booking-panel {
    transition-duration: 0.01ms !important;
  }
  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-ctas,
  .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ── RESPONSIVE ───────────────────────────────── */

/* Shared image-fill safety */
.room-item,
.suite,
.amenities-inner,
.dining-inner,
.location-inner,
.intro-inner,
.footer-top,
.gallery-grid {
  width: 100%;
}
.room-item > *,
.suite > *,
.amenities-inner > *,
.dining-inner > *,
.location-inner > *,
.intro-inner > *,
.footer-top > * {
  min-width: 0;
}

/* Hover zoom only on devices that actually hover */
@media (hover: none) {
  .room-img-wrap:hover img,
  .gal-item:hover img,
  .dining-img-main:hover img,
  .dining-img-sec:hover img {
    transform: none;
  }
}

/* Large tablet / small laptop: keep desktop composition, tighten chrome */
@media (max-width: 1200px) {
  .nav-links { gap: 22px; }
}

/* iPad / tablet landscape and below */
@media (max-width: 1024px) {
  .room-item { grid-template-columns: 1fr; min-height: 0; }
  .room-item:nth-child(even) .room-img-wrap { order: 0; }
  .room-item:nth-child(even) .room-content { order: 0; }
  .room-img-wrap {
    min-height: 260px;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 520px;
  }
  .room-content { padding: 44px clamp(24px, 5vw, 36px); }
  .suite { grid-template-columns: 1fr; min-height: 0; }
  .suite-img-col {
    min-height: 260px;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 70vh;
  }
  .suite-content-col { padding: 56px clamp(24px, 5vw, 40px); }
  .amenities-inner { grid-template-columns: 1fr; }
  .amenities-img-wrap {
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    min-height: 240px;
  }
  .location-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(220px, 32vw);
  }
  .gal-1 { grid-column: span 2; grid-row: span 1; min-height: 260px; }
  .gal-2, .gal-3, .gal-4, .gal-5 { grid-column: span 1; grid-row: span 1; }
  .map-embed { height: min(420px, 58vw); min-height: 260px; }
}

/* Compact tablet: hamburger so nav never overflows */
@media (max-width: 900px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; z-index: 1001; }
}

/* Phones + small tablets */
@media (max-width: 768px) {
  nav { padding: calc(18px + env(safe-area-inset-top, 0px)) 20px 18px; }
  nav.scrolled { padding: calc(14px + env(safe-area-inset-top, 0px)) 20px 14px; }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .sticky-mobile-bar { display: flex; }
  .intro { padding: 72px 20px; }
  .section-wrap { padding: 0 20px; }
  .dark-section, .ivory-section, .mid-section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  .hero {
    min-height: 0;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
  }
  .hero-content {
    padding: 96px 20px 110px;
  }
  .hero-title { font-size: clamp(32px, 9vw, 42px); }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .hero-sub br { display: none; }
  .hero-img img { object-position: center 28%; }
  .hero-scroll { bottom: 88px; }

  .dining-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 3px;
  }
  .dining-img-main,
  .dining-img-sec {
    min-height: 240px;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .dining-caption { padding: 18px 16px; }
  .dining-caption-name { font-size: 20px; }
  .dining-text-block { padding: 36px 0 0; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(180px, 36vw);
    gap: 3px;
  }
  .gal-1 { grid-column: span 2; grid-row: span 1; min-height: 220px; }
  .gal-2, .gal-3, .gal-4, .gal-5 { grid-column: span 1; grid-row: span 1; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 60px 20px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .final-cta {
    min-height: 0;
    padding: 80px 0 110px;
  }
  .final-cta-title { font-size: clamp(32px, 9vw, 42px); }
  .final-cta-sub br { display: none; }

  .lightbox-img {
    max-width: 92vw;
    max-height: 68vh;
    max-height: 68dvh;
  }
  .lb-close { top: 12px; right: 12px; }
  .lb-prev, .lb-next {
    top: auto;
    bottom: 18px;
    transform: none;
    padding: 14px 18px;
    font-size: 16px;
  }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-counter { bottom: 22px; }

  .loc-fact { gap: 14px; }
  .btn-directions { max-width: 100%; }
  .map-overlay-label {
    top: 12px; left: 12px;
    max-width: calc(100% - 24px);
  }
}

/* Large phones */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; }
  .amenities-list { grid-template-columns: 1fr; }
  .intro-highlights { flex-direction: column; gap: 20px; }
  .room-img-wrap {
    aspect-ratio: 5 / 4;
    max-height: none;
  }
  .suite-img-col {
    aspect-ratio: 5 / 4;
    max-height: none;
  }
  .amenities-img-wrap {
    aspect-ratio: 5 / 4;
    max-height: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, 62vw);
  }
  .gal-1, .gal-2, .gal-3, .gal-4, .gal-5 {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }
  .room-features { gap: 10px; }
  .mobile-menu-book { padding: 14px 24px; }
}

/* Very small phones */
@media (max-width: 360px) {
  nav { padding: calc(16px + env(safe-area-inset-top, 0px)) 14px 16px; }
  .section-wrap, .intro { padding-left: 14px; padding-right: 14px; }
  footer { padding-left: 14px; padding-right: 14px; }
  .hero-content { padding-left: 14px; padding-right: 14px; }
  .hero-title { font-size: clamp(28px, 9.5vw, 34px); }
  .btn-primary, .btn-outline { padding: 14px 20px; }
}

/* ── iOS (iPhone / iPad) stable hero viewport ─────────────
   Safari's collapsing browser toolbar makes 100dvh grow while
   scrolling, which shifts the hero and can open the page with
   a large dark offset above the fixed nav. 100svh keeps the
   hero a stable, exact fit for the visible viewport. The gate
   below only matches iOS-style touch Safari — desktop Safari,
   Chrome, Firefox, and Android keep their existing heights.
   Short landscape phones keep the auto-height rule below. */
@supports (-webkit-touch-callout: none) {
  @media (hover: none) and (min-height: 561px) {
    .hero {
      height: 100vh;
      height: 100dvh;
      height: 100svh;
    }
  }
}

/* Short landscape phones / foldables */
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: 0;
    height: auto;
    padding: 96px 0 72px;
  }
  .hero-content { padding: 24px 20px 32px; }
  .hero-scroll { display: none; }
  .hero-title { font-size: clamp(28px, 6vw, 40px); }
  .mobile-menu { gap: 12px; padding-top: 72px; }
  .mobile-menu a { font-size: 24px; }
  .suite-img-col,
  .room-img-wrap,
  .amenities-img-wrap {
    max-height: 80vh;
  }
}


/* ── LANDSCAPE HERO FRAMING ONLY ─────────────────
   Portrait rules are untouched.
   Desktop (hover + tall viewports) is untouched.
   The source photo is portrait, so landscape cover +
   object-position: center 20% framed the sky/roof and
   cropped the hotel facade. These queries only retarget
   that crop window. object-fit stays cover. */
@media (orientation: landscape) and (max-height: 540px) {
  .hero-img {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
  }
  .hero-img img {
    object-position: center 68%;
  }
}
@media (orientation: landscape) and (hover: none) and (min-height: 541px) {
  .hero-img {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
  }
  .hero-img img {
    object-position: center 60%;
  }
}


/* ── DESKTOP HERO SLIGHT ZOOM-OUT ONLY ───────────
   Phones/tablets (including existing landscape
   framing) are excluded via min-width + hover.
   Removes the -4% overscan so a bit more facade
   shows. object-fit remains cover. */
@media (min-width: 1280px) and (hover: hover) {
  .hero-img {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
  }
  .hero-img img {
    object-fit: cover;
    object-position: center center;
  }
}


/* ════════════════════════════════════════════════════════════
   ITERATION 6 — navigation visibility, booking modal,
   premium image reveal (additions only)
   ════════════════════════════════════════════════════════════ */

/* Nav stays visible & dark on phones/tablets — never transparent */
@media (max-width: 900px) {
  nav {
    background: rgba(14,14,14,0.92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }
}
/* iPad / Android tablet (any width, pure-touch): premium dark bar + hamburger */
@media (hover: none) and (pointer: coarse) {
  nav {
    background: rgba(14,14,14,0.92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
}

/* Subtle premium image reveal (scroll-linked, mirrors .reveal) */
.reveal-img {
  opacity: 0;
  transform: translateY(26px) scale(1.02);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  animation: revealFailsafe 0.7s var(--ease-out) 1.8s forwards;
  will-change: opacity, transform;
}
.reveal-img.visible {
  opacity: 1;
  transform: none;
  animation: none;
}
/* Slow cinematic settle for images inside revealed blocks
   (low-specificity so existing hover zooms keep working) */
:where(.reveal, .reveal-img) img {
  transition: transform 1.5s var(--ease-out), opacity 1.2s ease;
}
:where(.reveal:not(.visible), .reveal-img:not(.visible)) img {
  transform: scale(1.04);
  opacity: 0.9;
}
:where(.reveal.visible, .reveal-img.visible) img {
  transform: scale(1);
  opacity: 1;
}

/* ── Booking Enquiry Modal ───────────────────────────────── */
.booking-modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 16px calc(18px + env(safe-area-inset-bottom, 0px));
  background: rgba(8,8,8,0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease-out), visibility 0s linear 0.22s;
}
.booking-modal.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s var(--ease-out);
}
.booking-panel {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(165deg, #1B1916 0%, #141414 45%, #0F0F0F 100%);
  border: 1px solid rgba(201,169,110,0.28);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
  padding: clamp(30px, 5vw, 50px) clamp(22px, 4.5vw, 44px);
  transform: translateY(26px) scale(0.985);
  transition: transform 0.28s var(--ease-out);
}
.booking-modal.active .booking-panel {
  transform: none;
}
.booking-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: var(--white-70);
  transition: color 0.3s;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}
.booking-close:hover { color: var(--gold); }
.booking-head { text-align: center; margin-bottom: 30px; padding-top: 6px; }
.booking-eyebrow {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.booking-title {
  font-family: var(--serif);
  font-size: clamp(30px, 6vw, 40px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white);
}
.booking-gold-line { width: 44px; height: 1px; background: var(--gold); margin: 18px auto; }
.booking-sub {
  font-size: 13px; font-weight: 300;
  line-height: 1.7;
  color: var(--white-70);
  max-width: 420px;
  margin: 0 auto;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.booking-grid .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.booking-grid .field.full { grid-column: 1 / -1; }
.booking-grid label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.booking-grid input,
.booking-grid select,
.booking-grid textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px; /* prevents iOS auto-zoom on focus */
  font-weight: 400;
  padding: 13px 14px;
  outline: none;
  color-scheme: dark;
  transition: border-color 0.3s, background 0.3s;
  min-height: 48px;
  pointer-events: auto;
  -webkit-user-select: text;
  user-select: text;
  touch-action: manipulation;
}
.booking-grid textarea { resize: vertical; min-height: 84px; line-height: 1.6; }
.booking-grid input::placeholder,
.booking-grid textarea::placeholder { color: rgba(242,237,230,0.35); }
.booking-grid input:focus,
.booking-grid select:focus,
.booking-grid textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.booking-grid select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A96E' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.booking-grid select option { background: #171717; color: var(--ivory); }
.booking-error {
  min-height: 18px;
  margin: 14px 2px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  color: #E0A08B;
}
.booking-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 17px 24px;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
}
.booking-submit:hover { background: transparent; color: var(--gold); }
.booking-note {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-40);
}
@media (max-width: 560px) {
  .booking-grid { grid-template-columns: 1fr; gap: 14px; }
  .booking-panel { padding: 26px 18px calc(24px + env(safe-area-inset-bottom, 0px)); }
  .booking-head { margin-bottom: 24px; }
}

/* ════════════════════════════════════════════════════════════
   ITERATION 8 — iOS tap/viewport reliability + photo galleries
   ════════════════════════════════════════════════════════════ */

/* Eliminates the iOS double-tap delay and tap-cancellation
   window on moving elements (no visual change anywhere) */
a, button, [role="button"], input, select, textarea, label {
  touch-action: manipulation;
}

/* iPhone/iPad only: hero copy and image are visible immediately.
   iOS Safari can pause time-delayed CSS entrance animations
   (Low Power Mode / bfcache), which previously left the hero
   looking like a large black empty space. Desktop and Android
   keep their existing premium entrance animations. */
@supports (-webkit-touch-callout: none) {
  @media (hover: none) {
    .hero-eyebrow, .hero-title, .hero-sub, .hero-ctas, .hero-scroll {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }
    .hero-img { animation: none !important; transform: scale(1) !important; }
    .reveal, .reveal-img {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }
    :where(.reveal, .reveal-img) img {
      opacity: 1 !important;
      transform: none !important;
    }
  }
}

/* View Room affordance stays visible on touch devices
   (previously hover-only, so phones never showed it) */
@media (hover: none) {
  .room-img-overlay { background: rgba(10,8,6,0.16); }
  .room-view-label { opacity: 0.92; transform: none; }
}
.room-img-overlay { cursor: pointer; }
.room-img-overlay:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: -8px;
}

/* Premium "View" chip — suite + dining images */
.photo-view-btn {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(10,8,6,0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,169,110,0.65);
  padding: 11px 18px;
  cursor: pointer;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  -webkit-tap-highlight-color: transparent;
}
.photo-view-btn:hover,
.photo-view-btn:focus-visible {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  outline: none;
}
@media (max-width: 768px) {
  .photo-view-btn { top: 12px; right: 12px; padding: 9px 14px; }
}

/* Lightbox title + premium reveal */
.lb-title {
  position: absolute; top: 30px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.85);
  max-width: calc(100vw - 170px);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  pointer-events: none;
}
.lightbox.active .lightbox-img { animation: lbReveal 0.5s var(--ease-out); }
@keyframes lbReveal {
  from { opacity: 0; transform: scale(0.985); }
  to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 768px) {
  .lb-title { top: 16px; font-size: 16px; max-width: calc(100vw - 120px); }
}

/* ── Amenities image: portrait washroom photo keeps its
     natural 2:3 ratio — container matched, never cropped ── */
@media (min-width: 1025px) {
  .amenities-img-wrap {
    height: auto;
    width: min(100%, 430px);
    aspect-ratio: 2 / 3;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .amenities-img-wrap {
    height: auto;
    width: min(100%, 460px);
    aspect-ratio: 2 / 3;
    margin: 0 auto;
  }
}

/* ── Auto-populated gallery: filters + mosaic ────── */
.gallery-filters { display: none; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.gallery-filters.active { display: flex; }
.gal-filter {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.gal-filter:hover { border-color: var(--gold); }
.gal-filter.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.gallery-grid.dynamic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: none;
  grid-auto-rows: minmax(200px, 24vw);
  gap: 3px;
}
.gal-dyn {
  position: relative; overflow: hidden; cursor: pointer;
  min-width: 0; min-height: 0;
  animation: fadeUp 0.7s var(--ease-out) both;
}
.gal-dyn img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.7s var(--ease-out);
}
.gal-dyn:hover img { transform: scale(1.06); }
.gal-dyn-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0;
  background: rgba(10,8,6,0);
  transition: background 0.5s;
  display: flex; align-items: center; justify-content: center;
}
.gal-dyn:hover .gal-dyn-overlay { background: rgba(10,8,6,0.3); }
.gal-view-chip {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white-70);
  padding: 10px 20px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.gal-dyn:hover .gal-view-chip { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .gal-dyn-overlay { background: rgba(10,8,6,0.12); }
  .gal-view-chip { opacity: 0.92; transform: none; }
}
@media (max-width: 1024px) {
  .gallery-grid.dynamic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(180px, 30vw); }
}
@media (max-width: 480px) {
  .gallery-grid.dynamic { grid-template-columns: 1fr; grid-auto-rows: minmax(200px, 60vw); }
}

/* ── Gallery All: categorized blocks ─────────────── */
html.reveals-safe .reveal,
html.reveals-safe .reveal-img {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
html.reveals-safe :where(.reveal, .reveal-img) img {
  opacity: 1 !important;
}
.gallery-grid.gallery-board,
#galleryGrid.gallery-board {
  display: flex;
  flex-direction: column;
  gap: 42px;
  grid-template-columns: none;
  grid-template-rows: none;
  grid-auto-rows: auto;
}
.gal-group-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin: 8px 0 0;
}
.gal-cat-block { min-width: 0; }
.gal-cat-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400; line-height: 1.2;
  margin: 10px 0 14px;
  color: var(--white);
}
.gal-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, 16vw);
  gap: 3px;
}
.gal-cat-grid .gal-dyn { min-height: 0; }
.booking-modal { pointer-events: none; }
.booking-modal.active { pointer-events: auto; }
.booking-panel { pointer-events: auto; -webkit-overflow-scrolling: touch; }
@media (hover: none) and (pointer: coarse) {
  .reveal, .reveal-img {
    animation: revealFailsafe 0.55s var(--ease-out) 0.25s forwards;
  }
}
@media (max-width: 1024px) {
  .gal-cat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(150px, 28vw); }
}
@media (max-width: 480px) {
  .gal-cat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(130px, 40vw); }
  .gallery-grid.gallery-board, #galleryGrid.gallery-board { gap: 32px; }
}
