/* ============================================================
   guest.css — Clean, White, Modern Guest-facing styles
   ============================================================ */

:root {
  --brand-primary: #0f766e; /* Teal */
  --brand-secondary: #0d9488; /* Seafoam/Light Teal */
  --brand-accent: #14b8a6;
  --brand-bg: #ffffff;
  --brand-surface: #f8fafc;
  --brand-border: #e2e8f0;
  --brand-text: #0f172a;
  --brand-text-muted: #64748b;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --danger: #ef4444;
  --danger-bg: #fef2f2;
  --danger-border: #fecaca;
  --danger-text: #b91c1c;
  --warning: #f59e0b;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --card-bg-fallback: #ffffff;
}

[data-bg-style="light"] {
  --brand-bg: #FAF9F6;
  --brand-surface: #F5F3EF;
  --brand-border: #E8E5DF;
  --brand-text: #1C1917;
  --brand-text-muted: #78716C;
  --nav-bg: rgba(250, 249, 246, 0.85);
  --card-bg-fallback: #FFFFFF;
  --danger-bg: #fef2f2;
  --danger-border: #fecaca;
  --danger-text: #b91c1c;
}

[data-bg-style="dark"] {
  --brand-bg: #09090B;
  --brand-surface: #18181B;
  --brand-border: #27272A;
  --brand-text: #FAFAFA;
  --brand-text-muted: #A1A1AA;
  --nav-bg: rgba(9, 9, 11, 0.85);
  --card-bg-fallback: #18181B;
  --danger-bg: rgba(239, 68, 68, 0.15);
  --danger-border: rgba(239, 68, 68, 0.3);
  --danger-text: #fca5a5;
}

[data-bg-style="glass"] {
  --brand-bg: #F8FAFC;
  --brand-surface: rgba(255, 255, 255, 0.45);
  --brand-border: rgba(15, 23, 42, 0.08);
  --brand-text: #0F172A;
  --brand-text-muted: #64748B;
  --nav-bg: rgba(255, 255, 255, 0.5);
  --card-bg-fallback: rgba(255, 255, 255, 0.7);
  --danger-bg: rgba(239, 68, 68, 0.15);
  --danger-border: rgba(239, 68, 68, 0.3);
  --danger-text: #ef4444;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  margin: 0; padding: 0;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--brand-bg, #ffffff);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
}
.loader-logo {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-text, #0f172a);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  animation: pulse 2s infinite ease-in-out;
}
.loader-wave {
  width: 50px;
  height: 3px;
  background: var(--brand-primary, #0f766e);
  margin: 0 auto;
  border-radius: 3px;
  animation: wave 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes wave {
  0% { transform: scaleX(0.2); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0.2); }
}

/* NAV */
.modern-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem; background: var(--nav-bg, rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-border);
  transition: all 0.3s ease;
}

.modern-nav.scrolled {
  padding: 0.8rem 4rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-logo {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600;
  color: var(--brand-text); text-decoration: none; display: flex; gap: 0.3rem;
}
.nav-logo span { font-weight: 400; color: var(--brand-text-muted); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--brand-text-muted);
  text-decoration: none; transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--brand-text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.btn-primary {
  background: var(--brand-text); color: var(--brand-bg, white); border: none;
  padding: 0.75rem 1.8rem; border-radius: 50px; font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 500; cursor: pointer; text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--brand-primary); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.2);
}

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background-color: var(--brand-surface);
  background-image: none; /* CMS sets the real background via JS — no fallback needed since preloader covers initial load */
  background-size: cover; background-position: center;
  padding-top: 80px; text-align: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--hero-overlay-start, rgba(255,255,255,0.7)) 0%, var(--hero-overlay-end, rgba(255,255,255,0.95)) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 2rem; margin-bottom: 3rem; }

/* VIDEO BACKGROUND (for .mp4 section backgrounds) */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
section { position: relative; overflow: hidden; }

.hero-badge {
  display: inline-block; background: var(--brand-bg, white); border: 1px solid var(--brand-border);
  color: var(--brand-text-muted); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1.5rem;
  border-radius: 50px; margin-bottom: 2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.hero h1 {
  font-family: var(--font-serif); font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 400; color: var(--brand-text); line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--brand-text); }

.hero-sub {
  font-size: 1.2rem; color: var(--brand-text-muted); font-weight: 300;
  line-height: 1.6; max-width: 600px; margin: 0 auto;
}

/* BOOKING ENGINE (Standalone Section) */
.booking-section {
  padding: 5rem 0; background: var(--brand-surface);
  position: relative; z-index: 10;
}
.booking-section .container {
  max-width: 1000px;
}

.booking-card {
  background: var(--card-bg, var(--card-bg-fallback, white)); border-radius: 24px; color: var(--card-text, inherit); font-family: var(--card-font-family, inherit);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08); overflow: hidden;
  border: 1px solid var(--brand-border);
}

.booking-tabs { display: flex; border-bottom: 1px solid var(--brand-border); }
.booking-tab {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex: 1; padding: 1.2rem; text-align: center; font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 500; color: var(--brand-text-muted);
  cursor: pointer; transition: all 0.3s ease; background: var(--brand-surface);
}
.booking-tab.active { background: var(--card-bg-fallback, var(--brand-bg)); color: var(--brand-primary-safe, var(--brand-primary)); box-shadow: inset 0 3px 0 var(--brand-primary); font-weight: 600; }
.booking-tab svg {
  transition: transform 0.3s ease;
  color: var(--brand-text-muted);
}
.booking-tab.active svg {
  color: var(--brand-primary-safe, var(--brand-primary));
  transform: scale(1.1);
}
.booking-tab-pane { display: none; padding: 2.5rem; }
.booking-tab-pane.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* COMMON SECTIONS */
section { padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 600px; margin-left: auto; margin-right: auto; padding: 0 1.5rem; }
.section-label { font-size: 0.8rem; font-weight: 600; color: var(--brand-text-muted, #64748b); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 1rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 400; color: var(--brand-text); margin-bottom: 1.5rem; line-height: 1.2; }
.section-title em { font-style: italic; color: var(--brand-text); opacity: 0.9; }
.section-sub { font-size: 1.1rem; color: var(--brand-text-muted); line-height: 1.7; }

/* CMS Inline Style Priority — let Site Editor colors/sizes take precedence */
/* font[color] tags already override parent CSS naturally */
/* em inside CMS-injected titles should not force brand color over editor color */
.section-title[data-sc] em,
.hero h1[data-sc] em { color: inherit; opacity: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* REVIEWS */
.reviews-section { padding: 8rem 0; overflow: hidden; background: var(--brand-bg); }
.reviews-track-wrap { position: relative; width: 100%; overflow: hidden; padding: 2rem 0; }
.reviews-track { display: flex; gap: 2rem; width: max-content; animation: marquee 60s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: var(--card-bg, var(--brand-surface)); border: 1px solid var(--brand-border); color: var(--card-text, inherit); font-family: var(--card-font-family, inherit);
  padding: 2.5rem; border-radius: 24px; width: 450px; flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; justify-content: center;
}
.review-card:hover { border-color: var(--brand-primary-safe, var(--brand-primary)); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.review-stars { color: var(--warning); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 1.1rem; color: var(--brand-text); font-style: italic; margin-bottom: 1.5rem; line-height: 1.6; }
.review-guest { font-size: 0.9rem; color: var(--brand-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ROOMS */
.rooms-section { background: var(--brand-surface); }
.rooms-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 2.5rem; 
  max-width: 1000px; 
  margin: 0 auto; 
}
.rooms-grid > .room-card:only-child {
  grid-column: 1 / -1;
  max-width: 480px;
  justify-self: center;
  width: 100%;
}
.room-card {
  background: var(--card-bg, var(--card-bg-fallback, white)); border-radius: 20px; overflow: hidden; color: var(--card-text, inherit); font-family: var(--card-font-family, inherit);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  border: 1px solid var(--brand-border);
  display: flex; flex-direction: column; height: 100%;
}
.room-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); border-color: var(--brand-primary-safe, var(--brand-primary)); }
.room-img { aspect-ratio: 4/3; background: var(--brand-surface); position: relative; overflow: hidden; }
.room-img.has-photo img, .room-img.has-photo video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.room-card:hover .room-img.has-photo img, .room-card:hover .room-img.has-photo video { transform: scale(1.05); }

/* Room Slider CSS */
.room-slider-container { width: 100%; height: 100%; position: relative; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.room-slider-container::-webkit-scrollbar { display: none; }
.room-slide { flex: 0 0 100%; scroll-snap-align: start; position: relative; width: 100%; height: 100%; }
.room-slide img, .room-slide video { width: 100%; height: 100%; object-fit: cover; }
.room-slider-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 5; pointer-events: none; }
.room-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); box-shadow: 0 1px 3px rgba(0,0,0,0.3); transition: background 0.3s; }
.room-slider-dot.active { background: white; }

.room-badge { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--brand-bg, white); font-size: 0.75rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 50px; color: var(--brand-text); box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 2; }
.room-body { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.room-name { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--brand-text); }
.room-capacity { font-size: 0.9rem; color: var(--brand-text-muted); margin-bottom: 1.5rem; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.amenity-tag { background: var(--brand-surface); color: var(--brand-text-muted); font-size: 0.8rem; padding: 0.4rem 1rem; border-radius: 50px; border: 1px solid var(--brand-border); }
.room-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--brand-border); padding-top: 1.5rem; margin-top: auto; }
.price-amount { font-size: 1.5rem; font-weight: 600; color: var(--brand-text); }
.price-per { font-size: 0.85rem; color: var(--brand-text-muted); }
.btn-room { background: var(--brand-surface); color: var(--brand-text); padding: 0.7rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: all 0.3s; border: 1px solid var(--brand-border); }
.btn-room:hover { background: var(--brand-primary-safe, var(--brand-primary)); color: var(--brand-primary-text, white); border-color: var(--brand-primary-safe, var(--brand-primary)); }

/* ACTIVITIES */
.activities-section { background: var(--brand-bg); }
.activities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.activity-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}
.activity-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--brand-primary-safe, var(--brand-primary));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.activity-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-surface);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.activity-card:hover .activity-img {
  transform: scale(1.1);
}
.activity-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.activity-svg-icon {
  width: 64px;
  height: 64px;
  color: var(--brand-text-muted);
  opacity: 0.8;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}
.activity-card:hover .activity-svg-icon {
  transform: scale(1.1) rotate(5deg);
}
.activity-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  transition: background 0.4s ease;
  z-index: 2;
  text-align: left;
}
.activity-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}
.activity-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* PLACES */
.dining-section { background: var(--brand-surface); }
.dining-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; }
.dining-card { display: flex; background: var(--card-bg, var(--card-bg-fallback, white)); color: var(--card-text, inherit); font-family: var(--card-font-family, inherit); border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--brand-border); transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease; }
.dining-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); border-color: var(--brand-primary-safe, var(--brand-primary)); }
.dining-img { width: 40%; background: var(--brand-surface); display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.dining-img::before { content: ""; position: absolute; inset: 0; background: inherit; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); z-index: 0; }
.dining-card:hover .dining-img::before { transform: scale(1.05); }
.dining-emoji { position: relative; z-index: 1; transition: transform 0.4s ease; }
.dining-card:hover .dining-emoji { transform: scale(1.1); }
.dining-body { width: 60%; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; z-index: 1; }
.dining-type { font-size: 0.8rem; font-weight: 600; color: var(--brand-primary-safe, var(--brand-primary)); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.dining-name { font-family: var(--font-serif); font-size: 1.8rem; color: var(--brand-text); margin-bottom: 1rem; }
.dining-desc { font-size: 0.95rem; color: var(--brand-text-muted); line-height: 1.6; }

/* LOCATION / CONTACT */
.location-section { background: var(--brand-bg); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 0 auto; max-width: 1000px; }
.contact-item { 
  display: flex; flex-direction: column; align-items: center; text-align: center; 
  padding: 2.5rem 1.5rem; border-radius: 16px; 
  border: 1px solid var(--brand-border); background: var(--brand-surface);
  transition: all 0.3s ease;
}
.contact-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); border-color: var(--brand-primary-safe, var(--brand-primary)); }
.contact-icon { width: 60px; height: 60px; margin-bottom: 1.5rem; border-radius: 50%; background: var(--brand-bg); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--brand-text); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.contact-icon svg { width: 32px; height: 32px; }
.contact-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-text-muted); margin-bottom: 0.5rem; }
.contact-value { font-size: 1.1rem; color: var(--brand-text); font-weight: 600; }

/* FOOTER */
.modern-footer { background: var(--brand-text); color: white; padding: 1.5rem 0 1rem; text-align: center; }
.footer-logo { display: none; }
.footer-links { display: flex; justify-content: center; gap: 3rem; list-style: none; padding: 0; margin: 0 0 1rem 0; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }

/* CHAT WIDGET */
.chat-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; }
.chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--brand-text); color: white; border: none; cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.chat-toggle:hover { transform: scale(1.05); background: var(--brand-primary); }
.chat-window { display: none; position: absolute; bottom: 80px; right: 0; width: 360px; height: 520px; background: var(--brand-bg); color: var(--brand-text); border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.12); flex-direction: column; overflow: hidden; border: 1px solid var(--brand-border); }
.chat-window.open { display: flex; animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.chat-header {
  background: linear-gradient(135deg, var(--brand-text) 0%, color-mix(in srgb, var(--brand-text) 85%, var(--brand-primary)) 100%);
  color: var(--brand-bg, white); padding: 0.65rem 0.9rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  gap: 0.5rem; min-height: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-header-info { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; flex: 1; }
.chat-header-title {
  font-size: 0.85rem; font-weight: 600; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 200px;
}
.chat-header-status {
  font-size: 0.6rem; opacity: 0.75; font-weight: 400; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.chat-header-actions {
  display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0;
}
.chat-header-actions button {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
  color: white; border-radius: 6px; cursor: pointer;
  font-size: 0.65rem; padding: 0.25rem 0.5rem; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  line-height: 1.3; white-space: nowrap;
}
.chat-header-actions button:hover {
  background: rgba(255,255,255,0.22); transform: scale(1.03);
}
.chat-header-actions .chat-close-btn {
  width: 24px; height: 24px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.85rem; font-weight: 300;
  background: rgba(255,255,255,0.08); border: none;
}
.chat-header-actions .chat-close-btn:hover { background: rgba(255,59,48,0.5); }
.chat-body { flex: 1; padding: 1.5rem; overflow-y: auto; background: var(--brand-surface); display: flex; flex-direction: column; gap: 1rem; }
.msg-bot { background: var(--brand-bg); border: 1px solid var(--brand-border); color: var(--brand-text); align-self: flex-start; padding: 1rem; border-radius: 12px; border-bottom-left-radius: 2px; font-size: 0.9rem; max-width: 85%; }
.msg-guest { background: var(--brand-surface); border: 1px solid var(--brand-border); color: var(--brand-text); align-self: flex-end; padding: 1rem; border-radius: 12px; border-bottom-right-radius: 2px; font-size: 0.9rem; max-width: 85%; }
.msg-sys { align-self: center; background: var(--brand-border); color: var(--brand-text-muted); padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.75rem; text-align: center; max-width: 90%; }

/* Chat message row — avatar outside bubble (messaging app style) */
.chat-msg-row { display: flex; gap: 0.5rem; align-items: flex-end; max-width: 88%; }
.chat-msg-row.row-bot { align-self: flex-start; flex-direction: row; }
.chat-msg-row.row-guest { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-row .chat-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--brand-border); }
.chat-msg-row .chat-msg { max-width: 100%; align-self: auto; }
.chat-input-area { padding: 1rem; background: var(--brand-bg); border-top: 1px solid var(--brand-border); display: flex; gap: 0.8rem; }
.chat-input { flex: 1; padding: 0.8rem 1rem; border: 1px solid var(--brand-border); border-radius: 50px; outline: none; font-family: var(--font-sans); font-size: 0.9rem; background: var(--brand-surface); }
.chat-send { background: var(--brand-text); color: white; border: none; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.pc-field { width: 100%; padding: 0.6rem 0.9rem; border: 1px solid var(--brand-border); border-radius: 10px; outline: none; font-family: var(--font-sans); font-size: 0.85rem; background: var(--brand-surface); box-sizing: border-box; }
.pc-field:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 2px rgba(78,198,192,0.15); }

/* Typing Indicator Dot Animation */
.typing-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-text-muted, #64748b);
  margin-right: 3px;
  animation: typingBounce 1.4s infinite both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* CALENDAR & ROOM SELECTOR OVERRIDES (to match light theme) */
.cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cal-nav { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brand-text); padding: 0 0.5rem; }
.cal-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--brand-text); font-weight: 500; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; text-align: center; }
.cal-dow { font-size: 0.8rem; font-weight: 600; color: var(--brand-text-muted); margin-bottom: 0.5rem; text-transform: uppercase; }
.cal-day { font-family: var(--font-sans); font-size: 0.9rem; border-radius: 50%; color: var(--brand-text); padding: 0.5rem 0; min-height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.cal-day.empty { cursor: default; }
.cal-day.unavailable { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.cal-day.past { color: var(--brand-border); cursor: default; }
.cal-day.today:not(.selected-in):not(.selected-out) { font-weight: bold; border: 2px solid var(--brand-primary); border-radius: 50% !important; }
.cal-day.selected-in { background: var(--brand-primary) !important; color: white !important; border-top-left-radius: 50% !important; border-bottom-left-radius: 50% !important; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; }
.cal-day.selected-out { background: var(--brand-primary) !important; color: white !important; border-top-right-radius: 50% !important; border-bottom-right-radius: 50% !important; border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important; }
.cal-day.in-range { background: rgba(15, 118, 110, 0.08) !important; color: var(--brand-primary) !important; border-radius: 0 !important; }
.cal-day:hover:not(.unavailable):not(.empty):not(.past):not(.selected-in):not(.selected-out):not(.in-range) { background: rgba(15, 118, 110, 0.1); border-radius: 50%; }

.room-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.room-option { border: 1px solid var(--brand-border); border-radius: 16px; padding: 1rem; text-align: center; overflow: hidden; display: flex; flex-direction: column; }
.room-option.selected { border-color: var(--brand-primary); background: rgba(15,118,110,0.03); box-shadow: 0 0 0 2px var(--brand-primary); }
.room-option.unavail-room { opacity: 0.5; }
.room-opt-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; margin-bottom: 0.8rem; }
.room-opt-emoji { font-size: 2.5rem; margin-bottom: 0.8rem; }
.room-opt-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 0.8rem; }
.avail-badge { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.unavail-badge { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.room-opt-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.3rem; }
.room-opt-price { font-size: 0.9rem; color: var(--brand-text); font-weight: 600; margin-bottom: 0.2rem; }
.room-opt-cap { font-size: 0.85rem; color: var(--brand-text-muted); }
.room-opt-total { font-size: 0.85rem; font-weight: 600; color: var(--brand-text); margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--brand-border); }

.booking-summary { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: 12px; padding: 1.5rem; margin-top: 2rem; }
.summary-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--brand-border); font-size: 0.95rem; }
.summary-row:last-child { border-bottom: none; font-weight: 600; padding-bottom: 0; }
.summary-label { color: var(--brand-text-muted); font-weight: normal; }

.floating-group { position: relative; margin-bottom: 1rem; width: 100%; }
.floating-group label {
  position: absolute; top: 0.95rem; left: 1rem; font-size: 0.95rem;
  color: var(--brand-text-muted); pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease, font-weight 0.2s ease;
  transform-origin: left top;
}
.floating-group input, .floating-group textarea {
  border: 1px solid var(--brand-border); border-radius: 12px; width: 100%;
  background: var(--brand-bg); color: var(--brand-text); padding: 1.5rem 1rem 0.5rem; font-family: var(--font-sans);
  box-sizing: border-box; outline: none; font-size: 1rem;
  transition: border-color 0.2s ease;
}
.floating-group input:focus, .floating-group textarea:focus { border-color: var(--brand-primary); }
.floating-group input:focus + label,
.floating-group textarea:focus + label {
  transform: translateY(-0.65rem) scale(0.75);
  color: var(--brand-primary);
  font-weight: 600;
}
.floating-group input:not(:placeholder-shown) + label,
.floating-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.65rem) scale(0.75);
  color: var(--brand-text-muted);
  font-weight: 600;
}
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; margin-bottom: 1rem; }

.btn-reserve {
  background: var(--brand-primary); color: white; border: none; width: 100%;
  padding: 1.2rem; border-radius: 12px; font-family: var(--font-heading); font-size: 1rem;
  font-weight: 500; margin-top: 2rem; cursor: pointer; transition: all 0.3s;
}
.btn-reserve:hover { background: var(--brand-text); transform: translateY(-2px); }

/* MOBILE */
.mobile-nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.mobile-nav-toggle .bar { width: 28px; height: 2px; background: var(--brand-text); transition: all 0.3s; transform-origin: left center; }
.mobile-nav-toggle.open .bar:nth-child(1) { transform: rotate(45deg); }
.mobile-nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open .bar:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .hero h1 { font-size: 3rem; }
  .booking-section { padding: 3rem 0; }
  .hero-content { margin-bottom: 0; }
  .location-inner, .dining-grid { grid-template-columns: 1fr; }
  .modern-nav { padding: 1rem 1.5rem; }
  .modern-nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(12px);
    flex-direction: column; 
    padding: 2rem; 
    gap: 1.5rem; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); 
    border-bottom: 1px solid var(--brand-border);
    text-align: center;
  }
  .nav-links.open { display: flex; }
  .btn-primary { display: none; }
  .mobile-nav-toggle { display: flex; }
  .cal-wrap { grid-template-columns: 1fr; }
  .desktop-only { display: none; }
  .room-selector { grid-template-columns: repeat(2, 1fr); }

  /* Enforce single-column for text boxes/forms on mobile */
  .form-row { grid-template-columns: 1fr; }

  /* Make dining cards single-column with multiple rows */
  .dining-card { flex-direction: column; }
  .dining-img { width: 100%; height: 250px; }
  .dining-body { width: 100%; padding: 1.5rem; }

  /* Adjust chat window for smaller screens */
  .chat-widget { right: 1rem; bottom: 1rem; }
  .chat-window { width: calc(100vw - 2rem); right: 0; bottom: 75px; box-sizing: border-box; }

  /* ── FIX: Eliminate right-side gap on mobile ── */

  /* Container — tighter padding */
  .container { padding: 0 1rem; }

  /* Sections — prevent any child overflow */
  section { padding: 4rem 0; overflow-x: hidden; }

  /* Rooms grid — single column on mobile */
  .rooms-grid { grid-template-columns: 1fr !important; }
  .rooms-grid > .room-card:only-child { max-width: 100%; }

  /* Activities grid — single column */
  .activities-grid { grid-template-columns: 1fr !important; }

  /* Dining grid — already 1fr above, enforce it */
  .dining-grid { grid-template-columns: 1fr !important; }

  /* Contact grid — single column */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Review cards — constrain width to viewport */
  .review-card { width: 85vw; min-width: unset; }

  /* Footer links — wrap and reduce gap */
  .footer-links { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .modern-footer { padding: 1.25rem 1rem 1rem; }

  /* Section headers — tighter */
  .section-header { margin-bottom: 2.5rem; }
  .section-title { font-size: clamp(2rem, 5vw, 2.5rem); }

  /* Booking card — no overflow */
  .booking-card { border-radius: 16px; }
  .booking-tab-pane { padding: 1.5rem; }

  /* Hero — tighter padding */
  .hero { padding-top: 70px; min-height: 85vh; }
}

/* FLAGGED GUEST MODAL */
.flag-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.flag-modal-overlay.open { display: flex; }
.flag-modal { background: white; border-radius: 20px; padding: 2.5rem; max-width: 450px; text-align: center; border-top: 6px solid var(--danger); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.flagged-warning { background: var(--danger-bg); border: 1px solid var(--danger-border); color: var(--danger-text); padding: 1rem; border-radius: 12px; margin-bottom: 1rem; font-size: 0.9rem; display: none; }
.flagged-warning.show { display: block; }

/* MODAL OVERLAYS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.open {
  display: flex;
}

.story-modal {
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  border-radius: 24px;
  background: var(--card-bg, var(--card-bg-fallback, white));
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.btn-ghost {
  background: none;
  border: 1px solid var(--brand-border);
  color: var(--brand-text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: var(--brand-surface);
  color: var(--brand-text);
  border-color: var(--brand-text);
}

/* AVATAR PICKER */
.avatar-option {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  cursor: pointer; border: 3px solid transparent;
  transition: all 0.2s ease; display: flex; align-items: center;
  justify-content: center; background: var(--brand-surface); flex-shrink: 0;
}
.avatar-option img {
  width: 100%; height: 100%; object-fit: cover;
}
.avatar-option:hover {
  border-color: var(--brand-primary); transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.avatar-option.selected {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px var(--brand-primary), 0 4px 12px rgba(0,0,0,0.15);
  transform: scale(1.1);
}
.avatar-upload-btn {
  background: var(--brand-border); border: 2px dashed var(--brand-text-muted);
}
.avatar-upload-btn:hover {
  background: var(--brand-surface); border-color: var(--brand-primary);
}
.avatar-grid::-webkit-scrollbar { width: 4px; }
.avatar-grid::-webkit-scrollbar-thumb { background: var(--brand-border); border-radius: 4px; }



/* WEATHER PILL */
#weatherWidget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9998;
  display: none;
  animation: fadeIn 0.5s ease;
}
.weather-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.2rem;
  background: var(--nav-bg, rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--brand-border);
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.weather-icon {
  width: 32px;
  height: 32px;
}
.weather-info {
  display: flex;
  flex-direction: column;
}
.weather-temp {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-text);
  line-height: 1;
}
.weather-condition {
  font-size: 0.75rem;
  color: var(--brand-text-muted);
}

@media (max-width: 900px) {
  #weatherWidget {
    bottom: 1rem;
    left: 1rem;
  }
  .weather-pill {
    padding: 0.5rem 1rem;
    gap: 0.6rem;
  }
}
@media (max-width: 560px) {


  .room-selector { grid-template-columns: 1fr; }
}

/* DIRECT BOOKING BENEFITS */
.direct-benefits-section {
  padding: 5rem 0;
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  position: relative;
  z-index: 5;
}
.direct-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  text-align: center;
}
.benefit-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  border-radius: 20px;
  background: var(--card-bg, var(--brand-surface));
  border: 1px solid var(--brand-border);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-primary-safe, var(--brand-primary));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}
.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
  display: block;
}
.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-text);
  margin: 0.2rem 0;
}
.benefit-desc {
  font-size: 0.88rem;
  color: var(--brand-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* FLOATING BOOKING BAR */
.floating-booking-bar {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9997;
  background: var(--nav-bg, rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--brand-border);
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
  max-width: 90vw;
}
.floating-booking-bar.show {
  transform: translateX(-50%) translateY(0);
}
.floating-booking-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.floating-booking-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.floating-booking-dates-display {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-text);
  white-space: nowrap;
}
.floating-booking-guests-display {
  font-size: 0.72rem;
  color: var(--brand-text-muted);
}
.floating-booking-cta {
  border-radius: 50px !important;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem !important;
  background: var(--brand-primary-safe, var(--brand-primary)) !important;
  color: var(--brand-primary-text, white) !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.floating-booking-cta:hover {
  background: var(--brand-text) !important;
  color: var(--brand-bg, white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .floating-booking-bar {
    bottom: 1.5rem;
    padding: 0.5rem 1rem;
  }
  .floating-booking-container {
    gap: 0.8rem;
  }
  .floating-booking-dates-display {
    font-size: 0.8rem;
  }
  .floating-booking-guests-display {
    font-size: 0.7rem;
  }
  .floating-booking-cta {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem;
  }
}

/* ============================================================
   SUSPENSION OVERLAY STYLES
   ============================================================ */
.susp-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  background: linear-gradient(135deg, #09090B 0%, #18181B 50%, #09090B 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-sans) !important;
}
.susp-bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.susp-card-box {
  position: relative;
  z-index: 2;
  background: rgba(24, 24, 27, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.susp-icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.susp-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.susp-badge-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
}
.susp-main-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.susp-desc-text {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.susp-line-divider {
  width: 60px;
  height: 2px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.3), transparent);
}
.susp-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.susp-action-link:hover {
  background: rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-1px);
}
.susp-footer-note {
  margin-top: 2rem;
  font-size: 0.7rem;
  color: #475569;
  letter-spacing: 0.05em;
}

/* ============================================================
   CLEAN SEPARATED WIZARD & HEADCOUNT STYLES
   ============================================================ */
.wizard-headcount-card {
  display: none;
  background: var(--brand-surface);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--brand-border);
}
.wizard-headcount-header {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--brand-text);
  margin-bottom: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wizard-headcount-sub {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--brand-text-muted);
  font-weight: normal;
}
.wizard-headcount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  text-align: left;
}
.headcount-field-group {
  margin-bottom: 0;
}
.headcount-field-label {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-text-muted);
}
.headcount-field-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.btn-headcount-control {
  width: 32px;
  height: 32px;
  padding: 0;
  font-weight: bold;
  border: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-bg);
  color: var(--brand-text);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-headcount-control:hover {
  background: var(--brand-surface);
  border-color: var(--brand-primary);
}
.headcount-field-display {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
  color: var(--brand-text);
}
.wizard-addons-banner {
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--brand-text);
}
.wizard-addons-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.wizard-confirm-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.wizard-confirm-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--brand-text-muted);
  font-weight: 500;
}
.wizard-timeline-step-active {
  color: var(--brand-primary);
  font-weight: 600;
}
.wizard-confirm-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.wizard-confirm-fields {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wizard-confirm-summary-col {
  flex: 1 1 300px;
}
.wizard-confirm-summary-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}
.wizard-legal-container {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--brand-text);
}
.wizard-legal-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-align: left;
}
.wizard-legal-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}
.wizard-legal-link {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.wizard-secure-payment-badge {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--brand-text);
  font-weight: 500;
  font-size: 0.8rem;
}
.wizard-cancellation-policy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--brand-text-muted);
}
.btn-wizard-action {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.1rem;
  padding: 1rem;
}

/* ============================================================
   STORY MODAL & GUEST SHOWCASE STYLES
   ============================================================ */
.story-trigger-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.btn-story-trigger {
  width: auto;
  padding: 0.8rem 2rem;
}
.story-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.story-form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--brand-text);
}
.story-form-subtitle {
  color: var(--brand-text-muted);
  font-size: 0.9rem;
}
.story-avatar-picker-group {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.story-avatar-picker-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-surface);
  border: 3px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--brand-text-muted);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease;
}
.story-avatar-picker-preview:hover {
  border-color: var(--brand-primary);
}
.story-avatar-picker-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 28px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.story-avatar-picker-popup {
  display: none;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: var(--card-bg-fallback, white);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 100;
  text-align: left;
}
.story-avatar-popup-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-text-muted);
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.story-avatar-popup-close {
  padding: 0.2rem 0.4rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  color: var(--brand-text-muted);
}
.story-avatar-popup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
  gap: 0.4rem;
  overflow-y: auto;
  max-height: 160px;
  padding-right: 4px;
}
.story-photo-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--brand-text-muted);
}
.story-photo-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px dashed var(--brand-border);
  border-radius: 12px;
  background: var(--brand-surface);
  color: var(--brand-text);
  box-sizing: border-box;
}
.story-photo-note {
  font-size: 0.75rem;
  color: var(--brand-text-muted);
  margin-top: 0.4rem;
}
.story-modal-buttons {
  display: flex;
  gap: 1rem;
}
.story-modal-btn-cancel {
  flex: 1;
  padding: 0.8rem;
}
.story-modal-btn-submit {
  flex: 2;
  margin-top: 0;
  padding: 0.8rem;
}
.story-pagination-container {
  text-align: center;
  margin-top: 2rem;
}
.btn-story-pagination {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--brand-border);
  margin: 0 0.5rem;
}

/* ============================================================
   LOCATION, LIGHTBOX & SUCCESS MODAL STYLES
   ============================================================ */
.location-map-container {
  display: none;
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--brand-border);
  position: relative;
}
.location-map-iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 400px;
}
.location-map-link-row {
  display: none;
  text-align: center;
  margin-top: 1.5rem;
}
.btn-location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
}
.lightbox-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}
.lightbox-modal-close:hover {
  color: var(--danger);
}
.lightbox-modal-content {
  width: 90vw;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}
.lightbox-modal-controls {
  margin-top: 20px;
  display: flex;
  gap: 1rem;
}
.btn-lightbox-control {
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.success-modal-card {
  max-width: 500px;
  width: 90%;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}
.success-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brand-text-muted);
  transition: color 0.2s ease;
}
.success-modal-close:hover {
  color: var(--brand-text);
}
.success-modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.success-modal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--brand-text);
}
.success-modal-subtitle {
  color: var(--brand-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.success-modal-details {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--brand-text);
}
.btn-success-modal-action {
  width: 100%;
}

/* ============================================================
   CURATED EXPERIENCES SECTION STYLES
   ============================================================ */
.experiences-section {
  padding: 8rem 0;
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  position: relative;
  z-index: 5;
}
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.experience-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.experience-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.experience-img-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.experience-card:hover .experience-img-emoji {
  transform: scale(1.15);
}
.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  transition: background 0.4s ease;
}
.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.experience-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: white;
}
.experience-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 1rem;
  opacity: 0.9;
}
.experience-action {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}
.experience-card:hover .experience-action {
  gap: 0.8rem;
}
