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

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Color Palette */
  --color-black: #0A0A0A;
  --color-dark-grey: #151515;
  --color-charcoal: #1E1E1E;
  --color-gold: #C5A880;
  --color-gold-hover: #DBC3A3;
  --color-sand: #E5DCD0;
  --color-beige: #F2EFE9;
  --color-offwhite: #FBFBFA;
  --color-white: #FFFFFF;
  --color-grey: #8E8E8E;
  --color-light-grey: #E5E5E5;
  
  /* Opacities & Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-glow: rgba(197, 168, 128, 0.15);
  --dark-overlay: rgba(10, 10, 10, 0.55);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-xxl: 12rem;
  
  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & ACCESSIBILITY --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: initial; /* Managed by Lenis smooth scroll */
  background-color: var(--color-black);
  color: var(--color-offwhite);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  background-color: var(--color-black);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-charcoal);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Selection */
::selection {
  background-color: var(--color-gold);
  color: var(--color-black);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}

li {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

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

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* --- DYNAMIC CUSTOM CURSOR --- */
#custom-cursor {
  width: 10px;
  height: 10px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0; /* Hidden on load until mouse moves */
}

#custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0; /* Hidden on load until mouse moves */
}

/* Hover States for Cursor */
.hovering-link #custom-cursor {
  width: 15px;
  height: 15px;
  background-color: var(--color-gold-hover);
}
.hovering-link #custom-cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--color-gold);
}
.cursor-view-mode #custom-cursor-follower {
  width: 80px;
  height: 80px;
  background-color: rgba(197, 168, 128, 0.1);
  border-color: var(--color-gold);
}
.cursor-view-mode::after {
  content: 'VIEW';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-family: var(--font-sans);
  font-weight: 600;
}

/* Hide cursor on touch devices */
@media (hover: none) {
  #custom-cursor, #custom-cursor-follower {
    display: none !important;
  }
}

/* --- PRE-LOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
}

.loader-bar-container {
  width: 200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--color-gold);
}

.loader-percentage {
  margin-top: var(--space-xs);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  color: var(--color-grey);
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  transition: var(--transition-smooth);
  backdrop-filter: blur(0px);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0) 100%);
}

header.scrolled {
  padding: 1.2rem var(--space-lg);
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.logo span {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  font-family: var(--font-sans);
  color: var(--color-gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  color: rgba(251, 251, 250, 0.75);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-white);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Audio Wave Icon */
.audio-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(10, 10, 10, 0.3);
  transition: var(--transition-fast);
}

.audio-toggle:hover {
  border-color: var(--color-gold);
}

.audio-toggle i {
  color: var(--color-gold);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.audio-toggle:hover i {
  color: var(--color-white);
}

.sound-waves.playing span {
  animation: wavePulse 1.2s ease-in-out infinite;
}

.sound-waves.playing span:nth-child(1) { animation-delay: 0.1s; height: 10px; }
.sound-waves.playing span:nth-child(2) { animation-delay: 0.4s; height: 14px; }
.sound-waves.playing span:nth-child(3) { animation-delay: 0.2s; height: 8px; }
.sound-waves.playing span:nth-child(4) { animation-delay: 0.5s; height: 12px; }

@keyframes wavePulse {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

/* --- BUTTONS --- */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
  font-weight: 500;
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-white);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.1);
}

/* Sticky Booking Trigger */
#sticky-booking-trigger {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-gold);
  color: var(--color-black);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1) inset;
  cursor: pointer;
  transition: var(--transition-smooth);
}

#sticky-booking-trigger:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: var(--color-gold-hover);
  box-shadow: 0 15px 40px rgba(197, 168, 128, 0.3);
}

#sticky-booking-trigger i {
  font-size: 1.25rem;
}

#sticky-booking-trigger span {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 10px;
}

@media (min-width: 992px) {
  #sticky-booking-trigger {
    width: auto;
    padding: 0 1.8rem;
    border-radius: 30px;
  }
  #sticky-booking-trigger span {
    display: inline;
  }
}

/* --- SECTION GENERAL STYLING --- */
section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.section-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.1;
  font-weight: 300;
}

/* --- 1. HERO SECTION --- */
#hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-image: url('https://cf.bstatic.com/xdata/images/hotel/max1400/889002633.jpg?k=931be0e27ff3aad171e20fe9d2b6eba1381312916b88135a5608decdda172c8a&o=&hp=1');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: none; /* Hide on desktop */
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* Disable browser overlay play button interaction */
}

/* Prevent native WebKit play button overlays in mobile in-app webviews */
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-panel,
video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-md);
  margin-top: 40px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-sand);
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-grey);
}

.scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: var(--color-gold);
  animation: scrollDown 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(333%); }
}

/* --- 2. EXPERIENCE SECTION --- */
#experience {
  background-color: var(--color-dark-grey);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 992px) {
  .experience-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
  }
}

.experience-images-layered {
  position: relative;
  height: 450px;
}

@media (min-width: 768px) {
  .experience-images-layered {
    height: 600px;
  }
}

.exp-img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.exp-img-secondary {
  width: 50%;
  height: 60%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-text-content {
  display: flex;
  flex-direction: column;
}

.experience-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.experience-desc {
  font-size: 1rem;
  color: var(--color-grey);
  margin-bottom: var(--space-lg);
}

/* Counters */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-md);
}

@media (min-width: 480px) {
  .counter-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.counter-item {
  display: flex;
  flex-direction: column;
}

.counter-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 5px;
}

.counter-label {
  font-size: 0.65rem;
  font-family: var(--font-sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-grey);
}

/* --- 3. GALLERY SECTION --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  color: var(--color-grey);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* Uniform aspect ratio gallery grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

@media (min-width: 576px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  display: block;
  aspect-ratio: 3/2; /* Forces identical sizes */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop instead of stretch */
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0) 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-info h4 {
  font-size: 1.25rem;
  color: var(--color-white);
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-item-info h4 {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.98);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.08);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2rem;
  color: var(--color-grey);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 50%;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { right: 10px; top: -50px; }
}

.lightbox-caption {
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-sand);
}

/* --- 4. ROOMS SECTION --- */
#rooms {
  background-color: var(--color-dark-grey);
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 992px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card {
  background-color: rgba(25, 25, 25, 0.4);
  border: 1px solid var(--glass-border);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.room-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--glass-glow);
}

.room-img-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.room-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

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

.room-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 0.3rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.room-card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--color-grey);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.room-details {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--space-sm);
}

.room-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.room-amenity-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--color-sand);
}

.room-card-footer {
  margin-top: auto;
}

.room-card-footer .btn-luxury {
  width: 100%;
}

/* --- 5. AMENITIES GRID --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.amenity-card {
  background-color: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255,255,255,0.03);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.amenity-card:hover {
  background-color: rgba(197, 168, 128, 0.05);
  border-color: rgba(197, 168, 128, 0.25);
  transform: translateY(-5px);
}

.amenity-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  height: 40px;
  display: flex;
  align-items: center;
}

.amenity-card h4 {
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 5px;
}

.amenity-card p {
  font-size: 0.8rem;
  color: var(--color-grey);
}

/* --- 6. LOCATION SECTION --- */
#location {
  background-color: var(--color-dark-grey);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 992px) {
  .location-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-lg);
  }
}

.location-map-container {
  height: 400px;
  width: 100%;
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .location-map-container {
    height: 550px;
  }
}

#map {
  width: 100%;
  height: 100%;
  background: var(--color-black);
}

/* Custom Leaflet Map styling (dark thematic overrides) */
.leaflet-container {
  background: var(--color-black) !important;
  font-family: var(--font-sans) !important;
}

.leaflet-bar a {
  background-color: var(--color-charcoal) !important;
  color: var(--color-offwhite) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.leaflet-bar a:hover {
  background-color: var(--color-gold) !important;
  color: var(--color-black) !important;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.attractions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: var(--space-md);
}

.attraction-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.attraction-item:hover {
  background-color: rgba(197, 168, 128, 0.03);
  border-color: rgba(197, 168, 128, 0.15);
}

.attraction-name {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.attraction-name i {
  color: var(--color-gold);
}

.attraction-name h5 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-offwhite);
}

.attraction-distance {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

/* --- 7. WHY CHOOSE CASA UNO --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background-color: rgba(20, 20, 20, 0.3);
  border: 1px solid rgba(255,255,255,0.03);
  padding: var(--space-md);
  position: relative;
  transition: var(--transition-smooth);
}

.why-card:hover {
  border-color: rgba(197, 168, 128, 0.2);
  transform: translateY(-5px);
  background-color: rgba(20, 20, 20, 0.5);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(197, 168, 128, 0.15);
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  line-height: 1;
}

.why-card h4 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  margin-top: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--color-grey);
}

/* --- 8. REVIEWS SLIDER --- */
#reviews {
  background-color: var(--color-dark-grey);
}

.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: var(--space-sm) 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 var(--space-md);
  text-align: center;
  opacity: 0.4;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.review-slide.active {
  opacity: 1;
  transform: scale(1);
}

.quote-icon {
  font-size: 3rem;
  color: rgba(197, 168, 128, 0.15);
  margin-bottom: var(--space-xs);
  font-family: var(--font-serif);
  line-height: 1;
}

.review-stars {
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.4;
  color: var(--color-sand);
  margin-bottom: var(--space-md);
}

.review-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.review-author span {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-grey);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.review-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.review-nav-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.review-dot.active {
  background-color: var(--color-gold);
  transform: scale(1.5);
}

/* --- 9. FULL WIDTH IMAGE IMPACT --- */
#image-impact {
  height: 65vh;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Fallback for iOS which doesn't support background-attachment: fixed */
@supports (-webkit-overflow-scrolling: touch) {
  #image-impact {
    background-attachment: scroll;
  }
}

.impact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.55);
}

.impact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.impact-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.impact-divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  margin: var(--space-sm) auto;
}

/* --- 10. BOOKING CTA SECTION --- */
#booking-cta {
  background-color: var(--color-black);
}

.cta-box {
  background: radial-gradient(circle at 10% 20%, rgba(30, 30, 30, 0.4) 0%, rgba(15, 15, 15, 0.6) 90.2%);
  border: 1px solid var(--glass-border);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .cta-box {
    padding: var(--space-xl) var(--space-lg);
  }
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--color-grey);
  max-width: 600px;
  margin: 0 auto var(--space-lg) auto;
}

.cta-buttons-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .cta-buttons-container {
    flex-direction: row;
    gap: var(--space-md);
  }
}

.cta-btn-link {
  width: 100%;
  max-width: 280px;
}

.cta-btn-link .btn-luxury {
  width: 100%;
}

.cta-direct-notes {
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--color-grey);
  font-family: var(--font-sans);
}

.cta-direct-notes span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-direct-notes i {
  color: var(--color-gold);
}

/* --- 11. FOOTER SECTION --- */
footer {
  background-color: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-lg) 0 var(--space-md) 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand p {
  color: var(--color-grey);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  max-width: 320px;
}

.footer-links-col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.85rem;
  color: var(--color-grey);
}

.footer-links-col a:hover {
  color: var(--color-white);
  padding-left: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey);
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-grey);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* --- ANIMATION REVEAL ELEMENTS --- */
.reveal-fade-up {
  opacity: 1; /* Visible by default, animated from 0 by GSAP */
}

.text-reveal-mask {
  position: relative;
  overflow: hidden;
}

.text-reveal-mask span {
  display: inline-block;
}

/* --- MULTILINGUAL & MOBILE NAVIGATION --- */

/* Language Switcher Dropdown */
.lang-selector {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 160px;
  background-color: rgba(10, 10, 10, 0.98);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
}

.lang-dropdown.active {
  display: flex;
}

.lang-dropdown a {
  padding: 0.75rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-grey);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-fast);
}

.lang-dropdown a:last-child {
  border-bottom: none;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.03);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover span {
  background-color: var(--color-gold);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  transform: scale(1.05);
}

/* Scroll Lock on Body */
body.no-scroll {
  overflow: hidden;
}

/* Responsive Navigation Layout Styling */
@media (max-width: 991px) {
  .nav-links.desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  header {
    padding: 1.2rem var(--space-md);
  }
}

/* Show video background on mobile screens */
@media (max-width: 991px) {
  .hero-video-container {
    display: block; /* Show video on mobile */
  }
}

/* Comprehensive Mobile Optimization (max-width: 767px) */
@media (max-width: 767px) {
  header {
    padding: 0.6rem 10px !important;
  }
  
  header .logo {
    font-size: 0.85rem !important;
    letter-spacing: 0.05em !important;
  }
  header .logo span {
    font-size: 0.4rem !important;
    letter-spacing: 0.1em !important;
  }
  
  .header-actions {
    gap: 8px !important;
  }
  
  .lang-btn {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.7rem !important;
  }
  
  .hero-title {
    font-size: 2.2rem !important;
    letter-spacing: 0.02em !important;
    line-height: 1.1 !important;
    margin-bottom: var(--space-xs) !important;
  }
  
  .hero-subtitle {
    font-size: 0.65rem !important;
    letter-spacing: 0.25em !important;
    margin-bottom: var(--space-xs) !important;
  }
  
  .hero-tagline {
    font-size: 0.9rem !important;
    margin-bottom: var(--space-md) !important;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px !important;
    margin: 0 auto;
  }
  
  .hero-actions .btn-luxury {
    width: 100%;
    text-align: center;
    padding: 0.75rem var(--space-sm) !important;
    font-size: 0.72rem !important;
    white-space: nowrap !important;
  }

  
  .section-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }
  
  .section-subtitle {
    font-size: 0.65rem !important;
    letter-spacing: 0.2em !important;
  }
  
  .experience-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-md) !important;
  }
  
  .experience-images-layered {
    height: 280px !important;
    margin-bottom: var(--space-md) !important;
  }
  
  .experience-quote {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
    margin-bottom: var(--space-sm) !important;
  }
  
  .experience-desc {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  
  .counter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  
  .counter-number {
    font-size: 1.6rem !important;
  }
  
  .counter-label {
    font-size: 0.6rem !important;
  }
  
  .room-title {
    font-size: 1.3rem !important;
  }
  
  .room-desc {
    font-size: 0.75rem !important;
  }
  
  .cta-box {
    padding: var(--space-md) var(--space-sm) !important;
  }
  
  .cta-title {
    font-size: 1.6rem !important;
  }
  
  .cta-desc {
    font-size: 0.8rem !important;
  }
  
  .cta-buttons-container {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .cta-buttons-container .btn-luxury {
    width: 100%;
    text-align: center;
  }
  
  footer {
    padding: var(--space-md) 0 !important;
  }
  
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: var(--space-md) !important;
    text-align: center;
  }
  
  .footer-brand, .footer-links-col {
    align-items: center;
  }
  
  .footer-links-col ul {
    align-items: center;
  }
  
  .footer-bottom {
    text-align: center;
    gap: 10px !important;
  }
}
