/* ══════════════════════════════════════════════
   VIHANGAM V3 — "DUSK RESERVE" THEME
   Mukundra Hills Tiger Reserve · Kota, Rajasthan
   Grounded in real photography: jungle lodge at dusk,
   lantern-lit villas, terracotta cliffs, amber firelight
══════════════════════════════════════════════ */

:root {
  /* Palette — Dusk Reserve */
  --canopy: #0B1410;
  /* near-black, green-black jungle night */
  --bark: #1C2620;
  /* card / section bg, warm dark wood */
  --bark-2: #233029;
  /* lighter bark for layering */
  --amber: #E0A858;
  /* primary accent — lantern glow */
  --amber-soft: #F0C988;
  /* lighter amber for highlights */
  --terracotta: #C16A4A;
  /* secondary accent — Chambal cliffs */
  --cream: #F5EDE0;
  /* primary text on dark */
  --cream-dim: rgba(245, 237, 224, 0.55);
  --sage: #8FAE96;
  /* tertiary — forest green, sparing */

  --glass: rgba(28, 38, 32, 0.55);
  --glass-border: rgba(224, 168, 88, 0.16);
  --glass-hover: rgba(224, 168, 88, 0.32);
  --amber-glow: rgba(224, 168, 88, 0.35);

  /* Typography */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--canopy);
  color: var(--cream);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: none;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ── CUSTOM CURSOR — ANTLER MARK (actual logo artwork) ── */
.cursor {
  position: fixed;
  width: 24px;
  height: 21.25px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), opacity 0.25s ease;
  filter: drop-shadow(0 0 5px rgba(224, 168, 88, 0.55)) drop-shadow(0 0 11px rgba(224, 168, 88, 0.22));
}

.cursor img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Eyelid overlays — sit over each eye on the artwork, closed (scaleY 0) at rest */
.cursor .eyelid {
  position: absolute;
  top: 56.8%;
  width: 25%;
  height: 15%;
  background: var(--canopy);
  clip-path: polygon(0% 50%, 22% 18%, 50% 4%, 78% 18%, 100% 50%, 78% 82%, 50% 96%, 22% 82%);
  transform: translate(-50%, -50%) scaleY(0);
  transform-origin: center;
}

.cursor .eyelid-l {
  left: 23%;
}

.cursor .eyelid-r {
  left: 77.3%;
}

.cursor.blinking .eyelid {
  animation: cursor-blink 0.42s ease;
}

@keyframes cursor-blink {
  0% {
    transform: translate(-50%, -50%) scaleY(0);
  }

  40% {
    transform: translate(-50%, -50%) scaleY(1);
  }

  60% {
    transform: translate(-50%, -50%) scaleY(1);
  }

  100% {
    transform: translate(-50%, -50%) scaleY(0);
  }
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(224, 168, 88, 0.28);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s, opacity 0.3s;
}

body:has(a:hover) .cursor,
body:has(.btn:hover) .cursor,
body:has(button:hover) .cursor {
  width: 30px;
  height: 26.55px;
}

body:has(a:hover) .cursor-ring,
body:has(.btn:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 42px;
  height: 42px;
  border-color: rgba(224, 168, 88, 0.45);
}

@media (hover: none) {

  .cursor,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* ── THREE.JS BG CANVAS (fireflies) ── */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--canopy);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* CSS-only failsafe: if JS never runs (script blocked),
     fade out and disable pointer events after 4s so the
     page is never permanently hidden behind this overlay. */
  animation: preloaderFailsafe 0.6s ease-out 4s forwards;
}

@keyframes preloaderFailsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.preload-emblem {
  display: flex;
  justify-content: center;
  align-items: center;
}

.preload-logo {
  width: 200px;
  height: auto;
  display: block;
  opacity: 1;
}

.preload-bar-track {
  width: 200px;
  height: 1px;
  background: rgba(224, 168, 88, 0.15);
  position: relative;
  overflow: hidden;
}

.preload-bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.preload-text {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(224, 168, 88, 0.4);
  opacity: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  opacity: 0;
  transform: translateY(-30px);

  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 4rem;
  background: transparent;
  transition: background .5s, backdrop-filter .5s, padding .4s;
}

nav.scrolled {
  background: rgba(11, 20, 16, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(224, 168, 88, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-antler {
  width: 46px;
  height: 35px;
  color: var(--amber);
  flex-shrink: 0;
}

.logo-bird {
  opacity: 0.85;
}

.logo-wordmark {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-wordmark small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  color: var(--amber);
  font-weight: 400;
  font-family: var(--body);
  text-transform: uppercase;
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

.footer-logo-img {
  width: 240px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.85);
  transition:
    color .4s ease,
    opacity .4s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--cream);
}

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

.nav-cta {
  padding: 0.65rem 1.6rem;
  border: 1px solid var(--amber);
  color: var(--amber) !important;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  font-family: var(--body);
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out-expo) !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo);
  z-index: -1;
}

.nav-cta:hover::before {
  transform: scaleX(1);
}

.nav-cta:hover {
  color: var(--canopy) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {

  from {
    transform: translateY(2px) scale(1);
  }

  to {
    transform: translateY(2px) scale(1.06);
  }

}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 20, 16, 0.55) 0%, rgba(11, 20, 16, 0.35) 35%, rgba(11, 20, 16, 0.75) 75%, var(--canopy) 100%),
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(224, 168, 88, 0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
  max-width: 940px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-soft));
}

.hero-eyebrow::after {
  background: linear-gradient(270deg, transparent, var(--amber-soft));
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.4rem;
  overflow: hidden;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  perspective: 1000px;

}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform-origin: 50% 100%;
  will-change: transform;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-soft);
  display: block;
  position: relative;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(245, 237, 224, 0.85);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.btn-gold {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-soft) 100%);
  color: var(--canopy);
  box-shadow: 0 0 30px rgba(224, 168, 88, 0.25), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-gold:hover {
  box-shadow: 0 0 50px rgba(224, 168, 88, 0.45), 0 8px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid rgba(245, 237, 224, 0.3);
  color: var(--cream);
  background: rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber-soft);
  background: rgba(224, 168, 88, 0.06);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  border-top: 1px solid rgba(224, 168, 88, 0.12);
  background: rgba(11, 20, 16, 0.55);
  backdrop-filter: blur(20px);
  opacity: 0;
}

.stat-item {
  flex: 1;
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-right: 1px solid rgba(224, 168, 88, 0.1);
  transition:
    transform .7s cubic-bezier(.22, .61, .36, 1),
    background .5s ease;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(224, 168, 88, 0.04);
  transform: translateY(-5px);
}

.stat-n {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--amber-soft);
  line-height: 1;
}

.stat-l {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-family: var(--mono);
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  right: 3.5rem;
  bottom: 5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
}

.scroll-cue span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.3);
  writing-mode: vertical-rl;
  font-family: var(--mono);
}

.scroll-track {
  width: 1px;
  height: 70px;
  background: rgba(224, 168, 88, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--amber);
  animation: scrollFill 2s ease-in-out infinite;
}

@keyframes scrollFill {
  0% {
    top: 0;
    height: 0;
  }

  50% {
    top: 0;
    height: 100%;
  }

  51% {
    top: 0;
    height: 100%;
  }

  100% {
    top: 100%;
    height: 0;
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  position: relative;
  z-index: 2;
  padding: 1.2rem 0;
  overflow: hidden;
  background: var(--bark);
  border-top: 1px solid rgba(224, 168, 88, 0.1);
  border-bottom: 1px solid rgba(224, 168, 88, 0.1);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.25);
  font-family: var(--mono);
}

.marquee-item.accent {
  color: var(--amber);
  opacity: 0.75;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  background: var(--amber);
  border-radius: 50%;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════ */
section {
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
}

.eyebrow.light {
  color: var(--amber-soft);
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}

.eyebrow.light .eyebrow-line {
  background: var(--amber-soft);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.3vw, 3.8rem);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 1.6rem;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-soft);
}

/* Image frame component */
.img-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bark);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1.08);

  transition:
    transform 1.4s cubic-bezier(.22, .61, .36, 1);
}

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

/* ══════════════════════════════════════════════
   LOCATION — KOTA
══════════════════════════════════════════════ */
.location {
  padding: 9rem 0 6rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-img-wrap {
  position: relative;
}

.location-img-wrap .img-frame {
  aspect-ratio: 7/5;
}

.floating-tag {
  position: absolute;
  bottom: -1.4rem;
  right: -1.4rem;
  background: var(--bark-2);
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  padding: 1.2rem 1.6rem;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tag-line {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
}

.tag-line.accent {
  color: var(--terracotta);
}


.location-body p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.landmark-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  font-family: var(--mono);
  transition:
    transform .7s cubic-bezier(.22, .61, .36, 1),
    border-color .5s ease,
    color .5s ease;
}

.pill:hover {
  border-color: var(--amber);
  color: var(--amber-soft);
  transform: translateY(-5px);
}

/* ══════════════════════════════════════════════
   ABOUT / PROJECT OVERVIEW
══════════════════════════════════════════════ */
.about {
  padding: 6rem 0 9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-body p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.img-frame-tall {
  aspect-ratio: 4/4.6;
}

.img-frame-small {
  aspect-ratio: 16/10;
}

.about-visual .img-frame-small {
  position: absolute;
  bottom: -2.5rem;
  left: -3rem;
  width: 58%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.floating-card {
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ══════════════════════════════════════════════
   ROOM CATEGORIES
══════════════════════════════════════════════ */
.rooms {
  padding: 9rem 0;
}

.rooms-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.rooms-head .eyebrow {
  justify-content: center;
}

.rooms-sub {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--cream-dim);
  font-weight: 300;
  margin-top: 0.5rem;
}

.room-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 7rem;
  position: relative;
}

.room-card:last-of-type {
  margin-bottom: 4rem;
}

.room-card.reverse {
  direction: rtl;
}

.room-card.reverse>* {
  direction: ltr;
}

.room-num {
  position: absolute;
  top: -3.5rem;
  left: 0;
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(224, 168, 88, 0.18);
  line-height: 1;
  z-index: 0;
}

.room-card.reverse .room-num {
  left: auto;
  right: 0;
}

.room-img-col {
  position: relative;
  display: grid;
  gap: 1rem;
}

.room-img-col .img-frame:first-child {
  aspect-ratio: 16/10.5;
}

.room-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.room-img-pair .img-frame {
  aspect-ratio: 4/3;
}

.room-img-col>.img-frame-small {
  aspect-ratio: 16/6.5;
}

.room-info-col {
  position: relative;
  z-index: 1;
}

.room-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}

.room-tag.investment-tag {
  border-color: rgba(224, 168, 88, 0.4);
  color: var(--amber-soft);
}

.room-tag.ultra-tag {
  border-color: rgba(193, 106, 74, 0.5);
  color: var(--terracotta);
}

.room-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.room-specs {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.spec {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-family: var(--mono);
}

.spec strong {
  color: var(--amber-soft);
  font-size: 1.3rem;
  font-family: var(--display);
  font-weight: 500;
  margin-right: 0.3rem;
}

.spec-divider {
  width: 1px;
  height: 18px;
  background: var(--glass-border);
}

.room-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--cream-dim);
  font-weight: 300;
  max-width: 420px;
}

.room-footnote {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--bark);
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  margin-top: 2rem;
}

.footnote-icon {
  color: var(--amber);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.room-footnote p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   AMENITIES
══════════════════════════════════════════════ */
.amenities {
  padding: 9rem 0;
  background: linear-gradient(180deg, transparent, rgba(28, 38, 32, 0.5) 15%, rgba(28, 38, 32, 0.5) 85%, transparent);
}

.amenities-head {
  text-align: center;
  margin-bottom: 5rem;
}

.amenities-head .eyebrow {
  justify-content: center;
}

/* Feature showcase (banquet + restaurant) */
.amen-showcase {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-bottom: 6rem;
}

.amen-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.amen-feature.reverse {
  direction: rtl;
}

.amen-feature.reverse>* {
  direction: ltr;
}

.amen-feature .img-frame {
  aspect-ratio: 16/10;
}

.amen-feature-num {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.amen-feature-text h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 1rem;
}

.amen-feature-text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--cream-dim);
  font-weight: 300;
}

/* Amenity pill grid */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}

.amen-pill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.6rem 0.8rem;
  background: var(--bark);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  text-align: center;
  transition:
    transform .7s cubic-bezier(.22, .61, .36, 1),
    box-shadow .7s cubic-bezier(.22, .61, .36, 1),
    border-color .5s ease;
}

.amen-pill-card:hover {
  border-color: var(--glass-hover);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: var(--bark-2);
}

.amen-pill-card.highlight {
  border-color: rgba(224, 168, 88, 0.35);
  background: linear-gradient(135deg, rgba(224, 168, 88, 0.08), transparent);
}

.amen-icon {
  width: 32px;
  height: 32px;
  color: var(--amber);
  flex-shrink: 0;
}

.amen-pill-card span {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════
   WELLNESS & LEISURE
══════════════════════════════════════════════ */
.wellness {
  padding: 4rem 0;
}

.wellness-grid {
  margin-bottom: 12rem;
}

.wellness-body {
  max-width: 100%;
}

.wellness-body p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 600px;
}

.wellness-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.wellness-imgs .img-frame {
  aspect-ratio: 16/10;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  transition: transform .5s ease;
}

.wellness-imgs .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.wellness-imgs .img-frame:hover {
  transform: translateY(-8px);
}

.wellness-imgs .img-frame:hover img {
  transform: scale(1.05);
}

.leisure-block {
  text-align: center;
  padding-top: 3rem;
}

.leisure-block .eyebrow {
  justify-content: center;
}

.leisure-title {
  max-width: 700px;
  margin: 0 auto 1.2rem;
}

.leisure-sub {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--cream-dim);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.leisure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.leisure-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  transition: transform .5s ease;
}

.leisure-img:hover {
  transform: none;
}

.leisure-img img {
  transition: transform .8s ease;
}

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

.leisure-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 20, 16, 0.85) 100%);
}

.leisure-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
}

/* ══════════════════════════════════════════════
   MASTER PLAN
══════════════════════════════════════════════ */
.masterplan {
  padding: 12rem 0;
}

.mp-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.mp-head .eyebrow {
  justify-content: center;
}

.mp-sub {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--cream-dim);
  font-weight: 300;
  margin-top: 0.5rem;
}

.mp-frame {
  aspect-ratio: 16/10.5;
}

/* ══════════════════════════════════════════════
   INVESTMENT
══════════════════════════════════════════════ */
.investment {
  padding: 3rem 0;
  background: linear-gradient(180deg, transparent, rgba(28, 38, 32, 0.5) 20%, rgba(28, 38, 32, 0.5) 100%);
}

.investment-intro {
  max-width: 760px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.investment-intro .eyebrow {
  justify-content: center;
}

.invest-lead {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-weight: 300;
  margin-top: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 5rem;
}

.benefit-card {
  padding: 2.2rem 1.8rem;
  background: var(--bark);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  transition:
    transform .7s cubic-bezier(.22, .61, .36, 1),
    box-shadow .7s cubic-bezier(.22, .61, .36, 1),
    border-color .5s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}

.benefit-card:hover {
  border-color: var(--glass-hover);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card.wide {
  grid-column: span 2;
}

.benefit-card.wide p {
  max-width: 70%;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(224, 168, 88, 0.25);
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-card h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--cream-dim);
  font-weight: 300;
}

/* Jackpot Banner — side-by-side */
.jackpot-banner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  background: var(--bark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2.5rem;
  overflow: hidden;
}

.jackpot-frame {
  aspect-ratio: 4/5;
  max-height: 480px;
}

.jackpot-content h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.jackpot-content p {
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-weight: 300;
}

.jackpot-content p strong {
  color: var(--amber-soft);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  padding: 11rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--canopy) 0%, rgba(11, 20, 16, 0.65) 25%, rgba(11, 20, 16, 0.65) 75%, var(--canopy) 100%);
}

.cta-section .section-inner {
  position: relative;
  z-index: 2;
}

.cta-section .section-title {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-section p {
  font-size: 0.93rem;
  color: var(--cream-dim);
  margin: 0 auto 3.5rem;
  max-width: 480px;
  line-height: 1.8;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 2.2rem;

  border: 1px solid rgba(224, 168, 88, .4);
  background: rgba(11, 20, 16, .55);

  color: var(--cream);
  text-decoration: none;

  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;

  position: relative;
  z-index: 10;

  transition: .35s ease;
}

.cta-buttons .btn:hover {
  background: var(--amber);
  color: var(--canopy);
}

.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(193, 106, 74, 0.35);
  border-radius: 40px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
  background: rgba(11, 20, 16, 0.4);
}

.limited-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 2;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(224, 168, 88, 0.1);
  background: var(--bark);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--cream-dim);
  font-weight: 300;
  margin-top: 1.2rem;
}

.footer-address-block {
  margin-top: 1.6rem;
}

.footer-address-block:first-of-type {
  margin-top: 1.8rem;
}

.footer-address-block h5 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  opacity: 0.85;
  margin: 0;
}

.footer-address-block p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--cream-dim);
  font-weight: 300;
  margin-top: 0.5rem;
}

.footer-contact {
  margin-top: 1rem !important;
}

.footer-contact a {
  text-decoration: none;
  color: var(--amber-soft);
  font-family: var(--mono);
  font-size: 0.8rem;
  transition: color 0.25s;
}

.footer-contact a:hover {
  color: var(--cream);
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: color 0.25s, padding-left 0.25s;
  display: block;
}

.footer-col ul a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.footer-disclaimer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-disclaimer p {
  font-size: 0.68rem;
  line-height: 1.8;
  color: rgba(245, 237, 224, 0.22);
  font-weight: 300;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 3.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(245, 237, 224, 0.2);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════
   LEADERSHIP / DIRECTORS & PROMOTERS PAGE
══════════════════════════════════════════════ */
.leaders-hero {
  position: relative;
  padding: 11rem 0 6rem;
  overflow: hidden;
}

.leaders-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 18% 0%, rgba(224, 168, 88, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 30%, rgba(193, 106, 74, 0.10), transparent 60%);
  pointer-events: none;
}

.leaders-hero .section-inner {
  position: relative;
  max-width: 880px;
}

.leaders-hero .eyebrow {
  justify-content: flex-start;
}

.leaders-hero .eyebrow .eyebrow-line {
  animation: leaders-line-draw 0.9s var(--ease-out-expo) 0.4s forwards;
}

@keyframes leaders-line-draw {
  to {
    transform: scaleX(1);
  }
}

.leaders-hero .section-title {
  margin-bottom: 1.4rem;
}

.leaders-hero-lead {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--cream-dim);
  font-weight: 300;
  max-width: 720px;
}

.leaders-grid {
  padding: 0 0 7rem;
}

.leaders-grid .leaders-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.leader-card {
  background: var(--bark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition:
    transform .7s cubic-bezier(.22, .61, .36, 1),
    box-shadow .7s cubic-bezier(.22, .61, .36, 1),
    border-color .5s ease;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out-expo);
}

.leader-card:hover {
  border-color: var(--glass-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.leader-card:hover::before {
  transform: scaleX(1);
}

.leader-card-head {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 2.4rem 2.2rem 1.6rem;
}

.leader-monogram {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--canopy);
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-soft) 100%);
  box-shadow: 0 0 24px rgba(224, 168, 88, 0.25);
  letter-spacing: 0.02em;
}

.leader-name-block h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}

.leader-role {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-soft);
}

.leader-card-body {
  padding: 0 2.2rem 2.4rem;
}

.leader-card-body p {
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.leader-card-body p:last-child {
  margin-bottom: 0;
}

.leader-card-body strong {
  color: var(--cream);
  font-weight: 500;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.4rem 2.2rem 2.2rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 0.4rem;
}

.leader-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

/* Vision quote */
.leaders-quote {
  padding: 1rem 0 7rem;
}

.leaders-quote-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  background: var(--bark-2);
  border: 1px solid var(--glass-border);
  border-left: 2px solid var(--amber);
  border-radius: 4px;
}

.leaders-quote-mark {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.leaders-quote-inner blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
}

.leaders-quote-cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Credibility strip */
.leaders-strip {
  padding: 0 0 7rem;
}

.leaders-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.leaders-strip-card {
  text-align: center;
  padding: 2.4rem 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: rgba(28, 38, 32, 0.4);
}

.leaders-strip-card .strip-n {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--amber-soft);
  line-height: 1;
  margin-bottom: 0.6rem;
  display: block;
}

.leaders-strip-card .strip-l {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--cream-dim);
  font-weight: 300;
}

/* Page entrance (no GSAP dependency, pure CSS) */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: leaderFadeUp 0.9s var(--ease-out-expo) forwards;
}

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

@media (max-width: 960px) {
  .leaders-hero {
    padding: 8.5rem 0 4rem;
  }

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

  .leaders-strip-grid {
    grid-template-columns: 1fr;
  }

  .leaders-quote-inner {
    padding: 2.4rem 1.6rem;
  }
}

/* ══════════════════════════════════════════════
   ANIMATIONS / GSAP HOOKS
══════════════════════════════════════════════ */
.gsap-hide {
  opacity: 0;
  visibility: hidden;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .amen-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .benefit-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 960px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  nav.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .logo img {
    height: 40px;
  }

  .nav-actions {
    gap: 0.6rem;
  }

  .nav-brochure {
    display: none;
  }

  .nav-cta {
    padding: 0.55rem 1.1rem;
    font-size: 0.65rem;
  }

  .section-inner {
    padding: 0 1.5rem;
  }

  .location-grid,
  .about-grid,
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-visual {
    order: -1;
  }

  .about-visual .img-frame-small {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .floating-card {
    animation: none;
  }

  .room-card,
  .room-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .room-num {
    position: relative;
    top: 0;
    font-size: 3rem;
    margin-bottom: -1.5rem;
  }

  .amen-feature,
  .amen-feature.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

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

  .wellness-imgs {
    grid-template-columns: 1fr 1fr;
  }

  .wellness-imgs .img-frame:last-child {
    aspect-ratio: 4/3;
  }

  .leisure-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

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

  .benefit-card.wide {
    grid-column: span 2;
  }

  .jackpot-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .jackpot-frame {
    aspect-ratio: 16/10;
    max-height: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 50%;
    border: none;
    border-bottom: 1px solid rgba(224, 168, 88, 0.08);
  }

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

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

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

  .benefit-card.wide {
    grid-column: span 1;
  }

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

  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════
ENQUIRY POPUP
══════════════════════════════════════════════ */

.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.enquiry-overlay.active {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal {
  position: relative;
  z-index: 1000000;

  width: min(92vw, 640px);

  background: rgba(15, 30, 25, .92);
  border: 1px solid rgba(224, 176, 96, .2);
  border-radius: 30px;

  padding: 3rem;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;

  font-size: 40px;
  color: #e0b060;

  cursor: pointer;
  z-index: 1000001;
}

.enquiry-modal h2 {
  margin-bottom: 10px;
}

.enquiry-modal p {
  color: var(--cream-dim);
  margin-bottom: 25px;
}

.enquiry-modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-modal input {
  padding: 15px;
  background: var(--bark-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: white;
  outline: none;
}

.enquiry-modal button {
  padding: 15px;
  background: var(--amber);
  color: black;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

/* ── Enquiry success / thank-you state ── */
.enquiry-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.enquiry-success.active {
  display: flex;
  animation: successReveal 0.7s var(--ease-out-expo);
}

.success-icon-ring {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 168, 88, 0.35);
  background: radial-gradient(circle, rgba(224, 168, 88, 0.14) 0%, transparent 72%);
  margin-bottom: 1.7rem;
  color: var(--amber-soft);
  animation: successPulse 2.6s ease-in-out 0.4s infinite;
}

.success-icon-ring svg {
  width: 30px;
  height: 30px;
}

.success-icon-ring::after {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(224, 168, 88, 0.14);
}

.success-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--amber-soft);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}

.success-eyebrow::before,
.success-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-soft));
}

.success-eyebrow::after {
  background: linear-gradient(270deg, transparent, var(--amber-soft));
}

.success-title {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.1rem;
}

.success-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-soft);
}

.success-message {
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 380px;
  font-size: 0.95rem;
  margin-bottom: 2.2rem;
}

.enquiry-modal .success-close-btn {
  padding: 0.95rem 2.6rem;
  background: transparent;
  border: 1px solid rgba(245, 237, 224, 0.3);
  border-radius: 2px;
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.enquiry-modal .success-close-btn:hover {
  border-color: var(--amber);
  color: var(--amber-soft);
  background: rgba(224, 168, 88, 0.06);
}

@keyframes successPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 168, 88, 0.28);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(224, 168, 88, 0);
  }
}

@keyframes successReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }

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

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icons a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 215, 130, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7a85f;
  background: rgba(255, 255, 255, .03);
  transition: all .3s ease;
}

.social-icons a:hover {
  background: #d7a85f;
  color: #0b1614;
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(215, 168, 95, .4);
}

.eyebrow-line {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
  transform-origin: left;
  transform: scaleX(0);
}

/* Disable custom cursor on phones and tablets */
@media (max-width: 768px) {

  .cursor,
  .cursor-outline {
    display: none !important;
  }

  body {
    cursor: auto;
  }
}

@media (hover: none) {

  #cursor,
  #cursorRing {
    display: none !important;
  }
}

#cursor,
#cursorRing {
  overflow: visible;
  pointer-events: none;
}

/* MOBILE HERO FIX */
@media (max-width:768px) {

  .hero {
    display: block;
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-banner {
    height: auto;
    min-height: 100svh;
    justify-content: flex-start;
  }

  .hero-content {
    padding: 7.5rem 1.5rem 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.05;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-ctas .btn {
    width: 90%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    position: static;
    margin-top: 3rem;
  }
}

/* ===== NAVBAR BUTTONS ===== */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brochure {
  padding: 0.65rem 1.6rem;
  border: 1px solid rgba(224, 168, 88, .25);
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  border-radius: 2px;
  transition: all .35s ease;
}

.nav-brochure:hover {
  border-color: var(--amber);
  background: rgba(224, 168, 88, .1);
  color: var(--amber-soft);
}

@media (max-width:768px) {

  .nav-actions {
    gap: .5rem;
  }

  .nav-brochure {
    padding: .55rem 1rem;
    font-size: .58rem;
  }

}

/* ===== MOBILE NAV TOGGLE + MENU ===== */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 620;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s ease, width 0.35s ease;
}

.nav-toggle span:nth-child(2) {
  width: 70%;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 100%;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 100%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: rgba(11, 20, 16, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 168, 88, 0.1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s ease;
  padding: 0 1.5rem;
}

.mobile-menu.active {
  max-height: 80vh;
  opacity: 1;
  padding: 6.5rem 1.5rem 2.5rem;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu-links li {
  border-bottom: 1px solid rgba(245, 237, 224, 0.08);
}

.mobile-menu-links li:first-child {
  border-top: 1px solid rgba(245, 237, 224, 0.08);
}

.mobile-menu-links a {
  display: block;
  padding: 1.2rem 0.2rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  color: var(--amber-soft);
  padding-left: 0.6rem;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }
}

@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FORCE CTA BUTTONS TO SHOW */
.cta-buttons {
  display: flex !important;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 1 !important;
  visibility: visible !important;
}

.cta-buttons a {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  position: relative;
  z-index: 100;
}