:root{
  --bg:#07070a;
  --panel: rgba(255,255,255,.05);
  --panel2: rgba(255,255,255,.03);
  --text:#f5f5f7;
  --muted:#c7c7d1;
  --gold:#c7a76a;
  --gold2:#e6cf9a;
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 20px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 18% 0%, rgba(199,167,106,.14), transparent 60%),
    radial-gradient(900px 500px at 92% 18%, rgba(230,207,154,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--gold2);text-decoration:none}
a:hover{opacity:.92}
.container{max-width:1180px;margin:0 auto;padding:0 18px}

header{
  position:sticky; top:0; z-index:80;
  background: rgba(7,7,10,.78);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; gap:16px; justify-content:space-between;
  padding:16px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand img{height:120px; width:auto; border-radius:16px; border:1px solid rgba(199,167,106,.40); box-shadow: var(--shadow)}
.brand .txt{display:flex; flex-direction:column}
.brand .name{font-weight:800; letter-spacing:.2px}
.brand .tag{font-size:.78rem; color:var(--muted); text-transform:uppercase; letter-spacing:.16em}

nav{display:flex; gap:8px; flex-wrap:wrap; justify-content:center; flex:1}
nav a{
  color:var(--muted);
  padding:9px 10px;
  border-radius: 14px;
  border:1px solid transparent;
}
nav a:hover{border-color:var(--line); color:var(--text)}
nav a.active{border-color:rgba(199,167,106,.42); background:rgba(199,167,106,.08); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); transition: .16s ease}
.btn-gold{
  border-color: rgba(199,167,106,.58);
  background: linear-gradient(180deg, rgba(199,167,106,.25), rgba(199,167,106,.08));
  box-shadow: 0 16px 42px rgba(199,167,106,.12);
}
.btn-ghost{background: rgba(255,255,255,.04)}

.hero{
  position:relative;
  min-height: 84vh;
  display:grid;
  align-items:stretch;
  border-bottom:1px solid var(--line);
}
.hero .slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 1.6s ease;
}
.hero .slide.active{opacity:1; transform: scale(1.0)}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.40));
}
.hero .content{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:center;
  padding: 54px 0;
}
@media (max-width: 900px){
  .hero .content{grid-template-columns:1fr; padding: 34px 0}
  nav{justify-content:flex-start}
}
.kicker{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  margin:0 0 10px;
}
h1{
  margin:0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height:1.06;
}
.lead{color:#ececf2; font-size:1.05rem; max-width:64ch}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.list{margin:0; padding:0; list-style:none}
.list li{color:var(--muted); margin:10px 0; padding-left:26px; position:relative}
.list li::before{content:"✦"; color:var(--gold2); position:absolute; left:0}

.section{padding:60px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(199,167,106,.10), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.section h2{margin:0 0 10px; font-size:2.0rem; color:var(--gold2)}
.muted{color:var(--muted)}
.grid-2{display:grid; gap:14px; grid-template-columns: repeat(2, 1fr)}
.grid-3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 900px){ .grid-2, .grid-3{grid-template-columns:1fr} }

.tile{
  background: var(--panel2);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}
.tile h3{margin:0 0 8px; color:var(--gold2)}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding:8px 10px;
  border-radius:999px;
  font-size:.88rem;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
  margin-top:18px;
}
.gallery figure{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}
.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.gallery figure:hover img{transform: scale(1.06)}
.gallery figcaption{
  position:absolute;
  left:12px; bottom:12px;
  padding:8px 10px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size:.92rem;
  backdrop-filter: blur(10px);
}
.span-6{grid-column: span 6}
.span-4{grid-column: span 4}
.span-8{grid-column: span 8}
.span-12{grid-column: span 12}
@media (max-width: 900px){ .span-6,.span-4,.span-8,.span-12{grid-column: span 12} }

.subhero{
  position:relative;
  min-height: 62vh;
  display:grid;
  align-items:stretch;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.subhero .slide{position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transform:scale(1.03); transition: opacity 1.1s ease, transform 1.6s ease}
.subhero .slide.active{opacity:1; transform:scale(1.0)}
.subhero::after{content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.25))}
.subhero .content{position:relative; z-index:2; padding: 44px 0}
.subhero h2{font-size: clamp(1.7rem, 3vw, 2.4rem); margin:0 0 10px; color:var(--gold2)}

form{display:grid; gap:12px}
label{display:grid; gap:6px; color:var(--muted); font-size:.92rem}
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(199,167,106,.65);
  box-shadow: 0 0 0 4px rgba(199,167,106,.14);
}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
@media (max-width: 700px){.row{grid-template-columns:1fr}}
.map{border-radius: var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.02)}
.map iframe{width:100%; height:320px; border:0}

footer{padding:34px 0; background: rgba(0,0,0,.28); border-top:1px solid rgba(255,255,255,.10)}
.footer-inner{display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between}
.small{font-size:.92rem}
.dot{opacity:.6}

/* Reveal */
.reveal{opacity:0; transform: translateY(18px) scale(.985); transition: opacity .9s ease, transform 1.0s ease; will-change: opacity, transform}
.reveal.visible{opacity:1; transform: translateY(0) scale(1)}

/* WhatsApp CTA */
.wa-float{
  position:fixed; right:16px; bottom:16px; z-index:120;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(199,167,106,.62);
  background: rgba(7,7,10,.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.wa-dot{width:10px;height:10px;border-radius:999px; background: rgba(230,207,154,.98); box-shadow: 0 0 0 5px rgba(230,207,154,.14)}

/* Directions CTA */
.dir-float{
  position:fixed; left:16px; bottom:16px; z-index:120;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(199,167,106,.45);
  background: rgba(7,7,10,.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.dir-ico{width:10px;height:10px;border-radius:999px; background: rgba(199,167,106,.98); box-shadow: 0 0 0 5px rgba(199,167,106,.14)}
