/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; width: 100%; }
img.brand-logo-img {
  width: auto;
  max-width: none;
  flex-shrink: 0;
}
a { text-decoration: none; }
button { cursor: pointer; border: none; outline: none; }

/* ─── DESIGN TOKENS ─── */
:root {
  --sand:        #f5f0e8;
  --sand-mid:    #ede5d4;
  --sand-dark:   #d8cdb5;
  --ink:         #191611;
  --ink-mid:     #2e2b25;
  --ink-light:   #5c5649;
  --gold:        #b89c6e;
  --gold-light:  #d4bc94;
  --gold-pale:   #ede2cc;
  --white:       #fdfcfa;
  --muted:       #9a9288;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', sans-serif;
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --brand-lime:  #A4E600;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out),
              transform 0.08s linear, opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 14px; height: 14px; }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  animation: loaderPulse 1.6s ease-in-out infinite;
}
.loader-logo .brand-logo-img--loader {
  height: clamp(200px, 38vh, 320px);
  width: auto;
  min-width: 220px;
  max-width: min(94vw, 420px);
  object-fit: contain;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.loader-bar-wrap {
  width: 140px; height: 1px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0%;
  background: var(--gold);
  animation: loaderFill 2s var(--ease-out) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 64px;
  transition: background 0.6s, padding 0.4s, border-color 0.6s;
  border-bottom: 0.5px solid transparent;
}
nav.scrolled {
  background: rgba(253, 252, 250, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 64px;
  border-bottom-color: var(--sand-dark);
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: background 0.5s, padding 0.5s, border-radius 0.5s;
}

.nav-logo .brand-logo-img--nav {
  height: 48px;
  width: auto;
  min-width: 120px;
  max-width: min(48vw, 260px);
  object-fit: contain;
}
/* White wordmark: keep readable on light scrolled bar */
nav.scrolled .nav-logo {
  background: rgba(25, 22, 17, 0.94);
  padding: 4px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-links a {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 0.5px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold-light); }
nav.scrolled .nav-links a { color: var(--ink-light); }
nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-reserve {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 11px 26px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
a.nav-reserve {
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
}
.nav-reserve:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
nav.scrolled .nav-reserve {
  border-color: var(--gold);
  color: var(--ink);
}
nav.scrolled .nav-reserve:hover { background: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: background 0.4s, transform 0.3s;
}
nav.scrolled .hamburger span { background: var(--ink); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  padding-top: 68px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

/* Full-bleed image carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-carousel-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s var(--ease-out);
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(10, 9, 6, 0.35) 0%,
    rgba(10, 9, 6, 0.12) 38%,
    rgba(10, 9, 6, 0.75) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.hero-carousel-bar {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
}
.hero-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(25, 22, 17, 0.45);
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.hero-carousel-arrow:hover {
  background: rgba(184, 156, 110, 0.35);
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.hero-carousel-arrow:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-carousel-dots button.is-active {
  background: var(--gold-light);
  transform: scale(1.15);
}
.hero-carousel-dots button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* Text over carousel */
.hero-layout {
  position: relative;
  z-index: 5;
  align-self: flex-end;
  width: 100%;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
  padding: 0 64px 96px;
  box-sizing: border-box;
  pointer-events: none;
}
.hero-layout a,
.hero-layout button {
  pointer-events: auto;
}

.hero-content {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0;
  text-align: left;
  pointer-events: auto;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.hero-eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: flex-start; gap: 16px;
  margin-bottom: 22px;
  text-align: left;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 48px; height: 0.5px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(54px, 7.5vw, 100px);
  font-weight: 300; line-height: 1.04;
  color: var(--white); letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-align: left;
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
  display: block;
  text-align: left;
}

.hero-sub {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.65);
  line-height: 1.9; max-width: 400px; margin-bottom: 48px;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
}
.btn-primary {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  padding: 16px 40px;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost .arrow { transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(5px); }

.hero-scroll-indicator {
  position: absolute; right: 64px; bottom: 96px; z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-label {
  font-family: var(--sans); font-size: 9px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.scroll-track {
  width: 1px; height: 64px;
  background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.scroll-track::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollDrop 2.4s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  40%  { top: 0%; }
  100% { top: 100%; }
}

/* ─── BOOKING BAR ─── */
.booking-bar {
  background: var(--ink-mid);
  padding: 0 64px;
  display: flex; align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-label {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center;
  padding-right: 40px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  white-space: nowrap; margin-right: 0;
}
.booking-fields {
  flex: 1; display: flex; align-items: stretch;
}
.b-field {
  flex: 1; padding: 24px 28px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
}
.b-field label {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.b-field input,
.b-field select {
  background: transparent; border: none; outline: none;
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--white); width: 100%;
  color-scheme: dark;
}
.b-field select option { background: var(--ink-mid); }
.b-field input::placeholder { color: rgba(255,255,255,0.35); }
.booking-submit {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  padding: 0 44px; white-space: nowrap;
  transition: background 0.3s;
  margin-left: 0;
}
.booking-submit:hover { background: var(--gold-light); }

/* ─── SECTION UTILITY ─── */
.section { padding: 128px 64px; }
.section-sm { padding: 96px 64px; }
.eyebrow {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 0.5px; background: var(--gold);
}
.eyebrow-dark { color: var(--gold); }

/* ─── INTRO ─── */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.intro-heading {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 28px;
}
.intro-heading em { font-style: italic; color: var(--gold); }
.intro-body {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.95; color: var(--ink-light);
  margin-bottom: 40px; max-width: 440px;
}
.link-line {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 6px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}
.link-line:hover { color: var(--gold); }
.link-line .arrow { transition: transform 0.3s; }
.link-line:hover .arrow { transform: translateX(5px); }

.intro-visual { position: relative; }
.intro-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.intro-accent-block {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 120px; height: 120px;
  background: var(--sand);
  z-index: -1;
}
.intro-stat-box {
  position: absolute;
  top: 40px; right: -36px;
  background: var(--ink);
  padding: 24px 28px;
  text-align: center;
  z-index: 2;
}
.stat-number {
  font-family: var(--serif);
  font-size: 48px; font-weight: 300;
  color: var(--gold-light);
  display: block; line-height: 1;
}
.stat-label {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px; display: block; line-height: 1.5;
}

/* ─── ROOMS ─── */
.rooms { background: var(--sand); }
.rooms-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.rooms-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.1;
  color: var(--ink);
}
.rooms-title em { font-style: italic; }

.rooms-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.room-card {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.room-card .room-image {
  width: 100%; height: 540px;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.room-card:hover .room-image { transform: scale(1.06); }

.room-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,9,0.85) 0%, rgba(14,12,9,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 32px;
}
.room-category {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 10px;
}
.room-name {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--white); margin-bottom: 14px;
}
.room-details {
  display: flex; align-items: center; justify-content: space-between;
}
.room-meta {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  display: flex; gap: 12px;
}
.room-meta span::before {
  content: '·'; margin-right: 12px;
}
.room-meta span:first-child::before { content: ''; margin-right: 0; }
.room-price {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--gold-light);
}
.room-price small {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  color: rgba(255,255,255,0.45);
}

.room-book-btn {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s, transform 0.4s;
}
.room-card:hover .room-book-btn { opacity: 1; transform: translateY(0); }

/* ─── AMENITIES ─── */
.amenities { background: var(--white); }
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.amenities-left {}
.amenities-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 20px;
}
.amenities-heading em { font-style: italic; }
.amenities-intro {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.95; color: var(--ink-light);
  max-width: 400px; margin-bottom: 52px;
}
.amenities-image { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.amenities-right { padding-top: 16px; }
.amenity-item {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 26px 0;
  border-bottom: 0.5px solid var(--sand-mid);
  transition: background 0.3s;
}
.amenity-item:first-child { border-top: 0.5px solid var(--sand-mid); }
.amenity-num {
  font-family: var(--serif); font-size: 14px; font-weight: 400;
  color: var(--gold); letter-spacing: 0.08em;
  min-width: 28px; padding-top: 2px;
}
.amenity-text {}
.amenity-title {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: var(--ink); margin-bottom: 6px;
}
.amenity-desc {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.75;
}

/* ─── GALLERY STRIP ─── */
.gallery-strip {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 0;
}
.gallery-item {
  flex: 0 0 calc(100% / 3);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.gallery-item img,
.gallery-item video {
  display: block;
  height: 360px;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s var(--ease-out), filter 0.5s;
  filter: brightness(0.7) saturate(0.8);
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1);
}

/* ─── LOCATION ─── */
.location { background: var(--ink); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.location-eyebrow { color: var(--gold); }
.location-eyebrow::before { background: var(--gold); }
.location-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 22px;
}
.location-heading em { font-style: italic; color: var(--gold-light); }
.location-body {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.95; color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}
.location-address-label {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 8px;
}
.location-address {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  color: var(--white); margin-bottom: 36px; line-height: 1.6;
}
.location-cta {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 0.5px solid rgba(184,156,110,0.35);
  padding-bottom: 6px;
  transition: border-color 0.3s;
}
.location-cta:hover { border-color: var(--gold); }
.location-image-wrap {
  position: relative;
}
.location-image-wrap img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
}
.location-badge {
  position: absolute; bottom: 32px; left: -24px;
  background: var(--gold); color: var(--ink);
  padding: 18px 24px;
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  background: var(--sand);
  padding: 120px 64px;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 300; line-height: 1.45;
  font-style: italic; color: var(--ink);
  max-width: 800px; margin: 0 auto 32px;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 60px; font-style: normal;
  color: var(--gold); line-height: 0;
  vertical-align: -24px; margin-right: 4px;
}
.testimonial-author {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.testimonial-stars {
  color: var(--gold); font-size: 14px;
  letter-spacing: 4px; margin-bottom: 20px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(12,10,7,0.6), rgba(12,10,7,0.6)),
    url('../photos/image1.jpeg') center/cover no-repeat;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.cta-banner:hover .cta-bg { transform: scale(1.0); }
.cta-content { position: relative; z-index: 2; padding: 60px; max-width: 700px; }
.cta-eyebrow {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 300; line-height: 1.08;
  color: var(--white); margin-bottom: 18px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.8;
  margin-bottom: 48px;
}
.cta-tel {
  font-family: var(--serif); font-size: 24px; font-weight: 300;
  color: var(--white); margin-bottom: 32px; display: block;
  letter-spacing: 0.05em;
}
.cta-tel:hover { color: var(--gold-light); }

/* ─── FOOTER ─── */
footer { background: #0e0c09; padding: 88px 64px 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer-brand-logo {
  display: inline-block;
  margin-bottom: 16px;
  line-height: 0;
}
.footer-brand-logo .brand-logo-img--footer {
  height: 76px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.footer-tagline {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.38); line-height: 1.85;
  max-width: 220px; margin-bottom: 28px;
}
.footer-social-row {
  display: flex; gap: 18px;
}
.footer-social-row a {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-social-row a:hover { color: var(--gold-light); }

.footer-col-title {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 11px; }
.footer-list a {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.42);
  transition: color 0.3s;
}
.footer-list a:hover { color: var(--gold-light); }

.footer-contact-line {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.42); margin-bottom: 10px; line-height: 1.6;
}
.footer-contact-line a {
  color: rgba(255,255,255,0.42); transition: color 0.3s;
}
.footer-contact-line a:hover { color: var(--gold-light); }
.footer-contact-line.spaced { margin-top: 16px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.2); letter-spacing: 0.04em;
}
.footer-tripadvisor {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer-tripadvisor:hover { color: var(--gold-light); }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--white); letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu a.mobile-reserve { color: var(--gold-light); }
.mobile-close {
  position: absolute; top: 32px; right: 32px;
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); background: none;
  cursor: pointer;
}

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float-wrap {
  position: fixed;
  right: max(20px, env(safe-area-inset-right, 0px));
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  z-index: 480;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-popup {
  position: relative;
  order: -1;
  padding: 12px 34px 12px 16px;
  background: var(--white);
  border: 0.5px solid var(--sand-dark);
  box-shadow: 0 10px 40px rgba(25, 22, 17, 0.12);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), visibility 0.5s;
}
.whatsapp-popup::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--white);
}
.whatsapp-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.whatsapp-popup.is-dismissed {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  visibility: hidden;
}
.whatsapp-popup-close {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 28px;
  height: 28px;
  padding: 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s;
}
.whatsapp-popup-close:hover { color: var(--ink); }
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── SCROLL REVEAL ─── */
.sr { opacity: 0; transform: translateY(40px); transition: none; }
.sr.animate {
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.sr.visible { opacity: 1; transform: translateY(0); }
.sr-delay-1 { transition-delay: 0.1s; }
.sr-delay-2 { transition-delay: 0.22s; }
.sr-delay-3 { transition-delay: 0.38s; }
.sr-delay-4 { transition-delay: 0.52s; }

/* Desktop: extra top space under fixed nav */
@media (min-width: 1025px) {
  .hero {
    padding-top: 88px;
  }
  .hero-layout {
    padding: 0 64px 96px;
  }
}

@media (min-width: 1025px) and (max-height: 820px) {
  .hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
  }
  .hero-sub {
    margin-bottom: 28px;
  }
  .hero-actions {
    gap: 24px;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 12px 32px; }
  nav.scrolled { padding: 8px 32px; }
  .nav-logo .brand-logo-img--nav {
    height: 42px;
    min-width: 110px;
    max-width: min(65vw, 240px);
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Mobile / tablet: anchor copy under the nav — no tall empty band above text */
  .hero {
    height: auto;
    min-height: 100dvh;
    min-height: 100svh;
    padding-top: 52px;
    padding-bottom: 0;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .hero-layout {
    align-items: start;
    align-self: stretch;
    max-width: none;
    margin: 0;
    padding: 20px 24px 120px 24px;
  }
  .hero-carousel-bar {
    bottom: 72px;
    gap: 12px;
  }
  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .hero-scroll-indicator { right: 24px; bottom: 32px; }
  .booking-bar { flex-direction: column; padding: 0; }
  .booking-label { padding: 18px 28px; border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
  .booking-fields { flex-wrap: wrap; }
  .b-field { flex: 0 0 50%; border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); padding: 18px 24px; }
  .booking-submit { width: 100%; padding: 18px; }
  .section, .section-sm { padding: 80px 32px; }
  .testimonial-section { padding: 80px 32px; }
  footer { padding: 64px 32px 36px; }
  .intro-grid, .rooms-grid, .amenities-grid, .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card .room-image { height: 380px; }
  .intro-stat-box { right: 0; }
  .intro-accent-block { display: none; }
  .gallery-track { flex-wrap: wrap; }
  .gallery-item { flex: 0 0 50%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .location-badge { display: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 44px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rooms-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery-item { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .b-field { flex: 0 0 100%; }
}
