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

:root {
  --gold: #c9a96e;
  --gold2: #a8833a;
  --gold-light: #e8d5a3;
  --gold-glow: rgba(201,169,110,0.15);
  --dark: #0a0805;
  --dark2: #12100d;
  --dark3: #1c1a16;
  --dark4: #2a2720;
  --white: #faf8f4;
  --cream: #f5f0e8;
  --muted: #8c8679;
  --border: rgba(201,169,110,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

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

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
  opacity: 0.6;
}
a, button, .room-card, .amenity-card, .g-item {
  cursor: none;
}

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  color: var(--gold); letter-spacing: 8px;
  animation: fadeIn 0.8s ease;
}
.loader-bar {
  width: 200px; height: 1px;
  background: var(--dark4);
}
.loader-fill {
  height: 100%; width: 0;
  background: var(--gold);
  transition: width 0.05s linear;
}
.loader-tagline {
  font-size: 0.7rem; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10,8,5,0.96);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--gold); letter-spacing: 4px;
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--white);
  text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 24px; }

/* LANG SWITCHER */
.lang-switcher { position: relative; }
.lang-active {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
  color: var(--muted); cursor: none;
  padding: 6px 12px; border: 1px solid var(--border);
  border-radius: 2px; transition: all 0.2s;
}
.lang-active:hover { color: var(--gold); border-color: var(--gold); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 4px; min-width: 140px;
  display: none; flex-direction: column;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.lang-switcher:hover .lang-dropdown { display: flex; }
.lang-opt {
  padding: 10px 16px; font-size: 0.75rem; font-weight: 500;
  color: var(--muted); cursor: none; transition: all 0.15s;
}
.lang-opt:hover { color: var(--gold); background: var(--gold-glow); }

.nav-cta {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 12px 28px;
  text-decoration: none; transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mm-links { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mm-links a {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300; letter-spacing: 2px;
  color: var(--white); text-decoration: none; transition: color 0.2s;
}
.mm-links a:hover { color: var(--gold); }
.mm-cta {
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important; font-weight: 600 !important;
  letter-spacing: 3px !important; text-transform: uppercase;
  background: var(--gold); color: var(--dark) !important;
  padding: 14px 36px; margin-top: 16px;
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: slowZoom 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,8,5,0.3) 0%,
    rgba(10,8,5,0.2) 40%,
    rgba(10,8,5,0.7) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300; line-height: 0.9;
  letter-spacing: -2px; margin-bottom: 28px;
}
.ht-1 {
  display: block; font-style: italic; color: var(--gold-light);
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.ht-2 {
  display: block; color: var(--white);
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-sub {
  font-size: 0.9rem; font-weight: 300; letter-spacing: 1px;
  color: rgba(255,255,255,0.75); max-width: 520px;
  margin: 0 auto 40px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 1s forwards;
}
.btn-gold {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 16px 40px;
  text-decoration: none; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light); transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-gold { position: relative; z-index: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.4); }
.btn-ghost {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white);
  background: transparent; padding: 16px 40px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-awards {
  position: absolute; bottom: 120px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 20px;
  font-size: 0.65rem; letter-spacing: 1.5px; color: rgba(255,255,255,0.6);
  opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards;
  white-space: nowrap;
}
.award-sep { color: var(--gold); }
.hero-nav {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px; z-index: 2;
}
.slide-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); width: 36px; height: 36px;
  cursor: none; font-size: 1rem; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.slide-btn:hover { border-color: var(--gold); color: var(--gold); }
.slide-dots { display: flex; gap: 8px; }
.slide-dot {
  width: 20px; height: 1px; background: rgba(255,255,255,0.3);
  transition: all 0.3s; cursor: none;
}
.slide-dot.active { background: var(--gold); width: 36px; }
.hero-scroll {
  position: absolute; right: 40px; bottom: 50%;
  transform: translateY(50%) rotate(90deg);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.6rem; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 48px; height: 1px; background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{width:48px;opacity:1} 50%{width:24px;opacity:0.5} }

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

/* ── BOOKING BAR ── */
.booking-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px;
}
.booking-inner { max-width: 1200px; margin: 0 auto; }
.booking-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 300;
  color: var(--gold); letter-spacing: 2px;
  margin-bottom: 24px;
}
.booking-fields {
  display: flex; align-items: center;
  gap: 0; flex-wrap: wrap;
  background: var(--dark3);
  border: 1px solid var(--border);
}
.bf {
  flex: 1; min-width: 160px;
  padding: 18px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.bf label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.bf input, .bf select {
  background: transparent; border: none; outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--white);
  width: 100%; cursor: none;
}
.bf select option { background: var(--dark3); }
.bf-sep { width: 1px; background: var(--border); align-self: stretch; }
.guest-selector {
  display: flex; align-items: center; gap: 16px;
}
.guest-selector button {
  background: transparent; border: 1px solid var(--border);
  color: var(--gold); width: 24px; height: 24px;
  cursor: none; font-size: 1rem; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.guest-selector button:hover { background: var(--gold-glow); border-color: var(--gold); }
.guest-selector span { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.booking-btn {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 0 40px;
  border: none; cursor: none; font-family: var(--font-body);
  align-self: stretch; transition: all 0.2s;
  white-space: nowrap;
}
.booking-btn:hover { background: var(--gold-light); }
.booking-result {
  margin-top: 20px; padding: 16px 20px;
  border: 1px solid var(--border); border-radius: 2px;
  font-size: 0.82rem; color: var(--gold);
  display: none;
}
.booking-result.show { display: block; animation: fadeIn 0.4s ease; }

/* ── STATS ── */
.stats-section {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 72px 48px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.stat-item { flex: 1; text-align: center; padding: 0 40px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  letter-spacing: -2px;
}
.stat-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-top: 10px;
}
.stat-divider { width: 1px; height: 64px; background: var(--border); }

/* ── SECTION SHARED ── */
.section-header { text-align: center; padding: 80px 48px 48px; }
.section-header.light .section-eyebrow { color: var(--gold-light); }
.section-header.light .section-title { color: var(--white); }
.section-eyebrow {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; color: var(--dark);
  letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 0.85rem; font-weight: 300; color: var(--muted);
  max-width: 480px; margin: 0 auto; line-height: 1.8;
}

/* ── ROOMS ── */
.rooms-section { background: var(--cream); padding-bottom: 80px; }
.rooms-section .section-title { color: var(--dark); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; padding: 0 2px;
  max-width: 1400px; margin: 0 auto;
}
.room-card {
  background: var(--white); cursor: none;
  transition: transform 0.4s ease;
  overflow: hidden;
}
.room-card:hover { transform: translateY(-6px); z-index: 2; }
.room-card.featured { grid-row: span 1; }
.room-img {
  height: 260px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img { transform: scale(1.04); }
.room-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dark);
  background: var(--white); padding: 5px 12px;
}
.room-badge.gold { background: var(--gold); }
.room-info { padding: 28px; }
.room-type {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400; color: var(--dark);
  margin-bottom: 10px; line-height: 1.2;
}
.room-details {
  font-size: 0.72rem; color: var(--muted);
  display: flex; gap: 6px; align-items: center;
  margin-bottom: 14px; flex-wrap: wrap;
}
.room-amenities { display: flex; gap: 10px; margin-bottom: 20px; font-size: 1rem; }
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.room-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.65rem; color: var(--muted); }
.price-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--dark); }
.price-night { font-size: 0.65rem; color: var(--muted); }
.room-btn {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dark);
  background: transparent; border: 1px solid var(--dark);
  padding: 10px 20px; cursor: none; transition: all 0.2s;
}
.room-btn:hover { background: var(--dark); color: var(--white); }
.gold-btn { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.gold-btn:hover { background: var(--gold2); border-color: var(--gold2); color: var(--white); }

/* ── AMENITIES ── */
.amenities-section { position: relative; padding-bottom: 80px; }
.amenities-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}
.amenities-content { position: relative; z-index: 1; }
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  max-width: 1200px; margin: 0 auto;
  border: 1px solid var(--border);
}
.amenity-card {
  background: var(--dark2); padding: 40px;
  cursor: none; transition: all 0.3s; position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.amenity-card:hover { background: var(--dark3); }
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-icon { font-size: 2rem; margin-bottom: 16px; }
.amenity-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400; color: var(--white);
  margin-bottom: 10px;
}
.amenity-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.amenity-arrow {
  font-size: 1.2rem; color: var(--gold);
  transform: translateX(0); transition: transform 0.2s;
}
.amenity-card:hover .amenity-arrow { transform: translateX(6px); }

/* ── EXPERIENCES ── */
.experiences-section { background: var(--cream); padding-bottom: 80px; }
.experiences-section .section-title { color: var(--dark); }
.experiences-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 4px; padding: 0 48px;
  max-width: 1400px; margin: 0 auto;
}
.exp-card { position: relative; overflow: hidden; cursor: none; }
.exp-card.large { grid-row: span 2; }
.exp-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.exp-card:hover .exp-img { transform: scale(1.06); }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.exp-tag {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 8px;
}
.exp-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--white);
  margin-bottom: 8px; line-height: 1.2;
}
.exp-desc { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; line-height: 1.6; }
.exp-btn {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); border: none; padding: 12px 28px;
  cursor: none; font-family: var(--font-body); transition: all 0.2s;
  align-self: flex-start;
}
.exp-btn:hover { background: var(--gold-light); }

/* ── GALLERY ── */
.gallery-section { background: var(--dark); padding-bottom: 80px; }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-eyebrow { color: var(--gold); }
.gallery-section .section-sub { color: var(--muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px; padding: 0 48px;
  max-width: 1400px; margin: 0 auto;
}
.g-item {
  background-size: cover; background-position: center;
  cursor: none; position: relative; overflow: hidden;
  transition: transform 0.4s ease;
}
.g-item:hover { transform: scale(0.98); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,5,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.g-overlay span {
  font-size: 2rem; color: var(--gold);
  transform: scale(0.7); transition: transform 0.3s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-item:hover .g-overlay span { transform: scale(1); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--cream); padding: 0 0 80px; }
.testimonials-section .section-title { color: var(--dark); }
.testimonials-track {
  display: flex; gap: 24px;
  padding: 0 48px 32px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex-shrink: 0; width: 380px;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 40px; scroll-snap-align: start;
}
.t-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 3px; }
.t-quote {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400; font-style: italic;
  color: var(--dark); line-height: 1.7; margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  background: var(--gold); color: var(--dark);
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-name { font-size: 0.78rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.t-origin { font-size: 0.68rem; color: var(--muted); }
.testimonial-nav {
  display: flex; gap: 8px; padding: 0 48px;
}
.testimonial-nav button {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); width: 44px; height: 44px;
  cursor: none; font-size: 1.1rem; transition: all 0.2s;
}
.testimonial-nav button:hover { background: var(--gold); color: var(--dark); }

/* ── CHAT WIDGET ── */
.chat-widget { position: fixed; bottom: 32px; right: 32px; z-index: 400; }
.chat-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  padding: 14px 22px; cursor: none;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(201,169,110,0.4);
  position: relative; transition: all 0.2s;
}
.chat-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.chat-icon { font-size: 1rem; }
.chat-notif {
  position: absolute; top: -6px; right: -6px;
  background: var(--dark); color: var(--gold);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: notifPulse 2s infinite;
}
@keyframes notifPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
.chat-panel {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  width: 360px; background: var(--dark2);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  display: none; flex-direction: column;
  animation: slideUp 0.3s ease;
}
.chat-panel.open { display: flex; }
@keyframes slideUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 40px; height: 40px;
  background: var(--gold-glow); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.chat-name { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.chat-status { font-size: 0.65rem; color: var(--gold); margin-top: 2px; }
.chat-close {
  background: transparent; border: none;
  color: var(--muted); font-size: 0.9rem; cursor: none;
  transition: color 0.2s; padding: 4px;
}
.chat-close:hover { color: var(--white); }
.chat-messages {
  flex: 1; padding: 16px; max-height: 300px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 12px;
}
.chat-msg { display: flex; flex-direction: column; }
.chat-msg.bot { align-items: flex-start; }
.chat-msg.user { align-items: flex-end; }
.msg-bubble {
  max-width: 85%; padding: 10px 14px;
  font-size: 0.78rem; line-height: 1.5;
}
.bot .msg-bubble {
  background: var(--dark3); color: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 8px 8px 8px;
}
.user .msg-bubble {
  background: var(--gold); color: var(--dark);
  font-weight: 500; border-radius: 8px 0 8px 8px;
}
.msg-time { font-size: 0.6rem; color: var(--muted); margin-top: 4px; }
.chat-quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 0;
}
.chat-quick-replies button {
  font-size: 0.65rem; font-weight: 500;
  background: transparent; border: 1px solid var(--border);
  color: var(--gold); padding: 5px 10px;
  cursor: none; transition: all 0.15s;
  font-family: var(--font-body);
}
.chat-quick-replies button:hover { background: var(--gold-glow); }
.typing-indicator {
  display: flex; gap: 4px; align-items: center;
  padding: 8px 12px; background: var(--dark3);
  border: 1px solid var(--border); width: fit-content;
  border-radius: 0 8px 8px 8px;
}
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: typingBounce 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.chat-input-wrap {
  display: flex; border-top: 1px solid var(--border);
}
.chat-input {
  flex: 1; background: transparent; border: none;
  outline: none; padding: 14px 16px;
  font-family: var(--font-body); font-size: 0.78rem;
  color: var(--white);
}
.chat-input::placeholder { color: var(--muted); }
.chat-send {
  background: var(--gold); border: none;
  color: var(--dark); width: 48px; cursor: none;
  font-size: 1rem; font-weight: 700; transition: all 0.2s;
}
.chat-send:hover { background: var(--gold-light); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.3s ease; }
.modal {
  background: var(--dark2); border: 1px solid var(--border);
  max-width: 680px; width: 100%; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  background: rgba(0,0,0,0.5); border: 1px solid var(--border);
  color: var(--white); width: 32px; height: 32px;
  cursor: none; font-size: 0.8rem; transition: all 0.2s;
}
.modal-close:hover { background: var(--gold); color: var(--dark); }
.modal-img {
  height: 320px; background-size: cover; background-position: center;
}
.modal-body { padding: 36px; }
.modal-type {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.modal-name {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300; color: var(--white);
  margin-bottom: 16px;
}
.modal-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.modal-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 32px;
}
.modal-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--white);
}
.modal-feature::before { content: '✓'; color: var(--gold); font-weight: 700; }
.modal-footer { display: flex; align-items: center; justify-content: space-between; }
.modal-price {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--gold);
}
.modal-book {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); border: none; padding: 14px 32px;
  cursor: none; font-family: var(--font-body); transition: all 0.2s;
}
.modal-book:hover { background: var(--gold-light); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw; max-height: 90vh;
  background-size: contain; background-repeat: no-repeat;
  background-position: center;
  width: 1000px; height: 700px;
}
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1px solid var(--border);
  color: var(--gold); font-size: 2rem;
  width: 52px; height: 52px; cursor: none; transition: all 0.2s;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover { background: var(--gold-glow); }
.lb-close {
  position: absolute; top: 20px; right: 20px;
  background: transparent; border: 1px solid var(--border);
  color: var(--white); font-size: 1rem;
  width: 40px; height: 40px; cursor: none; transition: all 0.2s;
}
.lb-close:hover { background: var(--gold); color: var(--dark); }

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 72px 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--gold);
  letter-spacing: 4px; margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.78rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 24px; max-width: 260px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--muted);
  text-decoration: none; transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.78rem; color: var(--muted); }
.footer-col a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--muted);
}
.footer-bottom strong { color: var(--gold); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .experiences-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .exp-card.large { grid-row: span 1; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-section { flex-wrap: wrap; }
  .booking-fields { flex-direction: column; }
  .bf-sep { width: 100%; height: 1px; }
  .booking-btn { padding: 16px; }
  .hero-scroll { display: none; }
}

@media (max-width: 640px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .section-header { padding: 60px 24px 32px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 24px; text-align: center; }
  .chat-panel { width: calc(100vw - 48px); right: -8px; }
  .experiences-grid { padding: 0 24px; }
  .gallery-grid { padding: 0 24px; }
  .hero-awards { display: none; }
  .booking-bar { padding: 32px 24px; }
}
