/* ============================================================
   THE GRAND REGENCY — Style Sheet
   Royal Luxury + Modern Editorial Design
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --cream: #fdfbf7;
  --cream-dark: #f0ede6;
  --beige: #e5e0d8;
  --brown-deep: #1c1c1c;
  --brown-mid: #383838;
  --brown-light: #616161;
  --gold: #a3b1a6;
  --gold-light: #c0ccc1;
  --gold-pale: #e0e5df;
  --orange-soft: #d4784a;
  --green-muted: #8fa882;
  --green-pale: #e8ede6;
  --gray-text: #6b6b6b;
  --gray-light: #f2ede7;
  --white: #ffffff;
  --shadow-soft: 0 4px 24px rgba(30, 18, 8, 0.08);
  --shadow-mid: 0 8px 40px rgba(30, 18, 8, 0.14);
  --shadow-heavy: 0 20px 60px rgba(30, 18, 8, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;
  --script: 'Great Vibes', cursive;
}

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

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--brown-deep);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--gold-pale);
  color: var(--brown-deep);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brown-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  animation: logoPulse 2s ease-in-out infinite;
}

.preloader-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-title {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeInDown 1.2s ease forwards;
}

.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: barProgress 2.5s infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@keyframes barProgress {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-info-bar {
  background: var(--brown-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 3rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  text-decoration: none;
}

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

.top-bar-item svg {
  color: var(--gold);
  stroke: var(--gold);
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.top-bar-social:hover {
  background: var(--gold);
  color: var(--brown-deep);
}

.top-bar-social svg {
  fill: currentColor;
}

/* Mobile Book Icon Button in Header */
.mobile-book-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown-deep);
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}

.mobile-book-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

#main-header {
  position: fixed;
  top: 40px;
  /* Accounts for Top Info Bar height */
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  padding: 0;
}

#main-header.scrolled {
  top: 0;
  background: rgba(245, 240, 232, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(30, 18, 8, 0.12);
}

#main-header.scrolled .lt-top {
  color: var(--brown-deep) !important;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 3rem;
  gap: 1.5rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}

#main-header.scrolled .nav-link {
  color: var(--brown-mid);
}

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

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

.nav-book-btn {
  background: var(--gold);
  color: var(--brown-deep) !important;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.nav-book-btn::after {
  display: none;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition), filter var(--transition);
  filter: brightness(0) invert(1);
}

#main-header.scrolled #header-logo {
  height: 80px;
  filter: brightness(0) invert(25%) sepia(30%) hue-rotate(340deg) saturate(300%);
}

.logo-group {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

#main-header.scrolled .hamburger span {
  background: var(--brown-mid);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-mid);
  animation: slideDown 0.3s ease;
}

.mobile-menu.open {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.mobile-link {
  padding: 0.9rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--beige);
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-book {
  margin-top: 0.7rem;
  background: var(--gold);
  color: var(--brown-deep) !important;
  text-align: center;
  padding: 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  border: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('Images/the-grand-regency-night.webp') center center / cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(30, 18, 8, 0.35) 0%,
      rgba(30, 18, 8, 0.55) 50%,
      rgba(30, 18, 8, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
  animation: heroFadeUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

.hero-tagline {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  animation-delay: 0.3s;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown-deep);
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.7;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--brown-deep);
  color: var(--gold-light);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  font-style: italic;
}

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

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

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-script {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.section-script.light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--brown-light);
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms-section {
  padding: 7rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.room-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.room-card--cream {
  background: var(--cream);
}

.room-card--sage {
  background: var(--green-pale);
}

.room-card--warm {
  background: #f5ede4;
}

.room-card--blue {
  background: #e8eef5;
}

.room-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange-soft);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
}

.room-badge--gold {
  background: var(--gold);
  color: var(--brown-deep);
}

.room-card-body {
  padding: 1.5rem;
}

.room-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.room-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.room-size {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.room-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.room-desc {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-from {
  font-size: 0.7rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-amount {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-deep);
}

.price-night {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.room-cta {
  background: var(--brown-deep);
  color: var(--gold-light);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.room-cta:hover {
  background: var(--gold);
  color: var(--brown-deep);
  transform: translateY(-1px);
}

/* ============================================================
   SPLIT LUXURY SECTION
   ============================================================ */
.split-luxury {
  background: var(--brown-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

.split-luxury-text {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

.split-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.split-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  width: max-content;
}

.btn-outline-light:hover {
  background: var(--gold);
  color: var(--brown-deep);
  border-color: var(--gold);
}

.split-luxury-img {
  position: relative;
  overflow: hidden;
}

.split-luxury-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-luxury:hover .split-luxury-img img {
  transform: scale(1.04);
}

.img-float-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(30, 18, 8, 0.80);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
}

.float-rating {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 600;
}

.float-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

/* ============================================================
   PROPERTY HIGHLIGHTS
   ============================================================ */
.highlights-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  padding: 7rem 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
  align-items: center;
}

.highlights-left {
  padding-right: 4rem;
}

.highlights-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1.2;
  margin: 0.5rem 0 2rem;
}

.highlights-title em {
  font-style: italic;
  color: var(--brown-light);
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--brown-mid);
}

.hl-icon {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.highlight-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.hig-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.hig-item img {
  width: 100%;
  height: 200px;
  /* Reduced from 200px */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hig-item:hover img {
  transform: scale(1.07);
}

.hig-item--large {
  grid-row: 1 / 3;
}

.hig-item--large img {
  height: 100%;
  min-height: 400px;
  /* Reduced from 400px (160 * 2 + 16 gap) */
}

.hig-item--wide {
  grid-column: span 2;
}

.hig-item--wide img {
  height: 200px;
  /* Reduced from 200px */
}

.hig-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30, 18, 8, 0.7));
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1rem 0.7rem;
  font-weight: 500;
}

/* ============================================================
   GALLERY / AUTO-SCROLL SECTION
   ============================================================ */
.gallery-section {
  padding: 7rem 0;
  background: var(--cream-dark);
  overflow: hidden;
}

.gallery-section .section-header {
  padding: 0 3rem;
}

.gallery-scroll-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 3rem;
  padding: 2rem 0 3rem;
  /* space for polaroid tilt */
  cursor: grab;
}

.gallery-scroll-track {
  display: flex;
  gap: 2.5rem;
  /* Increased from 1.5rem for better spacing with tilts */
  width: max-content;
  animation: galleryScroll 40s linear infinite;
}

.gallery-scroll-wrap:hover .gallery-scroll-track {
  animation-play-state: paused;
}

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

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

.gallery-slide {
  flex-shrink: 0;
  width: 280px;
  /* Reduced from 320px */
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}

.gallery-slide:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
}

/* POLAROID STYLE */
.polaroid {
  background: var(--white);
  padding: 12px 12px 45px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.polaroid img {
  width: 100%;
  height: 200px;
  /* Reduced from 240px */
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.polaroid-caption {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--script);
  font-size: 1.4rem;
  color: #444;
  margin: 0;
}

/* TILT EFFECTS */
.polaroid--tilt-left {
  transform: rotate(-3deg);
}

.polaroid--tilt-right {
  transform: rotate(3deg);
}

.polaroid--tilt-left2 {
  transform: rotate(-5deg);
}

.polaroid--tilt-right2 {
  transform: rotate(5deg);
}

.polaroid--tilt-none {
  transform: rotate(0deg);
}

/* Removed redundant img styles as they are handled in .polaroid img */

/* Removed redundant caption style */

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: zoom-out;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.gallery-lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition);
}

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

/* ============================================================
   DINING SECTION
   ============================================================ */
.dining-section {
  padding: 7rem 3rem;
  background: var(--brown-deep);
}

.dining-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dining-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 0.5rem 0 1.5rem;
}

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

.dining-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.dining-nearby h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-weight: 600;
}

.dining-places {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dining-place {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold);
}

.dp-dist {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  min-width: 50px;
}

.dp-name {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.dining-images {
  position: relative;
}

.dining-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.dining-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.dining-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-mid);
  gap: 0.3rem;
}

.db-icon {
  font-size: 1.6rem;
}

.db-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  color: var(--brown-deep);
  line-height: 1.4;
}

/* ============================================================
   LOCATION / EMOTIONAL BRANDING
   ============================================================ */
.location-branding {
  padding: 7rem 3rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.location-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.location-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.location-title em {
  font-style: italic;
  color: var(--brown-light);
}

.location-sub {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.location-center-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
  align-items: center;
}

.loc-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-col-center {
  height: 100%;
}

.loc-card {
  background: var(--white);
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(74, 56, 44, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.loc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.loc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
}

.loc-card:hover::after {
  transform: scaleX(1);
}

.loc-icon {
  width: 32px !important;
  height: 32px !important;
  display: block;
  margin: 0 auto 1.2rem !important;
  color: var(--gold);
}

.loc-card h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0.5rem;
}

.loc-card p {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.location-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  animation-fill-mode: both;
  border: 8px solid var(--white);
  position: relative;
}

.location-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  z-index: 2;
}

.location-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 1s ease;
}

.loc-col-center:hover .location-img-wrap img {
  transform: scale(1.04);
}

/* ============================================================
   MAP & DIRECTIONS SECTION
   ============================================================ */
.map-section {
  padding: 6rem 3rem;
  background: var(--brown-deep);
  color: var(--white);
}

.map-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.map-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.map-nav-link:hover,
.map-nav-link.active {
  color: var(--gold-light);
}

.map-nav-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.map-content-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-embed-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: var(--brown-deep);
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) sepia(25%) contrast(90%) saturate(120%);
}

/* Floating Info Card ON map */
.map-float-info {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(30, 24, 20, 0.95);
  backdrop-filter: blur(8px);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
  min-width: 210px;
  display: flex;
  flex-direction: column;
}

.mf-logo {
  width: 50px;
  height: auto;
  margin-bottom: 0.6rem;
  filter: brightness(0) invert(1) sepia(100%) saturate(300%) hue-rotate(5deg) drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

.mf-text {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mf-text h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.mf-text p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.mf-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #1a120e;
  padding: 0.6rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.mf-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Right Side Text / Details */
.map-details {
  padding: 3rem 4rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logistics-label {
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.map-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.map-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 400px;
}

.map-distances {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dist-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.dist-icon-box {
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--gold);
  transition: background var(--transition);
  flex-shrink: 0;
}

.dist-icon-box svg {
  width: 18px;
  height: 18px;
}

.dist-item:hover .dist-icon-box {
  background: rgba(201, 168, 76, 0.15);
}

.dist-text h5 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

.dist-text p {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: 7rem 3rem;
  background: var(--cream-dark);
}

.reviews-section .section-header {
  margin-bottom: 3.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.2rem;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold-pale);
  line-height: 1;
  z-index: 0;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}

.review-card--featured {
  background: var(--brown-deep);
  transform: scale(1.03);
}

.review-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.review-card--featured::before {
  color: rgba(201, 168, 76, 0.2);
}

.review-stars {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.review-card--featured .review-stars {
  color: var(--gold-light);
}

.review-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--brown-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-card--featured .review-text {
  color: rgba(255, 255, 255, 0.85);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-card--featured .review-avatar {
  background: var(--gold);
  color: var(--brown-deep);
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown-deep);
}

.review-card--featured .review-name {
  color: var(--white);
}

.review-role {
  font-size: 0.78rem;
  color: var(--gray-text);
}

.review-card--featured .review-role {
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  padding: 7rem 3rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.booking-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1.2;
  margin: 0.5rem 0 1.2rem;
}

.booking-title em {
  font-style: italic;
  color: var(--brown-light);
}

.booking-sub {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.booking-perks span {
  font-size: 0.88rem;
  color: var(--brown-mid);
  font-weight: 500;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-heavy);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

.form-group input,
.form-group select {
  padding: 0.6rem 0;
  border: none;
  border-bottom: 1.5px solid rgba(74, 56, 44, 0.2);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown-deep);
  background: transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group select::placeholder {
  color: rgba(74, 56, 44, 0.4);
  font-weight: 400;
}

.form-group select {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%234a382c" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
}

.form-group input:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
  box-shadow: 0 4px 0 -2px rgba(201, 168, 76, 0.3);
}

.btn-whatsapp-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-deep);
  border: none;
  padding: 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.08em;
  margin-top: 1.5rem;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
}

.btn-whatsapp-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.4);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-text);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 7rem 3rem;
  background: var(--cream);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-deep);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question.active {
  background: var(--brown-deep);
  color: var(--gold-light);
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.8;
  padding: 0 1.8rem;
}

.faq-answer.open {
  max-height: 200px;
  padding: 1rem 1.8rem 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brown-deep);
  padding: 5rem 3rem 0;
}

.footer {
  background: #0d0d0d; /* Even deeper black */
  padding: 8rem 3rem 4rem; /* More generous padding */
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

/* Glowing gold thread at the top */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 15px var(--gold);
}

.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -100px;
  background: 
    radial-gradient(circle at 20% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
  pointer-events: none;
  filter: blur(60px);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 4rem; /* Increased gap */
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px; /* Squircle/Modern shape */
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(201, 168, 76, 0.2);
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 0.2rem;
}

.footer-link-icon {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.4;
  transition: all 0.4s ease;
  display: inline-block;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li:hover,
.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-links li:hover .footer-link-icon,
.footer-links a:hover .footer-link-icon {
  opacity: 1;
  transform: rotate(90deg) scale(1.3);
  text-shadow: 0 0 8px var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.fc-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--gold);
  filter: drop-shadow(0 0 5px rgba(201, 168, 76, 0.3));
}

.footer-contact span,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: var(--gold);
  color: var(--brown-deep);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.floating-whatsapp:hover {
  background: var(--gold-light);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
  color: var(--brown-deep);
}

.floating-wa-tooltip {
  position: absolute;
  right: calc(100% + 0.8rem);
  background: var(--brown-deep);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.floating-whatsapp:hover .floating-wa-tooltip {
  opacity: 1;
}

/* ============================================================
   MODAL (POPUP)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 18, 8, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(30px);
  transition: all var(--transition);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray-text);
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: var(--brown-deep);
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */
.mobile-nav-float {
  display: none;
  /* Enabled via media query */
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 950;
  width: 92%;
  max-width: 400px;
  background: rgba(30, 18, 8, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 0.5rem 0.8rem;
}

.mnf-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mnf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition), transform var(--transition);
  text-decoration: none;
  position: relative;
  flex: 1;
}

.mnf-item:hover,
.mnf-item.active {
  color: var(--gold-light);
}

.mnf-item.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold-light);
}

.mnf-icon {
  width: 22px;
  height: 22px;
}

.mnf-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: var(--sans);
}

.mnf-center-action {
  flex: 1.2;
  display: flex;
  justify-content: center;
  position: relative;
  top: -16px;
}

.mnf-book-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-deep);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mnf-book-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

.mnf-book-icon {
  width: 20px;
  height: 20px;
}

.mnf-book-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brown-deep);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
  .split-luxury-text {
    padding: 4rem 3rem;
  }

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

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

  .split-luxury-img {
    height: 380px;
  }

  .highlights-section {
    grid-template-columns: 1fr;
  }

  .highlights-left {
    padding-right: 0;
    padding-bottom: 3rem;
  }

  .dining-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .review-card--featured {
    transform: none;
  }

  .review-card--featured:hover {
    transform: translateY(-6px);
  }

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

  .map-content-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-embed-wrap iframe {
    height: 400px;
  }

  .map-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .top-info-bar {
    display: none;
  }

  #main-header {
    top: 0;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-book-btn {
    display: inline-flex;
  }

  .mobile-nav-float {
    display: block;
  }

  .floating-whatsapp {
    display: none !important;
  }

  .nav-container {
    justify-content: space-between;
    position: relative;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-text-left,
  .logo-text-right {
    display: flex;
    gap: 2px;
  }

  .lt-top {
    font-size: 0.8rem;
    color: var(--brown-deep);
    /* Force color on mobile for visibility */
  }

  .lt-bottom {
    font-size: 0.5rem;
  }

  #header-logo {
    height: 40px;
  }

  #main-header.scrolled #header-logo {
    height: 36px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 4rem);
  }

  .rooms-section {
    padding: 5rem 1.5rem;
  }

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

  .split-luxury-text {
    padding: 3rem 1.5rem;
  }

  .split-stats {
    gap: 1.5rem;
  }

  .highlights-section {
    padding: 5rem 1.5rem;
  }

  /* Add responsive rules for highlight grid here so they trigger on tablets too */
  .hig-item--large {
    grid-row: auto;
  }

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

  .hig-item--large img {
    min-height: 160px;
  }

  .gallery-section {
    padding: 5rem 1.5rem;
  }

  .dining-section {
    padding: 5rem 1.5rem;
  }

  .dining-badge {
    width: 90px;
    height: 90px;
    top: -1rem;
    right: -0.5rem;
  }

  .location-branding {
    padding: 5rem 1.5rem;
  }

  .location-center-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .loc-col-center {
    order: -1;
  }

  .location-img-wrap img {
    min-height: 350px;
  }

  .reviews-section {
    padding: 5rem 1.5rem;
  }

  .map-section {
    padding: 5rem 1.5rem;
  }

  .map-nav {
    gap: 1.5rem;
  }

  .booking-section {
    padding: 5rem 1.5rem;
  }

  .booking-card {
    padding: 2rem 1.5rem;
  }

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

  .faq-section {
    padding: 5rem 1.5rem;
  }

  .map-float-info {
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.8rem;
    min-width: 160px;
  }

  .mf-logo {
    width: 35px;
  }

  .mf-text h4 {
    font-size: 0.95rem;
  }

  .mf-btn {
    padding: 0.5rem;
    font-size: 0.7rem;
  }

  .footer {
    padding: 4rem 1.5rem 8rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .btn-primary,
  .btn-whatsapp {
    justify-content: center;
  }

  .gallery-slide {
    width: 220px;
  }

  .polaroid {
    padding: 8px 8px 35px 8px;
  }

  .polaroid img {
    height: 150px;
  }

  .polaroid-caption {
    font-size: 1.1rem;
    bottom: 8px;
  }

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

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

/* ============================================================
   ANIMATIONS & INTERSECTION OBSERVER EFFECTS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}