@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Josefin+Sans:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --green: #4d5e42;
  --green-dark: #35422e;
  --green-pale: #c5d1bb;
  --gold: #b08d57;
  --gold-light: #cba96b;
  --cream: #f5f1ea;
  --paper: #ede8df;
  --dark: #1e231a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Josefin Sans', sans-serif;
  --shadow: 0 8px 40px rgba(0, 0, 0, .12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .18);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

strong {
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.heading-serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

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

p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #33332a;
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-sub {
  max-width: 600px;
  margin-inline: auto;
  margin-top: 1rem;
  color: #555;
  font-size: 1.25rem;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: min(92%, 1160px);
  margin-inline: auto;
}

.section-pad {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.bg-cream {
  background: var(--cream);
}

.bg-paper {
  background: var(--paper);
}

.bg-green {
  background: var(--green-dark);
}

.bg-dark {
  background: var(--dark);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.gap-xl {
  gap: 5rem;
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* SVG ornament divider */
.svg-divider {
  display: block;
  width: 220px;
  height: 28px;
  margin-inline: auto;
  margin-block: 1rem;
}

svg use {
  inherit: currentColor;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 1rem 0;
  transition: background .4s, box-shadow .4s, padding .3s;
}

#site-header.solid {
  background: rgba(245, 241, 234, .97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .08);
  padding: .6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(96%, 1360px);
  margin-inline: auto;
}

.site-logo img {
  height: 52px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, .4));
  transition: filter .4s;
}

#site-header.solid .site-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.mobile-close-item {
  display: none;
}

.nav-links a {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  transition: color .2s;
}

#site-header.solid .nav-links a {
  color: var(--dark);
}

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

.nav-book {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .6rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, .6);
  color: rgba(255, 255, 255, .9);
  transition: all .25s;
}

#site-header.solid .nav-book {
  border-color: var(--green);
  color: var(--green);
}

.nav-book:hover {
  background: var(--green);
  color: #fff !important;
  border-color: var(--green);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: background .3s;
}

#site-header.solid .hamburger span {
  background: var(--dark);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#home {
  height: 100svh;
  min-height: 640px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0% 0;
  background: url('images/banner.webp') center/cover no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(20, 28, 15, .6) 0%, rgba(20, 28, 15, .25) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 5rem;
  padding-inline: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

.hero-pre {
  font-size: .65rem;
  letter-spacing: .4em;
  color: var(--gold);
  opacity: .9;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .45);
  letter-spacing: .01em;
  word-wrap: break-word;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-desc {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, .75);
  max-width: 600px;
  margin-inline: auto;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: .02em;
}

.hero-cta {
  display: inline-block;
  margin-top: .5rem;
  padding: .85rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, .5);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  transition: all .3s;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .8);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .35);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(.3) translateY(0)
  }

  50% {
    transform: scaleY(1) translateY(0)
  }
}

/* ═══════════════════════════════════════════
   IMAGE-BASED FOG ANIMATION (fog2.png)
═══════════════════════════════════════════ */
#fog {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.fog-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  /* double-wide so one half scrolls while the other replaces it */
  height: 100%;
  background: url('images/fog2.webp') repeat-x bottom;
  background-size: 50% auto;
  /* half = one full viewport width → seamless tile */
  will-change: transform;
}

/* First layer — slow rightward scroll */
.fog-img-first {
  animation: fog-scroll-r 60s linear infinite;
}

/* Second layer — slightly faster, opposite offset for depth */
.fog-img-second {
  animation: fog-scroll-l 45s linear infinite;

  bottom: -40px;
  /* sits a little lower for depth layering */
}

@keyframes fog-scroll-r {
  from {
    transform: translateX(0);
  }

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

@keyframes fog-scroll-l {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}





/* ═══════════════════════════════════════════
   FLYING BIRDS
═══════════════════════════════════════════ */
.birds-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.real-bird {
  position: absolute;
  background-image: url('images/real-bird.svg');
  background-size: 1000% 100%;
  /* 10 frames in sprite */
  width: 73px;
  /* 1 frame width */
  height: 102px;
  /* 1 frame height */
  animation: bird-fly linear infinite, bird-flap 0.8s steps(10) infinite;
  opacity: 0.55;
  filter: brightness(100);
  /* Make them white */
}

.bird-1 {
  transform: scale(0.6);
  top: 20%;
  animation-duration: 20s, 0.8s;
  animation-delay: 0s, 0s;
}

.bird-2 {
  transform: scale(0.4);
  top: 28%;
  animation-duration: 24s, 0.9s;
  animation-delay: -7s, -0.2s;
}

.bird-3 {
  transform: scale(0.3);
  top: 16%;
  animation-duration: 22s, 0.7s;
  animation-delay: -12s, -0.1s;
}

.bird-4 {
  transform: scale(0.5);
  top: 35%;
  animation-duration: 30s, 1.0s;
  animation-delay: -4s, -0.4s;
}

.bird-5 {
  transform: scale(0.25);
  top: 22%;
  animation-duration: 25s, 0.75s;
  animation-delay: -18s, -0.3s;
}

@keyframes bird-fly {
  from {
    left: -100px;
  }

  to {
    left: calc(100vw + 100px);
  }
}

@keyframes bird-flap {
  100% {
    background-position: -1000% 0;
  }
}

/* ═══════════════════════════════════════════
   HERO FADE TRANSITION
═══════════════════════════════════════════ */
.hero-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 3;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   PREMIUM SECTION SEPARATORS
═══════════════════════════════════════════ */
.mtn-sep {
  height: 1px;
  background: rgba(176, 141, 87, .2);
  /* Subtle gold line */
  width: 85%;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FLOATING NATURE PARTICLES (leaves, dots)
═══════════════════════════════════════════ */
.nature-particle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.leaf-drift {
  animation: leaf-float 8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes leaf-float {

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

  25% {
    transform: translateY(-18px) rotate(8deg);
  }

  50% {
    transform: translateY(-8px) rotate(-5deg);
  }

  75% {
    transform: translateY(-22px) rotate(12deg);
  }
}

/* ═══════════════════════════════════════════
   PARALLAX SECTIONS — background mist
═══════════════════════════════════════════ */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 10% 20%, rgba(77, 94, 66, .04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 25% at 90% 80%, rgba(176, 141, 87, .04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.parallax-section>.container {
  position: relative;
  z-index: 1;
}

/* paralax bg mountain outline behind content */
.section-mtn-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .04;
}

.section-mtn-bg svg {
  width: 100%;
}



/* ═══════════════════════════════════════════
   TICKER BAND
═══════════════════════════════════════════ */
.ticker-wrap {
  background: var(--green-dark);
  overflow: hidden;
  padding: .9rem 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.t-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  flex-shrink: 0;
}

.t-item:hover {
  color: var(--gold);
}

.t-svg {
  width: 20px;
  height: 14px;
  color: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

.t-sep {
  color: var(--gold);
  opacity: .4;
  font-size: .5rem;
}

/* ═══════════════════════════════════════════
   OVERVIEW — IMAGE COLLAGE
═══════════════════════════════════════════ */
.image-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: .8rem;
  align-items: stretch;
}

.img-main {
  height: 100%;
}

.img-main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.img-side {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  height: 100%;
}

.img-side img {
  flex: 1;
  height: 0;
  width: 100%;
  object-fit: cover;
}

.collage-decor {
  position: absolute;
  pointer-events: none;
  flex-shrink: 0;
}

.collage-decor.top-left {
  top: -20px;
  left: -20px;
}

.collage-decor.btm-right {
  bottom: -20px;
  right: -20px;
}

/* buttons */
.btn-primary {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: var(--green);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: .9rem 2.4rem;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .25s;
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

.btn-gold {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
}

.btn-gold:hover {
  background: #8f6e3f;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .25s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-gold-outline {
  display: inline-block;
  padding: .9rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: all .25s;
}

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

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   ROOMS MOSAIC
═══════════════════════════════════════════ */
.rooms-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 400px 360px;
  gap: 8px;
}

.rm {
  position: relative;
  overflow: visible;
  perspective: 1200px;
}

.rm-flipper {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.rm:hover .rm-flipper {
  transform: rotateY(180deg);
}

.rm-front, .rm-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
}

.rm-front {
  transform: rotateY(0deg);
}

.rm-front img {
  width: 100%;
  height: calc(100% + 70px);
  margin-top: -35px;
  object-fit: cover;
  transform: translateY(var(--py, 0));
  will-change: transform;
}

.rm-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.rm-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 70px);
  margin-top: -35px;
  object-fit: cover;
  transform: translateY(var(--py, 0));
  will-change: transform;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.rm-slideshow img.active {
  opacity: 1;
  z-index: 2;
}

.rm-slideshow-dots {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  pointer-events: none;
}

.rm-slideshow-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.rm-slideshow-dots span.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(188, 161, 114, 0.6);
}

.rm-front-title {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 2rem 1.4rem 1.2rem;
  background: linear-gradient(transparent, rgba(10, 14, 8, .9));
  color: #fff;
}

.rm-front-title h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0;
}

.rm-back {
  transform: rotateY(180deg);
  background: #181d15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rm-label {
  padding: 2.5rem 2rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rm-label svg {
  margin-bottom: .8rem;
}

.rm-label h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--gold);
}

.rm-label p {
  font-size: .85rem;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
  margin: 0;
}

.rm-a {
  grid-column: 1/6;
  grid-row: 1;
}

.rm-b {
  grid-column: 6/13;
  grid-row: 1;
}

.rm-c {
  grid-column: 1/5;
  grid-row: 2;
}

.rm-d {
  grid-column: 5/13;
  grid-row: 2;
}

/* ═══════════════════════════════════════════
   CINEMATIC STRIP
═══════════════════════════════════════════ */
.cine-strip {
  position: relative;
  height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cine-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.5) saturate(1.1);
}

.cine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 28, 15, .7) 0%, rgba(20, 28, 15, .3) 100%);
}

.cine-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.cine-svg {
  margin-inline: auto;
  margin-bottom: 1.2rem;
  display: block;
}

.cine-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: .6rem;
}

.cine-h em {
  font-style: italic;
  color: var(--gold-light);
}

.cine-content>p {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
}

/* ═══════════════════════════════════════════
   ACTIVITIES
═══════════════════════════════════════════ */
/* absolute corner SVGs */
.abs-svg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.abs-svg.tl {
  top: 1.5rem;
  left: 1.5rem;
}

.abs-svg.tr {
  top: 1.5rem;
  right: 1.5rem;
}

.abs-svg.bl {
  bottom: 1.5rem;
  left: 1.5rem;
}

.abs-svg.br {
  bottom: 1.5rem;
  right: 1.5rem;
}

.act-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.act-main {
  grid-column: span 2;
}

.act-grid img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.act-main {
  aspect-ratio: 16/8;
}

.act-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1.5rem;
}

.act-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  letter-spacing: .02em;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  color: #33332a;
}

#facilities {
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 1024px) {
  .fac-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .fac-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fac-card {
  background: rgba(15, 20, 10, 0.4);
  padding: 2.5rem 1rem;
  border: 1px solid rgba(176, 141, 87, .25);
  /* Subtle gold border */
  border-radius: 4px;
  /* Slight modern rounding */
  text-align: center;
  transition: all .4s ease;
  cursor: default;
}

.fac-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.fac-card i {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.fac-card span {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  display: block;
}

/* ═══════════════════════════════════════════
   IMAGE FRAME (Dining/Wellness)
═══════════════════════════════════════════ */
.img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.img-frame img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.img-frame::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid var(--gold);
  z-index: 1;
  border-radius: 4px;
}

/* Dining highlights */
.dining-highlights {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dh-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--green-dark);
  padding: 1rem 1.2rem;
  background: white;
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .04);
  border-radius: 0 6px 6px 0;
  transition: transform .3s;
}

.dh-item:hover {
  transform: translateX(5px);
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
  margin-bottom: 35px;
}

.gallery-tab-btn {
  background: transparent;
  border: 1px solid rgba(188, 161, 114, 0.3);
  color: var(--cream);
  padding: 8px 10px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.gallery-tab-btn:hover {
  background: rgba(188, 161, 114, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.gallery-tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-green, #141c0f);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(188, 161, 114, 0.2);
}

.gallery-mobile-select-wrapper {
  display: none;
  max-width: 400px;
  margin: 0 auto 30px;
  position: relative;
}

.gallery-mobile-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(188, 161, 114, 0.05);
  border: 1px solid rgba(188, 161, 114, 0.3);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bca172' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  transition: all 0.3s ease;
}

.gallery-mobile-select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(188, 161, 114, 0.1);
  box-shadow: 0 0 10px rgba(188, 161, 114, 0.2);
}

.gallery-mobile-select option {
  background: #141c0f;
  color: var(--cream);
  text-transform: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 8px;
}

.gg {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gg.hidden {
  display: none !important;
}

.gg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.gg:hover img {
  transform: scale(1.06);
}

@media (min-width: 768px) {
  .gg-tall {
    grid-row: span 2;
  }

  .gg-wide {
    grid-column: span 2;
  }

  .gg-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gg-hover {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 15, .5);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .3s;
}

.gg:hover .gg-hover {
  opacity: 1;
}

.gg-hover span {
  color: white;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  transform: translateY(10px);
  transition: transform .3s;
}

.gg:hover .gg-hover span {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   LIGHTBOX (Offcanvas/Modal)
═══════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 15, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
  font-family: var(--sans);
  font-weight: 300;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-wrap {
  max-width: 780px;
  margin-inline: auto;
}

.testi-slider {
  position: relative;
  min-height: 240px;
}

.testi-slide {
  display: none;
  text-align: center;
  padding: 1rem;
}

.testi-slide.active {
  display: block;
  animation: tFade .5s ease;
}

@keyframes tFade {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.quote-svg {
  margin-inline: auto;
  margin-bottom: 1rem;
  display: block;
}

.t-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}

.t-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .4rem;
}

.t-author {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #999;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.t-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--green-pale);
  background: none;
  color: var(--green);
  cursor: pointer;
  font-size: .85rem;
  transition: all .2s;
  display: grid;
  place-items: center;
}

.t-arrow:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.t-dots {
  display: flex;
  gap: .5rem;
}

.t-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--green-pale);
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}

.t-dots button.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* ═══════════════════════════════════════════
   MICE STATS
═══════════════════════════════════════════ */
.mice-stats {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.ms-item {
  flex: 1;
  text-align: center;
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  border-bottom: 3px solid var(--gold);
  transition: transform .3s;
}

.ms-item:hover {
  transform: translateY(-5px);
}

.ms-num {
  display: block;
  font-family: var(--sans);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1;
}

.ms-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .6rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   LOCATION & CONTACT
═══════════════════════════════════════════ */
.contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .contact-modern-grid {
    grid-template-columns: 1fr;
  }
}

.cm-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.cm-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
  transition: transform .3s;
  border-left: 3px solid var(--gold);
}

.cm-card:hover {
  transform: translateX(5px);
}

.cm-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(176, 141, 87, .1);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cm-text strong {
  display: block;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: .3rem;
  font-weight: 600;
}

.cm-text p,
.cm-text a {
  margin: 0;
  font-size: .95rem;
  color: #555;
}

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

.wa-chat-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #25d366 !important;
  font-weight: 500;
  margin-left: .8rem;
  padding: .2rem .6rem;
  background: rgba(37, 211, 102, .1);
  border-radius: 4px;
  transition: all .3s;
}

.wa-chat-link:hover {
  background: #25d366;
  color: white !important;
  transform: translateY(-2px);
}

.mt-4 {
  margin-top: 1.5rem;
}

.cm-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cm-form-wrapper h3 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.cm-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cm-form .form-group {
  margin-bottom: 1.2rem;
}

.cm-form .form-group:nth-of-type(4) {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cm-form input,
.cm-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .95rem;
  transition: border-color .3s, box-shadow .3s;
  background: #fafafa;
}

.cm-form textarea {
  flex-grow: 1;
  resize: none;
}

.cm-form input:focus,
.cm-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .15);
  background: white;
}

.w-100 {
  width: 100%;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.map-frame {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  display: block;
  flex-grow: 1;
}

/* ═══════════════════════════════════════════
   BOOK BAND
═══════════════════════════════════════════ */
.book-band {
  position: relative;
  padding: 8rem 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.book-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.45) saturate(.9);
}

.book-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 28, 15, .6), rgba(20, 28, 15, .4));
}

.book-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 1rem 2rem;
}

.book-content p {
  color: rgba(255, 255, 255, .7);
  margin-top: .5rem;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .85);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.f-logo {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.f-brand p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: .5rem;
  color: #c5d1bb;
}

.f-col h4 {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.f-col a {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: .8rem;
  transition: color .2s;
}

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

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 1.5rem;
  text-align: center;
}

.f-bottom p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

/* ═══════════════════════════════════════════
   FLOATING CTAs
═══════════════════════════════════════════ */
.floating-ctas {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  z-index: 800;
}

.fcta {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  transition: transform .25s, box-shadow .25s;
}

.fcta:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}

.fcta-wa {
  background: #25d366;
}

.fcta-call {
  background: var(--green);
}

.fcta-enquire-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #dfc28d;
  color: #222;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .75rem;
  padding: 1.5rem .4rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  cursor: pointer;
  border: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -3px 0 15px rgba(0, 0, 0, .1);
  transition: all .3s;
  z-index: 800;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.fcta-enquire-tab:hover {
  background: var(--gold);
  color: #000;
  padding-right: .8rem;
}

/* ═══════════════════════════════════════════
   ENQUIRE MODAL
═══════════════════════════════════════════ */
.enquire-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 15, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.enquire-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.em-content {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.enquire-modal.active .em-content {
  transform: translateY(0);
}

.em-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  transition: color .2s;
}

.em-close:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   MOBILE STICKY BAR (Hidden on Desktop)
═══════════════════════════════════════════ */
.mobile-sticky-bar {
  display: none;
}

/* ═══════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hamburger {
    display: flex;
  }

  .nav-book {
    display: none;
  }

  .mobile-close-item {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: block;
  }

  #menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark);
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  }

  .nav-links.open {
    transform: none;
  }

  .nav-links a {
    color: var(--dark) !important;
    font-size: 1.2rem !important;
    font-weight: 500;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .rooms-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .rm-a,
  .rm-b,
  .rm-c,
  .rm-d {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 3/4;
    height: auto;
    width: 100%;
  }

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

  .gg-tall,
  .gg-wide {
    height: 220px;
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .act-list {
    grid-template-columns: 1fr;
  }

  .mice-stats {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .gallery-tabs {
    display: none !important;
  }

  .gallery-mobile-select-wrapper {
    display: block !important;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .rooms-mosaic {
    grid-template-columns: 1fr;
  }

  .rm-a,
  .rm-b,
  .rm-c,
  .rm-d {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 1/1;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gg,
  .gg-tall,
  .gg-wide,
  .gg-large {
    height: auto;
  }

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

  .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .btn-row a,
  .btn-row button {
    text-align: center;
  }

  .mice-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-logo {
    height: 80px;
  }

  .image-collage {
    grid-template-columns: 1fr;
  }

  .img-side {
    flex-direction: row;
  }

  /* Form & Contact fixes */
  .cm-form-wrapper {
    padding: 1.5rem;
  }

  .cm-card {
    padding: 1.2rem;
    gap: 1rem;
  }

  .contact-modern-grid {
    gap: 1.5rem;
  }

  /* Modal fixes */
  .em-content {
    padding: 1.5rem;
  }

  .em-close {
    top: 10px;
    right: 15px;
  }

  /* Floating Tab fixes & Mobile Sticky Bar */
  .floating-ctas,
  .fcta-enquire-tab {
    display: none;
  }

  body {
    padding-bottom: 50px;
  }

  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, .3);
    background: rgba(20, 28, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(176, 141, 87, .2);
  }

  .msb-item {
    flex: 1;
    padding: .8rem 0;
    text-align: center;
    font-size: .65rem;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    border: none;
    border-right: 1px solid rgba(176, 141, 87, .15);
    cursor: pointer;
    color: rgba(255, 255, 255, .7);
    font-family: var(--sans);
    letter-spacing: .1em;
    background: transparent;
    transition: color .3s, background .3s;
  }

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

  .msb-item i {
    font-size: 1.1rem;
    color: var(--gold);
    transition: transform .3s;
  }

  .msb-item:active {
    background: rgba(176, 141, 87, .1);
    color: #fff;
  }

  .msb-item:active i {
    transform: scale(1.1);
  }

  /* Typography */
  .cine-h {
    font-size: 2.2rem;
  }
}

@media (max-width: 400px) {
  body {
    padding-bottom: 45px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 10vw, 7rem);
  }

  .mobile-sticky-bar {
    font-size: .55rem;
  }
}

@media(max-width: 600px) {
  .section-header {
    margin-bottom: 2rem;
  }

  .hero-pre {
    letter-spacing: 0;
  }
}