:root{
  --ink:#ffffff;
  --muted:rgba(255,255,255,.82);

  --glass: rgba(20, 14, 10, .52);
  --glass2: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.16);

  --paper: rgba(20,14,10,.42);
  --paperAlt: rgba(20,14,10,.55);

  --radius:18px;
  --shadow:0 18px 50px rgba(0,0,0,.35);

  --serif:"Cormorant Garamond", serif;
  --sans:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --gold1:#f3e7cf;
  --gold2:#d8c09a;
  --goldInk:#1b1713;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
img{max-width:100%;display:block}
a{color:inherit}

.container{max-width:1100px;margin:0 auto;padding:0 16px}

/* ===== FONDO HERO SIEMPRE ===== */
body{
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(0,0,0,.20), rgba(0,0,0,.75)),
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.78)),
    url("../img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

/* ===== TOPBAR ===== */
.topbar{
  background:rgba(58,42,30,.72);
  color:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:10px 0;
  flex-wrap:wrap;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:.92rem;
}
.topbar a{color:#fff;text-decoration:none}
.link{opacity:.92;text-decoration:none}
.link:hover{opacity:1;text-decoration:underline}

/* ===== HEADER ===== */
.header{
  position:sticky;top:0;z-index:60;
  backdrop-filter: blur(12px);
  background: rgba(58,42,30,0.78);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  min-width: 0;
}
.brand__logo{
  width:42px;height:42px;border-radius:50%;
  object-fit:cover;background:#fff;flex:0 0 auto;
}
.brand__text{min-width:0}
.brand__name{
  font-family:var(--serif);
  font-weight:700;
  font-size:1.28rem;
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand__tag{
  font-size:.9rem;
  opacity:.85;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav{display:none;align-items:center;gap:10px;flex-wrap:wrap}
.nav__link{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  font-size:.96rem;
}
.nav__link:hover{background:rgba(255,255,255,.12)}
.nav__link.is-active{background:rgba(255,255,255,.16)}

/* ===== BOTONES (MÁS CONTRASTE) ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  transition:.2s;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.btn:hover{background:rgba(255,255,255,.22);transform:translateY(-1px)}
.btn--small{padding:9px 12px;border-radius:12px;font-size:.95rem}

.btn--primary{
  background:linear-gradient(180deg,var(--gold1),var(--gold2));
  color:var(--goldInk);
  border:1px solid rgba(255,255,255,.30);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.btn--ghost{
  background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.24);
}
.btn--strong{
  background:rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.28);
}
.btn--reserve{
  background:linear-gradient(180deg,var(--gold1),var(--gold2));
  color:var(--goldInk);
  border:1px solid rgba(255,255,255,.34);
}
.btn--call{
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.22);
}
.btn--glow{
  box-shadow:
    0 18px 40px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.14),
    0 0 26px rgba(216,192,154,.40);
}

/* Burger */
.burger{
  display:inline-flex;
  flex-direction:column;
  gap:5px;
  padding:10px;
  border-radius:12px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
}
.burger span{width:22px;height:2px;background:#fff;border-radius:2px}

/* Mobile menu */
.mobile{
  display:none;
  padding:10px 16px 16px;
  border-top:1px solid rgba(255,255,255,.14);
  background: rgba(35, 22, 14, 0.78);
  backdrop-filter: blur(12px);
}
.mobile a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:#fff;
  text-decoration:none;
}
.mobile a:hover{background:rgba(255,255,255,.12)}
.mobile .btn{width:100%;margin-top:10px}

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:flex-end;
  color:#fff;
}
.hero__bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.hero__overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(800px 520px at 20% 25%, rgba(0,0,0,.18), rgba(0,0,0,.78)),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.72));
}
.hero__content{
  position:relative;
  padding: 56px 0 30px;
}
.eyebrow{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.16);
  font-size:.92rem;
  margin:0 0 14px;
}
.hero h1{
  font-family:var(--serif);
  font-size: clamp(2.0rem, 7vw, 3.2rem);
  line-height:1.03;
  margin:0 0 12px;
  text-shadow: 0 12px 26px rgba(0,0,0,.45);
}
.lead{
  margin:0 0 18px;
  max-width: 62ch;
  opacity:.92;
  line-height:1.55;
}
.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero__cta .btn{flex:1; min-width: 150px;}
.hero__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.badge{
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.16);
  font-weight:800;
  font-size:.95rem;
}

/* ===== SECTIONS (SIN FONDO BLANCO) ===== */
.section{
  padding:54px 0;
  background: transparent;
}
.section--alt{
  background: transparent;
}
.section__head{margin-bottom:18px}
.section__head h2{
  font-family:var(--serif);
  font-size:2rem;
  margin:0 0 6px;
}
.section__head p{margin:0;color:var(--muted);line-height:1.55}

/* ===== GRID & CARDS (GLASS) ===== */
.grid{display:grid;gap:14px}
.grid--2{grid-template-columns:1fr}
.grid--3{grid-template-columns:1fr}

.card{
  background: var(--glass);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  backdrop-filter: blur(10px);
}
.card--padded{padding:22px}
.card h3{
  font-family:var(--serif);
  font-size:1.55rem;
  margin:0 0 6px;
}
.card p{margin:0 0 12px;color:var(--muted);line-height:1.55}
.big{font-size:1.16rem;font-weight:900}
.muted2{color:var(--muted)}

.link--arrow::after{content:" →";}

.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.actions--center{justify-content:center;margin-top:16px}

/* Preview card */
.card--preview{padding:0; overflow:hidden; position:relative}
.card--preview img{width:100%; height: 360px; object-fit:cover; filter: contrast(1.05) saturate(1.05)}
.preview__overlay{
  position:absolute; left:14px; right:14px; bottom:14px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(0,0,0,.38);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

/* Menu cards */
.card--menu .card__top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  margin-bottom:12px;
}
.menuimg{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
}

/* CTA strip */
.cta-strip{
  margin-top:18px;
  border-radius:var(--radius);
  background: rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}
.cta-strip h3{margin:0;font-family:var(--serif);font-size:1.8rem}
.cta-strip p{margin:2px 0 0;opacity:.9}
.cta-strip__actions{display:flex;gap:10px;flex-wrap:wrap}
.cta-strip__actions .btn{flex:1;min-width:150px}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.gallery img{
  width:100%;
  height: 260px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 12px 30px rgba(0,0,0,.28);
}

/* Reviews */
.review__stars{font-weight:900; letter-spacing:1px; margin-bottom:10px}
.review__text{margin:0 0 10px; color: rgba(255,255,255,.90); line-height:1.55}
.review__who{opacity:.85; font-weight:700}

/* Map card */
.card--map{padding:0;overflow:hidden}
.card--map iframe{width:100%;height:360px;border:0; filter: saturate(1.05)}

/* Hours */
.hours{margin-top:18px}
.hours h4{
  margin:0 0 10px;
  font-family:var(--serif);
  font-size:1.35rem;
}
.hours-list{
  background: rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:10px;
}
.hrow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 8px;
}
.hrow + .hrow{border-top:1px solid rgba(255,255,255,.10)}
.hday{font-weight:900;color:rgba(255,255,255,.92)}
.htime{
  font-weight:900;
  color:rgba(255,255,255,.78);
  white-space:nowrap;
}
.hours-note{margin:10px 2px 0;color:rgba(255,255,255,.72);font-size:.92rem}

/* Footer */
.footer{
  padding:20px 0;
  background: rgba(0,0,0,.50);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.12);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.footer__links{display:flex;gap:12px;flex-wrap:wrap}
.footer__links a{color:#fff;text-decoration:none;opacity:.9}
.footer__links a:hover{opacity:1;text-decoration:underline}
.muted{opacity:.85}

/* Nota */
.note{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  background: rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
}

/* ===== Botón flotante Reservar (latido suave) ===== */
.float-reserve{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:999;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:999px;
  text-decoration:none;

  background:linear-gradient(180deg,var(--gold1),var(--gold2));
  color:var(--goldInk);
  border:1px solid rgba(255,255,255,.34);

  box-shadow:
    0 18px 40px rgba(0,0,0,.32),
    0 0 0 1px rgba(255,255,255,.14),
    0 0 26px rgba(216,192,154,.45);

  animation: pulseSoft 2.2s ease-in-out infinite;
}
.float-reserve__icon{font-size:1.1rem}
.float-reserve__text{font-weight:1000; letter-spacing:.2px}

@keyframes pulseSoft{
  0%,100%{ transform: translateY(0) scale(1); filter: brightness(1); }
  50%{ transform: translateY(-1px) scale(1.02); filter: brightness(1.03); }
}

/* ===== DESKTOP ===== */
@media (min-width: 900px){
  .nav{display:flex;}
  .burger{display:none;}
  .mobile{display:none !important;}

  .grid--2{grid-template-columns:1fr 1fr}
  .grid--3{grid-template-columns:repeat(3,1fr)}
  .gallery{grid-template-columns:repeat(4,1fr)}
  .gallery img{height:240px}
  .card--preview img{height:420px}
  .cta-strip{flex-direction:row;align-items:center;justify-content:space-between}
}

.footer__credit{
  display:flex;
  gap:6px;
  align-items:center;
  font-size:.9rem;
  opacity:.9;
}

.credit-link{
  color:rgba(255,255,255,.9);
  text-decoration:none;
  font-weight:700;
  border-bottom:1px solid rgba(255,255,255,.25);
}

.credit-link:hover{
  border-bottom-color:rgba(255,255,255,.6);
}

.footer__brand{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.footer__credit{
  font-size:.9rem;
  opacity:.85;
  display:flex;
  gap:6px;
  align-items:center;
}

.credit-link{
  text-decoration:none;
  color:rgba(255,255,255,.9);
  font-weight:700;
}

.credit-link:hover{
  opacity:1;
}

@media (max-width: 600px){

  .topbar__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .chip{
    font-size:0.8rem;
    padding:6px 10px;
  }

}

@media (max-width: 600px){

  .hero__cta{
    flex-direction:column;
    width:100%;
  }

  .hero__cta .btn{
    width:100%;
  }

}

@media (max-width: 600px){

  .hero h1{
    font-size:1.8rem;
    line-height:1.2;
  }

  .lead{
    font-size:0.95rem;
  }

}

@media (max-width: 600px){

  .hero__badges{
    flex-direction:column;
    align-items:flex-start;
  }

}