*,
*::before,
*::after { box-sizing: border-box; }

:root{
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-alt: #f3efe8;
  --text: #23201c;
  --muted: #6f685f;
  --line: rgba(35, 32, 28, 0.1);
  --accent: #9f7d54;
  --accent-dark: #7b5f3d;
  --shadow: 0 18px 45px rgba(26, 22, 17, 0.08);
  --radius: 22px;
  --container: 1180px;
}

html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family:"Raleway", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.75;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), calc(100% - 2rem));
  margin:0 auto;
}
.narrow{ width:min(760px, calc(100% - 2rem)); }
.center{ text-align:center; }

.site-header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:20;
}
.site-header.solid{
  position:sticky;
  background:rgba(24, 21, 18, 0.92);
  backdrop-filter:blur(10px);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:84px;
  gap:1rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  color:#fff;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.brand-mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.5);
  border-radius:999px;
  font-family:"Playfair Display", serif;
}
.brand-text{ font-size:.9rem; }

.site-nav{
  display:flex;
  align-items:center;
  gap:1.4rem;
}
.site-nav a{
  color:#fff;
  font-size:.83rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.btn-nav{
  border:1px solid rgba(255,255,255,.55);
  padding:.8rem 1rem;
  border-radius:999px;
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  padding:.25rem;
}
.nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  margin:5px 0;
}

.hero{
  position:relative;
  min-height:100vh;
  display:grid;
  align-items:center;
  background-position:center;
  background-size:cover;
  color:#fff;
}
.hero-short{ min-height:72vh; }
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,13,11,.56), rgba(15,13,11,.26), rgba(15,13,11,.66));
}
.hero-content{
  position:relative;
  z-index:1;
  padding-top:6rem;
  padding-bottom:4rem;
  max-width:760px;
}
.eyebrow,
.section-kicker{
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:.78rem;
  color:rgba(255,255,255,.85);
}
.section-kicker{ color:var(--accent); }
.hero h1,
.section h2{
  font-family:"Playfair Display", serif;
  font-weight:700;
  line-height:1.08;
  letter-spacing:.01em;
}
.hero h1{
  font-size:clamp(2.6rem, 6vw, 5.5rem);
  margin:.45rem 0 1rem;
}
.hero-text{
  font-size:1.12rem;
  color:rgba(255,255,255,.9);
  max-width:680px;
}
.hero-actions{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:1.7rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  padding:1rem 1.4rem;
  border-radius:999px;
  font-size:.86rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  transition:.25s ease;
}
.btn-light{
  background:#fff;
  color:#111;
}
.btn-light:hover{ transform:translateY(-1px); }
.btn-outline{
  border:1px solid rgba(255,255,255,.7);
  color:#fff;
}
.btn-outline:hover{
  background:rgba(255,255,255,.12);
}
.btn-dark{
  background:var(--text);
  color:#fff;
}
.btn-dark:hover{
  background:#000;
  transform:translateY(-1px);
}

.section{
  padding:5.5rem 0;
}
.alt{ background:var(--surface-alt); }

.section-head{
  margin-bottom:2rem;
  text-align:center;
}
.section h2{
  font-size:clamp(2rem, 4vw, 3.3rem);
  margin:.35rem 0 0;
}
.section p{
  color:var(--muted);
  margin:0 0 1rem;
  font-size:1.04rem;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.25rem;
}
.card{
  background:var(--surface);
  padding:1.8rem;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.4);
}
.card h3{
  margin:.35rem 0 .6rem;
  font-size:1.15rem;
  color:var(--text);
}
.card-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(159,125,84,.12);
  color:var(--accent-dark);
  font-size:1.4rem;
}

.amenity-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:.9rem;
  margin-top:1.25rem;
}
.amenity-grid div{
  background:var(--surface);
  border-radius:16px;
  padding:1rem 1.15rem;
  border:1px solid var(--line);
  color:var(--text);
  box-shadow:var(--shadow);
}
.amenity-note{
  margin-top:1rem;
  text-align:center;
  font-size:.95rem;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}
.gallery-item{
  overflow:hidden;
  border-radius:20px;
  box-shadow:var(--shadow);
  background:#ddd;
  aspect-ratio: 1 / 0.8;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.gallery-item:hover img{
  transform:scale(1.04);
}

.stacked-images{
  display:grid;
  gap:1rem;
  margin:1.6rem 0 1.4rem;
}
.stacked-images img{
  border-radius:22px;
  box-shadow:var(--shadow);
}

.contact-card{
  background:var(--surface);
  border-radius:24px;
  padding:2rem;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  margin-top:1.5rem;
}
.contact-card p{
  margin-bottom:1.1rem;
}
.contact-card a{
  color:var(--accent-dark);
  font-weight:700;
}

.site-footer{
  background:#1a1713;
  color:rgba(255,255,255,.72);
  padding:1.4rem 0;
}
.footer-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.footer-links{
  display:flex;
  gap:1rem;
}
.footer-links a:hover{ color:#fff; }

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  display:none; /* default hidden */
  place-items:center;
  z-index:100;
  padding:1rem;
}

/* show ONLY when JS removes "hidden" */
.lightbox:not([hidden]){
  display:grid;
}

.lightbox-image{
  max-width:min(1100px, 92vw);
  max-height:88vh;
  border-radius:14px;
}

.lightbox-close{
  position:absolute;
  top:1rem;
  right:1rem;
  width:44px;
  height:44px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

@media (max-width: 980px){
  .cards{ grid-template-columns:repeat(2, 1fr); }
  .amenity-grid{ grid-template-columns:repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width: 760px){
  .nav-toggle{ display:block; }
  .site-nav{
    position:absolute;
    top:84px;
    left:1rem;
    right:1rem;
    background:rgba(24,21,18,.96);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:1rem;
    flex-direction:column;
    align-items:flex-start;
    display:none;
  }
  .site-nav.open{ display:flex; }
  .hero{ min-height:88vh; }
  .hero-short{ min-height:62vh; }
  .section{ padding:4.4rem 0; }
  .cards,
  .amenity-grid,
  .gallery-grid{ grid-template-columns:1fr; }
  .footer-wrap{ flex-direction:column; text-align:center; }
}