:root{
  --bg:#170704;
  --bg-2:#2A0D05;
  --brown:#5A220D;
  --brown-2:#7B3518;
  --gold:#F7B640;
  --gold-2:#FF9B32;
  --cream:#FFF0D2;
  --text:#FFF8EA;
  --muted:rgba(255,248,234,.78);
  --line:rgba(255,255,255,.16);
  --card:rgba(255,255,255,.08);
  --shadow:0 24px 70px rgba(0,0,0,.36);
  --radius:26px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size:18px;
  line-height:1.6;
  background:
    radial-gradient(1000px 520px at 12% 0%, rgba(247,182,64,.18), transparent 60%),
    radial-gradient(800px 460px at 88% 18%, rgba(255,155,50,.11), transparent 62%),
    linear-gradient(180deg, #170704 0%, #2A0D05 45%, #120503 100%);
  color:var(--text);
}
img, video{max-width:100%; display:block}
a{color:inherit}
.container{width:min(var(--max), calc(100% - 32px)); margin-inline:auto}
.skip-link{position:absolute; left:-999px; top:10px; background:#fff; color:#000; padding:12px; z-index:9999}
.skip-link:focus{left:10px}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(23,7,4,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  min-height:78px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand__logo{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(247,182,64,.35);
}
.brand__text strong{
  display:block;
  font-family:"Playfair Display", serif;
  font-size:24px;
  line-height:1;
}
.brand__text small{
  display:block;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}
.nav{
  display:flex;
  align-items:center;
  gap:8px;
}
.nav a{
  text-decoration:none;
  font-weight:900;
  font-size:15px;
  padding:12px 14px;
  border-radius:999px;
}
.nav a:hover{background:rgba(255,255,255,.08)}
.nav__order{
  background:linear-gradient(135deg, var(--gold), var(--gold-2));
  color:#301005;
  box-shadow:0 12px 30px rgba(247,182,64,.18);
}
.menu-btn{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
}

.hero{
  position:relative;
  padding:76px 0 48px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(23,7,4,.98), rgba(23,7,4,.78), rgba(23,7,4,.38)),
    url("../img/hero-caja.webp") center/cover no-repeat;
  opacity:.58;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.tag{
  display:inline-flex;
  color:var(--gold);
  font-weight:1000;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-size:14px;
  margin:0 0 12px;
}
h1,h2{
  font-family:"Playfair Display", serif;
  font-weight:900;
  line-height:1.03;
  margin:0;
}
h1{font-size:clamp(48px, 7vw, 86px)}
h2{font-size:clamp(34px, 4.4vw, 58px)}
.hero__lead{
  max-width:650px;
  font-size:22px;
  font-weight:750;
  color:var(--muted);
  margin:20px 0 26px;
}
.actions,.delivery-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 23px;
  border-radius:999px;
  text-decoration:none;
  font-weight:1000;
  border:1px solid var(--line);
  box-shadow:0 16px 34px rgba(0,0,0,.24);
}
.btn--primary{
  background:linear-gradient(135deg, var(--gold), var(--gold-2));
  color:#2E0F04;
}
.btn--secondary{
  background:rgba(255,255,255,.1);
  color:#fff;
}
.hero__badges{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero__badges span{
  border:1px solid var(--line);
  background:rgba(255,255,255,.08);
  border-radius:999px;
  padding:9px 12px;
  color:var(--muted);
  font-weight:850;
}
.hero__media{
  border:1px solid rgba(247,182,64,.36);
  border-radius:34px;
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:rotate(1deg);
}
.hero__media img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

.quick{
  padding:18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.quick__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.quick__grid a{
  text-align:center;
  text-decoration:none;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  font-weight:1000;
  font-size:18px;
}

.section{padding:76px 0}
.section__head{
  text-align:center;
  max-width:800px;
  margin:0 auto 30px;
}
.section__head p:not(.tag){
  color:var(--muted);
  margin:12px 0 0;
  font-weight:750;
}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.menu-card{
  min-height:220px;
  padding:24px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(0,0,0,.22);
}
.menu-card h3{
  font-family:"Playfair Display", serif;
  font-size:32px;
  margin:0 0 8px;
}
.menu-card p{
  color:var(--muted);
  font-weight:750;
}
.menu-card a{
  display:inline-flex;
  margin-top:10px;
  text-decoration:none;
  color:#2E0F04;
  background:var(--gold);
  padding:10px 14px;
  border-radius:999px;
  font-weight:1000;
}
.menu-card--highlight{
  border-color:rgba(247,182,64,.75);
}
.menu-card--premium{
  background:linear-gradient(180deg, rgba(247,182,64,.18), rgba(255,255,255,.05));
  border-color:rgba(247,182,64,.36);
}

.special,.about,.video-section{
  background:rgba(255,255,255,.035);
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}
.split__text p:not(.tag){
  color:var(--muted);
  font-size:20px;
  font-weight:750;
}
.split img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:34px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.split--reverse img{order:0}

.carousel{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(247,182,64,.36);
  box-shadow:var(--shadow);
}
.carousel__viewport{overflow:hidden}
.carousel__track{
  display:flex;
  transition:transform .45s ease;
  will-change:transform;
}
.carousel__track img{
  min-width:100%;
  height:620px;
  object-fit:cover;
}
.carousel__btn{
  position:absolute;
  top:50%;
  z-index:2;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  border-radius:50%;
  border:1px solid var(--line);
  background:rgba(23,7,4,.74);
  color:#fff;
  font-size:44px;
  line-height:1;
  cursor:pointer;
}
.carousel__btn--prev{left:16px}
.carousel__btn--next{right:16px}
.carousel__dots{
  position:absolute;
  left:0;
  right:0;
  bottom:14px;
  display:flex;
  justify-content:center;
  gap:8px;
}
.carousel__dots button{
  width:11px;
  height:11px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.45);
  cursor:pointer;
}
.carousel__dots button.active{
  background:var(--gold);
  width:28px;
}

.video-wrap{
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(247,182,64,.36);
  box-shadow:var(--shadow);
  background:#000;
}
.video-wrap video{
  width:100%;
  aspect-ratio:9/16;
  max-height:720px;
  object-fit:cover;
  margin:auto;
}

.hours-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.hour-card{
  text-align:center;
  padding:28px;
  border:1px solid rgba(247,182,64,.36);
  border-radius:var(--radius);
  background:rgba(255,255,255,.075);
}
.hour-card h3{
  font-family:"Playfair Display", serif;
  margin:0 0 14px;
  font-size:34px;
}
.hour-card p{
  margin:8px 0;
  color:var(--gold);
  font-size:28px;
  font-weight:1000;
}

.delivery-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:26px;
  padding:36px;
  border-radius:34px;
  border:1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(247,182,64,.17), rgba(255,255,255,.05)),
    rgba(255,255,255,.06);
  box-shadow:var(--shadow);
}
.delivery-card p{
  color:var(--muted);
  font-weight:750;
}

.accordion{
  max-width:900px;
  margin:auto;
  display:grid;
  gap:12px;
}
details{
  border:1px solid var(--line);
  background:rgba(255,255,255,.075);
  border-radius:18px;
  padding:18px 20px;
}
summary{
  font-size:20px;
  font-weight:1000;
  cursor:pointer;
}
details p{
  color:var(--muted);
  font-weight:750;
}

.footer{
  padding:46px 0 98px;
  background:#090302;
  border-top:1px solid var(--line);
}
.footer__grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:28px;
}
.footer__logo{
  width:116px;
  height:116px;
  object-fit:cover;
  border-radius:50%;
}
.footer p{
  color:var(--muted);
  font-weight:700;
}
.footer h3{
  margin:0 0 10px;
}

.floating-wa{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:2000;
  text-decoration:none;
  background:#25D366;
  color:#fff;
  font-weight:1000;
  padding:16px 22px;
  border-radius:999px;
  box-shadow:0 18px 42px rgba(37,211,102,.3);
}

@media (max-width: 900px){
  body{font-size:17px}
  .menu-btn{display:block}
  .nav{
    position:absolute;
    top:78px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    padding:12px;
    background:rgba(23,7,4,.98);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .nav a{
    width:100%;
    text-align:center;
    font-size:18px;
    padding:16px;
  }
  .hero{padding:48px 0}
  .hero__grid,.split,.footer__grid{
    grid-template-columns:1fr;
  }
  .hero__media{transform:none}
  .quick__grid,.menu-grid,.hours-grid{
    grid-template-columns:1fr;
  }
  .carousel__track img{height:480px}
  .delivery-card{
    display:block;
  }
  .delivery-actions{margin-top:18px}
  .btn{
    width:100%;
  }
}

@media (max-width: 520px){
  .brand__text small{display:none}
  .brand__text strong{font-size:22px}
  .hero__lead{font-size:20px}
  .section{padding:58px 0}
  .carousel__track img{height:410px}
  .carousel__btn{
    width:48px;
    height:48px;
    font-size:36px;
  }
  .hour-card p{font-size:24px}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .carousel__track{transition:none}
}
