/* ================================================================
   HERITAGE LODGE — NUCLEAR v4
   Anti-Design + Experimental + Macro Animation
   Black · Steel Blue #7DAACB · Copper #B5784A
   Fonts: Bebas Neue + Playfair Display + Space Grotesk + DM Mono
   ================================================================ */

:root {
  --black:      #000000;
  --black-2:    #060606;
  --black-3:    #0C0C0C;
  --black-4:    #111111;
  --blue:       #7DAACB;
  --blue-dim:   #4A7A9B;
  --blue-lt:    #A8C8E0;
  --blue-glow:  rgba(125,170,203,0.08);
  --copper:     #B5784A;
  --copper-lt:  #D4956A;
  --copper-dim: rgba(181,120,74,0.12);
  --white:      #FFFFFF;
  --off-white:  #E8EEF2;
  --grey:       #1E1E1E;
  --grey-mid:   #4A4A4A;
  --grey-lt:    #7A7A8A;
  --text-hi:   #E8DCC8;
  --text-mid:  rgba(232,220,200,0.55);
  --text-lo:   rgba(232,220,200,0.28);
  --rule:      rgba(255,255,255,0.06);
  --rule-lt:   rgba(255,255,255,0.03);
  --border:     rgba(125,170,203,0.08);
  --border-lt:  rgba(255,255,255,0.05);
  --border-cu:  rgba(181,120,74,0.15);
}

/* ================================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body { background: var(--black); color: var(--off-white); font-family: 'Space Grotesk', sans-serif; font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ================================================================ CURSOR */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
  .cursor-dot { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; position: fixed; pointer-events: none; z-index: 999999; transition: width .15s, height .15s, background .15s; }
  .cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(125,170,203,0.35); border-radius: 50%; position: fixed; pointer-events: none; z-index: 999998; transition: width .22s, height .22s, border-color .22s; }
  .cursor-text { position: fixed; pointer-events: none; z-index: 999997; font-family: 'Space Grotesk', sans-serif; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); opacity: 0; transition: opacity 0.2s; white-space: nowrap; transform: translate(-50%, -50%); }
  .cursor-hover .cursor-dot { width: 8px; height: 8px; background: var(--copper); }
  .cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: rgba(181,120,74,0.3); }
}

/* ================================================================ NAV */
.nav { position: fixed; top: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; align-items: center; gap: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(28px) saturate(180%); border: 1px solid rgba(125,170,203,0.12); border-radius: 60px; padding: 6px 6px 6px 18px; box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04); transition: border-color 0.4s; }
.nav:hover { border-color: rgba(125,170,203,0.22); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: 20px; flex-shrink: 0; }
.nav-logo-img { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--copper); filter: grayscale(40%); transition: filter 0.4s; }
.nav-logo:hover .nav-logo-img { filter: grayscale(0%); }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--copper); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-pill { display: flex; align-items: center; position: relative; gap: 2px; }
.np-item { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-lt); text-decoration: none; padding: 9px 15px; border-radius: 40px; transition: color 0.3s; position: relative; z-index: 1; white-space: nowrap; }
.np-item:hover { color: var(--white); }
.np-item.active { color: var(--black); }
.np-indicator { position: absolute; top: 0; left: 0; height: 100%; border-radius: 40px; background: var(--blue); transition: transform 0.4s cubic-bezier(0.77,0,0.175,1), width 0.4s cubic-bezier(0.77,0,0.175,1); z-index: 0; pointer-events: none; }
.nav-book { display: flex; align-items: center; gap: 8px; background: var(--blue); color: var(--black); font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; padding: 10px 20px; border-radius: 40px; margin-left: 14px; transition: background 0.3s; flex-shrink: 0; }
.nav-book:hover { background: var(--blue-lt); }

/* ================================================================
   AI CHATBOT
   ================================================================ */
.chatbot-trigger {
  position: fixed; bottom: 32px; right: 32px; z-index: 9998;
  display: flex; align-items: center; gap: 10px;
  background: var(--copper); color: var(--black);
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(181,120,74,0.4), 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.chatbot-trigger:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 48px rgba(181,120,74,0.5), 0 4px 16px rgba(0,0,0,0.5); }
.chatbot-trigger-label { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.chatbot-pulse { position: absolute; top: -4px; right: -4px; width: 12px; height: 12px; background: var(--blue); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.6} }

.chatbot-window {
  position: fixed; bottom: 100px; right: 32px; z-index: 9997;
  width: 380px; max-height: 560px;
  background: var(--black-3);
  border: 1px solid rgba(125,170,203,0.15);
  border-radius: 20px;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.95);
  opacity: 0; pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  overflow: hidden;
}
.chatbot-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chatbot-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border-lt); flex-shrink: 0; background: rgba(125,170,203,0.04); }
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-dim), var(--blue)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--white); }
.chatbot-name { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.chatbot-status { font-family: 'Space Grotesk', sans-serif; font-size: 9px; letter-spacing: 0.15em; color: var(--grey-lt); display: flex; align-items: center; gap: 6px; }
.chatbot-online { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; animation: pulse 2s ease-in-out infinite; }
.chatbot-close { background: none; border: none; color: var(--grey-lt); font-size: 14px; cursor: pointer; padding: 4px 8px; transition: color 0.2s; }
.chatbot-close:hover { color: var(--white); }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; scrollbar-width: thin; scrollbar-color: var(--grey) transparent; }
.chatbot-msg.bot .chatbot-msg-bubble { background: var(--black-4); border: 1px solid var(--border-lt); color: var(--off-white); padding: 12px 16px; border-radius: 4px 16px 16px 16px; font-family: 'Space Grotesk', sans-serif; font-size: 13px; line-height: 1.6; max-width: 90%; }
.chatbot-msg.user { display: flex; justify-content: flex-end; }
.chatbot-msg.user .chatbot-msg-bubble { background: var(--blue); color: var(--black); padding: 12px 16px; border-radius: 16px 4px 16px 16px; font-family: 'Space Grotesk', sans-serif; font-size: 13px; line-height: 1.6; max-width: 85%; font-weight: 400; }
.chatbot-typing .chatbot-msg-bubble { display: flex; gap: 4px; align-items: center; padding: 14px 20px; }
.chatbot-typing .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grey-lt); animation: typingDot 1.2s ease-in-out infinite; }
.chatbot-typing .dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.chatbot-quick-btns { display: flex; flex-wrap: wrap; gap: 6px; }
.chatbot-quick { background: none; border: 1px solid rgba(125,170,203,0.2); color: var(--blue); font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.08em; padding: 7px 12px; border-radius: 20px; cursor: pointer; transition: background 0.3s, color 0.3s; }
.chatbot-quick:hover { background: var(--blue); color: var(--black); }
.chatbot-input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border-lt); flex-shrink: 0; }
.chatbot-input { flex: 1; background: var(--black-4); border: 1px solid var(--border-lt); color: var(--white); padding: 10px 14px; border-radius: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 12px; outline: none; transition: border-color 0.3s; }
.chatbot-input:focus { border-color: rgba(125,170,203,0.3); }
.chatbot-input::placeholder { color: var(--grey-lt); }
.chatbot-send { background: var(--blue); border: none; color: var(--black); width: 38px; height: 38px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s; flex-shrink: 0; }
.chatbot-send:hover { background: var(--blue-lt); }

/* ================================================================
   HERO — EXPERIMENTAL
   ================================================================ */
.hero { height: 100vh; position: relative; display: flex; align-items: center; padding: 0 6%; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) saturate(0.55); transform: scale(1.06); animation: slowZoom 30s linear infinite alternate; }
@keyframes slowZoom { 0%{transform:scale(1.06)} 100%{transform:scale(1.14)} }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.75) 100%); }

/* Anti-design ghost word */
.hero-ghost-bg { position: absolute; right: -3%; bottom: -12%; z-index: 1; font-family: 'Bebas Neue', sans-serif; font-size: clamp(140px, 22vw, 340px); color: transparent; -webkit-text-stroke: 1px rgba(125,170,203,0.055); pointer-events: none; user-select: none; letter-spacing: 0.06em; line-height: 0.85; transition: transform 0.1s; }

.hero-content { position: relative; z-index: 2; max-width: 820px; padding-top: 60px; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-ey-line { display: inline-block; width: 40px; height: 1px; background: var(--copper); }
.hero-ey-text { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--copper); }

/* Split-char title */
.hero-title { line-height: 0.9; margin-bottom: 28px; }
.hero-word { display: block; overflow: hidden; }
.hero-word span { display: inline-block; font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px, 11vw, 160px); color: var(--white); letter-spacing: 0.04em; transform: translateY(0); transition: transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.hero-word-em em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue-lt); font-size: clamp(65px, 10vw, 140px); display: block; }
.hero-word-thin span { color: rgba(255,255,255,0.28); }
.hero-word-bold span { color: var(--white); font-size: clamp(80px, 12vw, 175px); }
/* Scroll-driven char split */
.hero-word span.split-up { transform: translateY(-120%); }
.hero-word span.split-down { transform: translateY(120%); }

.hero-sub { font-family: 'Space Grotesk', sans-serif; font-size: 14px; line-height: 1.9; color: var(--grey-lt); max-width: 460px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Anti-design floating data tags */
.hero-data-tag { position: absolute; z-index: 2; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(125,170,203,0.18); padding: 6px 14px; color: var(--blue); background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); animation: tagFloat 6s ease-in-out infinite; }
.hero-tag-1 { top: 22%; right: 8%; animation-delay: 0s; }
.hero-tag-2 { top: 38%; right: 5%; animation-delay: 1.5s; border-color: rgba(181,120,74,0.2); color: var(--copper); }
.hero-tag-3 { top: 54%; right: 10%; animation-delay: 3s; }
@keyframes tagFloat { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-8px)} }

/* Experimental vertical index */
.hero-side-index { position: absolute; right: 3%; top: 50%; transform: translateY(-50%) rotate(90deg); z-index: 2; display: flex; align-items: center; gap: 20px; font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--grey-mid); }
.hero-side-line { width: 30px; height: 1px; background: var(--blue-dim); }
.hero-side-num { color: var(--blue); }

/* Scroll progress indicator */
.hero-scroll-indicator { position: absolute; bottom: 36px; left: 6%; z-index: 2; display: flex; align-items: center; gap: 14px; }
.hsi-track { width: 80px; height: 1px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.hsi-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--blue); transition: width 0.1s linear; }
.hero-scroll-indicator span { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--grey-mid); }

/* ================================================================ BTNs */
.btn-primary { background: var(--blue); color: var(--black); padding: 14px 32px; font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: background 0.3s; display: inline-block; }
.btn-primary:hover { background: var(--blue-lt); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.1); color: var(--off-white); padding: 14px 32px; font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: border-color 0.3s, color 0.3s; display: inline-block; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-lt); }
.btn-outline { display: inline-flex; align-items: center; gap: 14px; border: 1px solid rgba(125,170,203,0.25); color: var(--white); padding: 14px 34px; font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; width: fit-content; position: relative; overflow: hidden; transition: border-color 0.4s; }
.btn-outline::before { content: ''; position: absolute; inset: 0; background: var(--blue); z-index: -1; transform: translateX(-101%); transition: transform 0.5s cubic-bezier(0.77,0,0.175,1); }
.btn-outline:hover { border-color: var(--blue); color: var(--black); }
.btn-outline:hover::before { transform: translateX(0); }
.btn-arrow { font-size: 16px; transition: transform 0.4s; }
.btn-outline:hover .btn-arrow { transform: translateX(6px); }

/* ================================================================
   ROOMS — PINNED HORIZONTAL SCROLL
   ================================================================ */
.rooms-section { background: var(--black); position: relative; }
.rooms-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-dim), transparent); }
.rooms-intro { padding: 90px 6% 50px; border-bottom: 1px solid var(--border-lt); }
.section-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--copper); margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
.section-label::before { content: ''; width: 32px; height: 1px; background: currentColor; }
.rooms-intro-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.rooms-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7vw, 100px); color: var(--white); line-height: 0.9; letter-spacing: 0.04em; }
.rooms-heading em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue-lt); font-size: 0.88em; }
.rooms-intro-right { text-align: right; }
.rooms-desc { font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--grey-lt); margin-bottom: 16px; }
.rooms-progress-wrap { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.rooms-progress-track { width: 120px; height: 1px; background: rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.rooms-progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: linear-gradient(90deg, var(--copper), var(--blue)); transition: width 0.3s ease; }
.rooms-progress-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; color: var(--grey-lt); }

/* PIN wrapper */
.rooms-pin-wrapper { height: 600vh; position: relative; }
.rooms-pin-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.rooms-track { display: flex; height: 100%; gap: 0; will-change: transform; }

/* Room slide — each category */
.room-slide { width: 100vw; height: 100%; flex-shrink: 0; display: grid; grid-template-columns: 55% 45%; position: relative; overflow: hidden; }

/* Left: full-bleed image */
.room-slide-img { position: relative; overflow: hidden; cursor: pointer; }
.room-slide-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.9); transform: scale(1.04); transition: filter 0.9s, transform 1.2s cubic-bezier(0.16,1,0.3,1); }
.room-slide:hover .room-slide-img img { filter: brightness(1.0) saturate(1.0); transform: scale(1.0); }
.room-slide-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0) 60%, rgba(0,0,0,0.95) 100%); z-index: 1; }
/* Anti-design: massive ghost num behind image */
.room-slide-num-bg { position: absolute; bottom: -30px; left: -20px; font-family: 'Bebas Neue', sans-serif; font-size: 40vw; color: transparent; -webkit-text-stroke: 1px rgba(125,170,203,0.06); z-index: 0; line-height: 0.8; pointer-events: none; user-select: none; letter-spacing: -0.02em; transition: -webkit-text-stroke-color 0.6s; }
.room-slide:hover .room-slide-num-bg { -webkit-text-stroke-color: rgba(125,170,203,0.1); }

/* Right: info panel */
.room-slide-info { display: flex; flex-direction: column; justify-content: center; padding: 80px 8% 80px 6%; background: var(--black); border-left: 1px solid var(--border-lt); position: relative; overflow: hidden; z-index: 2; }
.room-slide-info::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(125,170,203,0.03) 0%, transparent 70%); pointer-events: none; }

.room-slide-cat { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.room-slide-cat::before { content: ''; width: 28px; height: 1px; background: currentColor; }

.room-slide-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 6.5vw, 100px); color: var(--white); line-height: 0.88; letter-spacing: 0.04em; margin-bottom: 48px; }
.room-slide-name em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue-lt); display: block; font-size: 0.95em; }

.room-slide-meta { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; padding: 32px 0; border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); }
.room-slide-rooms { font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-lt); }
.room-slide-price { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 4.5vw, 64px); color: var(--copper); letter-spacing: 0.04em; line-height: 1; }
.room-slide-price em { font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--grey-lt); font-style: normal; font-weight: 300; letter-spacing: 0.05em; }
.room-price-note {
  font-family: 'Montserrat', sans-serif; font-size: 8px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-lo);
  margin-bottom: 32px;
}
.room-desc {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px;
  font-weight: 300; line-height: 1.95; color: var(--text-mid);
  max-width: 380px; margin-bottom: 36px;
  padding-left: 18px; border-left: 1px solid var(--rule);
}
.room-specs {
  display: flex; gap: 0; border: 1px solid var(--rule-lt);
  margin-bottom: 36px; width: fit-content;
}
.rs {
  padding: 10px 16px; border-right: 1px solid var(--rule-lt);
}
.rs:last-child { border-right: none; }
.rs-lbl {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 7px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-lo); margin-bottom: 4px;
}
.rs-val {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 10px; color: var(--text-hi); letter-spacing: 0.1em;
}
.room-slide-book { display: inline-flex; align-items: center; gap: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); text-decoration: none; border: 1px solid rgba(181,120,74,0.3); padding: 14px 28px; position: relative; overflow: hidden; transition: border-color 0.4s; width: fit-content; }
.room-slide-book::before { content: ''; position: absolute; inset: 0; background: var(--copper); z-index: -1; transform: translateX(-101%); transition: transform 0.5s cubic-bezier(0.77,0,0.175,1); }
.room-slide-book:hover { border-color: var(--copper); color: var(--black); }
.room-slide-book:hover::before { transform: translateX(0); }

.rooms-cta-row { padding: 50px 6%; border-top: 1px solid var(--border-lt); display: flex; justify-content: center; }

/* ================================================================ MARQUEE */
.marquee-bar { padding: 18px 0; overflow: hidden; border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); background: var(--black-2); }
.marquee-inner { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-inner span { font-family: 'Bebas Neue', sans-serif; font-size: clamp(18px, 2.2vw, 30px); color: rgba(232,238,242,0.07); padding: 0 26px; white-space: nowrap; letter-spacing: 0.1em; }
.marquee-inner span em { font-family: 'Playfair Display', serif; font-style: italic; color: rgba(125,170,203,0.18); }
.mdot { color: rgba(181,120,74,0.18) !important; padding: 0 4px !important; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ================================================================ ABOUT */
#about { background: var(--black); overflow: hidden; }
.about-strip { width: 100%; height: 68vh; position: relative; overflow: hidden; }
.about-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82) saturate(0.65); transform: scale(1.04); transition: filter 1.4s, transform 1.6s cubic-bezier(0.16,1,0.3,1); }
.about-strip:hover img { filter: brightness(0.1) saturate(0.85); transform: scale(1.0); }
.about-strip-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 20%, var(--black) 100%); }
.about-strip-ghost { position: absolute; bottom: -25px; left: 3%; z-index: 2; font-family: 'Bebas Neue', sans-serif; font-size: clamp(90px, 16vw, 240px); color: transparent; -webkit-text-stroke: 1px rgba(125,170,203,0.065); pointer-events: none; user-select: none; letter-spacing: 0.08em; }
.about-strip-caption { position: absolute; bottom: 28px; right: 6%; z-index: 3; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--grey-mid); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; border-bottom: 1px solid var(--border-lt); }
.about-left { padding: 88px 6% 88px 6%; border-right: 1px solid var(--border-lt); }
.about-num { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.55em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 68px; display: flex; align-items: center; gap: 18px; }
.about-num::after { content: ''; flex: 1; height: 1px; background: var(--border-lt); }
.about-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7vw, 100px); line-height: 0.92; color: var(--white); margin-bottom: 52px; letter-spacing: 0.04em; }
.about-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue-lt); font-size: 0.88em; display: block; }
.about-ghost-line { display: block; color: transparent; -webkit-text-stroke: 1px rgba(232,238,242,0.09); font-family: 'Bebas Neue', sans-serif; }
.about-chips { display: flex; gap: 0; border: 1px solid var(--border-lt); }
.about-chip { flex: 1; padding: 22px 16px; border-right: 1px solid var(--border-lt); position: relative; overflow: hidden; transition: background 0.4s; }
.about-chip:last-child { border-right: none; }
.about-chip::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.77,0,0.175,1); }
.about-chip:hover { background: var(--copper-dim); }
.about-chip:hover::before { transform: scaleX(1); }
.chip-val { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--white); line-height: 1; margin-bottom: 8px; letter-spacing: 0.04em; }
.chip-val sup { font-size: 18px; color: var(--copper); font-family: 'Space Grotesk', sans-serif; vertical-align: super; }
.chip-lbl { font-family: 'Space Grotesk', sans-serif; font-size: 8px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--grey-lt); }
.about-right { padding: 88px 8%; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.about-right::before { content: ''; position: absolute; top: -300px; right: -300px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(125,170,203,0.03) 0%, transparent 70%); pointer-events: none; }
.about-eyebrow { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--blue); margin-bottom: 30px; display: flex; align-items: center; gap: 16px; }
.about-eyebrow::before { content: ''; width: 36px; height: 1px; background: currentColor; }
.about-quote { font-family: 'Playfair Display', serif; font-size: clamp(18px, 1.9vw, 26px); font-style: italic; color: var(--white); line-height: 1.6; border-left: 2px solid var(--copper); padding-left: 24px; margin-bottom: 40px; font-weight: 400; }
.about-body { display: flex; flex-direction: column; gap: 18px; margin-bottom: 42px; }
.about-body p { font-family: 'Space Grotesk', sans-serif; font-size: 14px; line-height: 1.9; color: var(--grey-lt); max-width: 460px; font-weight: 300; }
.about-body p strong { color: var(--off-white); font-weight: 500; }
.about-loc { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(181,120,74,0.15); padding: 9px 18px; margin-bottom: 42px; width: fit-content; background: rgba(181,120,74,0.03); }
.about-loc span { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--copper); }
.about-loc svg { stroke: var(--copper); flex-shrink: 0; }

/* ================================================================
   REVIEWS — AUTO-SCROLL CAROUSEL
   ================================================================ */
#reviews { background: var(--black-2); overflow: hidden; position: relative; }
#reviews::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-dim), transparent); }
.reviews-intro { padding: 90px 6% 0; border-bottom: 1px solid var(--border-lt); }
.reviews-intro-inner { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 50px; gap: 40px; }
.reviews-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7.5vw, 108px); color: var(--white); line-height: 0.9; letter-spacing: 0.04em; }
.reviews-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue-lt); font-size: 0.88em; }
.reviews-score-block { text-align: right; flex-shrink: 0; }
.rsb-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(80px, 12vw, 150px); color: transparent; -webkit-text-stroke: 1px rgba(181,120,74,0.28); line-height: 0.85; letter-spacing: 0.04em; display: block; }
.rsb-stars { color: var(--copper); font-size: 14px; letter-spacing: 4px; margin-bottom: 6px; display: block; }
.rsb-label { font-family: 'Space Grotesk', sans-serif; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-lt); }

/* Carousel */
.reviews-carousel-wrap { position: relative; padding: 60px 0; overflow: hidden; }
.reviews-carousel { display: flex; gap: 24px; padding: 0 6%; width: max-content; animation: carouselScroll 40s linear infinite; }
.reviews-carousel:hover { animation-play-state: paused; }
@keyframes carouselScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.reviews-carousel-fade-l { position: absolute; top: 0; left: 0; width: 120px; height: 100%; background: linear-gradient(to right, var(--black-2), transparent); pointer-events: none; z-index: 2; }
.reviews-carousel-fade-r { position: absolute; top: 0; right: 0; width: 120px; height: 100%; background: linear-gradient(to left, var(--black-2), transparent); pointer-events: none; z-index: 2; }

.rw-card { width: 360px; flex-shrink: 0; padding: 36px; background: var(--black-3); border: 1px solid var(--border-lt); position: relative; overflow: hidden; transition: border-color 0.4s, transform 0.4s; }
.rw-card:hover { border-color: rgba(125,170,203,0.2); transform: translateY(-4px); }
.rw-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--copper), var(--blue)); transition: width 0.6s cubic-bezier(0.77,0,0.175,1); }
.rw-card:hover::after { width: 100%; }
.rw-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.rw-stars { color: var(--copper); font-size: 12px; letter-spacing: 3px; }
.rw-badge { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(125,170,203,0.2); padding: 4px 10px; }
.rw-text { font-family: 'Playfair Display', serif; font-size: 16px; font-style: italic; color: var(--off-white); line-height: 1.65; margin-bottom: 28px; font-weight: 400; }
.rw-author { display: flex; align-items: center; gap: 14px; }
.rw-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-dim), var(--blue)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 15px; color: var(--white); flex-shrink: 0; }
.rw-name { font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); display: block; margin-bottom: 3px; }
.rw-platform { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); display: block; }
.reviews-dots { display: flex; justify-content: center; gap: 8px; padding-bottom: 60px; }
.reviews-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grey); transition: background 0.3s, transform 0.3s; }
.reviews-dot.active { background: var(--blue); transform: scale(1.4); }

/* ================================================================
   MAP — MACRO ANIMATION "WHERE TO FIND US"
   ================================================================ */
.map-macro-section { height: 300vh; position: relative; background: var(--black); }
.map-macro-sticky { position: sticky; top: 0; height: 100vh; width: 100vw; overflow: hidden; display: flex; align-items: center; justify-content: center; }

/* Phase base */
.map-phase { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 6%; transition: opacity 0.5s ease, transform 0.5s ease; }

/* Phase 1 — cinematic text */
.map-phase-text { text-align: center; z-index: 2; }
.map-phase-eyebrow { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--copper); margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.map-phase-eyebrow::before { content: ''; width: 32px; height: 1px; background: currentColor; }
.map-phase-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(80px, 14vw, 200px); color: var(--white); line-height: 0.88; letter-spacing: 0.04em; text-align: center; margin-bottom: 16px; }
.map-phase-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue-lt); font-size: 0.88em; }
.map-word { display: inline-block; opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1); margin: 0 8px; }
.map-word.visible { opacity: 1; transform: translateY(0); }
.map-phase-coords { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--grey-lt); }

/* Phase 2 — full split, iframe fills entire right half */
.map-phase-full {
  display: grid;
  grid-template-columns: 380px 1fr;
  opacity: 0; pointer-events: none; padding: 0;
  align-items: stretch;
}
.map-phase-full.visible { opacity: 1; pointer-events: all; }

.map-info-panel {
  padding: 56px 40px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--black);
  border-right: 1px solid var(--border-lt);
  position: relative; overflow: hidden;
  height: 100vh;
}
.map-info-panel::before { content: ''; position: absolute; top: -150px; left: -150px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(181,120,74,0.05) 0%, transparent 70%); pointer-events: none; }

.map-info-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--copper); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.map-info-label::before { content: ''; width: 32px; height: 1px; background: currentColor; }

/* Big title inside info panel */
.map-info-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 60px); color: var(--white); letter-spacing: 0.04em; line-height: 0.9; margin-bottom: 32px; }
.map-info-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue-lt); display: block; font-size: 0.88em; }

.map-info-address { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.map-info-row { display: flex; align-items: flex-start; gap: 12px; }
.map-info-row svg { flex-shrink: 0; margin-top: 2px; }
.map-info-row span,
.map-phone-stack span { font-family: 'Space Grotesk', sans-serif; font-size: 13px; line-height: 1.65; color: var(--grey-lt); display: block; }
.map-phone-stack { display: flex; flex-direction: column; gap: 4px; }

.map-info-coords { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey-mid); padding: 14px 0; border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); margin-bottom: 24px; }

.map-action-row { display: flex; flex-direction: column; gap: 12px; }
.map-open-gmaps { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); text-decoration: none; transition: color 0.3s, gap 0.3s; }
.map-open-gmaps:hover { color: var(--copper-lt); gap: 16px; }
.map-whatsapp { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); text-decoration: none; transition: color 0.3s, gap 0.3s; }
.map-whatsapp:hover { color: var(--blue-lt); gap: 16px; }
.map-whatsapp svg { fill: var(--blue); transition: fill 0.3s; }
.map-whatsapp:hover svg { fill: var(--blue-lt); }

/* Iframe fills ENTIRE right panel — no padding, no filter on load */
.map-embed-panel {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 0;
  transition: filter 0.6s;
}
.map-embed-panel::after {
  content: '';
  position: absolute; inset: 0;
  border-left: 1px solid var(--border-lt);
  pointer-events: none; z-index: 1;
}
.map-embed-panel iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(60%) brightness(0.85);
  transition: filter 0.6s ease;
}
.map-embed-panel:hover iframe { filter: grayscale(0%) brightness(1); }

/* Tighten global section paddings */
.rooms-intro { padding: 60px 6% 40px; border-bottom: 1px solid var(--border-lt); }
.about-left { padding: 70px 6% 70px 6%; border-right: 1px solid var(--border-lt); }
.about-right { padding: 70px 8%; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.reviews-intro { padding: 70px 6% 0; border-bottom: 1px solid var(--border-lt); }
.reviews-intro-inner { padding-bottom: 40px; }
.reviews-carousel-wrap { padding: 44px 0; }

/* ================================================================
   CONTACT — EXPANDING CIRCLE
   ================================================================ */
.contact-wrapper { height: 250vh; position: relative; background: var(--black); }
.contact-sticky { position: sticky; top: 0; height: 100vh; width: 100vw; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.scroll-hint { position: absolute; top: 12%; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--grey-mid); z-index: 2; display: flex; align-items: center; gap: 14px; transition: opacity 0.4s; }
.scroll-hint-line { display: inline-block; height: 1px; width: 28px; background: var(--blue); animation: hintPulse 2s ease-in-out infinite; }
@keyframes hintPulse { 0%,100%{opacity:.3;width:18px} 50%{opacity:1;width:36px} }
.contact-mask { position: absolute; inset: 0; clip-path: circle(11vw at 50% 50%); display: flex; align-items: center; justify-content: center; will-change: clip-path; }
.contact-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.2); z-index: -2; }
.contact-overlay { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 50% 60%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%); }
.footer-wrap { text-align: center; width: 100%; max-width: 860px; padding: 0 5%; opacity: 0; transform: translateY(50px); transition: opacity 1s ease, transform 1s ease; position: relative; z-index: 2; }
.footer-wrap.visible { opacity: 1; transform: translateY(0); }
.footer-logo { width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--copper); margin-bottom: 20px; filter: grayscale(60%); transition: filter 0.8s; }
.footer-wrap.visible .footer-logo { filter: grayscale(0%); }
.footer-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 10vw, 130px); line-height: 0.88; letter-spacing: 0.04em; display: block; margin-bottom: 6px; background: linear-gradient(160deg, var(--white) 40%, var(--blue-lt) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-title em { font-family: 'Playfair Display', serif; font-style: italic; }
.footer-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(13px, 1.3vw, 18px); color: var(--grey-lt); margin-bottom: 36px; }
.footer-links-grid { display: flex; justify-content: center; border: 1px solid var(--border-lt); width: fit-content; margin: 0 auto 28px; }
.footer-link { display: flex; flex-direction: column; gap: 5px; padding: 16px 24px; text-decoration: none; border-right: 1px solid var(--border-lt); position: relative; overflow: hidden; transition: color 0.4s; }
.footer-link:last-child { border-right: none; }
.footer-link::before { content: ''; position: absolute; inset: 0; background: var(--blue); z-index: -1; transform: translateY(102%); transition: transform 0.45s cubic-bezier(0.77,0,0.175,1); }
.footer-link:hover::before { transform: translateY(0); }
.fl-label { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--grey-mid); transition: color 0.3s; }
.fl-val { font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 0.08em; color: var(--off-white); transition: color 0.3s; }
.footer-link:hover .fl-label, .footer-link:hover .fl-val { color: var(--black); }
.footer-coords { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 24px; }
.footer-legal { border-top: 1px solid var(--border-lt); padding-top: 20px; font-family: 'Space Grotesk', sans-serif; font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-mid); display: flex; justify-content: space-between; }
.footer-legal-r { color: var(--copper); }

/* ================================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .nav { top: 14px; padding: 5px 5px 5px 14px; }
  .np-item { padding: 8px 11px; font-size: 10px; }
  .nav-book { padding: 9px 16px; font-size: 9px; }
  .hero-side-index, .hero-data-tag { display: none; }
  .hero-ghost-bg { font-size: 40vw; }
  .rooms-intro-inner { flex-direction: column; align-items: flex-start; }
  .rooms-pin-wrapper { height: auto; }
  .rooms-pin-sticky { position: relative; height: auto; }
  .rooms-track { flex-direction: column; transform: none !important; }
  .room-slide { width: 100%; height: auto; grid-template-columns: 1fr; min-height: 80vh; }
  .room-slide-img { height: 50vh; }
  .room-slide-img-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.95) 100%); }
  .room-slide-info { border-left: none; border-top: 1px solid var(--border-lt); padding: 44px 6%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-left { border-right: none; border-bottom: 1px solid var(--border-lt); padding: 60px 6%; }
  .about-right { padding: 60px 6%; }
  .about-strip { height: 50vh; }
  .about-strip-ghost { font-size: 28vw; }
  .reviews-intro-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rsb-num { font-size: 14vw; }
  .rw-card { width: 290px; }
  .map-macro-section { height: auto; }
  .map-macro-sticky { position: relative; height: auto; }
  .map-phase { position: relative; }
  .map-phase-text { display: none; }
  .map-phase-full { grid-template-columns: 1fr; opacity: 1; pointer-events: all; height: auto; }
  .map-info-panel { height: auto; border-right: none; border-bottom: 1px solid var(--border-lt); padding: 50px 6%; }
  .map-embed-panel { height: 380px; }
  .contact-wrapper { height: 100vh; }
  .contact-mask { clip-path: circle(150% at 50% 50%) !important; }
  .footer-wrap { opacity: 1; transform: none; }
  .scroll-hint { display: none; }
  .footer-links-grid { flex-direction: column; width: 90%; }
  .footer-link { border-right: none; border-bottom: 1px solid var(--border-lt); }
  .footer-legal { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .rw-card { width: 260px; }
  .map-embed-panel { height: 300px; }
}
/* ── MOBILE CHATBOT FIX ── */
@media (max-width: 768px) {
  .chatbot-window {
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    bottom: 80px !important;
    max-height: 70vh !important;
  }

  .chatbot-trigger {
    right: 16px !important;
    bottom: 16px !important;
  }

  .chatbot-msg-bubble {
    max-width: 85vw !important;
    font-size: 0.9em !important;
  }

  .chatbot-quick-btns {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .chatbot-quick {
    font-size: 0.8em !important;
    padding: 6px 12px !important;
    white-space: normal !important;
    text-align: left !important;
  }
}