:root{
  --dark:#07110d;
  --ink:#101513;
  --cream:#f5efe5;
  --muted:#756d63;
  --gold:#b88952;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* NAVIGATION */

.nav{
  position:fixed;
  z-index:20;
  top:18px;
  left:4vw;
  right:4vw;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 17px;
  border-radius:999px;
  background:rgba(7,17,13,.68);
  backdrop-filter:blur(20px);
  color:white;
  border:1px solid rgba(255,255,255,.15);
}

.brand{
  display:flex;
  gap:10px;
  align-items:center;
}

.brand span{
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-family:Georgia,serif;
  font-size:24px;
}

.brand small{
  display:block;
  color:#d6cab8;
  font-size:12px;
}

.nav nav{
  display:flex;
  gap:24px;
  font-size:14px;
}

/* HERO */

.hero{
  min-height:100svh;
  position:relative;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#000;
  color:white;
}

.hero > img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(7,17,13,.9),rgba(7,17,13,.35) 55%,rgba(7,17,13,.7)),
    linear-gradient(0deg,rgba(7,17,13,.86),transparent 45%);
}

.hero-content{
  position:relative;
  padding:160px 6vw 80px;
  max-width:1020px;
}

.kicker{
  text-transform:uppercase;
  letter-spacing:.17em;
  color:#e8d3aa;
  font-size:12px;
  font-weight:900;
}

.kicker.dark{color:var(--gold)}

.hero h1,
.section h2,
.spa h2,
.location h2,
.booking h2{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  letter-spacing:-.045em;
}

.hero h1{
  font-size:clamp(48px,7.8vw,112px);
  line-height:1.08;
  margin:18px 0 28px;
  max-width:950px;
}

.hero p{
  font-size:clamp(18px,2vw,24px);
  line-height:1.65;
  max-width:760px;
  color:#f0e7da;
}

.actions{
  display:flex;
  gap:14px;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  padding:16px 24px;
  font-weight:900;
  cursor:pointer;
}

.primary{
  background:var(--gold);
  color:white;
}

.ghost{
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.12);
  color:white;
}

.disabled,
.btn.disabled{
  background:#ece3d6;
  color:#756d63;
}

.floating{
  position:absolute;
  right:6vw;
  bottom:78px;
  background:rgba(245,239,229,.93);
  color:var(--ink);
  padding:24px;
  border-radius:26px;
  box-shadow:0 25px 70px rgba(0,0,0,.25);
  width:300px;
}

.floating b{
  display:block;
  font-family:Georgia,serif;
  font-size:25px;
}

.floating span{color:var(--muted)}

/* QUICK */

.quick{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#d8c9b8;
  gap:1px;
}

.quick div{
  background:var(--cream);
  padding:32px 6vw;
  text-align:center;
}

.quick b{
  display:block;
  font-family:Georgia,serif;
  font-size:34px;
}

.quick span{color:var(--muted)}

/* SECTIONS */

.section{padding:95px 6vw}

.section h2,
.spa h2,
.location h2,
.booking h2{
  font-size:clamp(38px,5vw,72px);
  line-height:1.05;
  margin:10px 0 20px;
}

.section p,
.copy p,
.spa p,
.location p,
.booking p{
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
}

.center{text-align:center}

/* APARTMENTS */

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

.apartment-card{
  background:#fff;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 25px 90px rgba(43,32,22,.12);
  display:flex;
  flex-direction:column;
}

.apartment-card.active{
  border:1px solid rgba(184,137,82,.35);
}

.apartment-card.coming{opacity:.92}

.apartment-image{
  position:relative;
  height:310px;
  overflow:hidden;
  background:#ddd;
}

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

.apartment-card:hover .apartment-image img{
  transform:scale(1.04);
}

.apartment-content{
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
}

.apartment-content h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:42px;
  line-height:1;
  margin:0;
  letter-spacing:-.035em;
}

.apartment-content p{
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
  margin:0;
}

.status{
  width:max-content;
  border-radius:999px;
  padding:8px 13px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.status.available{
  background:rgba(184,137,82,.14);
  color:var(--gold);
}

.status.soon{
  background:rgba(7,17,13,.08);
  color:var(--muted);
}

.coming-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:rgba(7,17,13,.78);
  color:white;
  backdrop-filter:blur(14px);
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
}

/* PLACEHOLDER */

.placeholder{
  background:linear-gradient(135deg,#0d1512,#18221d);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:310px;
}

.placeholder-content{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.placeholder-content span{
  color:white;
  font-family:Georgia,serif;
  font-size:42px;
  letter-spacing:.04em;
  opacity:.9;
}

/* FEATURE */

.feature{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.reverse{
  grid-template-columns:1fr 1fr;
}

.photo{
  overflow:hidden;
  border-radius:34px;
  box-shadow:0 28px 90px rgba(43,32,22,.15);
}

.photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tall{height:650px}

.copy ul{
  list-style:none;
  padding:0;
  margin:26px 0;
}

.copy li{
  border-bottom:1px solid #dfd3c4;
  padding:13px 0;
}

.copy li:before{
  content:"✓";
  color:var(--gold);
  font-weight:900;
  margin-right:12px;
}

/* SPA */

.spa{
  position:relative;
  min-height:78vh;
  color:white;
  display:flex;
  align-items:flex-end;
  padding:90px 6vw;
  overflow:hidden;
  background:#000;
}

.spa img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.spa:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(7,17,13,.86),rgba(7,17,13,.18)),
    linear-gradient(0deg,rgba(7,17,13,.8),transparent);
}

.spa div{
  position:relative;
  max-width:760px;
  z-index:1;
}

.spa p{color:#efe5d5}

/* GALLERY */

.gallery{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:16px;
  margin-top:32px;
}

.gallery a{
  height:330px;
  border-radius:28px;
  overflow:hidden;
  background:#ddd;
}

.gallery a:first-child{
  grid-row:span 2;
  height:676px;
}

.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.gallery a:hover img{
  transform:scale(1.05);
}

/* LOCATION */

.location{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:55px;
  align-items:center;
  background:var(--dark);
  color:white;
  padding:100px 6vw;
}

.location p{color:#d9ccbc}

.location img{
  border-radius:34px;
  box-shadow:0 30px 90px rgba(0,0,0,.3);
  height:560px;
  width:100%;
  object-fit:cover;
}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}

.chips a{
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  padding:10px 18px;
  color:#eadfce;
  transition:.3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  font-size:15px;
}

.chips a:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.45);
  transform:translateY(-2px);
}

/* BOOKING */

.booking{
  margin:90px 6vw;
  padding:65px;
  border-radius:40px;
  background:#fff;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:58px;
  box-shadow:0 25px 90px rgba(43,32,22,.12);
}

form{
  display:grid;
  gap:14px;
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

input,
textarea{
  border:1px solid #e1d6c8;
  background:#fbf8f3;
  border-radius:17px;
  padding:17px;
  font:inherit;
}

textarea{min-height:130px}

/* FOOTER */

footer{
  padding:36px 6vw;
  background:#050806;
  color:white;
  display:flex;
  gap:20px;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* COOKIE */

.cookie-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.cookie-box{
  width:100%;
  max-width:690px;
  background:#f8f5f1;
  border-radius:18px;
  padding:45px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  position:relative;
}

.cookie-close{
  position:absolute;
  top:18px;
  left:18px;
  width:32px;
  height:32px;
  border:none;
  border-radius:6px;
  background:#ece7de;
  cursor:pointer;
  font-size:18px;
}

.cookie-logo{
  text-align:center;
  margin-bottom:32px;
}

.cookie-logo h2{
  margin:0;
  font-size:72px;
  font-family:Georgia,serif;
  color:var(--gold);
  line-height:1;
}

.cookie-logo span{
  display:block;
  margin-top:8px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.14em;
  color:var(--gold);
}

.cookie-content h3{
  font-size:30px;
  margin-bottom:20px;
  font-family:Georgia,serif;
}

.cookie-content p{
  color:#666;
  line-height:1.8;
  font-size:17px;
  margin-bottom:20px;
}

.cookie-actions{
  display:flex;
  gap:10px;
  margin-top:28px;
}

.cookie-btn{
  flex:1;
  padding:18px;
  border:none;
  cursor:pointer;
  font-weight:800;
  font-size:14px;
  letter-spacing:.04em;
  border-radius:10px;
}

.cookie-btn.primary{
  background:var(--gold);
  color:white;
}

.cookie-btn.outline{
  background:white;
  color:var(--gold);
  border:1px solid var(--gold);
}

.cookie-btn.light{
  background:#efe5d8;
  color:#6f5a45;
}

.cookie-btn:hover{opacity:.92}

.cookie-footer{
  margin-top:22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  font-size:14px;
}

.cookie-footer a{
  color:var(--gold);
  font-weight:800;
}

/* COOKIE SETTINGS */

.cookie-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#f2efea;
  padding:18px 22px;
  margin-bottom:14px;
  border-radius:16px;
}

.cookie-option.active{
  background:#efe8dc;
}

.cookie-left{
  display:flex;
  align-items:center;
  gap:16px;
}

.cookie-left span{
  font-weight:600;
  color:#555;
}

.switch{
  position:relative;
  display:inline-block;
  width:56px;
  height:30px;
}

.switch input{
  opacity:0;
  width:0;
  height:0;
}

.slider{
  position:absolute;
  inset:0;
  cursor:pointer;
  background:#d4d4d4;
  transition:.3s;
  border-radius:999px;
}

.slider:before{
  content:"";
  position:absolute;
  height:22px;
  width:22px;
  left:4px;
  bottom:4px;
  background:white;
  border-radius:50%;
  transition:.3s;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
}

.switch input:checked + .slider{
  background:var(--gold);
}

.switch input:checked + .slider:before{
  transform:translateX(26px);
}

/* RESPONSIVE */

@media(max-width:900px){
  .nav nav{display:none}

  .nav{
    top:10px;
    left:12px;
    right:12px;
  }

  .hero-content{
    padding:125px 22px 45px;
  }

  .hero h1{
    font-size:48px;
    line-height:1.12;
  }

  .actions{flex-direction:column}
  .btn{width:100%}

  .floating{
    position:relative;
    right:auto;
    bottom:auto;
    margin:0 22px 35px;
    width:auto;
  }

  .hero{display:block}

  .quick,
  .apartment-grid,
  .feature,
  .location,
  .booking,
  .gallery{
    grid-template-columns:1fr;
  }

  .quick div{padding:25px}
  .section{padding:70px 22px}
  .apartment-image{height:260px}
  .apartment-content h3{font-size:36px}
  .tall{height:430px}

  .spa{
    min-height:70vh;
    padding:70px 22px;
  }

  .gallery a,
  .gallery a:first-child{
    height:280px;
    grid-row:auto;
  }

  .location{padding:75px 22px}
  .location img{height:360px}

  .booking{
    margin:60px 22px;
    padding:30px 22px;
  }

  .two{grid-template-columns:1fr}

  .cookie-box{
    padding:30px 20px;
  }

  .cookie-actions{
    flex-direction:column;
  }

  .cookie-logo h2{
    font-size:52px;
  }
}
