/* ==========================================================================
   ANANTA STAY — Cinematic Motion & Scroll Experience
   Awwwards-grade motion choreography, editorial scrolling, 25-point system
   ========================================================================== */

:root {
  --navy: #06284A;
  --deep-navy: #031B33;
  --gold: #D89B19;
  --light-gold: #F2D27A;
  --accent-red: #D32F2F;
  --white: #FFFFFF;
  --light-bg: #F8F8F6;
  --dark-text: #172033;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-brand: 'Playfair Display', serif;
  --ease-cine: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
ul { list-style: none; }


/* ==========================================================================
   SCROLL PROGRESS BAR (#19)
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), #FFD700, var(--gold));
  z-index: 10000;
  box-shadow: 0 0 12px rgba(216,155,25,0.6);
  pointer-events: none;
}


/* ==========================================================================
   3D ARCHITECTURAL DOUBLE DOOR NAVIGATION TRANSITION
   ========================================================================== */
.door-transition-portal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  perspective: 1200px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  overflow: hidden;
}

.door-transition-portal.active {
  visibility: visible;
  pointer-events: auto;
}

.door-panel {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 50vw;
  background-color: var(--deep-navy);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, box-shadow;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.45);
}

.door-left {
  left: 0;
  transform-origin: left center;
  transform: rotateY(0deg);
}

.door-right {
  right: 0;
  transform-origin: right center;
  transform: rotateY(0deg);
}

.door-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(6, 40, 74, 0.96) 0%, rgba(3, 27, 51, 1) 100%);
}

.door-seam-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, rgba(216, 155, 25, 0.4), var(--gold), rgba(216, 155, 25, 0.4), transparent);
  box-shadow: 0 0 10px rgba(216, 155, 25, 0.5);
}

.door-left .door-seam-edge {
  right: 0;
}

.door-right .door-seam-edge {
  left: 0;
}

.door-shadow {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Door Opening Animation States — Slower, Grand & Ultra-Smooth */
.door-transition-portal.opening .door-left {
  animation: doorOpenLeft 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.door-transition-portal.opening .door-right {
  animation: doorOpenRight 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.door-transition-portal.opening .door-shadow {
  opacity: 0.65;
  transition: opacity 0.8s ease;
}

@keyframes doorOpenLeft {
  0% {
    transform: rotateY(0deg);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
  }
  30% {
    transform: rotateY(-30deg);
  }
  70% {
    transform: rotateY(-72deg);
  }
  100% {
    transform: rotateY(-96deg);
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.9);
  }
}

@keyframes doorOpenRight {
  0% {
    transform: rotateY(0deg);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
  }
  30% {
    transform: rotateY(30deg);
  }
  70% {
    transform: rotateY(72deg);
  }
  100% {
    transform: rotateY(96deg);
    box-shadow: 30px 0 70px rgba(0, 0, 0, 0.9);
  }
}

/* Destination entrance animation when revealed behind door */
.destination-entering {
  animation: destEnter 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both !important;
}

@keyframes destEnter {
  0% {
    opacity: 0.1;
    transform: scale(0.97) translateY(30px);
  }
  60% {
    opacity: 0.85;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Subtly scale current page right before door open */
.page-exit-anticipate {
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: scale(0.988);
  opacity: 0.96;
}

/* Left-to-Right Hero Section Transition (No Doors) */
.hero-slide-lr {
  animation: heroSlideLeftToRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroSlideLeftToRight {
  0% {
    opacity: 0.2;
    transform: translateX(-45px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ==========================================================================
   NAVBAR (#01 settling)
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  height: 68px;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s, height 0.3s;
  animation: navSlideDown 0.8s var(--ease-cine) 0.2s both;
}
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  height: 64px;
}
.navbar-inner {
  display: flex; justify-content: space-between;
  align-items: center; width: 100%;
}
.navbar-brand {
  display: flex; align-items: center;
  z-index: 1001;
}
.brand-logo-img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
  background: var(--white); padding: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease-cine);
}
.brand-logo-img:hover { transform: scale(1.08) rotate(3deg); }
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  color: var(--dark-text); font-weight: 600; font-size: 0.9rem;
  position: relative; transition: color 0.3s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s var(--ease-cine);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--navy); font-size: 0.88rem; font-weight: 700;
  transition: color 0.3s; white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }
.phone-icon { font-size: 1rem; }
.nav-cta {
  background: var(--gold); color: var(--deep-navy);
  padding: 10px 24px; border-radius: 6px;
  font-weight: 700; font-size: 0.85rem;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #C08A15; transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(216,155,25,0.35);
}
.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px; cursor: pointer; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); transition: transform 0.3s, opacity 0.3s;
  transform-origin: left center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); }


/* ==========================================================================
   HERO — CINEMATIC CAMERA (#01, #02, #03)
   ========================================================================== */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  transform-origin: center; will-change: transform;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoomSettle 2s var(--ease-cine) both;
  will-change: transform;
}
@keyframes heroZoomSettle {
  0% { transform: scale(1.18); filter: brightness(0.8) saturate(0.8); }
  100% { transform: scale(1); filter: brightness(1) saturate(1); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg,
    rgba(3,27,51,0.52) 0%, rgba(3,27,51,0.3) 40%, rgba(3,27,51,0.72) 100%);
  will-change: opacity;
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  color: var(--white); max-width: 780px; padding: 0 24px;
  will-change: transform, opacity;
}

/* Mask line reveal */
.mask-line { display: inline-block; overflow: hidden; vertical-align: bottom; }
.mask-line .mask-inner {
  display: inline-block; will-change: transform;
}

/* Staggered load choreography */
.load-anim-1 { animation: fadeUpIn 0.9s var(--ease-cine) 0.3s both; }
.load-anim-2 .mask-inner { animation: maskUp 1.1s var(--ease-cine) 0.5s both; }
.load-anim-3 { animation: fadeUpIn 0.9s var(--ease-cine) 0.7s both; }
.load-anim-4 { animation: fadeUpIn 0.9s var(--ease-cine) 0.9s both; }
.load-anim-5 { animation: fadeUpIn 0.9s var(--ease-cine) 1.1s both; }

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes maskUp {
  from { transform: translateY(115%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 4px;
  font-size: 0.78rem; color: var(--gold);
  font-weight: 700; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.9); line-height: 1.7;
  max-width: 600px; margin: 0 auto 36px;
}
.hero-cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* Magnetic buttons */
.magnetic-btn {
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-cine), box-shadow 0.35s;
  will-change: transform;
}
.magnetic-btn .btn-arrow {
  display: inline-block; margin-left: 6px;
  transition: transform 0.35s var(--ease-cine);
}
.magnetic-btn:hover .btn-arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--gold); color: var(--deep-navy);
  padding: 15px 36px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(216,155,25,0.35);
  display: inline-flex; align-items: center;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: #C08A15; transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(216,155,25,0.45);
}
.btn-secondary-light {
  border: 2px solid rgba(255,255,255,0.7); color: var(--white);
  background: rgba(255,255,255,0.05); padding: 15px 36px;
  border-radius: 8px; font-weight: 700; font-size: 0.95rem;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: inline-flex; align-items: center;
}
.btn-secondary-light:hover {
  background: var(--white); color: var(--navy); border-color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.hero-badges {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 22px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s, background 0.3s;
}
.hero-badge:hover { transform: translateY(-2px); background: rgba(255,255,255,0.2); }
.badge-icon { font-size: 1rem; }
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
}
.hero-scroll-indicator span {
  display: block; width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 12px; position: relative;
}
.hero-scroll-indicator span::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 8px;
  background: var(--gold); border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}


/* ==========================================================================
   DECORATIVE SECTION DIVIDERS (#16)
   ========================================================================== */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 20px 0; pointer-events: none;
}
.divider-line {
  width: 40px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 1s var(--ease-cine);
}
.divider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); opacity: 0;
  transition: opacity 0.6s 0.3s, transform 0.6s 0.3s var(--ease-spring);
  transform: scale(0);
}
.section-divider.visible .divider-line { transform: scaleX(1); }
.section-divider.visible .divider-dot { opacity: 1; transform: scale(1); }


/* ==========================================================================
   HIGHLIGHTS (#14 counters)
   ========================================================================== */
.highlights {
  background: var(--white); padding: 70px 0;
  border-bottom: 1px solid #eee; position: relative; z-index: 10;
}
.highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.highlight-item {
  padding: 32px 18px; border-radius: 16px;
  background: var(--light-bg); border: 1px solid transparent;
  transition: transform 0.5s var(--ease-cine), box-shadow 0.5s, border-color 0.4s;
  will-change: transform;
}
.highlight-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 36px rgba(6,40,74,0.08);
  border-color: rgba(216,155,25,0.3); background: var(--white);
}
.highlight-icon {
  font-size: 2rem; margin-bottom: 12px;
  transition: transform 0.35s var(--ease-spring);
}
.highlight-item:hover .highlight-icon { transform: scale(1.25) rotate(6deg); }
.highlight-number { color: var(--navy); font-size: 1.4rem; font-weight: 800; display: block; }
.highlight-label { color: #666; font-size: 0.85rem; margin-top: 4px; display: block; font-weight: 500; }


/* ==========================================================================
   SETTLE EFFORTLESSLY (#08 card entrances, #09 hover micro)
   ========================================================================== */
.settle-section { padding: 110px 0; background: var(--light-bg); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  color: var(--gold); font-size: 1rem; font-weight: 700;
  margin-bottom: 12px; letter-spacing: 0.5px;
}
.section-eyebrow {
  text-transform: uppercase; color: var(--gold);
  letter-spacing: 3px; font-size: 0.78rem; font-weight: 700;
}
.section-title {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800; margin-top: 8px; line-height: 1.2;
}
.section-subtitle {
  color: #666; max-width: 580px; margin: 16px auto 0;
  line-height: 1.7; font-size: 0.96rem;
}
.settle-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.settle-card {
  background: var(--white); padding: 38px 28px; border-radius: 16px;
  text-align: center;
  transition: transform 0.45s var(--ease-cine), box-shadow 0.45s;
  border: 1px solid rgba(0,0,0,0.04); position: relative; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.03); will-change: transform;
}
.settle-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--gold), var(--light-gold));
  transform: scaleX(0); transition: transform 0.4s var(--ease-cine);
}
.settle-card:hover::before { transform: scaleX(1); }
.settle-card:hover {
  box-shadow: 0 18px 44px rgba(6,40,74,0.09);
  transform: translateY(-8px) scale(1.02);
}
.settle-icon {
  font-size: 2.3rem; margin-bottom: 18px;
  transition: transform 0.35s var(--ease-spring);
}
.settle-card:hover .settle-icon { transform: scale(1.2) translateY(-3px); }
.settle-card h4 { color: var(--navy); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.settle-card p { color: #666; font-size: 0.88rem; line-height: 1.6; }


/* ==========================================================================
   ROOM OPTIONS (#08 cards from different directions)
   ========================================================================== */
.room-options-section { padding: 110px 0; background: var(--white); }
.room-options-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: 880px; margin: 0 auto; gap: 32px;
}
.room-option-card {
  background: var(--light-bg); border-radius: 18px;
  padding: 40px 32px; display: flex; flex-direction: column;
  position: relative; border: 2px solid transparent;
  transition: transform 0.45s var(--ease-cine), box-shadow 0.45s, border-color 0.4s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03); will-change: transform;
}
.room-option-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(6,40,74,0.1);
  border-color: rgba(216,155,25,0.3);
}
.room-option-card.option-featured {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 12px 36px rgba(216,155,25,0.16);
}
.option-badge {
  position: absolute; top: -14px; right: 28px;
  background: var(--navy); color: var(--white);
  padding: 5px 16px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px;
}
.featured-badge {
  background: var(--gold); color: var(--deep-navy);
  box-shadow: 0 4px 12px rgba(216,155,25,0.4);
}
.option-header h3 { color: var(--navy); font-size: 1.45rem; font-weight: 800; margin-bottom: 6px; }
.option-desc { color: #666; font-size: 0.9rem; margin-bottom: 24px; }
.option-features { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; flex-grow: 1; }
.option-features li { font-size: 0.9rem; color: #333; display: flex; align-items: center; gap: 8px; }
.btn-option-enquire {
  display: block; text-align: center; background: var(--navy);
  color: var(--white); padding: 14px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  transition: all 0.3s var(--ease-cine);
}
.btn-option-enquire:hover {
  background: var(--deep-navy); transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6,40,74,0.25);
}
.btn-gold { background: var(--gold); color: var(--deep-navy); }
.btn-gold:hover { background: #C08A15; box-shadow: 0 6px 18px rgba(216,155,25,0.4); }


/* ==========================================================================
   AMENITIES SECTION (#08 cards & hover micro-interactions)
   ========================================================================== */
.amenities { padding: 110px 0; background: var(--white); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.amenity-card {
  text-align: center; padding: 36px 20px; border-radius: 16px;
  border: 1px solid #ECEFF2; background: var(--white);
  transition: transform 0.4s var(--ease-cine), box-shadow 0.4s, border-color 0.3s;
  position: relative; overflow: hidden; will-change: transform;
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}
.amenity-card:hover {
  border-color: rgba(216, 155, 25, 0.4);
  box-shadow: 0 14px 36px rgba(6, 40, 74, 0.08);
  transform: translateY(-6px) scale(1.02);
}
.amenity-icon {
  width: 58px; height: 58px; margin: 0 auto 18px;
  background-color: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  transition: transform 0.35s var(--ease-spring), background-color 0.3s;
}
.amenity-card:hover .amenity-icon {
  transform: scale(1.14);
  background-color: var(--deep-navy);
}
.amenity-card h4 {
  color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 6px;
}
.amenity-card p {
  color: #666; font-size: 0.84rem; line-height: 1.5;
}


/* ==========================================================================
   GALLERY — Editorial Parallax Rhythm (#10)
   ========================================================================== */
.rooms { padding: 110px 0; background: var(--white); }
.gallery-filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin-bottom: 36px;
}
.filter-btn {
  background: var(--light-bg); color: var(--navy);
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease-cine); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6,40,74,0.2);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px; gap: 20px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 16px;
  cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease-cine), box-shadow 0.5s;
  will-change: transform;
}
.gallery-item.gallery-featured { grid-column: span 2; grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-cine); will-change: transform;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover {
  box-shadow: 0 16px 40px rgba(6,40,74,0.12);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,27,51,0.9) 0%, rgba(3,27,51,0.3) 60%, transparent 100%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-category {
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
}
.gallery-title { color: var(--white); font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.gallery-btn {
  align-self: flex-start; color: var(--white);
  font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 6px 16px; border-radius: 50px; letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.gallery-item:hover .gallery-btn {
  background: var(--gold); border-color: var(--gold); color: var(--deep-navy);
}


/* ==========================================================================
   LIGHTBOX (#10 gallery continued)
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(3,27,51,0.96); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-content {
  position: relative; display: flex; flex-direction: column;
  align-items: center; max-width: 90vw; max-height: 90vh;
}
.lightbox img {
  max-width: 90vw; max-height: 78vh; object-fit: contain;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: scale(0.92); transition: transform 0.4s var(--ease-cine);
}
.lightbox.active img { transform: scale(1); }
.lightbox-caption {
  margin-top: 16px; color: var(--white);
  background: rgba(3,27,51,0.85); padding: 10px 24px;
  border-radius: 30px; font-size: 0.95rem; font-weight: 600;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
  text-align: center; max-width: 90%;
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--white); font-size: 2.4rem; padding: 8px;
  transition: color 0.3s, transform 0.3s;
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 16px 20px; font-size: 1.6rem;
  border-radius: 50%; backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }


/* ==========================================================================
   LIFE SECTION — Scroll Image Expansion (#13 WOW moment)
   ========================================================================== */
.life-section {
  position: relative; width: 100%; padding: 60px 0;
  background: var(--white); overflow: visible;
}
.expand-frame {
  position: relative; width: 88%; max-width: 1100px;
  margin: 0 auto; border-radius: 28px; overflow: hidden;
  min-height: 480px; display: flex; align-items: center;
  box-shadow: 0 20px 60px rgba(3,27,51,0.15);
  transition: width 0.6s var(--ease-cine), max-width 0.6s var(--ease-cine),
              border-radius 0.6s var(--ease-cine), box-shadow 0.6s;
  will-change: width, border-radius;
}
.expand-frame.expanded {
  width: 100%; max-width: 100vw; border-radius: 0;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.life-bg { position: absolute; inset: 0; z-index: 1; }
.life-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.life-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(3,27,51,0.88) 0%, rgba(6,40,74,0.78) 100%);
}
.life-content { position: relative; z-index: 3; padding: 100px 0; width: 100%; }
.life-title {
  font-family: var(--font-brand); color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.2; margin-top: 12px; margin-bottom: 20px;
}
.life-subtitle {
  color: rgba(255,255,255,0.85); font-size: 1.05rem;
  line-height: 1.8; max-width: 620px;
}


/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location { padding: 100px 0; background: var(--white); }
.location-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
}
.location-content .section-title,
.location-content .section-eyebrow,
.location-content .section-subtitle {
  text-align: left;
}
.location-content .section-subtitle {
  margin: 12px 0 0 0; max-width: none; color: #666; font-size: 0.95rem; line-height: 1.6;
}
.location-details { margin-top: 28px; }
.location-detail-item {
  display: flex; gap: 16px; align-items: center; margin-bottom: 14px;
  padding: 18px 22px; background: #FFFFFF; border-radius: 14px;
  border: 1px solid #ECEFF2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s var(--ease-cine), box-shadow 0.35s, border-color 0.3s;
}
.location-detail-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(6, 40, 74, 0.06);
  border-color: rgba(216, 155, 25, 0.3);
}
.location-detail-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.location-detail-item p { color: #666; font-size: 0.86rem; line-height: 1.4; margin-top: 2px; }
.location-detail-item strong { color: var(--navy); font-weight: 700; font-size: 0.96rem; display: block; }
.btn-directions {
  margin-top: 24px; padding: 14px 32px; border-radius: 8px;
  background-color: var(--gold); color: var(--deep-navy); font-weight: 700;
  font-size: 0.95rem; display: inline-block; text-align: center;
}
.location-map {
  border-radius: 20px; overflow: hidden; height: 350px;
  background-color: #f1f5f9; border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.location-map iframe {
  width: 100%; height: 100%; min-height: 350px; border: none; display: block;
}


/* ==========================================================================
   FAQ (#12 sticky-like accordion experience)
   ========================================================================== */
.faq-section { padding: 110px 0; background: var(--light-bg); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item {
  border: 1px solid #E5E7EB; border-radius: 14px;
  overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(216,155,25,0.1);
}
.faq-question {
  width: 100%; padding: 22px 28px; text-align: left;
  font-size: 1.02rem; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); cursor: pointer; transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem; color: var(--gold); font-weight: 400;
  transition: transform 0.3s var(--ease-spring);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-cine), padding 0.4s;
  background: var(--light-bg); padding: 0 28px;
}
.faq-item.active .faq-answer { max-height: 240px; padding: 18px 28px 24px; }
.faq-answer p { color: #555; font-size: 0.95rem; line-height: 1.7; }


/* ==========================================================================
   CONTACT CTA — Grand Finale (#17)
   ========================================================================== */
.contact-cta {
  padding: 120px 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
}
.contact-cta::before {
  content: ''; position: absolute;
  top: -40%; right: -10%; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,155,25,0.15) 0%, transparent 70%);
  pointer-events: none; animation: pulseGlow 6s ease-in-out infinite;
}
.contact-cta::after {
  content: ''; position: absolute;
  bottom: -30%; left: -5%; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,155,25,0.1) 0%, transparent 70%);
  pointer-events: none; animation: pulseGlow 6s ease-in-out infinite 3s;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}
.contact-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800; margin-bottom: 12px; position: relative;
}
.contact-tagline {
  color: var(--light-gold); font-size: 1.1rem;
  margin-bottom: 40px; font-weight: 500;
}
.cta-buttons {
  display: flex; gap: 18px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 24px;
}
.btn-call {
  background: var(--gold); color: var(--deep-navy);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s var(--ease-cine);
  box-shadow: 0 6px 20px rgba(216,155,25,0.35);
}
.btn-call:hover {
  background: #C08A15; transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(216,155,25,0.45);
}
.btn-whatsapp {
  background: #25D366; color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s var(--ease-cine);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1EBE5D; transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}
.contact-dm { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 8px; }


/* ==========================================================================
   FOOTER — Curtain Reveal (#18)
   ========================================================================== */
.footer {
  background: var(--deep-navy); color: var(--white);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.footer-logo-img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
  background: var(--white); padding: 1px;
}
.footer-brand-text { display: flex; flex-direction: column; }
.footer-brand .brand-name {
  font-family: var(--font-brand); color: var(--white);
  font-size: 1.4rem; font-weight: 700; letter-spacing: 1.5px;
}
.footer-brand .brand-subtitle {
  color: var(--gold); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 3px; font-weight: 600;
}
.footer-about-text { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer-heading {
  color: var(--white); font-size: 1rem; font-weight: 700;
  margin-bottom: 20px; position: relative; padding-bottom: 10px;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--gold);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  transition: color 0.3s, transform 0.2s; display: inline-block;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact-info {
  display: flex; flex-direction: column; gap: 14px;
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
}
.footer-contact-info a { color: var(--light-gold); transition: color 0.3s; }
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; text-align: center;
}
.footer-bottom p:first-child { color: var(--gold); font-size: 0.95rem; margin-bottom: 6px; }
.footer-copyright { margin-top: 4px; font-size: 0.78rem !important; color: rgba(255,255,255,0.35) !important; }


/* ==========================================================================
   MOBILE STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  height: 60px; background: var(--deep-navy); z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--white);
}
.sticky-call { background: var(--navy); border-right: 1px solid rgba(255,255,255,0.1); }
.sticky-wa { background: #25D366; color: var(--white); }


/* ==========================================================================
   REVEAL SYSTEM — Multiple personalities (#04)
   ========================================================================== */

/* Base Reveal: default simple up */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease-cine), transform 0.8s var(--ease-cine), clip-path 0.8s var(--ease-cine);
  will-change: transform, opacity;
}

/* Variant initial states */
.reveal[data-reveal="scale"] {
  transform: scale(0.92) translateY(20px);
}

.reveal[data-reveal="clip-up"] {
  transform: translateY(40px);
  clip-path: inset(15% 0 0 0);
}

.reveal[data-reveal="slide-left"] {
  transform: translateX(-50px);
}

.reveal[data-reveal="slide-right"] {
  transform: translateX(50px);
}

.reveal[data-reveal="slide-up"] {
  transform: translateY(40px);
}

/* VISIBLE ACTIVE STATE (Always beats initial state) */
.reveal.visible,
.reveal[data-reveal="scale"].visible,
.reveal[data-reveal="clip-up"].visible,
.reveal[data-reveal="slide-left"].visible,
.reveal[data-reveal="slide-right"].visible,
.reveal[data-reveal="slide-up"].visible {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
  clip-path: inset(0 0 0 0) !important;
}

/* Story mask for gallery images (#05) */
.story-mask-wrap { overflow: hidden; position: relative; }
.story-img {
  transition: transform 1.2s var(--ease-cine), opacity 1s var(--ease-cine);
  will-change: transform;
}
.story-mask-wrap:not(.revealed) .story-img { transform: scale(1.12); opacity: 0.7; }
.story-mask-wrap.revealed .story-img { transform: scale(1); opacity: 1; }

.story-section { position: relative; }

/* Kinetic text that moves with scroll (#07) */
.kinetic-left, .kinetic-right {
  display: inline-block; will-change: transform;
  transition: transform 0.05s linear;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .settle-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.gallery-featured { grid-column: span 2; grid-row: span 1; }
  .nav-phone .phone-text { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: var(--deep-navy); flex-direction: column;
    justify-content: center; align-items: center; gap: 24px;
    transform: translateX(100%); transition: transform 0.35s; z-index: 1000;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { color: rgba(255,255,255,0.85) !important; font-size: 1.05rem; }
  .nav-links a:hover { color: var(--gold) !important; }
  .nav-right { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .settle-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .room-options-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; gap: 16px; }
  .gallery-item.gallery-featured, .gallery-item.gallery-wide {
    grid-column: span 1 !important; grid-row: span 1 !important;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .footer-links { align-items: center; }
  .footer-about-text { max-width: 400px; margin: 0 auto; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .hero { min-height: 100vh; }
  .hero-content { padding: 0 16px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary-light { width: 100%; max-width: 280px; }
  .hero-badges { flex-direction: column; align-items: center; }
  .hero-badge { width: 100%; max-width: 220px; justify-content: center; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .highlight-item { padding: 20px 12px; }
  .settle-grid { grid-template-columns: 1fr; }
  .settle-card { padding: 28px 20px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card { padding: 24px 16px; }
  .gallery-grid { grid-auto-rows: 210px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-call, .btn-whatsapp { width: 100%; max-width: 300px; justify-content: center; }
  .life-content { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .rooms, .settle-section, .room-options-section, .amenities, .location, .faq-section, .contact-cta { padding: 70px 0; }
}


/* ==========================================================================
   REDUCED MOTION (#25)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .story-mask-wrap .story-img, .hero-bg-img, .expand-frame,
  .kinetic-left, .kinetic-right {
    opacity: 1 !important; transform: none !important;
    clip-path: none !important; transition: none !important;
  }
  .hscroll-section { height: auto; }
  .hscroll-sticky { position: relative; }
}
