/* =============================================
   MUNDRO'S HAVEN'S — ENHANCED DESIGN SYSTEM
   Kerala Luxury Backwater Cinematic Experience
   ============================================= */

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

/* ---- TOKENS ---- */
:root {
  --mist:        #f7f4ef;
  --mist-deep:   #e8e2d8;
  --coconut:     #2d5a3d;
  --coconut-lt:  #4a8c5c;
  --water:       #1a3a5c;
  --water-lt:    #2e6b8a;
  --water-deep:  #08121f;
  --gold:        #c8933c;
  --gold-lt:     #e8b86d;
  --earth:       #5e3c23;
  --earth-lt:    #8b5a33;
  --night:       #0a1016;
  --fog:         rgba(247,244,239,0.08);

  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', sans-serif;
  --ff-hand:     'Caveat', cursive;

  --ease-float:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-fluid:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  background: var(--night);
  color: var(--mist);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: none; font-family: inherit; }
li { list-style: none; }

/* ---- CUSTOM CURSOR ---- */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px; background: var(--gold);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 40px; height: 40px; border: 1px solid rgba(200,147,60,0.5);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s;
}
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring, body:has(.magnetic-wrap:hover) #cursor-ring { width: 60px; height: 60px; background: rgba(200,147,60,0.1); }

/* ---- MAGNETIC CTA --- */
#magnetic-cta {
  position: fixed; bottom: 3rem; right: 3rem; z-index: 1000;
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
}
.float-cta-btn {
  background: var(--gold); color: var(--night);
  width: 95px; height: 95px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  line-height: 1.3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s var(--ease-fluid);
  pointer-events: auto;
}
.float-cta-btn:hover {
  box-shadow: 0 0 40px var(--gold);
  transform: translateY(-5px);
  background: var(--gold-lt);
}
#magnetic-cta:hover .float-cta-btn { transform: none; box-shadow: none; } /* Reset old hover */



/* ---- NAV & LOADER ---- */
/* Standard setup from before, truncated for brevity but functionality preserved */
#loader { position: fixed; inset: 0; z-index: 9000; background: var(--night); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 1s; }
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-family: var(--ff-serif); font-size: 2rem; color: var(--gold); letter-spacing: 0.2em; opacity: 0; animation: fade 1s forwards; margin-bottom: 2rem; }
@keyframes fade { to { opacity: 1; } }

.loader-circle {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(200, 147, 60, 0.1);
  border-top: 2px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  animation: spin 1s linear infinite, fade 1s forwards 0.5s;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#nav { position: fixed; top: 0; width: 100%; z-index: 500; padding: 1.5rem 3rem; display: flex; justify-content: space-between; align-items: center; opacity: 0.9; }
.nav-logo { font-family: var(--ff-serif); font-size: 1.5rem; letter-spacing: 0.15em; color: #fff; }
.nav-logo span { color: #fff; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; position: relative;}
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  padding: 12px;
  background: var(--gold);
  border: none;
  border-radius: 50%; /* Circle looks better for solid action buttons */
  z-index: 1000;
  cursor: none;
  transition: all 0.3s var(--ease-fluid);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mobile-nav-toggle .line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--night); /* Dark lines on gold */
  transition: all 0.3s var(--ease-fluid);
  transform-origin: center;
}

/* Active State for Toggle (X Icon) */
#nav.nav-active .mobile-nav-toggle {
  background: var(--gold-lt);
  transform: rotate(90deg);
}

#nav.nav-active .mobile-nav-toggle .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#nav.nav-active .mobile-nav-toggle .line:nth-child(2) {
  opacity: 0;
}

#nav.nav-active .mobile-nav-toggle .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- COMMON TYPOGRAPHY & LAYOUT ---- */
.section { padding: 8rem 0; position: relative; overflow: hidden; }
.section.full-height { padding: 0 !important; height: 100vh; min-height: 650px; display: flex; align-items: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); display: block; }
.title-light { font-family: var(--ff-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 400; color: var(--mist); line-height: 1.1; margin-bottom: 1.5rem; }
.title-light em { color: var(--gold); font-style: italic; }
.title-dark { font-family: var(--ff-display); font-size: clamp(3rem, 6vw, 5rem); color: var(--night); line-height: 1.1; margin-bottom: 1.5rem; }
.handwritten-title { font-family: var(--ff-hand); font-size: clamp(2.5rem, 4vw, 4rem); color: var(--gold-lt); transform: rotate(-2deg); margin-bottom: 2rem; }

.section-header.center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-header.center .section-label::before { display: none; }
.section-header.center .section-label { justify-content: center; }

/* GSAP classes */
.reveal, .reveal-scale, .reveal-left { opacity: 0; visibility: hidden; }

/* ---- HERO SECTION ---- */
#hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); z-index: 1; pointer-events: none; }
.hero-mist { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 30%, var(--night) 100%); mix-blend-mode: multiply; opacity: 0.8;}
.hero-content { position: relative; z-index: 2; }
.hero-title { font-family: var(--ff-display); font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 400; color: #fff; margin-bottom: 1rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-tagline { font-family: var(--ff-serif); font-size: 1.5rem; font-style: italic; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.btn-primary { display: inline-flex; align-items: center; gap: 1rem; padding: 1rem 2.5rem; border: 1px solid var(--gold); color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; position: relative; overflow: hidden; transition: color 0.4s;}
.btn-primary::before { content:''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; z-index: -1; }
.btn-primary:hover { color: var(--night); }
.btn-primary:hover::before { transform: scaleX(1); }
#ripple-canvas { position: absolute; bottom: 0; width: 100%; height: 30%; pointer-events: none; opacity: 0.5; }

/* ---- 1. ABOUT THE STAY ---- */
#about { background: linear-gradient(to bottom, #0a1016, #0e1a22); padding: 12rem 0; }
.fg-leaf { position: absolute; width: 40vw; height: 40vw; background-size: contain; background-repeat: no-repeat; z-index: 5; pointer-events: none; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }
.leaf-left { top: 0; left: -30px; background-image: url('assets/leaves.png'); }
.leaf-right { bottom: 0; right: -50px; background-image: url('assets/leaves.png'); transform: rotate(15deg); }
.about-mist { position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.015" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>'); }
.about-container { display: flex; flex-direction: column; align-items: center; gap: 4rem; position: relative; z-index: 2; }
.about-visual { width: 100%; max-width: 900px; aspect-ratio: 16/9; overflow: hidden; border-radius: 8px; position: relative; }
.about-content { width: 100%; max-width: 800px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.villa-3d-wrap { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; border-radius: 8px;}
.villa-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 0.8s ease; }
.villa-glow { position: absolute; inset: 0; background: radial-gradient(circle, rgba(200,147,60,0.4) 0%, transparent 60%); opacity: 0; transition: opacity 0.5s; mix-blend-mode: overlay; pointer-events: none;}
.villa-3d-wrap:hover .villa-glow { opacity: 1; }
.journal-list { display: inline-block; text-align: left; margin: 0 auto; }
.journal-list li { margin-bottom: 1.5rem; font-size: 1.1rem; color: rgba(247,244,239,0.8); display: flex; align-items: flex-start; gap: 1rem; }
.journal-list li::before { content: '—'; color: var(--gold); }

/* ---- 2. ACTIVITIES ---- */
#activities { background: var(--water-deep); }
#bg-ripple-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.activities-carousel { 
  width: 100%; 
  overflow: hidden; 
  margin-top: 5rem; 
  position: relative; 
  z-index: 2; 
  padding: 2rem 0; 
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.lotus-grid-track { display: flex; gap: 4rem; width: max-content; }
.lotus-card { 
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(200, 147, 60, 0.1);
  border-radius: 24px;
  width: clamp(160px, 18vw, 220px); 
  aspect-ratio: 1/1.2; 
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; cursor: none; 
  transition: all 0.6s var(--ease-fluid);
  flex-shrink: 0;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.lotus-card:hover { 
  transform: translateY(-15px) scale(1.05) !important; 
  background: rgba(200,147,60,0.08); 
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(200,147,60,0.15);
}
.lotus-icon { 
  width: 50px; height: 50px;
  margin-bottom: 1.5rem; 
  color: var(--gold-lt);
  transition: transform 0.6s var(--ease-fluid), color 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.lotus-card:hover .lotus-icon {
  transform: scale(1.2) rotate(5deg);
  color: #fff;
}
.lotus-icon svg {
  width: 100%; height: 100%;
  display: block;
}
.lotus-card h3 { 
  font-family: var(--ff-serif); 
  font-size: 1.1rem; 
  font-weight: 500; 
  letter-spacing: 0.05em;
  color: var(--mist); 
  pointer-events: none;
}

/* Fullscreen Activity Preview */
#activity-preview { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; background: rgba(10,16,22,0.9); opacity: 0; visibility: hidden; transition: opacity 0.5s, visibility 0.5s; }
#activity-preview:not(.hidden) { opacity: 1; visibility: visible; }
.preview-bg { position: absolute; inset: 0; background: url('assets/activities_canoeing.png') center/cover; opacity: 0.4; transform: scale(1.1); transition: transform 10s linear; }
#activity-preview:not(.hidden) .preview-bg { transform: scale(1); }
.preview-title { position: relative; font-family: var(--ff-display); font-size: clamp(4rem, 10vw, 8rem); color: var(--mist); z-index: 2; text-shadow: 0 10px 30px rgba(0,0,0,0.8);}
.preview-close { position: absolute; top: 3rem; right: 3rem; color: #fff; font-size: 2rem; z-index: 3; }

/* ---- 3. EXPERIENCES (UNIFIED) ---- */
#experiences { position: relative; padding: 10rem 0; overflow: hidden; background: var(--water-deep); }
.water-shader-bg { 
  position: absolute; inset: 0; 
  background-image: url('assets/river.png'); 
  background-size: 150% 150%; 
  opacity: 0.15;
  animation: riverDrift 40s ease-in-out infinite alternate; 
}
@keyframes riverDrift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}
.canoe-silhouette { position: absolute; bottom: 10%; left: -200px; width: 150px; height: auto; animation: sail 45s linear infinite; }
@keyframes sail { to { left: 120%; } }

.unified-exp-grid { margin-top: 4rem; }
.exp-points-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 1.5rem; 
}
.exp-item {
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s var(--ease-fluid);
}
.exp-item:hover {
  transform: translateY(-5px);
  background: rgba(200, 147, 60, 0.08);
  border-color: rgba(200, 147, 60, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.chalk-icon { 
  width: 32px; height: 32px;
  margin-right: 1.5rem; 
  color: var(--gold-lt);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-fluid), color 0.3s;
}
.exp-item:hover .chalk-icon {
  transform: scale(1.1);
  color: #fff;
}
.chalk-icon svg {
  width: 100%; height: 100%;
  display: block;
}
.exp-item span { font-size: 1.1rem; color: var(--mist); font-family: var(--ff-serif); letter-spacing: 0.05em; }

/* ---- 4. HERITAGE COTTAGE (FINAL VERTICAL FIT) ---- */
#cottage { 
  background: var(--night); 
  min-height: 700px;
  display: flex; 
  align-items: center; 
  overflow: hidden; 
  position: relative;
}
.cottage-container { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
  max-width: none;
  text-align: center; 
  padding: 2rem 0;
  transform: translateY(-30px);
}

.cottage-header { margin-bottom: 0.5rem; z-index: 5; position: relative; }

.cottage-visual { width: 100vw; position: relative; z-index: 2; flex: 1; display: flex; align-items: center; }

.cottage-carousel {
  position: relative; width: 100%; overflow: hidden;
  cursor: grab;
}
.cottage-carousel:active { cursor: grabbing; }

.cottage-track {
  display: flex; gap: 4vw; width: max-content;
  padding: 0 10vw;
  align-items: center;
}

.cottage-card {
  width: 48vw;
  max-width: 800px;
  height: 35vh;
  min-height: 250px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  background: var(--night-lt);
  position: relative;
  transition: transform 0.6s var(--ease-fluid);
  flex-shrink: 0;
}

.cottage-card:hover {
  transform: translateY(-6px) scale(1.01);
  z-index: 10;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.cottage-card img { width: 100%; height: 100%; object-fit: cover; }

.card-caption {
  position: absolute; bottom: 0; left: 0; width: 100%;
  padding: 1.5rem 1.5rem 1rem;
  background: linear-gradient(to top, rgba(10,16,22,0.95) 10%, transparent);
  color: var(--gold); font-family: var(--ff-serif); font-size: 1.1rem;
  text-align: left;
}

.cottage-info { 
  max-width: 1000px; 
  width: 100%; 
  padding: 0 2rem; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}
.premium-list { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center;
  gap: 1rem; 
  margin-top: calc(0.8rem + 20px);
  text-align: center;
  max-width: 1100px;
}
.premium-list li { 
  padding: 0.6rem 1.2rem; 
  background: rgba(255,255,255,0.02); 
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem; 
  color: rgba(247,244,239,0.7); 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex: 0 1 auto;
}

/* Heritage Section Steps */
.cottage-steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.cottage-step {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 147, 60, 0.1);
    position: relative;
    transition: all 0.4s var(--ease-fluid);
    text-align: left;
}
.cottage-step:hover {
    background: rgba(200, 147, 60, 0.05);
    border-color: rgba(200, 147, 60, 0.3);
    transform: translateY(-5px);
}
.step-no {
    font-family: var(--ff-serif);
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.6;
}
.step-content h3 {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    color: var(--mist);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.step-content ul {
    list-style: none;
    padding: 0;
}
.step-content li {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}
.step-content li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}
/* Island Life Steps */
.island-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.island-step {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.island-step:hover {
    background: rgba(200, 147, 60, 0.05);
    border-color: rgba(200, 147, 60, 0.2);
}
.island-step .step-no {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}
.island-step h3 {
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    color: var(--mist);
    margin-bottom: 1rem;
}
.step-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.step-items .exp-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

/* ---- 5. FOOD & LOCAL FLAVOURS ---- */
.sensory-section { background: #121611; position: relative; }
.banana-leaf-texture { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(45,90,61,0.03) 0px, rgba(45,90,61,0.03) 2px, transparent 2px, transparent 10px); pointer-events: none;}
.food-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.food-visual { border-radius: 200px 200px 0 0; overflow: hidden; position: relative; aspect-ratio: 3/4; }
.food-visual img { width: 100%; height: 100%; object-fit: cover; }
.steam-layer { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, transparent, rgba(255,255,255,0.1)); filter: blur(10px); pointer-events: none; }
.flavor-tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.tag { padding: 0.5rem 1.5rem; border: 1px solid var(--gold); border-radius: 30px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }

/* ---- 5.5 OUR HAPPY CUSTOMERS ---- */
#reviews { 
  background: #121611; 
  min-height: 700px;
  display: flex; 
  align-items: center; 
  overflow: hidden; 
  position: relative;
}
.reviews-container { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 4vh;
  height: 100%;
  width: 100%;
  max-width: none;
  text-align: center; 
  padding: 2rem 0;
}
.reviews-header { margin-bottom: 0.5rem; z-index: 5; position: relative; }
.reviews-visual { width: 100vw; position: relative; z-index: 2; flex: 1; display: flex; align-items: center; }
.reviews-carousel {
  position: relative; width: 100%; overflow: hidden;
  cursor: grab;
}
.reviews-carousel:active { cursor: grabbing; }
.reviews-track {
  display: flex; gap: 4vw; width: max-content;
  padding: 0 10vw;
  align-items: center;
}
.reviews-card {
  height: 38vh;
  aspect-ratio: 4 / 3;
  min-height: 250px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  background: var(--night-lt);
  position: relative;
  transition: transform 0.6s var(--ease-fluid);
  flex-shrink: 0;
}
.reviews-card img { width: 100%; height: 100%; object-fit: cover; }
.reviews-info { max-width: 1100px; width: 100%; padding: 0 2rem; }
.reviews-list li { font-style: italic; color: var(--mist); }

/* ---- 7. BOAT RACE FESTIVAL ---- */
.energy-section { padding: 0; height: 80vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.race-bg { position: absolute; inset: 0; z-index: 1; }
.race-bg img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.2) saturate(1.1); transform: scale(1.05); }
.race-content { position: relative; z-index: 2; padding: 4rem; background: rgba(247,244,239,0.9); max-width: 500px; margin-left: 10vw; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.3);}
.splash-particles { position: absolute; inset: 0; pointer-events: none; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="splash"><feTurbulence type="fractalNoise" baseFrequency="0.1" numOctaves="1" result="noise"/><feDisplacementMap in="SourceGraphic" in2="noise" scale="20" xChannelSelector="R" yChannelSelector="G"/></filter><circle cx="50" cy="50" r="40" fill="white" filter="url(%23splash)" opacity="0.1"/></svg>'); background-size: 200px; opacity: 0.3; animation: waterSplash 0.5s infinite alternate; }
@keyframes waterSplash { to { opacity: 0.6; transform: scale(1.02); } }
.dark-list li { color: var(--night); border-bottom-color: rgba(0,0,0,0.1); padding: 0.8rem 0; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }

/* ---- 7.5 CONTACT INFO ---- */
.contact-sensory-section {
    background: #121611;
    position: relative;
    overflow: hidden;
    padding: 12vh 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 6vh;
}
.contact-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s var(--ease-fluid);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.contact-icon {
    font-size: 2.2rem;
    color: var(--gold);
    background: rgba(197, 165, 114, 0.08);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    transition: transform 0.5s var(--ease-fluid);
}
.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(197, 165, 114, 0.15);
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.contact-label {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 0.7;
}
.contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--mist);
    letter-spacing: 0.02em;
}

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

@media (max-width: 768px) {
    .contact-sensory-section { padding: 8vh 0; min-height: auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-card { padding: 2.5rem 1.5rem; }
    .contact-value { font-size: 1.3rem; }
}

/* ---- FINAL SECTION ---- */
.final-section { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; }
.sunset-bg { position: absolute; inset: 0; z-index: 1; }
.sunset-bg img { width: 100%; height: 100%; object-fit: cover; }
.sunset-canoe-anim { position: absolute; bottom: 20%; left: 50%; font-size: 3rem; transform: translateX(-50%); animation: fadeAway 30s linear infinite; opacity: 0.8;}
@keyframes fadeAway { 0% { transform: translate(-50%, 0) scale(1); opacity: 0.8; } 100% { transform: translate(100px, -20px) scale(0.5); opacity: 0; } }
.closure-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 2rem; background: radial-gradient(circle, rgba(10,16,22,0.6) 0%, transparent 70%); padding: 4rem; border-radius: 50%;}
.closure-buttons { display: flex; gap: 1.5rem; align-items: center; }
.btn-solid { padding: 1rem 3rem; background: var(--gold); color: var(--night); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; transition: transform 0.3s; }
.btn-solid:hover { transform: scale(1.05); }
.btn-outline { padding: 1rem 2rem; border: 1px solid var(--mist); color: var(--mist); text-transform: uppercase; letter-spacing: 0.1em; transition: background 0.3s, color 0.3s; }
.btn-outline:hover { background: var(--mist); color: var(--night); }
.btn-link { color: #fff; text-decoration: underline; text-underline-offset: 5px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; }

/* ---- FOOTER JETTY ---- */
#footer-jetty { position: relative; z-index: 5; background: #05080c; border-top: 4px solid #1a1008; padding: 2rem 0; text-align: center; }
.jetty-planks { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; border-top: 2px dashed rgba(200,147,60,0.2); padding-top: 2rem; color: rgba(247,244,239,0.5); font-size: 0.8rem; letter-spacing: 0.2em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a:hover { color: var(--gold); }

/* ---- AVAILABILITY MODAL (OYO STYLE RE-DESIGN) ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(10,16,22,0.9); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.6s var(--ease-fluid);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content.oyo-style {
  width: 95%; max-width: 900px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,147,60,0.2); border-radius: 12px;
  padding: 3rem; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: transparent; border: none;
  color: #fff; font-size: 2.2rem; line-height: 1;
  transition: all 0.4s var(--ease-fluid);
  cursor: none; z-index: 100; opacity: 0.7;
}
.modal-close:hover {
  transform: rotate(90deg) scale(1.2);
  color: var(--gold); opacity: 1;
}

.availability-form-oyo { margin-top: 2rem; }
.oyo-row {
  display: flex; background: rgba(255,255,255,0.05);
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  overflow: visible; gap: 0;
}

.oyo-block {
  flex: 1; padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative; transition: background 0.3s;
}
.oyo-block:hover { background: rgba(255,255,255,0.02); }
.oyo-block:last-child { border-right: none; }

.oyo-label { font-size: 0.6rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.5rem; font-weight: 600; }
.oyo-inputs { display: flex; align-items: center; gap: 0.5rem; }
.oyo-inputs input {
  background: transparent; border: none; color: #fff;
  font-family: var(--ff-body); font-size: 0.95rem; width: 130px;
}
.oyo-inputs input:focus { outline: none; }
.oyo-sep { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

.oyo-trigger { 
  display: flex; justify-content: space-between; align-items: center; 
  cursor: none; font-size: 0.95rem; color: #fff; padding-top: 2px;
}
.chevron-down { font-size: 0.7rem; color: var(--gold); }

/* Guest Picker Dropdown */
.guest-picker-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; width: 340px;
  background: var(--night); border: 1px solid rgba(200,147,60,0.3);
  border-radius: 8px; padding: 2rem; z-index: 100;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.picker-item {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.2rem;
}
.picker-info { display: flex; flex-direction: column; }
.picker-type { font-size: 1.1rem; font-weight: 500; color: var(--mist); }
.picker-desc { font-size: 0.7rem; color: rgba(247,244,239,0.5); }

.picker-ctrl { display: flex; align-items: center; gap: 1rem; }
.ctrl-btn { 
  width: 40px; height: 40px; border-radius: 50%; 
  border: 1px solid rgba(200,147,60,0.5); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-size: 1.4rem;
}
.ctrl-btn:hover:not(:disabled) { background: var(--gold); color: var(--night); }
.ctrl-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.ctrl-val { width: 30px; text-align: center; font-size: 1rem; color: #fff; }

.btn-done {
  width: 100%; margin-top: 1rem; padding: 0.8rem;
  background: var(--gold); color: var(--night);
  border-radius: 4px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase;
}

/* Action Button */
.oyo-action { padding: 0.5rem; display: flex; align-items: center; }
.btn-search {
  background: var(--gold); color: var(--night);
  padding: 0 2rem; height: 100%; border-radius: 6px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  transition: transform 0.3s; cursor: none;
}
.btn-search:hover { transform: scale(1.02); background: var(--gold-lt); }

/* Result State */
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.availability-result { 
  position: absolute; inset: 0; background: var(--night);
  z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem; text-align: center; border-radius: 12px;
}

/* Multi-step Transitions */
.booking-step {
  transition: opacity 0.4s var(--ease-fluid), transform 0.4s var(--ease-fluid);
}
.booking-step.hidden {
  display: none;
  opacity: 0;
  transform: translateX(20px);
}

.step-header { margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
.step-indicator { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.step-header h3 { font-family: var(--ff-serif); font-size: 1.8rem; color: var(--mist); margin-top: 0.5rem; }

.details-form { display: flex; flex-direction: column; gap: 1.5rem; }
.details-form .input-group label { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.15em; }
.details-form input, .details-form textarea {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 1rem; color: #fff; font-family: var(--ff-body);
}
.details-form textarea { height: 100px; resize: none; }
.details-form input:focus, .details-form textarea:focus { border-color: var(--gold); outline: none; background: rgba(255,255,255,0.06); }

.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }

/* Summary Card */
.summary-card {
  background: rgba(200,147,60,0.05); border: 1px dashed rgba(200,147,60,0.3);
  border-radius: 8px; padding: 2rem; margin: 2rem 0;
  text-align: left;
}
.summary-item { margin-bottom: 1rem; font-size: 1.1rem; color: var(--mist); }
.summary-item strong { color: var(--gold); font-weight: 500; margin-right: 0.5rem; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; }

.summary-note { font-size: 0.9rem; color: rgba(247,244,239,0.7); margin-bottom: 2rem; }

@media (max-width: 768px) {
  .modal-content.oyo-style { padding: 2rem 1.5rem; }
  .oyo-row { flex-direction: column; }
  .oyo-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .oyo-inputs { flex-wrap: wrap; }
  .oyo-action { padding: 1.5rem 0 0 0; }
  .btn-search { width: 100%; padding: 1rem; }
  .guest-picker-dropdown { width: 100%; position: absolute; bottom: -100%; left: 0; top: auto; border-radius: 12px; z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
  .form-actions { flex-direction: column-reverse; gap: 1.5rem; }
  .form-actions button { width: 100%; }
}

.hidden { display: none !important; }

/* --- BOOKING MODAL ENHANCEMENTS --- */
.summary-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
}
.summary-item strong {
    color: var(--text-light);
}
.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}
.summary-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}
.price-tag {
    color: var(--gold);
    font-size: 1.5rem;
}

.mock-payment-box {
    margin-bottom: 25px;
    text-align: left;
}
.mock-payment-box label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--gold);
}
.mock-card-input {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}
.mock-card-input input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    font-family: monospace;
    letter-spacing: 2px;
}
.payment-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 10px;
    font-style: italic;
}

/* SUCCESS ANIMATION */
.success-anim {
    padding: 40px 0;
    text-align: center;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--gold);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--gold);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    margin: 0 auto;
}
.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes scale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } }
@keyframes fill { 100% { box-shadow: inset 0px 0px 0px 40px var(--gold); } }

.success-content h2 {
    margin-bottom: 15px;
}
.success-content p {
    color: var(--text-dim);
    margin-bottom: 30px;
}

/* AT-STAY INFO BOX */
.at-stay-info {
    background: rgba(200, 147, 60, 0.1);
    border: 1px solid rgba(200, 147, 60, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
    animation: fadeIn 0.5s ease;
}
.at-stay-info .info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.at-stay-info p {
    font-size: 1rem;
    color: var(--mist);
    margin-bottom: 10px;
}
.at-stay-info .note {
    font-size: 0.8rem;
    color: var(--gold-lt);
    font-style: italic;
}

/* LOCATION SECTION */
.location-section {
    background: var(--night);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.location-section .address-text {
    color: var(--gold-lt);
    font-size: 0.9rem;
    margin-top: -10px;
    margin-bottom: 30px;
    opacity: 0.8;
}
.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.map-wrapper iframe {
    filter: grayscale(1) invert(90%) contrast(100%) brightness(0.9);
    transition: filter 0.8s var(--ease-fluid);
}
.map-wrapper:hover iframe {
    filter: grayscale(0.5) invert(90%) contrast(100%) brightness(1);
}
.map-overlay-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4);
    background: radial-gradient(circle at center, transparent 30%, rgba(10, 15, 20, 0.3) 100%);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  #nav { 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem 1.2rem 1.2rem; /* Increased right padding to move hamburger left */
    mix-blend-mode: normal; 
    background: transparent;
    transition: background 0.4s;
    width: 100%;
  }

  .nav-logo {
    font-size: 1.2rem;
  }
  
  #nav.nav-active {
    background: rgba(10, 16, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .mobile-nav-toggle { display: flex; margin-right: -5px; }

  /* Loader Refinement */
  .loader-logo { font-size: 1.4rem; letter-spacing: 0.15em; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 50vh; /* Cover half screen from top */
    background: rgba(18, 22, 17, 0.7); /* More transparent for glass feel */
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease-fluid);
    z-index: 900;
  }

  #nav.nav-active .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--ff-serif);
    letter-spacing: 0.2em;
  }

  /* Section Visibility Optimization */
  #cottage, #reviews { 
    height: auto; 
    min-height: 100vh; 
    padding: 10vh 0; 
  }
  .cottage-container, .reviews-container { 
    height: auto; 
    gap: 6vh; 
    padding: 0 1.5rem; 
  }
  .cottage-visual, .reviews-visual { 
    flex: none; 
    width: 100%; 
    margin: 4vh 0; 
    display: flex;
    align-items: center;
  }
  .cottage-header { margin-top: 85px; }
  .cottage-card, .reviews-card { 
    height: 38vh; 
    min-height: 250px; 
  }
  
  /* Ensure sub-content is visible */
  .cottage-steps {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .cottage-step {
    min-width: 100%;
    padding: 1.5rem;
  }

  .about-container, .cottage-container, .food-showcase { grid-template-columns: 1fr; }
  .island-steps {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .island-step {
    padding: 1.2rem;
  }
  #experiences { flex-direction: column; height: auto; }
  .canoe-silhouette { bottom: 1870px; width: 100px; }
  .split-side { padding: 4rem 2rem; }
  .closure-buttons { flex-direction: column; }
  .race-content { margin-left: 2rem; padding: 2rem; }

  /* Auto + Manual Scroll for Activities on Mobile */
  .activities-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none; /* No snapping for smooth auto-scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
    cursor: grab;
  }
  .activities-carousel::-webkit-scrollbar {
    display: none;
  }
  .lotus-grid-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 0 2rem;
    pointer-events: auto;
    transform: none !important; /* Force no GSAP x transform on mobile */
  }
  .lotus-card {
    width: 250px; /* Consistent size for mobile */
    flex-shrink: 0;
  }

  /* Refine Floating CTA for Mobile */
  #magnetic-cta {
    bottom: calc(2rem + 15px);
    right: calc(2rem - 3px);
    width: 80px;
    height: 80px;
  }
  .float-cta-btn {
    width: 75px; 
    height: 75px;
    font-size: 0.55rem;
  }

  /* Refine Booking Modal for Mobile (Centered Version) */
  .modal-content.oyo-style {
    padding: 1.5rem 1rem;
    border-radius: 16px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    max-height: 90vh;
    overflow-y: auto;
    width: 94%;
    bottom: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
  }
  .modal-header h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
  .oyo-label { font-size: 0.5rem; margin-bottom: 0.2rem; }
  .oyo-block { padding: 0.6rem 0.8rem; }
  .booking-step { width: 100%; }
  .details-form { gap: 1rem; }
  .details-form input, .details-form textarea { padding: 0.8rem; font-size: 0.9rem; }
  .summary-card { padding: 1.2rem; margin: 1rem 0; }
  .summary-item { font-size: 0.85rem; }
  .price-tag { font-size: 1.2rem; }
  .success-anim { padding: 20px 0; }
  .checkmark { width: 60px; height: 60px; }
  .result-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
  .result-actions .btn-solid { width: 100%; padding: 1rem; font-size: 0.9rem; }
  .success-content .handwritten-title { font-size: 1.8rem; margin-bottom: 1rem; }

  /* Optimize Footer for Mobile */
  .jetty-planks { 
    flex-direction: column; 
    gap: 1.5rem; 
    text-align: center;
    justify-content: center;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; font-size: 0.7rem; }

  /* Disable custom cursor on mobile */
  #cursor, #cursor-ring { display: none !important; }
  /* Fix Get Directions color on mobile */
  .btn-link { color: var(--gold); }
  body { cursor: auto !important; }
}

/* ---- FAQ SECTION ---- */
.faq-section {
  background: linear-gradient(to bottom, var(--night), #0e1a22);
  padding: 10rem 0;
}
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(200, 147, 60, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s var(--ease-fluid);
}
.faq-item[open] {
  border-color: rgba(200, 147, 60, 0.3);
  background: rgba(200, 147, 60, 0.04);
}
.faq-item summary {
  padding: 1.5rem 2rem;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--mist);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: var(--gold-lt);
}
.faq-item p {
  padding: 0 2rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(247, 244, 239, 0.7);
}
.faq-item p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.faq-item p a:hover {
  color: var(--gold-lt);
}
@media (max-width: 768px) {
  .faq-section { padding: 6rem 0; }
  .faq-item summary { padding: 1.2rem 1.5rem; font-size: 1rem; }
  .faq-item p { padding: 0 1.5rem 1.2rem; font-size: 0.9rem; }
}
