:root{
  --bg:#0b0c10;
  --panel:#12141c;
  --text:#e9eaf0;
  --muted:#a7adbd;
  --line:#232634;
  --brand:#f2f2f2;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1040px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 500px at 20% 10%, rgba(255,255,255,.08), transparent 55%),
              radial-gradient(900px 500px at 80% 30%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.7);
  border-bottom: 1px solid rgba(35,38,52,.7);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:64px;
}
.brand{display:flex; gap:10px; align-items:center}
.brand-mark{
  width:34px; height:34px; border-radius:12px;
  background: rgba(255,255,255,.12);
  display:grid; place-items:center;
  font-weight:700;
}
.brand-text{font-weight:650; letter-spacing:.2px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
}

.hero{padding:40px 0 14px}
.hero-inner{
  display:grid; gap:22px;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.08;
  margin:0 0 10px;
}
.lead{color:var(--muted); margin:0 0 18px}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  font-weight:600;
}
.btn.ghost{
  background: transparent;
  border:1px solid var(--line);
  box-shadow:none;
  color:var(--muted);
}
.micro{margin-top:14px; color:var(--muted); font-size:14px}
.micro a{color:var(--text)}

.hero-media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.hero-media img{display:block; width:100%; height:420px; object-fit:cover}

.section{padding:44px 0}
.section.alt{background: rgba(255,255,255,.03); border-top:1px solid rgba(35,38,52,.65); border-bottom:1px solid rgba(35,38,52,.65)}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:14px; margin-bottom:16px}
.section-head h2{margin:0; font-size:24px}
.muted{color:var(--muted)}

.filters{display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0 18px}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  cursor:pointer;
}
.chip.is-active{
  color: var(--text);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card{
  margin:0;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  cursor:pointer;
}
.card img{display:block; width:100%; height:280px; object-fit:cover; transition: transform .25s ease}
.card:hover img{transform: scale(1.02)}

.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
.about-card{
  border:1px solid var(--line);
  background: rgba(18,20,28,.75);
  border-radius: var(--radius);
  padding:16px;
}
.about-card h3{margin:0 0 10px}
.about-card ul{margin:0; padding-left:18px; color:var(--muted)}
.about-card li{margin:6px 0}

.booking-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.panel{
  border:1px solid var(--line);
  background: rgba(18,20,28,.75);
  border-radius: var(--radius);
  padding:16px;
}
.panel h3{margin:0 0 10px}
.panel ul, .panel ol{margin:0; padding-left:18px; color:var(--muted)}
.panel li{margin:6px 0}

.cta-row{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}

.contact-cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:14px;
}
.contact-card{
  border:1px solid var(--line);
  background: rgba(18,20,28,.75);
  border-radius: var(--radius);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.contact-card .label{color:var(--muted); font-size:13px}
.contact-card .value{font-weight:650}

.footer-note{margin:18px 0 0}

.lightbox{
  position:fixed; inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.82);
  padding:18px;
  z-index:50;
}
.lightbox img{
  max-width:min(980px, 100%);
  max-height: 86vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  background:#111;
}
.lightbox-close{
  position:fixed; top:16px; right:16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  border-radius: 14px;
  padding:10px 12px;
  cursor:pointer;
}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .hero-media img{height:360px}
  .grid{grid-template-columns: repeat(2, 1fr)}
  .two-col{grid-template-columns:1fr}
  .booking-grid{grid-template-columns:1fr}
  .contact-cards{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .site-header.is-open .nav{
    display:flex;
    position:absolute;
    top:64px; right:18px; left:18px;
    flex-direction:column;
    padding:12px;
    background: rgba(11,12,16,.95);
    border:1px solid var(--line);
    border-radius: 16px;
  }
}
