/* =========================================================================
   NEW DESIGN SYSTEM & VARIABLES (STORYTELLING FOCUS)
   ========================================================================= */

:root {
  /* Vibrant Colors representing the Ganesha circles */
  /* Colors extracted from Logo Circles */
  --color-pink: #DA59B1;
  --color-purple: #6259E8;
  --color-blue: #40A4ED;
  --color-green: #89C74E;
  --color-yellow: #FFD231;
  --color-orange: #FF8F3D;
  --color-red: #E6353E;
  --primary-color: var(--color-red); 
  
  --bg-color: #FAFAFA;
  --bg-dark: #111111;
  --surface-color: #FFFFFF;
  --surface-alt: #F2EFE9;
  
  --text-main: #222222;
  --text-light: #444444;
  --text-inverted: #FFFFFF;

  /* Massive Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout Variables */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: clamp(4rem, 8vw, 10rem); 
  --safe-inline: clamp(16px, 4vw, 48px);

  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;

  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.3s ease;
}

/* =========================================================================
   RESET & LAYOUT BASE 
   ========================================================================= */

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

html {
  font-size: 16px;
  /* Remove scroll-behavior: smooth when using GSAP ScrollSmoother / ScrollTrigger 
     as it can conflict, but we'll leave it for anchor links if needed outside GSAP */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  /* Smooth hardware-accelerated scrolling */
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1; overflow-wrap: normal; word-break: normal; hyphens: none; }
p { font-size: 1.25rem; color: var(--text-light); margin-bottom: var(--spacing-md); line-height: 1.8; overflow-wrap: break-word; }
a { overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--safe-inline); }
.text-center { text-align: center; }

/* Utilities */
.bg-dark { background-color: var(--bg-dark); color: var(--text-inverted); }
.bg-dark p { color: #BBB; }
.bg-light { background-color: var(--bg-color); color: var(--text-main); }
.bg-pink { background-color: var(--color-pink); color: var(--text-inverted); }
.bg-pink p { color: rgba(255,255,255,0.9); }
.bg-purple { background-color: var(--color-purple); color: var(--text-inverted); }
.bg-purple p { color: rgba(255,255,255,0.9); }
.bg-blue { background-color: var(--color-blue); color: var(--text-inverted); }
.bg-blue p { color: rgba(255,255,255,0.9); }
.bg-green { background-color: var(--color-green); color: var(--text-main); }
.bg-green p, .bg-green .hub-label { color: rgba(0,0,0,0.8); }
.bg-br-green { background-color: #009c3b; color: var(--text-inverted); }
.bg-br-green p, .bg-br-green .hub-label { color: rgba(255,255,255,0.9); }
.bg-yellow { background-color: var(--color-yellow); color: var(--text-main); }
.bg-yellow p, .bg-yellow .hub-label { color: rgba(0,0,0,0.8); }
.bg-orange { background-color: var(--color-orange); color: var(--text-inverted); }
.bg-orange p { color: rgba(255,255,255,0.9); }
.bg-red { background-color: var(--color-red); color: var(--text-inverted); }
.bg-red p { color: rgba(255,255,255,0.9); }
.text-inverted { color: var(--text-inverted); }
.mt-sm { margin-top: var(--spacing-sm); }


/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.2rem 3rem; border-radius: 100px; font-family: var(--font-heading);
  font-weight: 600; font-size: 1.1rem; cursor: pointer; border: none;
  transition: var(--transition-smooth); text-transform: uppercase; letter-spacing: 1px;
  position: relative; overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 0;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn span { position: relative; z-index: 1; }

.btn-primary { background-color: var(--primary-color); color: var(--text-inverted); }
.btn-primary:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 30px rgba(230, 53, 62, 0.3); }

.btn-massive { 
  font-size: clamp(1rem, 2vw, 1.5rem); 
  padding: clamp(1.2rem, 3vw, 1.8rem) clamp(2.5rem, 5vw, 4.5rem); 
}

/* MEGA BOOSTED BUTTONS - Hyper-Intense & High Contrast */
.btn-ultra-boost {
  font-weight: 900; /* Extra heavy */
  position: relative;
  overflow: hidden;
  background-size: 200% auto;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: ultraPulse 1.2s infinite ease-in-out;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.4) !important;
  filter: saturate(1.2);
}

/* Hyper-Saturated Gradients */
.btn-ultra-boost.bg-red { background-image: linear-gradient(45deg, #ff0000 0%, #ff5e62 50%, #ff0000 100%); }
.btn-ultra-boost.bg-green { background-image: linear-gradient(45deg, #44ff00 0%, #b4ec51 50%, #44ff00 100%); }
.btn-ultra-boost.bg-br-green { background-image: linear-gradient(45deg, #007026 0%, #009c3b 50%, #007026 100%); }
.btn-ultra-boost.bg-blue { background-image: linear-gradient(45deg, #008cff 0%, #7db9e8 50%, #008cff 100%); }
.btn-ultra-boost.bg-orange { background-image: linear-gradient(45deg, #ff8c00 0%, #ffb347 50%, #ff8c00 100%); }
.btn-ultra-boost.bg-pink { background-image: linear-gradient(45deg, #ff00aa 0%, #ff9a9e 50%, #ff00aa 100%); }
.btn-ultra-boost.bg-yellow { background-image: linear-gradient(45deg, #ffea00 0%, #fff3b0 50%, #ffea00 100%); color: var(--bg-dark) !important; }

/* Enhanced White buttons with neon border pulse */
[style*="background-color: white"].btn-ultra-boost,
[style*="background-color: #fff"].btn-ultra-boost {
  background-image: linear-gradient(45deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%) !important;
  border-width: 4px !important;
  box-shadow: 0 0 20px rgba(255,255,255,0.4) !important;
}

@keyframes ultraPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.btn-ultra-boost::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: 0.5s;
  pointer-events: none;
}

.btn-ultra-boost:hover {
  transform: translateY(-8px) scale(1.15) !important;
  letter-spacing: 3px;
  filter: brightness(1.3) saturate(1.8);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px currentColor !important;
}

.btn-ultra-boost:hover::after {
  transform: rotate(45deg) translateY(100%);
  transition: 0.4s;
}

/* Intense Neon Glow for dark sections */
.bg-dark .btn-ultra-boost,
.hub-panel .btn-ultra-boost {
  animation: ultraPulse 1.5s infinite ease-in-out;
  box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 50px rgba(255,255,255,0.1);
}

/* Header */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: var(--spacing-md) 0;
  color: white;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}

header.header-scrolled {
  mix-blend-mode: normal;
  background-color: var(--bg-dark);
  padding: var(--spacing-sm) 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; gap: 10px; z-index: 1001; position: relative;}
.logo-img { height: 50px; width: 50px; object-fit: cover; border-radius: 50%; transition: filter 0.3s ease; } /* Force white in difference blend */
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; letter-spacing: 2px; }

.nav-links { display: flex; gap: var(--spacing-md); list-style: none; font-family: var(--font-heading); font-weight: 500;}
.nav-links li a { transition: color 0.3s ease; }
.nav-links li a:hover { color: var(--primary-color); }

.menu-toggle { 
  display: none; 
  background: none; border: none; 
  color: white; 
  cursor: pointer; 
  z-index: 2000; 
  position: relative;
  width: 40px; height: 40px;
}

.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: currentColor; margin: 5px auto;
  transition: var(--transition-fast);
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   OVERSIZED TYPOGRAPHY & HERO
   ========================================================================= */

.hero-section {
  position: relative; height: 100vh; min-height: 800px;
  display: flex; align-items: center; overflow: hidden;
}

.hero-bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-bg.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 2; }

.hero-content { position: relative; z-index: 3; color: white; padding-top: 3vh; display: flex; flex-direction: column; align-items: center; text-align: center; }

.oversized-text {
  font-size: clamp(4rem, 12vw, 10rem);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: var(--spacing-md);
  text-shadow: 0px 10px 30px rgba(0,0,0,0.3);
}

.oversized-text-sm {
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -1px;
}

.subtitle-reveal {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 600px;
  font-weight: 300;
  color: #E0E0E0;
}

.scroll-indicator {
  color: white;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  z-index: 10;
  text-align: center;
}
.mouse {
  width: 24px; height: 36px; border: 2px solid white; border-radius: 12px; position: relative;
}
.mouse::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 6px; background: white; border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }

/* =========================================================================
   STORYTELLING MARQUEE & PHILOSOPHY
   ========================================================================= */

/* Vibrant Pop/Sticker Style for Journey */
.philosophy-marquee.vibrant-light {
  background-color: #FFFFFF;
  background-image: radial-gradient(var(--surface-alt) 2px, transparent 2px);
  background-size: 40px 40px;
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.philosophy-marquee.vibrant-light .massive-marquee {
  font-size: clamp(5rem, 18vw, 15rem);
  -webkit-text-stroke: 2px var(--bg-dark);
  color: transparent;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.philosophy-marquee.vibrant-light .container {
  position: relative;
  z-index: 1;
}

.sticker-title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-lg);
}

.sticker-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--bg-dark);
  line-height: 0.9;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.title-bg-shape {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 110%;
  height: 90%;
  background-color: var(--color-yellow);
  z-index: 1;
  transform: rotate(-2deg);
  border-radius: var(--radius-sm);
}

.vibrant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  align-items: flex-start;
  margin-bottom: var(--spacing-xl);
}

.vibrant-text-card {
  background: white;
  padding: var(--spacing-lg);
  border: 4px solid var(--bg-dark);
  box-shadow: 12px 12px 0px var(--color-pink);
  border-radius: var(--radius-sm);
  transform: rotate(1deg);
}

.vibrant-text-card p {
  color: var(--bg-dark);
  font-weight: 500;
  margin-bottom: 0;
}

.vibrant-image-collage {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.sticker-img-frame {
  border: 10px solid white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transform: rotate(-3deg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.sticker-img-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Floating colorful elements */
.float-blob {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.4;
}
.blob-1 { top: 10%; right: 10%; background: var(--color-blue); }
.blob-2 { bottom: 10%; left: 10%; background: var(--color-red); }
.story-image-wrap { border-radius: var(--radius-md); overflow: hidden; }
.story-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* =========================================================================
   THE HUB - STICKY SPACES
   ========================================================================= */

.hub-sections { position: relative; }

/* GSAP ScrollTrigger will handle the pinning, CSS sets up the visual layering */
.hub-panel {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Hardware acceleration to prevent flickering during scroll/pinning */
  will-change: transform;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}

.hub-content {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  width: 100%;
  height: 100%;
}

.cta-section-wrapper {
  padding: var(--spacing-xxl) var(--safe-inline);
  background-color: var(--color-pink);
  margin: 0;
  position: relative;
  z-index: 10;
}

.hub-text {
  padding: var(--spacing-xl) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hub-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  opacity: 0.7;
}

.hub-heading {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  margin-bottom: var(--spacing-sm);
  max-width: 100%;
}

.hub-desc {
  font-size: 1.5rem;
  max-width: 500px;
}

.hub-media {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.img-parallax {
  width: 100%;
  height: 130%; /* Extra height for parallax movement */
  object-fit: cover;
  position: absolute;
  top: -15%;
  /* Performance optimizations */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media(min-width: 993px) {
  /* Accommodations (The Rest) Asymmetry & Modern Layout */
  .acc-panel-1 .hub-content,
  .acc-panel-3 .hub-content {
    grid-template-columns: 5.5fr 4.5fr; /* Slightly wider text for odd panels */
  }

  .acc-panel-2 .hub-content,
  .acc-panel-4 .hub-content {
    grid-template-columns: 4fr 6fr; /* Slightly wider images for even panels */
  }

  /* Reverse order for even panels to create zigzag flow */
  .acc-panel-2 .hub-text,
  .acc-panel-4 .hub-text {
    order: 2;
    padding-left: var(--spacing-xl); /* Add extra breath when text is on the right */
  }

  .acc-panel-2 .hub-media,
  .acc-panel-4 .hub-media {
    order: 1;
  }

  /* Subtle visual offsets to break the 'box' feel */
  .acc-panel-1 .hub-text { padding-right: 15%; } /* Push text away from edge */
}
.acc-panel-3 .hub-text { padding-left: 5%; }

/* Scale/Offset for specific media to create depth */
.acc-panel-2 .hub-media img { transform: scale(1.1); }
.acc-panel-4 .hub-media img { transform: scale(1.05) rotate(-0.5deg); }

/* =========================================================================
   ENHANCED SKY ANIMATION (DAY TO NIGHT)
   ========================================================================= */

#the-rest {
  position: relative;
  overflow: hidden;
  background-color: #4facfe; /* Vibrant Sky Blue */
  background-image: linear-gradient(to bottom, #4facfe 0%, #00f2fe 100%);
  transition: background-color 0.1s linear;
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.day-night-stage {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Clouds Styling */
.clouds-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 60%;
  z-index: 2;
}

.cloud {
  position: absolute;
  background: white;
  border-radius: 100px;
  opacity: 0.6;
  filter: blur(10px);
}

.cloud::after, .cloud::before {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
}

.cloud-wide { width: 150px; height: 50px; }
.cloud-wide::after { width: 80px; height: 80px; top: -40px; left: 20px; }
.cloud-wide::before { width: 60px; height: 60px; top: -30px; left: 70px; }

.sun {
  background: radial-gradient(circle, #FFF 0%, #FFD700 40%, #FF8C00 100%);
  box-shadow: 0 0 100px #FFD700, 0 0 200px rgba(255, 140, 0, 0.4);
  width: 18vw;
  height: 18vw;
  min-width: 150px;
  min-height: 150px;
  border-radius: 50%; /* Ensure it is round */
  position: absolute;
  top: 28%; /* Lowered from 15% */
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
}

.moon {
  width: 14vw;
  height: 14vw;
  min-width: 100px;
  min-height: 100px;
  background: transparent;
  border-radius: 50%;
  /* Create crescent shape using box-shadow */
  box-shadow: -25px 10px 0 0 #fdfbfb; 
  position: absolute;
  top: 28%; /* Lowered from 15% */
  left: 50%;
  transform: translate(-50%, -100px) scale(0.5);
  opacity: 0;
  z-index: 4;
}

.stars-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.star-particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 5px white;
}

#the-rest .container {
  position: relative;
  z-index: 10;
}

#the-rest h2, #the-rest h3 {
  color: #0B1D3F; /* Dark blue for sky contrast */
}

#the-rest p {
  color: rgba(11, 29, 63, 0.8);
}

/* =========================================================================
   ACCOMMODATIONS (THE REST)
   ========================================================================= */

.rooms-section { 
  padding: var(--spacing-xl) 0; 
  position: relative; 
  z-index: 10; 
  background-color: var(--color-yellow); 
}
.section-title { font-size: clamp(3rem, 5vw, 4.5rem); text-transform: uppercase; margin-bottom: 5px; color: var(--text-main); }
.section-subtitle { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: var(--spacing-lg); color: var(--text-main); opacity: 0.8; }

.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: var(--spacing-lg); }

.room-card {
  border-radius: var(--radius-md); overflow: hidden; background: var(--surface-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.room-image { height: 350px; background-size: cover; background-position: center; }
.room-content { padding: var(--spacing-md); }
.room-content h3 { font-size: 2rem; margin-bottom: var(--spacing-sm); }
.room-content p { font-size: 1.1rem; }
.price { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--primary-color); }

/* =========================================================================
   EXPERIENCES FULL BLEED
   ========================================================================= */

.experiences-fullbleed {
  height: 150vh; /* Scroll space for sticky effect */
  background: black;
  position: relative;
}

.experience-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('../images/espera.avif') center/cover;
}

.exp-text-centered { text-align: center; color: white; }
.exp-text-centered .oversized-text-sm { margin-bottom: var(--spacing-md); text-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* =========================================================================
   VIRTUAL TOUR 360
   ========================================================================= */

.virtual-tour-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 15;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px; /* Slightly wider to give it impact */
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* Landscape for desktop */
  border-radius: var(--radius-md);
  overflow: hidden;
  background: black; /* Changed from light semi-transparent to blend with Kuula if needed */
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1024px) {
  .iframe-wrapper {
    aspect-ratio: 1.33 / 1; /* More square for tablet (4/3) */
  }
}


@media (max-width: 768px) {
  .iframe-wrapper {
    aspect-ratio: 1 / 1.4; /* Slightly tall for mobile but not 1.8 */
    min-height: 500px;
  }
}


.iframe-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.6;
}

/* =========================================================================
   HIGH-IMPACT BEACH EDITORIAL SECTION
   ========================================================================= */

.beach-section {
  min-height: 100vh; /* Reduced to standard viewport height to kill gaps */
  position: relative;
  background-color: #F8F3E9;
  overflow: hidden;
  z-index: 20;
}

.beach-pin-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.beach-bg-marquee {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  pointer-events: none;
  z-index: 1;
}

.beach-bg-marquee h2 {
  font-size: clamp(15rem, 30vw, 40rem);
  font-weight: 900;
  line-height: 1.2;
  color: #EAE2D1; /* Slightly darker than bg */
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -10px;
}

.beach-collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.collage-item {
  position: absolute;
  filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.15));
  will-change: transform;
}

/* Specific elements as 'cutouts' */
.el-surf {
  width: 25vw;
  top: 10%;
  right: -5%;
  transform: rotate(15deg);
}

.el-coconut {
  width: 15vw;
  bottom: 15%;
  left: 5%;
  transform: rotate(-10deg);
}

.el-leaf {
  width: 20vw;
  top: -5%;
  left: -5%;
  transform: rotate(-20deg);
  opacity: 0.6;
}

.beach-central-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.beach-main-title {
  font-size: clamp(6rem, 18vw, 15rem);
  font-weight: 900;
  color: var(--color-blue); /* PARTIU in Blue */
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -5px;
  margin-bottom: var(--spacing-lg);
}

.beach-main-title .outline {
  color: var(--color-orange); /* PRAIA in Orange */
  -webkit-text-stroke: 3px var(--bg-dark);
}

.beach-badges-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: -30px;
}

.impact-badge {
  background: white;
  padding: 15px 30px;
  border: 4px solid var(--bg-dark);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  color: var(--bg-dark);
}

.badge-1 {
  transform: rotate(-2deg);
  background-color: var(--color-yellow);
  box-shadow: 8px 8px 0 var(--bg-dark);
}

.badge-2 {
  transform: rotate(1deg);
  background-color: var(--color-pink);
  color: white;
  box-shadow: 8px 8px 0 var(--bg-dark);
}

/* Postioning for the cards moved to Gallery Section */

/* =========================================================================
   SCATTERED POLAROID GALLERY
   ========================================================================= */

.beach-gallery-section {
  padding: 5vw 0; /* Reduced from 10vw */
  background-color: #F8F3E9;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.polaroid-scatter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
}

.beach-card-mini {
  background: white;
  padding: 12px 12px 35px;
  box-shadow: 5px 15px 30px rgba(0,0,0,0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  width: 280px;
  position: relative;
  flex-shrink: 0;
  /* Natural rotation via CSS (will be augmented by GSAP) */
}

/* Washi Tape Effect */
.beach-card-mini::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 100px;
  height: 30px;
  background: rgba(137, 199, 78, 0.5); /* Semi-transparent tape */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  z-index: 2;
}

.beach-card-mini:nth-child(even)::before {
  background: rgba(255, 140, 0, 0.4);
  transform: translateX(-50%) rotate(4deg);
}

.beach-card-mini .card-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.beach-card-mini .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) contrast(1.1); /* Subtle vintage feel */
  transition: transform 0.8s ease;
}

.beach-card-mini:hover {
  transform: scale(1.1) rotate(0deg) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  z-index: 50;
}

.beach-card-mini:hover .card-img {
  transform: scale(1.1);
  filter: sepia(0);
}

.beach-card-mini span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--bg-dark);
  text-transform: uppercase;
  display: block;
  text-align: center;
}

/* Noise Texture Overlay */
.noise-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAA997SjAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAFBJREFUeNpjYGRkYmBmYGRmYWVjZWNnY8fDZmBkZmJhZmBkZmFlY2VjZ2PHw2ZgZGRiYGVgZGRhZWNlY2djx8NmYGRmYmFmYGRmYWVjZWNnY+cDADDvA3O9vYdIAAAAAElFTkSuQmCC");
  opacity: 0.05;
  pointer-events: none;
  z-index: 50;
}

.beach-sticker {
  position: absolute;
  font-size: 5rem;
  z-index: 3;
}

.sticker-surf { top: 10%; right: 15%; rotate: 15deg; animation: floatSticker 4s ease-in-out infinite; }
.sticker-sun { bottom: 10%; left: 10%; rotate: -10deg; animation: floatSticker 5s ease-in-out infinite reverse; }

@keyframes floatSticker {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.beach-section .section-subtitle {
  font-size: 1.5rem;
  margin-top: var(--spacing-md);
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.adventures-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 20;
}

.overflow-hidden {
  overflow: hidden;
}

.adventures-slider-wrapper {
  margin-top: var(--spacing-lg);
  padding-left: var(--spacing-md);
  /* Parent track for infinite CSS scroll */
}

.adventures-track {
  display: flex;
  gap: var(--spacing-md);
  width: max-content;
  /* CSS Animation for infinite loop (14 cards total = 7 original + 7 clone) */
  animation: scrollMarquee 40s linear infinite;
}

.adventures-track:hover {
  animation-play-state: paused; /* Pause on hover for readability */
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  /* Translate halfway since we duplicated the track */
  100% { transform: translateX(calc(-50% - (var(--spacing-md) / 2))); }
}

.adv-card {
  width: 350px;
  height: 450px;
  border-radius: var(--radius-md);
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
  flex-shrink: 0;
  transition: var(--transition-smooth) !important;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-width: 15px !important;
  border-style: solid !important;
  border-color: var(--color-red) !important; /* Default to red */
  color: white !important;
  background-color: transparent !important;
}

/* Identical mapping for index cards using their utility classes */
.adv-card.bg-pink { border-color: var(--color-pink) !important; }
.adv-card.bg-orange { border-color: var(--color-orange) !important; }
.adv-card.bg-blue { border-color: var(--color-blue) !important; }
.adv-card.bg-yellow { border-color: var(--color-yellow) !important; }
.adv-card.bg-green { border-color: var(--color-green) !important; }
.adv-card.bg-purple { border-color: var(--color-purple) !important; }
.adv-card.bg-red { border-color: var(--color-red) !important; }
.adv-card.bg-dark { border-color: var(--color-red) !important; } /* Keep as fallback/alias for red according to user request */

.adv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
  z-index: 1;
}

.adv-card > * {
  position: relative;
  z-index: 2;
}

.adv-card h3 {
  font-size: 2.2rem !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  color: white !important;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.6) !important;
}

.adv-card p {
  font-size: 1.1rem !important;
  margin: 0 !important;
  opacity: 1 !important;
  color: rgba(255,255,255,0.95) !important;
  line-height: 1.4 !important;
}

.adv-card:hover {
  transform: scale(1.03) rotate(1deg) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
}

/* =========================================================================
   DEDICATED ADVENTURE PAGES
   ========================================================================= */

.adventure-page-body {
  background-color: var(--bg-light);
}

.adventure-hero {
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--spacing-md);
  position: relative;
}

.adventure-details-container {
  max-width: 800px;
  margin: -100px auto 100px;
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

.adventure-details-container p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.adventure-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.main-footer {
  padding: 10vw 0 0; background: var(--bg-dark) !important; color: white;
  opacity: 1 !important;
  z-index: 50;
  position: relative;
}

/* Removed footer-cta-wrapper specific padding-bottom to avoid conflict */

.massive-cta {
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.footer-content {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--spacing-xl) var(--safe-inline) var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: white; /* Changed from var(--primary-color) to white */
}

.brand-col .footer-logo {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: var(--spacing-sm);
}

.footer-slogan {
  font-size: 1.25rem;
  opacity: 1; /* Increased from 0.8 */
  max-width: 300px;
  color: white;
}

.links-col ul {
  list-style: none;
}

.links-col ul li {
  margin-bottom: var(--spacing-sm);
}

.links-col ul li a {
  opacity: 1; /* Increased from 0.8 */
  transition: opacity 0.3s ease, color 0.3s ease;
  font-size: 1.1rem;
  color: white;
}

.links-col ul li a:hover {
  opacity: 0.7;
  color: white;
}

.contact-col p {
  opacity: 1; /* Increased from 0.8 */
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom-bar {
  background-color: #0a0a0a;
  padding: var(--spacing-md) var(--safe-inline);
  margin-top: var(--spacing-lg);
  font-size: 0.9rem;
  opacity: 1;
  color: white !important;
}

.footer-bottom-bar p {
  color: white !important;
  margin: 0;
}

.footer-bottom-bar a {
  color: white !important;
  text-decoration: none !important;
}

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), bottom 0.4s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
}

/* Gallery Modal & Carousel */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: none; /* Controlled by JS */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 500px; /* Optimized for vertical images */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 35px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
  z-index: 2010;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.close-modal:hover {
  transform: rotate(90deg);
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 2/3;
  max-height: 70vh; /* Crucial for vertical images on mobile */
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  background: #000;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-track img {
  min-width: 100%;
  height: 100%;
  object-fit: contain; /* Changed to contain to see full vertical image if ratio differs */
  background: #000;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-prev:hover, .carousel-next:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 15px; }
.carousel-next { right: 15px; }

.carousel-caption {
  text-align: center;
  color: white;
}

.carousel-caption h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 768px) {
  .modal {
    padding: 15px;
  }
  
  .modal-content {
    max-width: 90vw;
  }

  .carousel-container {
    max-height: 65vh;
    border-radius: 16px;
  }

  .close-modal {
    top: 10px;
    right: 10px;
    font-size: 28px;
    width: 44px;
    height: 44px;
  }

  .carousel-prev, .carousel-next {
    width: 44px; /* Minimum touch target size */
    height: 44px;
    font-size: 16px;
  }
}

@media (max-height: 600px) {
  /* Handle landscape mobile screens */
  .carousel-container {
    max-height: 50vh;
  }
  .modal-content {
    gap: 10px;
  }
}

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

.btn-group .btn {
    flex: 1;
    min-width: 160px;
}

/* Back to Top (Liquid Glass) */
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, bottom 0.4s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* Float Adjustments when Footer Reached */
.whatsapp-float.footer-reached {
  bottom: 110px !important;
}

.back-to-top.footer-reached {
  bottom: 190px !important;
}

/* Responsive adjustments */
@media(max-width: 1200px) {
  .hub-content { grid-template-columns: 5fr 5fr; }
  .hub-text { padding: var(--spacing-lg); }
}

@media(max-width: 992px) {
  .hub-content { grid-template-columns: 1fr !important; grid-template-rows: auto auto; width: 100% !important; }
  .hub-text { padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md); order: 2 !important; text-align: left; }
  .hub-media { order: 1 !important; width: 100vw; height: 50vh !important; aspect-ratio: auto !important; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); position: relative; overflow: hidden; }
  .img-parallax { position: absolute !important; height: 100% !important; width: 100% !important; min-height: unset !important; top: 0 !important; object-fit: cover; transform: none !important; }
  .hub-panel { height: 100vh; min-height: 100vh !important; padding: 0; margin-bottom: 0; display: flex; flex-direction: column; justify-content: flex-end; }
  
  /* On true mobile, remove the 100vh lock to prevent text clipping */
  @media(max-width: 767px) {
    .hub-panel { height: auto !important; }
  }
  
  .philosophy-story { grid-template-columns: 1fr; gap: var(--spacing-lg); text-align: center; }
  .story-image-wrap { max-width: 500px; margin: 0 auto; }
  
  /* Mobile Header */
  .menu-toggle { 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    position: absolute;
    right: 20px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    gap: var(--spacing-md);
    font-size: clamp(2rem, 5vw, 3.5rem);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }

  header.menu-open {
    mix-blend-mode: normal !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .brand-col .footer-logo { margin: 0 auto var(--spacing-sm); }
  .footer-slogan { margin: 0 auto; }
  .social-links { justify-content: center; }
}

@media(max-width: 768px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .oversized-text { font-size: clamp(3rem, 15vw, 6rem); }
  .hub-heading { font-size: clamp(2.5rem, 8vw, 4rem); }
  .btn-massive { width: 100%; }
  #the-rest .container { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
  #the-rest .section-title {
    font-size: clamp(2.4rem, 12vw, 3.4rem) !important;
    line-height: 1.05;
    margin-bottom: 0.75rem !important;
    overflow-wrap: anywhere;
  }
  #the-rest .massive-cta {
    font-size: clamp(1.5rem, 7vw, 2.3rem) !important;
    line-height: 1.15;
    letter-spacing: 0.04em !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  #the-rest .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 0 0.25rem;
  }
  .accommodations-sections .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .accommodations-sections .btn-group .btn {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }
}

@media(max-width: 576px) {
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8vh;
  }
  
  .subtitle-reveal { margin: 0 auto var(--spacing-md); font-size: 1.1rem; }
  .oversized-text { font-size: 3.2rem; }
  .oversized-text-sm { font-size: 2.2rem; }
  .massive-marquee { font-size: 3.5rem; }
  .massive-cta { font-size: 2.8rem; }
  
  .scroll-indicator {
    bottom: 15px;
    flex-direction: column;
    gap: 8px;
    font-size: 0.7rem;
  }
  
  .adv-card { width: 280px; height: 380px; }
  
  .whatsapp-float {
    width: 60px; height: 60px;
    bottom: 20px; right: 20px;
  }
  
  .experiences-fullbleed { height: 100vh; }
  .experience-sticky { height: 100vh; }
  #the-rest .container { padding-left: 0.75rem; padding-right: 0.75rem; }
  #the-rest .section-title { font-size: clamp(2.1rem, 12vw, 2.8rem) !important; }
  #the-rest .massive-cta {
    font-size: clamp(1.25rem, 6.5vw, 1.8rem) !important;
    letter-spacing: 0.02em !important;
  }
  #the-rest .section-subtitle {
    font-size: 0.98rem;
    margin-top: 1rem !important;
  }

  .hub-panel { padding: 0; }
  .hub-text { padding: var(--spacing-lg) var(--spacing-sm); }
  .hub-media { aspect-ratio: auto !important; height: 50vh !important; width: 100vw !important; margin-left: calc(-50vw + 50%) !important; margin-right: calc(-50vw + 50%) !important; position: relative; overflow: hidden; }
  .img-parallax { position: absolute !important; height: 100% !important; width: 100% !important; min-height: unset; top: 0 !important; object-fit: cover; transform: none !important; }
  
  .rooms-grid { 
    grid-template-columns: 1fr;
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
    gap: 0;
  }
  .room-card { 
    border-radius: 0;
    box-shadow: none;
    border-bottom: 2px solid var(--bg-dark);
  }
  .room-image { height: 280px; }
  .room-content { padding: var(--spacing-md) var(--spacing-md); }

  .vibrant-image-collage { width: 100vw; margin-left: calc(-50vw + 50%); padding: 0 var(--spacing-sm) var(--spacing-xl); }
  .sticker-img-frame { transform: rotate(0deg); width: 100%; }
}

/* Fix for Safari iOS viewport jumps */
.hero-section, .experience-sticky {
  height: 100vh;
  height: 100dvh;
}
