:root{
  --bg:#0f0b0c;
  --card:#151012;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --muted2:rgba(255,255,255,.6);
  --brand:#f48220;      /* naranja */
  --brand2:#511214;     /* vino */
  --cream:#f7efe6;
  --line:rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 10% 0%, rgba(244,130,32,.20), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(81,18,20,.35), transparent 55%),
              #080607;
  color:var(--text);
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
.container{width:min(1120px, 92%); margin-inline:auto}
.section{padding:72px 0}
.section-alt{background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));}
.section-head{display:flex; gap:18px; align-items:flex-end; justify-content:space-between; margin-bottom:22px; flex-wrap:wrap}
.section-head h2{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:clamp(28px, 3vw, 40px);
  letter-spacing:.2px;
}
.section-head p{margin:0; max-width:60ch; color:var(--muted)}
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:12px; top:12px; width:auto; height:auto; padding:10px 12px; background:var(--brand2); border-radius:10px; z-index:9999}

.site-header{
  position:sticky; top:0; z-index:1000;
  background:rgba(8,6,7,.70);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:14px}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand-mark{width:44px; height:44px; border-radius:12px; border:1px solid rgba(255,255,255,.14); box-shadow:0 10px 30px rgba(0,0,0,.35); object-fit:cover}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-name{font-weight:800; letter-spacing:.08em}
.brand-tag{font-size:12px; color:var(--muted2)}

.nav{display:flex; align-items:center; gap:18px}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:500;
  font-size:14px;
}
.nav a:hover{color:var(--text)}
.nav .btn-small{padding:10px 14px}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  align-items:center; justify-content:center;
  gap:4px;
}
.nav-toggle span{display:block; width:18px; height:2px; background:rgba(255,255,255,.85); border-radius:3px}

.hero{position:relative; min-height:78vh; display:grid; place-items:center; overflow:hidden}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:saturate(1.1) contrast(1.05) brightness(.95);
  transform:scale(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(700px 450px at 20% 20%, rgba(244,130,32,.35), transparent 60%),
              radial-gradient(700px 450px at 80% 20%, rgba(81,18,20,.55), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.78));
}
.hero-content{position:relative; padding:64px 0}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  margin:0 0 14px 0;
  color:var(--cream);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero h1{
  margin:0;
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(36px, 4.5vw, 62px);
  line-height:1.02;
}
.hero h1 span{color:var(--brand)}
.lead{margin:16px 0 0 0; max-width:65ch; color:rgba(255,255,255,.85); font-size:16px}
.hero-actions{display:flex; gap:12px; margin-top:24px; flex-wrap:wrap}
.hero-badges{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.badge{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:14px 14px;
}
.badge strong{display:block}
.badge span{color:var(--muted2); font-size:13px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 18px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--brand), #ffb36b);
  color:#1b0f10;
  text-decoration:none;
  font-weight:800;
  border:0;
  cursor:pointer;
  box-shadow: 0 14px 40px rgba(244,130,32,.25);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-ghost{
  background:rgba(255,255,255,.08);
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn-small{padding:10px 12px; border-radius:14px; font-weight:700}

.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px 0; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px; line-height:1.6}

.gallery{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
.gallery-item{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.gallery-item img{
  width:100%;
  height:210px;
  object-fit:cover;
  transition: transform .25s ease;
}
.gallery-item:hover img{transform:scale(1.03)}

.cta-strip{
  margin-top:20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(81,18,20,.65), rgba(244,130,32,.18));
}
.cta-strip h3{margin:0 0 6px 0}
.cta-strip p{margin:0; color:var(--muted)}

.video-wrap{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.video-wrap iframe{width:100%; aspect-ratio:16/9; display:block}

.grid-2{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
.map-card, .info-card, .embed-card{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.map-card iframe{width:100%; height:420px; border:0}
.info-card{padding:18px}
.info-card h3{margin:0 0 8px 0}
.info-card p{color:var(--muted); margin:0 0 14px 0}
.list{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.list a{color:var(--cream)}
.social{display:flex; gap:10px; flex-wrap:wrap}
.note{color:var(--muted2); font-size:13px; margin-top:12px}

.embed-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.embed-card{padding:18px}
.embed-card h3{margin:0 0 10px 0}
.embed{border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.10)}
.embed iframe{width:100%; height:520px}

.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.form{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.field{display:grid; gap:6px; margin-bottom:12px}
label{font-size:13px; color:var(--muted)}
input, textarea{
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  border-radius:16px;
  padding:12px 12px;
  font:inherit;
  outline:none;
}
input:focus, textarea:focus{border-color:rgba(244,130,32,.65); box-shadow:0 0 0 3px rgba(244,130,32,.18)}
.grid{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px}

.contact-card{
  background:linear-gradient(135deg, rgba(244,130,32,.12), rgba(81,18,20,.55));
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.contact-card p{color:rgba(255,255,255,.85)}
.contact-actions{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 14px}
.mini-gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}
.mini-gallery img{border-radius:16px; height:120px; object-fit:cover; border:1px solid rgba(255,255,255,.14)}

.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer-left{display:flex; align-items:center; gap:10px}
.footer-mark{width:44px; height:44px; border-radius:14px; object-fit:cover; border:1px solid rgba(255,255,255,.14)}
.muted{color:var(--muted2); font-size:13px}

.fab{
  position:fixed; right:16px; bottom:16px; z-index:1000;
  width:56px; height:56px;
  border-radius:18px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, #25D366, #0EA34B);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.18);
}
.fab svg{width:30px; height:30px; fill:white}

.lightbox{
  position:fixed; inset:0; z-index:2000;
  background:rgba(0,0,0,.86);
  display:none;
  place-items:center;
  padding:20px;
}
.lightbox.open{display:grid}
.lightbox-img{
  max-width:min(980px, 96vw);
  max-height:78vh;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.lightbox-caption{
  color:rgba(255,255,255,.85);
  margin-top:10px;
  text-align:center;
  max-width:80ch;
  font-size:14px;
}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:16px;
  width:44px; height:44px;
  cursor:pointer;
}
.lightbox-close{top:16px; right:16px; font-size:24px}
.lightbox-prev{left:16px; top:50%; transform:translateY(-50%); font-size:28px}
.lightbox-next{right:16px; top:50%; transform:translateY(-50%); font-size:28px}

@media (max-width: 980px){
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
  .gallery{grid-template-columns:repeat(3, minmax(0,1fr))}
  .grid-2{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .map-card iframe{height:360px}
  .embed-grid{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav{display:none}
  .nav.open{
    display:flex;
    position:absolute;
    right:4%; top:68px;
    flex-direction:column;
    padding:12px;
    background:rgba(8,6,7,.92);
    border:1px solid rgba(255,255,255,.14);
    border-radius:18px;
    width:min(280px, 92vw);
  }
  .nav-toggle{display:flex}
  .hero-badges{grid-template-columns:1fr; max-width:520px}
  .gallery{grid-template-columns:repeat(2, minmax(0,1fr))}
  .gallery-item img{height:170px}
  .grid{grid-template-columns:1fr}
}
