:root{
  --bg:#0b0b0e;
  --panel:#111118;
  --panel2:#0f0f14;
  --text:#f2f2f3;
  --muted:#b9bac4;
  --brand:#c8a46a;
  --brand2:#e2c28b;
  --border:rgba(255,255,255,.09);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 0%, rgba(200,164,106,.20), transparent 55%),
              radial-gradient(1200px 900px at 90% 20%, rgba(200,164,106,.12), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  background:var(--panel); border:1px solid var(--border);
  padding:10px 12px; border-radius:12px; z-index:9999;
}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,14,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:42px; height:42px; border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#0b0b0e;
  display:grid; place-items:center;
  font-weight:900;
  box-shadow: 0 10px 25px rgba(200,164,106,.25);
}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__name{font-weight:900; letter-spacing:.2px}
.brand__sub{color:var(--brand); font-weight:700; font-size:.92rem}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--muted); font-weight:650}
.nav a:hover{color:var(--text)}

.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  cursor:pointer;
}
.nav-toggle span{
  display:block; height:2px; width:18px;
  margin:5px auto;
  background:var(--text);
  border-radius:2px;
  opacity:.9;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#0b0b0e;
  border:0;
  padding:14px 18px;
  border-radius:16px;
  font-weight:850;
  cursor:pointer;
  box-shadow: 0 12px 30px rgba(200,164,106,.22);
}
.btn:hover{filter:saturate(1.05) brightness(1.02)}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}
.btn--ghost:hover{border-color: rgba(200,164,106,.55)}
.btn--small{padding:10px 14px; border-radius:14px; font-weight:800}

.section{padding:74px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 55%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head{margin-bottom:26px}
.section__head h2{
  margin:0 0 8px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing:-.02em;
}
.section__head p{margin:0; color:var(--muted)}

.hero{
  position:relative;
  padding: 86px 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,11,14,.92) 0%, rgba(11,11,14,.72) 40%, rgba(11,11,14,.25) 75%, rgba(11,11,14,.0) 100%),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center right;
  filter:saturate(1.03) contrast(1.05);
}
.hero__content{position:relative}

.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(200,164,106,.35);
  background: rgba(200,164,106,.12);
  color: var(--brand2);
  font-weight:750;
  margin:0 0 14px;
}

.hero h1{
  margin:0 0 12px;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height:1.06;
  letter-spacing:-.03em;
}
.lead{
  margin:0 0 20px;
  max-width: 58ch;
  color: rgba(242,242,243,.92);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}

.hero__stats{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:26px;
}
.stat{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(17,17,24,.55);
}
.stat__big{color:var(--brand2); font-weight:900}
.stat__text{color:var(--muted); font-weight:700}

.grid{display:grid; gap:16px}
.cards{grid-template-columns: repeat(3, minmax(0,1fr))}
.card{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(17,17,24,.55);
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px; color:var(--muted)}
.checks{margin:0; padding-left:18px; color:rgba(242,242,243,.92)}
.checks li{margin:6px 0}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
.media img{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}

.badges{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0}
.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(200,164,106,.30);
  background: rgba(200,164,106,.10);
  color: var(--brand2);
  font-weight:800;
  font-size:.92rem;
}
.mini-cta{display:flex; gap:14px; align-items:center}
.link{color:var(--brand2); font-weight:800}
.link:hover{text-decoration:underline}

.pricing{grid-template-columns: repeat(4, minmax(0,1fr))}
.price-card{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(17,17,24,.55);
  box-shadow: var(--shadow);
}
.price-card h3{margin:0 0 10px}
.price{margin:0 0 8px; font-weight:950; font-size:1.6rem; color:var(--brand2)}
.muted{color:var(--muted)}
.small{font-size:.92rem}

.note{
  margin-top:18px;
  padding:14px 16px;
  border-radius: var(--radius2);
  border:1px solid rgba(200,164,106,.25);
  background: rgba(200,164,106,.10);
  color: rgba(242,242,243,.92);
}

.gallery{grid-template-columns: repeat(4, minmax(0,1fr))}
.shot{
  margin:0;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(17,17,24,.55);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.shot img{
  width:100%;
  height:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .25s ease;
}
.shot:hover img{transform: scale(1.06)}
.gallery-cta{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}

.reviews{grid-template-columns: repeat(3, minmax(0,1fr))}
.review{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(17,17,24,.55);
  box-shadow: var(--shadow);
}
.review .stars{color:var(--brand2); margin:0 0 10px; letter-spacing:1px}
.review p{margin:0 0 10px}
.review .who{margin:0; color:var(--muted); font-weight:800}

.faq details{
  border:1px solid var(--border);
  background: rgba(17,17,24,.55);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  margin: 12px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq__body{padding-top:10px; color:var(--muted)}

.contact{grid-template-columns: .9fr 1.1fr; align-items:start}
.contact__card{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(17,17,24,.55);
  box-shadow: var(--shadow);
}
.contact__rows{margin:12px 0 16px; display:grid; gap:10px}
.contact__rows > div{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.12);
}
.contact__rows .k{color:var(--muted); font-weight:750}
.contact__rows .v{font-weight:850}
.contact__actions{display:flex; gap:10px; flex-wrap:wrap}

.form{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(17,17,24,.55);
  box-shadow: var(--shadow);
}
.form__grid{grid-template-columns: repeat(2, minmax(0,1fr))}
.form__grid label{display:grid; gap:8px; font-weight:850}
.form__grid .full{grid-column: 1 / -1}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(200,164,106,.55)}
textarea{resize: vertical}
.hp{display:none !important}

.footer{
  padding:22px 0;
  border-top:1px solid var(--border);
  background: rgba(11,11,14,.75);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap;
  color:var(--muted);
}
.footer__links{display:flex; gap:14px}
.footer__links a:hover{color:var(--text)}

.lightbox{
  position:fixed; inset:0; z-index:999;
  display:grid; place-items:center;
  background: rgba(0,0,0,.78);
  padding:20px;
}
.lightbox__img{
  position: relative;
  z-index: 1;
  max-width:min(100%, 980px);
  max-height: min(100%, 86vh);
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.60);
}
.lightbox__close{
  position:absolute; top:18px; right:18px;
  z-index: 2;
  width:48px; height:48px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(17,17,24,.65);
  color: var(--text);
  font-size: 26px;
  cursor:pointer;
}

.toast{
  margin-top:16px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(200,164,106,.35);
  background: rgba(200,164,106,.12);
  color: rgba(242,242,243,.95);
  font-weight:850;
}

/* Responsive */
@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .pricing{grid-template-columns: repeat(2, minmax(0,1fr))}
  .gallery{grid-template-columns: repeat(3, minmax(0,1fr))}
  .reviews{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
}

@media (max-width: 720px){
  .nav-toggle{display:inline-block}
  .nav{
    position:fixed;
    top:72px; right:16px; left:16px;
    display:none;
    flex-direction:column;
    gap:12px;
    padding:14px;
    border-radius: 18px;
    border:1px solid var(--border);
    background: rgba(11,11,14,.92);
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
  .gallery{grid-template-columns: repeat(2, minmax(0,1fr))}
  .form__grid{grid-template-columns: 1fr}
}

.lightbox[hidden]{display:none !important}

.toast[hidden]{display:none !important}

.turnstile{margin:12px 0 0}
.btn.btn--ghost{color:var(--text)}

.btn[data-booking-open]{color:#0b0b0e}

.modal[hidden]{display:none !important}
.modal{
  position:fixed; inset:0; z-index:1000;
  display:grid; place-items:center;
  background: rgba(0,0,0,.72);
  padding: 18px;
}
.modal__panel{
  width: min(640px, 100%);
  max-height: min(86vh, 900px);
  overflow:auto;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(17,17,24,.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  padding: 18px;
  position: relative;
  transform: translateY(6px);
  animation: modalIn .18s ease-out;
}
@keyframes modalIn{
  from{opacity:0; transform: translateY(14px) scale(.98)}
  to{opacity:1; transform: translateY(6px) scale(1)}
}
.modal__close{
  position:absolute; top:14px; right:14px;
  width:46px; height:46px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(17,17,24,.65);
  color: var(--text);
  font-size: 26px;
  cursor:pointer;
  z-index: 2;
}
.form--modal{
  margin-top: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

/* Lightbox navigation */
.lightbox__prev,
.lightbox__next{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:52px;
  height:52px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(17,17,24,.65);
  color: var(--text);
  font-size: 34px;
  line-height: 0;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index: 3;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__prev{left:18px}
.lightbox__next{right:18px}
@media (max-width: 720px){
  .lightbox__prev,
  .lightbox__next{
    width:58px;
    height:58px;
    border-radius: 20px;
  }
}
