:root {
  --bg: #0a0a0f;
  --bg-2: #12121a;
  --surface: #1a1a24;
  --surface-2: #22222e;
  --line: rgba(255,255,255,0.08);
  --text: #f4f1e8;
  --text-dim: #b6b3a7;
  --text-muted: #7d7a70;
  --gold: #d4af37;
  --gold-bright: #ffd86b;
  --neon: #b388ff;
  --neon-2: #ff4ecd;
  --neon-glow: 0 0 12px rgba(179,136,255,.55), 0 0 32px rgba(179,136,255,.25);
  --pink-glow: 0 0 12px rgba(255,78,205,.55), 0 0 32px rgba(255,78,205,.25);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,.7);
  --radius: 14px;
  --maxw: 1240px;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-bright); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--neon); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-body);
  margin: 0 0 1rem;
}
p { margin: 0 0 1rem; color: var(--text-dim); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; position: relative; }
section.tight { padding: 3.5rem 0; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10,10,15,.55);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.nav.scrolled {
  background: rgba(10,10,15,.92);
  border-color: var(--line);
  padding: .65rem 1.5rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); margin: 0 auto; }
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .15em;
  color: var(--text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.brand .mono { font-family: var(--font-body); font-size: .7rem; letter-spacing: .35em; color: var(--gold); }
.brand-r {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 2rem;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links a { color: var(--text-dim); position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: .6rem 1.1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-cta:hover { background: var(--gold); color: #000; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px; height: 42px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
}
@media (max-width: 880px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(10,10,15,.98);
    border-top: 1px solid var(--line);
    gap: 1.1rem;
  }
  .nav.open .nav-cta {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    text-align: center;
    position: absolute;
    bottom: -3rem; left: 0; right: 0;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 1.5rem 6rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(179,136,255,.15), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(255,78,205,.15), transparent 60%),
    linear-gradient(180deg, rgba(10,10,15,.55) 0%, rgba(10,10,15,.85) 70%, var(--bg) 100%),
    url('../images/hero-mobile.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.7);
}
.hero h1 .glow {
  background: linear-gradient(120deg, var(--gold-bright), var(--neon), var(--neon-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(179,136,255,.35));
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  letter-spacing: .04em;
}
.hero-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-align: center;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: .6rem auto 0;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: .8; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* Page hero (short) */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 1.5rem 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,.35) 0%, rgba(10,10,15,.85) 80%, var(--bg) 100%),
    var(--hero-img, url('../images/smoke.jpg')) center/cover no-repeat;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: .4rem; }
.page-hero .lede { font-size: 1.15rem; max-width: 650px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: .95rem 2rem;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all .25s ease;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  color: #fff;
  box-shadow: var(--neon-glow);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(179,136,255,.8), 0 0 50px rgba(255,78,205,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- ABOUT / INTRO ---------- */
.intro {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.intro-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.intro-list li {
  padding: .85rem 0 .85rem 1.6rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--text-dim);
}
.intro-list li::before {
  content: '◆';
  position: absolute; left: 0; top: .85rem;
  color: var(--gold);
  font-size: .7rem;
}
.intro-list li:last-child { border-bottom: none; }

.spec-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.spec-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(179,136,255,.18), transparent 50%);
  pointer-events: none;
}
.spec-card h3 { color: var(--gold); margin-bottom: 1.2rem; }
.spec-stat { display: flex; justify-content: space-between; padding: .8rem 0; border-bottom: 1px dashed var(--line); }
.spec-stat:last-child { border-bottom: none; }
.spec-stat .label { color: var(--text-muted); letter-spacing: .12em; font-size: .8rem; text-transform: uppercase; }
.spec-stat .value { color: var(--text); font-family: var(--font-display); font-size: 1.3rem; }

/* ---------- ROOMS GRID ---------- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { display: inline-block; position: relative; }
.section-header h2::after {
  content: '';
  display: block;
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  cursor: pointer;
  display: block;
  isolation: isolate;
  border: 1px solid var(--line);
  transition: transform .4s ease, box-shadow .4s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card .img-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.room-card .img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.92) 100%);
}
.room-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.room-card:hover img { transform: scale(1.07); }
.room-card .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem;
  z-index: 2;
  color: #fff;
}
.room-card .tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.room-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: .3rem; }
.room-card p { color: rgba(255,255,255,.78); font-size: .9rem; margin: 0; }
.room-card .arrow {
  position: absolute;
  top: 1.3rem; right: 1.3rem;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: .85rem;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  z-index: 3;
  transition: all .25s ease;
}
.room-card:hover .arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.room-card.coming-soon { opacity: .75; pointer-events: none; }
.room-card.coming-soon .tag { color: var(--neon); }

/* ---------- ROOM DETAIL ---------- */
.room-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) { .room-detail { grid-template-columns: 1fr; gap: 2rem; } }
.room-pano {
  border-radius: var(--radius);
  overflow: auto;
  border: 1px solid var(--line);
  position: relative;
  background: #000;
}
.room-pano-inner {
  display: flex;
  height: 480px;
}
.room-pano img {
  height: 100%;
  width: auto;
  max-width: none;
}
.scroll-note {
  display: block;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .8rem;
  text-align: center;
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .8rem;
  margin-top: 2rem;
}
.room-gallery img {
  border-radius: 6px;
  height: 200px;
  object-fit: cover;
  width: 100%;
  filter: grayscale(.3) brightness(.95);
  transition: filter .3s ease, transform .3s ease;
  cursor: pointer;
}
.room-gallery img:hover { filter: none; transform: scale(1.02); }

/* ---------- GALLERY PAGE ---------- */
.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
}
@media (max-width: 880px) { .gallery-grid { column-count: 2; } }
@media (max-width: 540px) { .gallery-grid { column-count: 1; } }
.gallery-grid img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 6px;
  break-inside: avoid;
  transition: filter .3s ease, transform .3s ease;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.01); filter: brightness(1.1); }

/* ---------- BOOKING ---------- */
.book-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 880px) { .book-shell { grid-template-columns: 1fr; } }
.book-form {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  color: var(--text);
  padding: .85rem 1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.book-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--surface);
}
.book-aside h3 { color: var(--gold); }
.book-aside li { color: var(--text-dim); margin-bottom: .5rem; }

.success-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,15,.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.success-overlay.active { display: flex; }
.success-card {
  max-width: 540px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  box-shadow: 0 0 60px rgba(212,175,55,.2);
  animation: pop .35s ease-out;
}
@keyframes pop {
  from { transform: scale(.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-card .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  font-size: 1.5rem;
}
.success-card .ref {
  font-family: var(--font-mono);
  color: var(--gold);
  letter-spacing: .1em;
  background: rgba(0,0,0,.4);
  padding: .5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  margin: 1rem 0;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--surface);
  margin-bottom: 1.25rem;
}
.contact-tile .label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.contact-tile .value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
}
.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  background: #1a1a24;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: invert(.9) hue-rotate(180deg) saturate(.6); }

/* ---------- FOOTER ---------- */
.footer {
  background: #050507;
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .65rem; }
.footer a { color: var(--text-dim); font-size: .9rem; }
.footer a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .socials { display: flex; gap: 1rem; }
.footer-bottom .socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-dim);
  font-size: .85rem;
  transition: all .25s ease;
}
.footer-bottom .socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- UTILS ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .35;
}
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: 1px solid var(--line);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}
