:root{
  --bg:#0b0b0c;
  --panel:#121214;
  --panel2:#0f0f11;
  --text:#f4f4f5;
  --muted:#b8b8bd;
  --line:#232327;
  --accent:#d6b25e; /* gold */
  --accent2:#2b2b30;
  --radius:16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 0%, #141418 0%, var(--bg) 55%);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}

.container{width:min(1100px, 92vw); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:#000; border:1px solid var(--line); border-radius:10px; z-index:9999;
}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,12,.75);
  border-bottom:1px solid rgba(35,35,39,.7);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:42px; height:42px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(214,178,94,.18), rgba(214,178,94,.05));
  border:1px solid rgba(214,178,94,.25);
  font-weight:800;
  letter-spacing:.5px;
}
.brand-text{display:flex; flex-direction:column}
.brand-text span{color:var(--muted); font-size:12px}

.menu{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.menu a{color:var(--muted); font-size:14px}
.menu a.btn{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(18,18,20,.85);
  gap:10px;
  font-weight:600;
  box-shadow:none;
}
.btn-primary{
  background: linear-gradient(180deg, rgba(214,178,94,.95), rgba(214,178,94,.75));
  color:#141414;
  border:1px solid rgba(214,178,94,.55);
}
.btn-secondary{
  background: rgba(18,18,20,.6);
  border:1px solid var(--line);
}

.hero{padding:44px 0 10px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.hero h1{
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.1;
  margin:0 0 12px;
}
.lead{color:var(--muted); font-size:16px; margin:0 0 18px; max-width:58ch}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.badge{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(18,18,20,.55);
}
.badge-title{display:block; color:var(--muted); font-size:12px; margin-bottom:4px}

.hero-media .media-card{
  height:100%;
  border-radius: var(--radius);
  border:1px solid rgba(214,178,94,.22);
  background:
    linear-gradient(180deg, rgba(214,178,94,.08), rgba(18,18,20,.65));
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  place-items:center;
  min-height: 340px;
}
.media-placeholder{
  text-align:center;
  padding:22px;
  color:var(--muted);
}
.media-placeholder strong{color:var(--text)}

.section{padding:56px 0}
.section.alt{background: rgba(255,255,255,.02); border-top:1px solid rgba(35,35,39,.6); border-bottom:1px solid rgba(35,35,39,.6)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 8px; font-size:28px}
.section-head p{margin:0; color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  background: rgba(18,18,20,.6);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: none;
}
.card h3{margin:0 0 6px}
.price{margin:0 0 8px; font-size:22px; font-weight:800; color: var(--accent)}
.card p{margin:0 0 10px; color:var(--muted)}
.link{display:inline-block; color:var(--text); font-weight:700}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.shot{
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(18,18,20,.55);
  min-height: 160px;
  display:grid;
  place-items:center;
  color: var(--muted);
}
.section-cta{margin-top:16px}

.booking{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
.booking-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18,18,20,.6);
  padding:16px;
}
.muted{color:var(--muted)}
.small{font-size:12px}

.hours{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.hours-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18,18,20,.55);
  padding:16px;
}
.hours-card ul{list-style:none; padding:0; margin:0}
.hours-card li{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid rgba(35,35,39,.6);
}
.hours-card li:last-child{border-bottom:none}
.map-wrap{margin:12px 0}
.map-placeholder{
  height:220px;
  border-radius: 14px;
  border:1px dashed rgba(214,178,94,.35);
  display:grid;
  place-items:center;
  color: var(--muted);
}

.about{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18,18,20,.55);
  padding:16px;
}

.footer{
  padding:26px 0 40px;
  border-top:1px solid rgba(35,35,39,.7);
  background: rgba(0,0,0,.2);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
}
.footer p{margin:6px 0}
.footer a{text-decoration:underline; text-decoration-color: rgba(214,178,94,.45); text-underline-offset:2px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .hero-badges{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .booking{grid-template-columns:1fr}
  .hours{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .menu{display:none} /* keep it simple for now; we can add a mobile menu later */
}
