:root{
  --bg:#070707;
  --bg2:#0d0d0d;
  --gold:#d6b15a;
  --gold2:#b58a2f;
  --text:#f3f3f3;
  --muted:#b9b9b9;
  --card:#0f0f10;
  --border:rgba(214,177,90,.22);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 0%, rgba(214,177,90,.12), transparent 55%),
              radial-gradient(1000px 700px at 90% 10%, rgba(214,177,90,.08), transparent 50%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
backdrop-filter: blur(10px);
  background: rgba(7,7,7,.72);
  border-bottom:1px solid rgba(214,177,90,.12);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{width:42px; height:42px; border-radius:10px; box-shadow: 0 10px 30px rgba(0,0,0,.35)}
.brand .name{display:flex; flex-direction:column; line-height:1.1}
.brand .name strong{letter-spacing:.12em; font-size:14px}
.brand .name span{color:var(--muted); font-size:12px; letter-spacing:.14em}

.nav{
  display:flex; align-items:center; gap:14px;
}
.nav a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
}
.nav a:hover{color:var(--text); background: rgba(214,177,90,.08)}
.lang{
  display:flex; align-items:center; gap:8px;
}
.lang button{
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(214,177,90,.2);
  padding:7px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
  letter-spacing:.08em;
}
.lang button.active{
  color: var(--bg);
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  border-color: transparent;
}

.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(214,177,90,.25);
  background: rgba(214,177,90,.06);
  color:var(--text);
  font-weight:600;
  font-size:13px;
  letter-spacing:.04em;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{background: rgba(214,177,90,.12); border-color: rgba(214,177,90,.4)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color: #121212;
  border-color: transparent;
}
.btn.primary:hover{filter: brightness(1.02)}
.btn.ghost{
  background: transparent;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(214,177,90,.25);
  background: rgba(214,177,90,.06);
  color:var(--muted);
  font-size:12px;
  letter-spacing:.08em;
}

.hero{
  min-height: 85vh;
  padding:64px 0 26px;
}
.hero-grid{
  min-height: 85vh;
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  align-items:center;
}
.hero h1{
  min-height: 85vh;
  margin:14px 0 12px;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero p{
  min-height: 85vh;
  margin:0 0 20px;
  color:var(--muted);
  font-size: 16px;
  max-width: 58ch;
}
.hero-card{
  min-height: 85vh;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(214,177,90,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card .logo{
  min-height: 85vh;
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(214,177,90,.18);
}
.quick{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.quick .q{
  background: rgba(0,0,0,.25);
  border:1px solid rgba(214,177,90,.14);
  border-radius: 14px;
  padding:12px;
}
.quick .q strong{display:block; font-size:12px; letter-spacing:.12em; color:var(--muted)}
.quick .q span{display:block; margin-top:4px; font-size:14px}

.section{
  padding:54px 0;
}
.section h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.01em;
}
.section .lead{
  margin:0 0 22px;
  color:var(--muted);
  max-width: 75ch;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(214,177,90,.16);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px; font-size:16px; letter-spacing:.02em}
.card p{margin:0; color:var(--muted); font-size:14px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.list{
  margin:0; padding:0; list-style:none;
}
.list li{
  display:flex;
  gap:10px;
  padding:10px 0;
  border-bottom:1px dashed rgba(214,177,90,.18);
  color:var(--muted);
  font-size:14px;
}
.list li:last-child{border-bottom:none}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  margin-top:6px;
  flex:0 0 8px;
}

.form{
  display:grid;
  gap:12px;
}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(214,177,90,.2);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
  font-size:14px;
}
textarea{min-height:110px; resize:vertical}
.input::placeholder, textarea::placeholder{color: rgba(185,185,185,.8)}

.footer{
  padding:30px 0 50px;
  border-top:1px solid rgba(214,177,90,.12);
  color:var(--muted);
  font-size:13px;
}
.footer .row{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  flex-wrap:wrap;
}
.small-links{display:flex; gap:10px; flex-wrap:wrap}
.small-links a{color:var(--muted)}
.small-links a:hover{color:var(--text)}

@media (max-width: 900px){
  .hero-grid{
  min-height: 85vh;grid-template-columns:1fr; }
  .grid-3{grid-template-columns:1fr; }
  .split{grid-template-columns:1fr; }
  .nav{display:none}
}


.hero{
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}
.hero::before{
  min-height: 85vh;
  content:"";
  position:absolute;
  inset:-40px;
  background:
    linear-gradient(90deg, rgba(7,7,7,.92) 0%, rgba(7,7,7,.65) 55%, rgba(7,7,7,.92) 100%),
    url("../img/hero.jpg") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.hero > .container{
  min-height: 85vh;position:relative; z-index:1;}
.gallery-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:14px;
}
.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius: var(--radius);
  border:1px solid rgba(214,177,90,.16);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.gallery-grid .stack{
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap:14px;
}
@media (max-width: 900px){
  .gallery-grid{grid-template-columns:1fr;}
  .gallery-grid .stack{grid-template-rows:auto;}
}


/* --- Mobile fixes (header + hero) --- */
/* Remove accidental huge min-heights inside hero typography */
.hero h1,
.hero p,
.hero-card,
.hero-card .logo{
  min-height: unset;
}

/* Make topbar actions fit nicely on mobile */
@media (max-width: 760px){
  .nav{display:none;}
  .topbar-inner{gap:10px;}
  .brand img{width:36px; height:36px;}
  .brand .name strong{font-size:12px;}
  .brand .name span{font-size:11px;}
  .cta{gap:8px;}
  .cta .btn{padding:10px 12px; font-size:12px; gap:8px; white-space:nowrap;}
  .lang button{padding:6px 9px; font-size:11px;}
  /* On mobile: keep only language switcher in topbar */
  #callBtn,
  #bookBtn{display:none !important;}
}

@media (max-width: 420px){
  .cta{gap:6px;}
  .cta .btn{padding:9px 10px; font-size:11.5px;}
}

/* --- ZAZITO: header contact additions --- */
.topbar { position:fixed; top: 0; z-index: 9999; }
.brand { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.phone-inline { font-weight: 700; opacity: .95; white-space: nowrap; }
.btn.whatsapp { border: 1px solid rgba(214,177,90,.35); background: rgba(214,177,90,.12); }
.btn.whatsapp:hover { background: rgba(214,177,90,.18); }

@media (max-width: 820px){
  .nav { display: none; }
  .phone-inline { font-size: 12px; }
  .cta { gap: 8px; }
  .btn.whatsapp { padding: 10px 12px; font-size: 12px; }
}

/* --- ZAZITO: sticky header tweaks --- */
.brand{flex-wrap:nowrap;}
.phone-inline{display:inline-block; margin-left:6px;}

body{padding-top:86px;}

.form-success{color:#d6b15a;font-weight:700;}
.form-error{color:#ffb4b4;font-weight:700;}


/* --- Hero premium typography & glass card --- */
.hero .hero-card{
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(214,177,90,0.22);
  border-radius: 18px;
  padding: 26px 26px 22px;
  max-width: 760px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.hero .badge{
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.92;
}
.hero h1{
  text-shadow: 0 8px 26px rgba(0,0,0,0.55);
}
.hero .accent{
  color: var(--gold);
}
.hero [data-i18n="p1"]{
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
}
.hero .hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

