:root {
  --bg-dark: #0a0b10;
  --bg-deep: #050508;
  --accent-gold: #d2648c;
  --accent-gold-pale: #dac2cb;
  --text-primary: #f8f9fa;
  --text-secondary: #9499ad;
  --border-gold: rgba(210, 100, 140, 0.2);
  --glass: rgba(255, 255, 255, 0.03);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

li { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 4vw; }

/* ===== LOADER ===== */
#loader {
    position: fixed; inset: 0; background: var(--bg-deep); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 1s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { font-family: var(--font-serif); font-size: 24px; color: var(--accent-gold); letter-spacing: 5px; opacity: 0; animation: fadeIn 2s forwards; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== NAVIGATION ===== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 30px 0; transition: var(--transition);
}
header.scrolled { padding: 20px 0; background: rgba(5,5,8,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-gold); }

.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.c1b8iua { font-family: var(--font-serif); font-size: 28px; font-weight: 900; color: var(--accent-gold); letter-spacing: 2px; }
.c1b8iua span { font-weight: 300; color: white; margin-left: 5px; }

.cxuwkwk { display: flex; gap: 30px; }
.cxuwkwk a { font-size: 14px; white-space: nowrap; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); display: flex; align-items: center;}
.cxuwkwk a:hover, .cxuwkwk a.active { color: var(--accent-gold); }

.cl1fnop {
    border: 1px solid var(--accent-gold); padding: 12px 24px; border-radius: 100px;
    color: var(--accent-gold) !important;
}
.cl1fnop:hover { background: var(--accent-gold); color: var(--bg-deep) !important; }

/* ===== HERO ===== */
#hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.cm69bzh {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: brightness(0.4); transform: scale(1.1); transition: transform 2s ease-out;
}
#hero:hover .cm69bzh { transform: scale(1); }

.cpbasyu { max-width: 900px; z-index: 2; }
.hero-tag { font-size: 13px; letter-spacing: 4px; color: var(--accent-gold); margin-bottom: 20px; display: block; text-transform: uppercase; }
.cizv4h9 { font-family: var(--font-serif); font-size: clamp(48px, 10vw, 110px); line-height: 1.1; margin-bottom: 30px; font-weight: 900; }
.cizv4h9 em { font-style: italic; font-weight: 400; color: var(--accent-gold-pale); }
.cx8xrur { font-size: 18px; color: var(--text-secondary); margin-bottom: 50px; max-width: 600px; margin-inline: auto; font-weight: 300; }

.btn-luxury {
  display: inline-flex; align-items: center; gap: 15px; padding: 20px 45px;
  background: var(--accent-gold); color: var(--bg-deep); font-weight: 800; font-size: 16px;
  border-radius: 5px; overflow: hidden; position: relative;
}
.btn-luxury::before {
    content: ''; position: absolute; inset: 0; background: white;
    transform: translateX(-100%); transition: var(--transition); z-index: -1;
}
.btn-luxury:hover::before { transform: translateX(0); }
.btn-luxury:hover { color: black; }

/* ===== SECTIONS ===== */
.cuekx36 { padding: 140px 0; }
.sec-head { text-align: center; margin-bottom: 100px; }
.sec-tag { font-size: 12px; color: var(--accent-gold); letter-spacing: 3px; display: block; margin-bottom: 20px; text-transform: uppercase; }
.c00zsgw { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px); line-height: 1.1; }

/* ===== LUXURY GRID ===== */
.luxury-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.lux-card { 
  background: var(--glass); border: 1px solid var(--border-gold); 
  padding: 60px 40px; text-align: center; border-radius: 5px; 
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.lux-card:hover { transform: translateY(-10px); background: rgba(212, 175, 55, 0.05); }
.lux-icon { font-size: 40px; color: var(--accent-gold); margin-bottom: 30px; display: block; }
.lux-title { font-family: var(--font-serif); font-size: 28px; margin-bottom: 20px; }
.lux-desc { color: var(--text-secondary); font-size: 15px; }

/* ===== IMAGE SPLIT ===== */
.split-row { display: flex; align-items: center; gap: 100px; margin-bottom: 140px; }
.split-row:nth-child(even) { flex-direction: row-reverse; }
.split-img { flex: 1; height: 600px; border: 1px solid var(--border-gold); border-radius: 5px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.2) contrast(1.1); transition: 1s; }
.split-img:hover img { transform: scale(1.05); }
.split-text { flex: 0.8; }
.split-title { font-family: var(--font-serif); font-size: 44px; margin-bottom: 30px; }

/* ===== REVIEWS ===== */
.rev-grid { display: flex; gap: 30px; overflow-x: auto; padding-bottom: 40px; scrollbar-width: none; }
.rev-grid::-webkit-scrollbar { display: none; }
.rev-card { min-width: 450px; background: #0e0f16; border-left: 2px solid var(--accent-gold); padding: 50px; }
.c4mxqjz { font-family: var(--font-serif); font-size: 20px; font-style: italic; margin-bottom: 30px; color: var(--accent-gold-pale); }
.rev-author { display: flex; align-items: center; gap: 20px; }
.rev-author div { width: 40px; height: 1px; background: var(--accent-gold); }
.rev-author span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

/* ===== FOOTER ===== */
footer { background: var(--bg-deep); padding: 100px 0 50px; border-top: 1px solid var(--border-gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.footer-info p { color: var(--text-secondary); font-size: 14px; margin-top: 20px; max-width: 350px; }
.footer-col h4 { font-family: var(--font-serif); font-size: 20px; color: var(--accent-gold); margin-bottom: 30px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-secondary); }
.footer-col ul li a:hover { color: var(--accent-gold); }

.f-bottom { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.3); font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .luxury-grid { grid-template-columns: repeat(2, 1fr); }
  .split-row { flex-direction: column; }
  .split-img { height: 400px; }
  .c00zsgw { font-size: 50px; }
}

@media (max-width: 768px) {
  .cxuwkwk { display: none; }
  .cdxkov8 { display: flex !important; }
  
  .nav-inner { padding: 0 20px; }
  #hero .cizv4h9 { font-size: 40px; }
  .luxury-grid { grid-template-columns: 1fr; }
  
  .lux-card.large { flex-direction: column; padding: 40px 20px; gap: 30px; }
  .lux-card.large div:first-child { font-size: 60px !important; }
  
  .rev-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .hero-tag { font-size: 10px; letter-spacing: 5px; }
  .sec-tag { font-size: 10px; letter-spacing: 5px; }

  /* Mobile Nav Toggle */
  .nav-links.active {
    display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-deep); flex-direction: column; justify-content: center; align-items: center;
    gap: 30px; z-index: 999; animation: slideDown 0.5s ease forwards;
  }
  .nav-links.active a { font-size: 24px; font-family: var(--font-serif); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.cdxkov8 {
  cursor: pointer; width: 30px; height: 20px;
  flex-direction: column; justify-content: space-between; z-index: 1000;
}
.cdxkov8 span { width: 100%; height: 2px; background: var(--accent-gold); transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== MOBILE ===== */
@media (max-width: 960px) {
    .cxuwkwk { display: none; }
    .split-row { flex-direction: column; gap: 50px; }
    .split-img { width: 100%; height: 400px; order: 1 !important; }
    .split-text { width: 100%; text-align: center; }
    .luxury-grid { grid-template-columns: 1fr; }
    .cizv4h9 { font-size: 60px; }
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ===== STAFF GALLERY ===== */
.cdurppj { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.cfkh46v { position: relative; overflow: hidden; border-radius: 5px; border: 1px solid var(--border-gold); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cfkh46v:hover { border-color: var(--accent-gold); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15); }
.cyd6jdw {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.cyd6jdw::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,11,16,0.6) 100%);
  transition: opacity 0.6s;
}
.cfkh46v:hover .cyd6jdw::after { opacity: 0.3; }

/* ===== ATMOSPHERE GALLERY ===== */
.czlyru1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.cst11ry { position: relative; overflow: hidden; border-radius: 5px; border: 1px solid var(--border-gold); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cst11ry:hover { border-color: var(--accent-gold); transform: translateY(-8px); }
.ckk5yg7 {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ckk5yg7::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 50%);
  transition: opacity 0.6s;
}
.cst11ry:hover .ckk5yg7::after { opacity: 0; }

/* ===== FACILITIES GALLERY ===== */
.crbmt6n { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.capig5r { position: relative; overflow: hidden; border-radius: 5px; border: 1px solid var(--border-gold); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.capig5r:hover { border-color: var(--accent-gold); }
.c71dd90 {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.capig5r:hover .c71dd90 { transform: scale(1.08); }

/* ===== GALLERY RESPONSIVE ===== */
@media (max-width: 960px) {
  .cdurppj { grid-template-columns: repeat(2, 1fr); }
  .czlyru1 { grid-template-columns: repeat(2, 1fr); }
  .crbmt6n { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .cdurppj { grid-template-columns: 1fr; }
  .czlyru1 { grid-template-columns: 1fr; }
  .crbmt6n { grid-template-columns: 1fr; }
}

/* ===== CTA BANNER ===== */
#cta-banner {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}

.cgi5zr7 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
}

.cgi5zr7 span {
  color: var(--accent-gold);
}

.ch3jgh1 {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 300;
}

.ctq53by {
  display: block;
  font-size: 32px;
  color: var(--accent-gold);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 40px;
  transition: var(--transition);
}

.ctq53by:hover {
  color: var(--accent-gold-pale);
  transform: scale(1.05);
}

.c93ijv5 {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.c94cyvg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 45px;
  background: transparent;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--accent-gold);
  border-radius: 5px;
  transition: var(--transition);
}

.c94cyvg:hover {
  background: var(--accent-gold);
  color: var(--bg-deep);
}

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }
