:root{
  --gold:#CC8637;
  --gold-light:#e6b06d;
  --black:#000;
  --black-soft:#070604;
  --dark-btn:#0000008A;
  --cream:#E4CCB6;
  --cream-light:#F5E9DC;
  --text:#2c2722;
  --muted:#6e6258;
  --white:#fff;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Roboto", Arial, sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}

h1,h2,h3,.logo,.brand-text,.section-kicker,.btn{
  font-family:"Manrope", Arial, sans-serif;
}

img{max-width:100%;display:block}

a{text-decoration:none;color:inherit}

button{font:inherit;cursor:pointer}

.site-header{
  background:var(--black);
}

.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:96px;
  padding:0 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:100;
  background:rgba(0,0,0,.92);
  border-bottom:1px solid rgba(204,134,55,.14);
  transition:.35s ease;
}

.nav.scrolled{
  height:78px;
  background:rgba(0,0,0,.98);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--cream-light);
}

.logo-img{
    height:70px;
    width:auto;
    display:block;
    transition:.3s ease;
}

.logo-img:hover{
    opacity:.9;
}
@media(max-width:768px){

    .logo-img{
        height:60px;
    }
}


.brand-text small{
  color:var(--gold);
  font-size:9px;
  letter-spacing:3px;
  margin-top:4px;
}

.nav-links{
  display:flex;
  gap:38px;
  align-items:center;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-links a{
  color:var(--gold);
  font-weight:800;
  font-size:16px;
  transition:.25s ease;
}

.nav-links a:hover{color:#fff}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(204,134,55,.45);
  background:transparent;
  border-radius:999px;
}

.menu-toggle span{
  display:block;
  height:2px;
  width:18px;
  background:var(--gold);
  margin:5px auto;
}

.btn{
  border:none;
  border-radius:999px;
  padding:16px 34px;
  font-weight:800;
  font-size:14px;
  transition:.28s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.btn-gold{
  background:var(--gold);
  color:#fff;
  box-shadow:0 16px 34px rgba(204,134,55,.22);
}

.btn-gold:hover{
  transform:translateY(-3px);
  background:#b9782f;
}

.btn-outline{
  color:#fff;
  border:1px solid rgba(255,255,255,.8);
  background:var(--dark-btn);
}

.btn-outline:hover{
  background:var(--gold);
  border-color:var(--gold);
  transform:translateY(-3px);
}

.btn-solid-square{
  border-radius:5px;
  color:#fff;
  background:var(--gold);
  padding:17px 42px;
}

.hero{
  min-height:100vh;
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
  padding-top:96px;
}

.hero-video,.hero-fallback,.hero-overlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.hero-video{
  object-fit:cover;
  z-index:0;
}

.hero-overlay{
  z-index:1;
  background:
    radial-gradient(circle at 20% 45%, rgba(204,134,55,.22), transparent 25%),
    linear-gradient(180deg,rgba(0, 0, 0, 0.412),rgba(0, 0, 0, 0.683));
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  width:min(1000px,92%);
  padding-top:50px;
}

.eyebrow,.section-kicker{
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.08em;
  color:var(--gold);
  font-size:14px;
  margin:0 0 16px;
}

.hero-content .eyebrow{
  color:#fff;
}

.hero h1{
  margin:0;
  font-size:clamp(45px,6vw,82px);
  letter-spacing:-3px;
  line-height:.98;
}

.ornament,.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin:24px auto;
}

.ornament span,.divider span{
  height:4px;
  width:80px;
  background:var(--gold);
}

.ornament i,.divider i{
  width:15px;
  height:15px;
  background:var(--gold);
  transform:rotate(45deg);
  display:block;
}

.hero-copy{
  color:#fff;
  font-size:17px;
  margin:0 auto 40px;
  max-width:680px;
  font-weight:300;
  line-height:1.8;
}

.hero-actions{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
}

.intro-card{
  width:min(1200px,88%);
  margin:-40px auto 0;
  position:relative;
  z-index:3;
  background:var(--cream);
  box-shadow:0 24px 55px rgba(0,0,0,.25);
  padding:70px 60px;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:50px;
  align-items:center;
}

.intro-copy{
  text-align:center;
}

.intro-copy h2,.suite-copy h2,.section-heading h2{
  font-size:clamp(32px,4vw,52px);
  letter-spacing:-1.4px;
  line-height:1.08;
  color:#070604;
  margin:0 0 22px;
}

.intro-copy p,.suite-copy p{
  color:#413931;
  font-size:17px;
  line-height:1.85;
  font-weight:500;
}

.image-frame{
  position:relative;
  overflow:hidden;
  min-height:380px;
  background:
    linear-gradient(135deg,rgba(204,134,55,.18),rgba(0,0,0,.05)),
    #1a1714;
}

.image-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:380px;
  transition:transform .7s ease;
}

.image-frame:hover img{
  transform:scale(1.06);
}

.section{
  padding:110px 8%;
}

.suite-section{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:70px;
  align-items:center;
  background:#fff;
}

.feature-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin:32px 0;
}

.feature-list span{
  padding:14px 16px;
  background:var(--cream-light);
  border-left:3px solid var(--gold);
  font-weight:700;
}

.amenities{
  background:#fff;
  text-align:center;
  padding-top:40px;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 54px;
}

.amenity-grid{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:46px 70px;
  align-items:start;
}

.amenity-grid article{
  transition:.28s ease;
}

.amenity-grid article:hover{
  transform:translateY(-8px);
}

.amenity-icon{
  width:78px;
  height:78px;
  border:3px solid #000000;
  color:#333;
  border-radius:18px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  font-size:38px;
  font-weight:800;
}

.amenity-grid h3{
  font-size:17px;
  margin:0;
}

.divider span{
  width:260px;
  height:2px;
  opacity:.55;
}

.stats{
  position:relative;
  min-height:330px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  align-items:center;
  text-align:center;
  padding:85px 8%;
  color:#fff;
}

.stat{
  position:relative;
  z-index:2;
}

.stat strong{
  display:block;
  font-family:"Manrope",Arial,sans-serif;
  font-size:clamp(44px,5vw,76px);
  color: #df9438;
  line-height:1;
}

.stat span{
  font-family:"Roboto",Arial,sans-serif;
  font-size:16px;
  color:#f6e4d1;
  font-weight:500;
}

.experiences{
  background:#080706;
  color:#fff;
}

.experiences h2{
  color:#fff;
}

.experience-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.experience-card{
  position:relative;
  overflow:hidden;
  min-height:430px;
  background:#15120f;
}

.experience-card img{
  width:100%;
  height:430px;
  object-fit:cover;
  opacity:.78;
  transition:.75s ease;
}

.experience-card:hover img{
  transform:scale(1.09);
  opacity:.55;
}

.experience-card div{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:30px;
  background:linear-gradient(transparent,rgba(0,0,0,.9));
}

.experience-card h3{
  color:var(--gold-light);
  font-size:24px;
  margin:0 0 10px;
}

.experience-card p{
  color:#f2e5d8;
  line-height:1.6;
  margin:0;
}

.reviews{
  background:var(--cream-light);
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.review-grid article{
  background:#fff;
  border-radius:22px;
  padding:34px;
  box-shadow:0 18px 45px rgba(70,49,29,.12);
  transition:.3s ease;
}

.review-grid article:hover{
  transform:translateY(-8px);
}

.review-grid span{
  color:var(--gold);
  letter-spacing:3px;
}

.review-grid p{
  color:var(--muted);
  line-height:1.8;
}

.review-grid strong{
  font-family:"Manrope",Arial,sans-serif;
}

.gallery{
  background:#fff;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.gallery-grid button{
  padding:0;
  border:0;
  overflow:hidden;
  background:#111;
  height:280px;
}

.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.9;
  transition:.55s ease;
}

.gallery-grid button:hover img{
  transform:scale(1.08);
  opacity:1;
}

.footer{
  background:#000;
  color:#cda87c;
  padding:70px 7% 30px;
}

.footer-main{
  display:grid;
  grid-template-columns:1.5fr .9fr 1fr .8fr;
  gap:60px;
  border-bottom:1px solid rgba(204,134,55,.2);
  padding-bottom:45px;
}

.footer h3{
  color:#d9c2a5;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin:0 0 20px;
}

.footer a{
  display:block;
  color:var(--gold);
  margin:13px 0;
  font-weight:700;
}

.footer p{
  line-height:1.8;
  margin:0 0 12px;
}

.footer-logo{
  color:var(--gold-light);
  font-family:"Manrope",Arial,sans-serif;
  font-size:46px;
  font-weight:800;
  margin-bottom:20px;
}

.footer-logo span{
  display:block;
  font-size:26px;
  letter-spacing:6px;
}

.socials{
  display:flex;
  gap:12px;
}

.socials a{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid #fff;
  background:#9e733a;
  color:#000;
  display:grid;
  place-items:center;
  margin:0;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-top:22px;
}

.netcore-credit{
  color:#CC8637 !important;
  padding:9px 14px;
  border-radius:2px;
  font-family:"Manrope",Arial,sans-serif;
  font-weight:800;
  display:inline-block !important;
  margin:0 !important;
}

.netcore-credit:hover{
  background:#fff;
  color:#000 !important;
}

.booking-modal,.lightbox{
  position:fixed;
  inset:0;
  z-index:500;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(14px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.booking-modal.show,.lightbox.show{
  display:flex;
}

.booking-panel{
  position:relative;
  width:min(520px,100%);
  padding:42px;
  border-radius:28px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(244,231,217,.95));
  box-shadow:0 28px 80px rgba(0,0,0,.45);
  animation:modalIn .35s ease both;
}

@keyframes modalIn{
  from{opacity:0;transform:translateY(30px) scale(.96)}
  to{opacity:1;transform:none}
}

.booking-panel h2{
  margin:0 0 26px;
  font-size:34px;
}

.modal-close,#closeLightbox{
  position:absolute;
  top:16px;
  right:18px;
  border:0;
  background:#000;
  color:#fff;
  width:38px;
  height:38px;
  border-radius:50%;
  font-size:24px;
}

.booking-panel form{
  display:grid;
  gap:16px;
}

.booking-panel label{
  font-weight:700;
  color:#2c241f;
}

.booking-panel input,.booking-panel select{
  width:100%;
  margin-top:7px;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  padding:14px 15px;
  border-radius:12px;
  font-family:"Roboto",Arial,sans-serif;
}

.lightbox img{
  max-width:90vw;
  max-height:84vh;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.6);
}

#closeLightbox{
  top:28px;
  right:34px;
}

.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .8s ease, transform .8s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

@media(max-width:1050px){
  .nav-links{
    position:fixed;
    top:78px;
    right:20px;
    left:20px;
    display:none;
    flex-direction:column;
    background:#050505;
    padding:28px;
    border:1px solid rgba(204,134,55,.3);
  }

  .nav-links.open{display:flex}

  .menu-toggle{display:block}

  .nav-book{display:none}

  .intro-card,.suite-section{
    grid-template-columns:1fr;
  }

  .experience-grid,.review-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-main{
    grid-template-columns:1fr 1fr;
  }
}

.stats{
  background:
    linear-gradient(
      rgba(0,0,0,.75),
      rgba(0,0,0,.75)
    ),
    url("images/bg.webp");
    
  background-size:cover;
  background-position:center;
}
.gallery-btn{
  display:none;
}

.gallery-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  backdrop-filter:blur(10px);
  z-index:9999;

  display:none;
  align-items:center;
  justify-content:center;

  padding:20px;
}

.gallery-modal.show{
  display:flex;
}

.gallery-modal-content{
  width:100%;
  max-width:1200px;
  max-height:90vh;
  overflow:auto;
}

.gallery-modal-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.gallery-modal-grid img{
  width:100%;
  height:250px;
  object-fit:cover;
}

#closeGalleryModal{
  position:fixed;
  top:20px;
  right:20px;

  width:50px;
  height:50px;

  border:none;
  border-radius:50%;

  background:#CC8637;
  color:#fff;

  font-size:28px;
}

@media(max-width:768px){

  .desktop-only{
    display:none;
  }

  .gallery-btn{
    display:block;
    margin:30px auto 0;
    background:#CC8637;
    color:#fff;
    border:none;
    padding:16px 28px;
    border-radius:999px;
    font-family:Manrope,sans-serif;
    font-weight:700;
  }

}

@media(max-width:760px){
  .footer-logo img{
        width:180px;
        margin:0 auto;
    }
    
  .nav{
    height:78px;
    padding:0 20px;
  }

  .brand-mark{
    width:46px;
    height:46px;
    font-size:19px;
  }

  .brand-text{
    font-size:15px;
  }

  .hero{
    min-height:92vh;
  }

  .hero h1{
    letter-spacing:-1.5px;
  }

  .intro-card{
    width:92%;
    padding:42px 22px;
  }

  .section{
    padding:76px 22px;
  }

  .feature-list,.stats,.amenity-grid,.experience-grid,.review-grid,.gallery-grid,.footer-main,.footer-bottom{
    grid-template-columns:1fr;
  }

  .amenity-grid{
    grid-template-columns:repeat(2,1fr);
    gap:32px 20px;
  }

  .divider span{
    width:90px;
  }

  .stats{
    background-attachment:scroll;
  }

  .gallery-grid button{
    height:230px;
  }

  .footer-bottom{
    display:grid;
    align-items:start;
  }
}
.trust-bar{
  background:#111;
  color:#fff;
  padding:28px 0;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:center;
}

.trust-item span{
  display:block;
  color:#CC8637;
  font-size:28px;
  margin-bottom:10px;
}

.trust-item p{
  margin:0;
  font-weight:600;
}

@media(max-width:768px){

  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

.floating-book{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:999;

  background:#CC8637;
  color:#fff;
  text-decoration:none;

  padding:16px 24px;
  border-radius:999px;

  font-family:Manrope,sans-serif;
  font-weight:700;

  box-shadow:0 15px 35px rgba(204,134,55,.35);

  transition:.3s ease;
}

.floating-book:hover{
  transform:translateY(-4px);
}

@media(max-width:768px){

  .floating-book{
    bottom:90px;
    right:16px;
    padding:14px 20px;
    font-size:14px;
  }

}

.footer-logo img{
    width:220px;
    max-width:100%;
    height:auto;
    display:block;
}