/* Bruxelles by David Leon — réplica fiel del diseño original
   Medido del sitio en vivo:
   fondo global #0E1317 · secundario #222D3B · acento #C19977
   cuerpo Mulish 16px #B1B5B7 · títulos Oswald 200 · cursiva Satisfy · citas Sorts Mill Goudy */
:root {
  --accent: #C19977;
  --bg: #0E1317;
  --panel: #222D3B;
  --text: #B1B5B7;
  --muted: #848788;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: "Oswald", sans-serif; font-weight: 200; line-height: 1.25; color: var(--white); }

/* ---------- polish global ---------- */
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c3540; border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
html { scrollbar-color: #2c3540 var(--bg); }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* aparición al hacer scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* volver arriba */
.back-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(193,153,119,.5);
  background: rgba(14,19,23,.85); color: var(--accent); font-size: 20px; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s; backdrop-filter: blur(6px);
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--accent); color: #fff; }

.center { text-align: center; }
.narrow { max-width: 760px; margin: 0 auto; }
.section { padding: 4.5rem 5vw; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 19, 23, .97);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3vw; gap: 1.5rem; min-height: 100px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: "Oswald", sans-serif; font-weight: 200; letter-spacing: normal;
  color: var(--white); font-size: 34px;
}
.logo-sub {
  font-family: "Satisfy", cursive; color: var(--white);
  font-size: 15px; margin-top: .1rem; align-self: flex-end;
}
.footer-logo .logo-sub { font-size: 13px; }
.main-nav ul { list-style: none; }
.main-nav > ul { display: flex; gap: 2rem; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  color: var(--white); font-family: "Oswald", sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: .32px; font-size: 15px;
  padding: .8rem 0; display: inline-block; position: relative;
}
.main-nav > ul > li > a::after {
  content: ""; position: absolute; left: 0; bottom: .45rem; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.main-nav > ul > li > a:hover::after, .main-nav > ul > li.active > a::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav li.active > a { color: var(--accent); }
.caret { font-size: .7em; opacity: .7; }
/* desplegable como el original: fondo #090C0F, filete dorado, 270px, Mulish 15 */
.sub-menu {
  position: absolute; top: 100%; left: -1rem; min-width: 270px;
  background: #090C0F; border-top: 1px solid var(--accent);
  list-style: none; padding: 21px 0 23px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s ease; box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.has-sub:hover .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu a {
  padding: 2px 34px; display: block;
  font-family: "Mulish", sans-serif; font-size: 15px; font-weight: 400;
  color: #fff; text-transform: capitalize; letter-spacing: normal;
}
.sub-menu a:hover { color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 1rem; }
.lang-switch { position: relative; }
.lang-current {
  background: none; border: 0; color: var(--white); display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .5rem; cursor: pointer; font-family: "Oswald", sans-serif; font-weight: 400;
  font-size: 16px; letter-spacing: .5px; transition: color .25s;
}
.lang-current:hover { color: var(--accent); }
.lang-caret { font-size: 11px; opacity: .7; }
.flag { width: 24px; height: 16px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.15); vertical-align: -3px; }
.lang-list .flag { width: 22px; height: 15px; margin-right: .4rem; }
.lang-list {
  position: absolute; right: 0; top: 110%; background: var(--panel);
  list-style: none; min-width: 160px; padding: .4rem 0; display: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.45); z-index: 10;
}
.lang-switch:hover .lang-list, .lang-switch:focus-within .lang-list { display: block; }
.lang-list a { display: flex; align-items: center; padding: .5rem 1rem; color: #eee; font-size: 15px; }
.lang-list a:hover { background: rgba(193,153,119,.15); color: var(--accent); }
/* iconos sociales: logos oficiales con sus colores de marca */
.social-icons { display: flex; gap: .6rem; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%; background: #000;
  display: grid; place-items: center; transition: transform .25s, box-shadow .25s;
}
.social-icons a:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 6px 16px rgba(0,0,0,.45); }
.social-icons svg { width: 20px; height: 20px; fill: #fff; }
.social-icons .soc-fb { background: #1877F2; }
.social-icons .soc-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icons .soc-ta { background: #34E0A1; }
.social-icons .soc-ta svg { fill: #000; width: 24px; height: 24px; }

.btn {
  display: inline-block; font-family: "Open Sans", sans-serif; letter-spacing: 1.4px;
  text-transform: uppercase; font-size: 14px; padding: 17px 30px 18px;
  border: 0; cursor: pointer; transition: all .25s; line-height: 1.1;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #a87f5d; }
.btn-ghost { border: 1px solid #fff; color: #fff; background: transparent; }
.btn-ghost:hover { background: #fff; color: var(--bg); }
.btn-big { width: 100%; padding: 1rem; font-size: 15px; }
.burger { display: none; }

/* ---------- hero: composición exacta del slider original (lienzo 1170×952)
   titular x493 y75 w728 · desc x522 y191 · píldoras x~700 y313/418/482
   MENÚ x743 y658 · GALLERY x297 y739 ---------- */
.hero {
  position: relative; background-color: var(--panel); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .hero-bg { animation: none; } }
.hero-overlay { position: absolute; inset: 0; background: rgba(8, 11, 15, .35); }
.hero-canvas {
  position: relative; z-index: 1;
  width: min(1170px, 96vw); aspect-ratio: 1170 / 952;
}
.sl-headline {
  position: absolute; left: 0; top: 10%; width: 100%;
  font-size: clamp(2.4rem, 6vw, 95px); font-weight: 200; color: var(--white);
  line-height: 1; text-align: center; white-space: nowrap;
}
.sl-desc {
  position: absolute; left: 20%; top: 23%; width: 60%; padding: 0;
  font-family: "Mulish", sans-serif; font-size: clamp(12px, 1vw, 15px);
  color: #eee; text-align: center;
}
.sl-pills {
  position: absolute; left: 0; top: 36%; width: 100%;
  display: grid; grid-template-columns: repeat(2, 230px); gap: 12px 14px; justify-content: center;
}
.sl-pills .pill { width: 100%; min-height: 62px; }
.pill {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  width: 190px; padding: .2rem 1rem;
  border: 1px solid var(--accent); border-radius: 20px; background: var(--panel);
  font-family: "Oswald", sans-serif; text-transform: uppercase; color: var(--white);
  letter-spacing: .95px; line-height: 1.3; transition: all .25s;
}
.pill:hover { background: var(--accent); }
.pill-xl { font-size: clamp(20px, 1.9vw, 30px); font-weight: 200; }
.pill-md { font-size: 19px; font-weight: 400; }
.pill-sm { font-size: 13px; font-weight: 400; }
.sl-menu { position: absolute; left: 63.5%; top: 69.1%; }
.sl-gallery { position: absolute; left: 25.4%; top: 77.6%; }

/* entrada en cascada del contenido del hero */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.sl-headline, .sl-desc, .sl-pills .pill {
  opacity: 0; animation: hero-in .9s cubic-bezier(.22, .61, .36, 1) forwards;
}
.sl-headline { animation-delay: .25s; }
.sl-desc { animation-delay: .55s; }
.sl-pills .pill:nth-child(1) { animation-delay: .85s; }
.sl-pills .pill:nth-child(2) { animation-delay: 1.05s; }
.sl-pills .pill:nth-child(3) { animation-delay: 1.25s; }
.sl-pills .pill:nth-child(4) { animation-delay: 1.45s; }
@media (prefers-reduced-motion: reduce) {
  .sl-headline, .sl-desc, .sl-pills .pill { animation: none; opacity: 1; }
}

@media (max-width: 920px) {
  .hero { min-height: 76vh; padding: 3rem 5vw; }
  .hero-canvas { width: 100%; aspect-ratio: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; }
  .sl-headline, .sl-desc, .sl-pills, .sl-menu, .sl-gallery { position: static; width: auto; white-space: normal; }
  .sl-desc { max-width: 560px; }
  .sl-pills { grid-template-columns: repeat(2, minmax(0, 200px)); width: 100%; }
}

/* ---------- banda de título de páginas interiores (como el original:
   foto Reservaheader sobre #222D3B, 400px mínimo) ---------- */
.page-hero {
  position: relative;
  background: var(--panel) url("/static/img/Reservaheader.jpg") center / cover no-repeat;
  text-align: center; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 5vw;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(8, 11, 15, .45); }
.page-hero h1 {
  position: relative; z-index: 1;
  font-family: "Open Sans", sans-serif; font-weight: 200; font-size: clamp(2rem, 4.5vw, 48px);
  color: var(--white);
}

/* ---------- doble encabezado ---------- */
.dbl-heading { margin-bottom: 1.6rem; }
.dbl-sub { font-family: "Oswald", sans-serif; font-style: normal; font-weight: 400; font-size: 17px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; line-height: 1.4; }
.dbl-heading h2 { font-size: 42px; font-weight: 200; color: var(--white); }
.dbl-divider {
  display: inline-block; width: 90px; height: 1px; background: rgba(193,153,119,.6);
  position: relative; margin-top: .8rem;
}
.dbl-divider::before {
  content: "◈"; position: absolute; left: -14px; top: -12px; color: var(--accent); font-size: .9rem;
}
.dbl-heading.right { text-align: right; }
.dbl-heading.right .dbl-divider::before { left: auto; right: -14px; }

/* ---------- en directo ---------- */
.live-title {
  text-align: center; font-size: 48px; font-weight: 200;
  color: var(--white); margin-bottom: 3rem;
}
.live-title i, .live-title em { font-style: normal; }
.live-cols {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 2.5rem;
  max-width: 1250px; margin: 0 auto; align-items: stretch;
}
.estado-box {
  border: 1px solid rgba(255,255,255,.35); border-radius: 10px; text-align: center;
  padding: 1.4rem 1rem 1.2rem; margin-bottom: 1.8rem; background: rgba(255,255,255,.015);
  transition: border-color .4s;
}
.estado-box.is-open { border-color: rgba(76, 217, 100, .45); }
.estado-box.soon { border-color: rgba(255, 176, 32, .55); }
.estado-label { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 19px; color: var(--white); }
.estado-label em { font-style: normal; font-weight: 500; }
.estado-word {
  font-family: "Oswald", sans-serif; font-size: 30px; font-weight: 500; color: var(--white); margin: .5rem 0 .2rem;
  display: inline-flex; align-items: center; gap: .6rem; letter-spacing: 1px;
}
.estado-dot {
  width: 14px; height: 14px; border-radius: 50%; background: #e0443e; box-shadow: 0 0 0 0 rgba(224,68,62,.6);
}
.is-open .estado-dot { background: #4cd964; box-shadow: 0 0 0 0 rgba(76,217,100,.7); animation: pulse 2s infinite; }
.soon .estado-dot { background: #ffb020; box-shadow: 0 0 0 0 rgba(255,176,32,.7); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76,217,100,.7); }
  70% { box-shadow: 0 0 0 12px rgba(76,217,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,217,100,0); }
}
.estado-sub { font-size: 14px; color: var(--text); }
.estado-sub strong { color: #ffb020; font-weight: 600; }
.estado-hoy { font-size: 13px; color: var(--muted); margin-top: .5rem; }
.estado-call {
  display: inline-block; margin-top: .8rem; font-family: "Open Sans", sans-serif; font-size: 12px; letter-spacing: 1px;
  color: var(--accent); border: 1px solid rgba(193,153,119,.5); border-radius: 30px; padding: .45rem 1rem; transition: all .25s;
}
.estado-call:hover { background: var(--accent); color: #fff; }

/* el tiempo */
.tiempo { text-align: center; }
.tiempo h4 { font-size: 28px; font-weight: 200; color: var(--white); margin-bottom: .6rem; }
.tiempo-tabs { display: inline-flex; gap: 0; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; padding: 3px; }
.tiempo-tabs .tab {
  background: none; border: 0; color: var(--text); font-family: "Oswald", sans-serif;
  font-weight: 400; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  padding: .3rem 1rem; border-radius: 30px; transition: all .25s;
}
.tiempo-tabs .tab.active { background: var(--accent); color: #fff; }
.tiempo-day { display: none; }
.tiempo-day.active { display: block; }
.wx-main { display: flex; align-items: center; justify-content: center; gap: .8rem; }
.wx-icon { font-size: 3.6rem; line-height: 1; }
.wx-temp { font-family: "Oswald", sans-serif; font-weight: 200; font-size: 56px; color: var(--white); line-height: 1; }
.wx-verdict { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 18px; color: var(--accent); margin: .4rem 0 .9rem; letter-spacing: .5px; }
.wx-chips { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.wx-chip {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  padding: .55rem .6rem; display: flex; flex-direction: column; align-items: center; gap: .1rem;
  font-family: "Oswald", sans-serif; font-weight: 300; font-size: 17px; color: var(--white);
}
.wx-chip i { display: none; }
.wx-chip b { font-weight: 400; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); }
.wx-feel { margin-top: .7rem; font-family: "Oswald", sans-serif; font-weight: 300; font-size: 16px; color: var(--text); }
.wx-feel span { color: var(--white); }
.tiempo-note { font-size: 11px; color: var(--muted); margin-top: .6rem; font-family: "Mulish", sans-serif; }

/* menú del día */
.menu-dia-box {
  position: relative; overflow: hidden; border-radius: 10px; text-align: center; isolation: isolate;
  border: 1px solid rgba(193,153,119,.35); box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.menu-dia-bg {
  position: absolute; inset: 0; z-index: -1; background: var(--img) center/cover no-repeat;
  filter: saturate(.6); opacity: .22;
}
.menu-dia-box::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,19,23,.55) 0%, rgba(14,19,23,.88) 45%, rgba(14,19,23,.97) 100%);
}
.menu-dia-inner { padding: 2.4rem 2rem 2.2rem; }
.menu-dia-hours { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: .6rem; }
.menu-dia-btn { margin-top: 1.4rem; padding: 14px 28px 15px; font-size: 13px; }
.menu-dia-date { font-family: "Oswald", sans-serif; font-weight: 400; color: var(--accent); font-size: 15px; letter-spacing: 3px; text-transform: uppercase; }
.menu-dia-title { font-weight: 200; color: var(--white); font-size: 42px; margin: .4rem 0 .8rem; }
.menu-dia-course { font-family: "Oswald", sans-serif; font-style: normal; font-weight: 400; font-size: 16px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-top: 1.1rem; }
.menu-dia-dish { font-family: "Oswald", sans-serif; font-weight: 200; color: var(--white); font-size: 40px; line-height: 1.2; }
.menu-dia-allerg { font-size: 18px; margin-top: .3rem; }
.menu-dia-line { margin: 1.4rem auto .9rem; max-width: 240px; opacity: .85; }
.menu-dia-price { font-family: "Oswald", sans-serif; font-weight: 300; color: var(--accent); font-size: 44px; line-height: 1; }
.menu-dia-pnote { font-family: "Oswald", sans-serif; font-weight: 200; color: var(--accent); font-size: 20px; margin-top: .2rem; }
.menu-dia-pan { font-family: "Oswald", sans-serif; font-weight: 200; color: var(--white); margin-top: .9rem; font-size: 20px; }

.eventos-box { border: 1px solid rgba(193,153,119,.4); border-radius: 8px; padding: 1.2rem 1.2rem 1.4rem; background: rgba(255,255,255,.02); }
.eventos-col h4 { font-size: 30px; font-weight: 200; color: var(--white); margin-bottom: 1rem; text-align: center; }
.eventos-empty { text-align: center; padding: 1rem 0 .3rem; }
.eventos-list { display: grid; gap: 1rem; margin-bottom: .5rem; }
.evento-card {
  border-top: 1px solid rgba(193,153,119,.25); padding: 1rem 0 .4rem; text-align: center;
}
.evento-media { position: relative; margin-bottom: .7rem; }
.evento-card img { width: 100%; max-height: 150px; object-fit: cover; border-radius: 5px; display: block; }
.evento-badge {
  position: absolute; top: 8px; left: 8px; background: rgba(14,19,23,.9); border: 1px solid rgba(193,153,119,.6);
  border-radius: 6px; padding: .25rem .55rem; display: flex; flex-direction: column; align-items: center; line-height: 1;
  font-family: "Oswald", sans-serif; color: var(--white); text-transform: uppercase; font-size: 11px; letter-spacing: 1px;
}
.evento-badge b { font-size: 22px; font-weight: 400; color: var(--accent); }
.evento-date { font-family: "Oswald", sans-serif; font-weight: 200; color: var(--accent); font-size: 18px; }
.evento-card h5 { font-size: 22px; font-weight: 300; color: var(--white); margin: .2rem 0 .3rem; }
.evento-text { font-size: 14px; color: var(--text); }
.evento-btn { margin-top: 1rem; padding: 12px 24px 13px; font-size: 13px; }
.takeaway-card {
  position: relative; display: block; overflow: hidden; border-radius: 10px; margin-top: 1.4rem;
  min-height: 250px; isolation: isolate; box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.takeaway-bg { position: absolute; inset: 0; background: var(--img) center center/cover no-repeat; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.takeaway-card:hover .takeaway-bg { transform: scale(1.06); }
.takeaway-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,15,.05) 20%, rgba(8,11,15,.6) 60%, rgba(8,11,15,.94) 100%); }
.takeaway-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .3rem; text-align: center; align-items: center; }
.takeaway-kicker { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 30px; color: #fff; letter-spacing: 1px; text-transform: uppercase; line-height: 1.1; }
.takeaway-text { font-size: 14px; color: #e3e6e8; line-height: 1.5; max-width: 34ch; }
.takeaway-btn { margin-top: .7rem; padding: 11px 22px 12px; font-size: 12px; }

/* ---------- chef / quiénes somos ---------- */
.two-col {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem;
  align-items: center; max-width: 1150px; margin: 0 auto;
}
.chef-p, .about-p { margin-bottom: 1rem; font-size: 16px; color: var(--text); }
.serif-quote {
  font-family: "Sorts Mill Goudy", Georgia, serif; font-style: normal;
  font-size: 26px; line-height: 1.5; margin: 1.4rem 0 1.6rem; color: var(--white);
}
.chef-photo img, .about-img img {
  width: 100%; box-shadow: 0 18px 45px rgba(0,0,0,.45); border-radius: 6px;
}

/* ---------- testimonios + polaroid ---------- */
.testis-section {
  position: relative; background-size: cover; background-position: center;
  padding: 4.5rem 5vw;
}
.hero-overlay.darker { background: rgba(8, 11, 15, .75); }
.testis-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}
.testis-slider { position: relative; min-height: 240px; }
.testi { display: none; }
.testi.active { display: block; }
.testi-quote {
  font-family: "Sorts Mill Goudy", Georgia, serif; font-style: normal;
  font-size: 21px; line-height: 1.6; color: var(--white);
}
.testi-author { font-family: "Oswald", sans-serif; font-weight: 300; margin-top: 1.2rem; color: var(--white); font-size: 20px; }
.testi-tag { font-family: "Oswald", sans-serif; font-style: normal; font-size: 15px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); }
.testi-nav { margin-top: 1rem; }
.testi-nav button {
  background: none; border: 0; color: #ccc; font-size: 1.4rem; cursor: pointer; margin-right: 1rem;
}
.testi-nav button:hover { color: var(--accent); }
.testi-verified { display: flex; align-items: center; gap: .6rem; margin-top: 1.4rem; font-size: 16px; color: var(--white); }
.ta-icon { width: 42px; height: 42px; border-radius: 50%; }
.polaroid-col { text-align: center; }
.polaroid-col img { max-width: 100%; }
.polaroid-title { color: var(--white); font-weight: 200; font-size: 42px; margin-top: .5rem; }

/* ---------- historia ---------- */
.historia-heading { text-align: center; font-weight: 200; font-size: 42px; color: var(--white); margin-bottom: 2rem; }
.historia-box {
  max-width: 980px; margin: 0 auto; border: 1px solid var(--text);
  border-radius: 20px; padding: 2.5rem 3rem;
  font-family: "Sorts Mill Goudy", Georgia, serif; font-weight: 100;
  font-size: 24px; line-height: 1.7; color: var(--white); text-align: justify;
}
.historia-box p { margin-bottom: 1rem; }
.historia-box summary {
  cursor: pointer; text-decoration: underline; margin: .5rem 0 1rem; font-size: 22px;
}

/* ---------- boletín + horarios ---------- */
.two-col.wide { max-width: 1200px; grid-template-columns: 1fr 1.1fr; }
.news-box { display: flex; background: #12181f; }
.news-img { width: 38%; object-fit: cover; filter: grayscale(1); }
.news-form-wrap { padding: 2.2rem 1.9rem; flex: 1; }
.news-form-wrap h4 {
  font-family: "Oswald", sans-serif; color: var(--accent); font-weight: 300;
  font-size: 24px; line-height: 1.45; margin-bottom: 1.2rem; text-align: center;
}
.news-form-wrap input {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid #3a4048;
  color: #eee; padding: .7rem 0; margin-bottom: 1rem; font: inherit; font-size: 14px;
}
.news-form-wrap input:focus { outline: none; border-bottom-color: var(--accent); }
.hours-list { list-style: none; margin: 1.2rem 0 1.8rem; max-width: 440px; }
.hours-list li { display: flex; align-items: baseline; gap: .6rem; padding: .45rem 0; }
.hours-list .day { min-width: 95px; color: var(--text); font-size: 16px; }
.hours-list .dots { flex: 1; border-bottom: 1px solid rgba(177,181,183,.35); transform: translateY(-4px); }
.hours-list .hrs { font-weight: 600; color: var(--text); font-size: 16px; }

/* ---------- mapa ---------- */
.map-side { text-align: center; padding-top: 3rem; }
.map-side .logo {
  display: inline-flex; flex-direction: column; line-height: 1;
  margin: 0 auto .8rem;
}
.map-side .logo-main { font-size: 44px; }
.map-side .logo-sub { font-size: 20px; }
.map-addr { margin: 1.6rem 0 1rem; color: var(--text); font-size: 19px; line-height: 1.6; }
.map-tel, .map-mail { margin-bottom: 1rem; font-size: 19px; }
.map-tel strong { color: var(--white); }
.map-tel a, .map-mail a { color: var(--accent); }
.map-side .btn { margin-top: 1.2rem; }
.map-embed h2 { text-align: center; font-weight: 200; font-size: 42px; color: var(--white); margin-bottom: 1.5rem; }
.map-embed iframe { width: 100%; height: 420px; border: 0; border-radius: 4px; background: #fff; }
.waze { text-align: center; margin-top: 1.2rem; }
.waze a { color: #33ccff; font-weight: 700; font-size: 1.2rem; display: inline-flex; align-items: center; gap: .5rem; }
.waze-icon { width: 44px; }

/* ---------- hub de cartas ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem; max-width: 1200px; margin: 0 auto;
}
.carta-card {
  background: #131a21; box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .25s, box-shadow .25s; overflow: hidden; display: block;
}
.carta-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.5); }
.carta-card img { height: 210px; width: 100%; object-fit: cover; }
.carta-card-body { padding: 1.3rem 1.5rem 1.6rem; }
.carta-card-body h3 { font-size: 24px; font-weight: 300; margin-bottom: .4rem; color: var(--white); }
.carta-card-body p { color: var(--muted); font-size: 15px; }

/* ---------- página de carta ---------- */
.carta-page { max-width: 900px; margin: 0 auto; }
.carta-section { margin-bottom: 3.5rem; }
.carta-section .fancy-heading, .fancy-heading {
  font-size: 42px; font-weight: 200; color: var(--white); margin-bottom: 1.6rem; position: relative;
}
.fancy-heading::after {
  content: ""; display: block; width: 64px; height: 1px;
  background: var(--accent); margin-top: .8rem;
}
.fancy-heading.center::after { margin-left: auto; margin-right: auto; }
.carta-photo img { max-height: 340px; width: 100%; object-fit: cover; margin-bottom: 2rem; }
.dish-list { list-style: none; }
.dish { padding: .7rem 0; }
.dish-line { display: flex; align-items: baseline; gap: .6rem; }
.dish-name { font-family: "Open Sans", sans-serif; font-weight: 300; font-size: 24px; color: var(--white); }
.dish-dots { flex: 1; border-bottom: 1px dotted rgba(177,181,183,.4); transform: translateY(-5px); }
.dish-price { font-family: "Open Sans", sans-serif; font-weight: 300; font-size: 20px; color: var(--accent); white-space: nowrap; }
.dish-desc { color: var(--muted); font-size: 18px; margin-top: .1rem; }
.carta-note { color: var(--muted); font-style: normal; margin-top: 1rem; }
.allergen-box {
  margin-top: 3rem; padding: 1.6rem 2rem; background: rgba(255,255,255,.03);
  border-left: 3px solid var(--accent); font-size: 15px;
}
.allergen-box h4 { margin-bottom: .5rem; font-weight: 300; font-size: 22px; }
.allergen-box .eco { margin-top: .8rem; color: #7fbf94; }

/* ---------- galería ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.gallery-grid img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform .3s, opacity .3s;
}
.gallery-grid a:hover img { transform: scale(1.04); opacity: .88; }
.gallery-grid.full img { height: 300px; }

/* ---------- reservar ---------- */
.reserva-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem;
  max-width: 1150px; margin: 0 auto;
}
.reserva-form-wrap .fancy-heading { color: var(--accent); font-weight: 300; }
#reserva-form label { display: block; margin-bottom: 1.1rem; font-size: 14px; font-weight: 600; color: var(--text); }
#reserva-form input, #reserva-form select, #reserva-form textarea {
  width: 100%; margin-top: .35rem; padding: .7rem .2rem;
  border: 0; border-bottom: 1px solid #3a4048; background: transparent;
  font: inherit; font-size: 14px; font-weight: 400; color: var(--white);
}
#reserva-form select option { background: var(--panel); color: #fff; }
#reserva-form input:focus, #reserva-form select:focus, #reserva-form textarea:focus {
  outline: none; border-bottom-color: var(--accent);
}
#reserva-form textarea { border: 1px solid #3a4048; padding: .7rem .9rem; }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.radio-row { border: 0; margin-bottom: 1.1rem; }
.radio-row legend { font-size: 14px; font-weight: 600; margin-bottom: .4rem; }
.radio { display: inline-flex !important; align-items: center; gap: .45rem; margin-right: 1.6rem; font-weight: 400 !important; }
.radio input { width: auto !important; margin: 0 !important; }
.accept { font-size: 13px !important; }
.grupos-nota {
  font-size: 13px; color: var(--muted); margin: -0.3rem 0 1.1rem;
  padding: .7rem .9rem; border-left: 2px solid var(--accent); background: rgba(255,255,255,.03);
}
.grupos-nota a { color: var(--accent); }
.form-msg { margin-top: 1rem; min-height: 1.4em; font-weight: 600; }
.form-msg.ok { color: #7fbf94; }
.form-msg.err { color: #e07979; }
.contact-cards { display: grid; gap: 1.2rem; margin-top: 1.5rem; }
.contact-cards h4 {
  color: var(--white); font-size: 20px; font-weight: 300;
  text-transform: uppercase; letter-spacing: .06em;
}
.contact-cards a { color: var(--accent); }

/* ---------- footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,.08); color: #A1A3A4; padding: 0 5vw; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem; max-width: 1150px; margin: 0 auto;
}
.footer-logo .logo-main { font-size: 26px; }
.footer-tag { font-family: "Open Sans", sans-serif; color: var(--accent); margin-top: .8rem; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.site-footer h4 {
  color: var(--white); font-size: 15px; text-transform: uppercase;
  letter-spacing: .15em; margin: 1rem 0 .3rem; font-weight: 300;
}
.site-footer a:hover { color: var(--accent); }
.estado-badge { margin-top: .5rem; font-family: "Oswald", sans-serif; font-weight: 300; }
.footer-bottom {
  padding: 1.2rem 0; text-align: center; font-size: 16px; color: #A1A3A4;
}
.footer-legal { margin-top: .3rem; }
.footer-legal a { color: var(--accent); }
.footer-legal a:hover { text-decoration: underline; }

/* ---------- instagram: perfil, grid y post ---------- */
.insta-label { font-family: "Oswald", sans-serif; font-weight: 300; color: var(--accent); font-size: 20px; margin-bottom: 1.4rem; }
.ig-avatar {
  width: 88px; height: 88px; border-radius: 50%; object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7) border-box;
}
.ig-avatar.sm { width: 40px; height: 40px; border-width: 2px; }
.ig-profile {
  display: flex; align-items: center; gap: 1.6rem; justify-content: center;
  margin-bottom: 2rem;
}
.ig-username { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 24px; color: var(--white); }
.ig-stats { color: var(--muted); font-size: 14px; margin: .2rem 0 .7rem; }
.ig-stats strong { color: var(--white); }
.ig-follow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff; font-family: "Open Sans", sans-serif; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .8px; padding: .55rem 1.2rem;
  border-radius: 8px; transition: transform .2s, box-shadow .2s;
}
.ig-follow:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(238,42,123,.35); }
.ig-glyph { width: 16px; height: 16px; fill: currentColor; }
.ig-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.ig-follow-ghost {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.ig-follow-ghost:hover { box-shadow: inset 0 0 0 1px var(--white); }
/* portada: perfil alineado a la izquierda junto al post */
.insta-home-profile { justify-content: flex-start; margin-bottom: 0; }
.insta-home-profile .ig-username { font-size: 26px; }
.insta-home-profile .ig-stats { font-size: 15px; margin: .3rem 0 1rem; }
@media (max-width: 600px) {
  .insta-home-profile { flex-direction: column; align-items: flex-start; }
}

/* feed de tarjetas de post completas */
.ig-feed {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.6rem; max-width: 1100px; margin: 0 auto; align-items: start;
}
.ig-cell {
  display: block; width: 100%; border: 0; padding: 0; cursor: pointer;
  background: #000; overflow: hidden;
}
.ig-cell img {
  width: 100%; height: auto;
  transition: transform .45s ease;
}
.ig-cell:hover img { transform: scale(1.04); }

/* lightbox */
.ig-lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(5, 7, 10, .92);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  backdrop-filter: blur(6px);
}
.ig-lightbox[hidden] { display: none; }
.ig-lightbox figure { max-width: min(760px, 84vw); margin: 0; }
.ig-lightbox img {
  max-height: 74vh; max-width: 100%; border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.ig-lightbox figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: .9rem; align-items: baseline; }
.ig-lightbox figcaption p { color: var(--text); font-size: 14px; }
.ig-lightbox figcaption a { color: var(--accent); font-size: 13px; white-space: nowrap; }
.ig-lb-close, .ig-lb-prev, .ig-lb-next {
  background: rgba(255,255,255,.08); color: #fff; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%; font-size: 22px; line-height: 1;
  transition: background .2s; flex-shrink: 0;
}
.ig-lb-close { position: absolute; top: 1.2rem; right: 1.2rem; }
.ig-lb-close:hover, .ig-lb-prev:hover, .ig-lb-next:hover { background: var(--accent); }

/* tarjeta de post en portada */
.ig-post {
  background: #12181f; border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; overflow: hidden; max-width: 460px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.ig-post-head { display: flex; align-items: center; gap: .8rem; padding: .8rem 1rem; }
.ig-post-user { font-weight: 700; font-size: 14px; color: var(--white); }
.ig-post-loc { font-size: 12px; color: var(--muted); }
.ig-post-glyph { margin-left: auto; }
.ig-post-glyph svg { width: 20px; height: 20px; fill: #fff; transition: fill .2s; }
.ig-post-glyph:hover svg { fill: #ee2a7b; }
.ig-post-img { width: 100%; height: auto; display: block; background: #000; }
.ig-post-caption { padding: .9rem 1rem 1.1rem; font-size: 14px; color: var(--text); }
.ig-post-caption strong { color: var(--white); }
.ig-feed .ig-post { max-width: none; }

/* ---------- páginas legales ---------- */
.legal-body { max-width: 860px; margin: 0 auto; font-size: 15px; }
.legal-body h3 {
  font-weight: 300; font-size: 24px; color: var(--white);
  margin: 2rem 0 .7rem;
}
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { margin: 0 0 1rem 1.4rem; }
.legal-body li { margin-bottom: .35rem; }
.legal-body a { color: var(--accent); }
.legal-body em { color: var(--muted); }

/* ---------- consentimiento del mapa ---------- */
.map-consent {
  height: 420px; border-radius: 4px; background: var(--panel);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 2rem;
}
.map-consent p { color: var(--text); font-size: 14px; max-width: 420px; }
.map-consent a { color: var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw);
    background: var(--bg); padding: 5rem 2rem 2rem;
    transform: translateX(100%); transition: transform .3s; z-index: 99;
  }
  .main-nav.open { transform: none; }
  .main-nav ul { flex-direction: column; gap: .4rem; }
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; padding-left: 1rem;
  }
  .header-inner { min-height: 72px; }
  .site-header .logo-main { font-size: 28px; }
  .burger {
    display: flex; flex-direction: column; gap: 5px; background: none;
    border: 0; cursor: pointer; z-index: 100; position: relative;
  }
  .burger span { width: 26px; height: 2px; background: #fff; transition: all .3s; }
  .header-cta, .site-header .social-icons { display: none; }
  .two-col, .reserva-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 76vh; }
  .live-cols, .testis-inner, .two-col.wide { grid-template-columns: 1fr; }
  .news-box { flex-direction: column; }
  .news-img { width: 100%; max-height: 200px; }
  .dbl-heading.right { text-align: left; }
  .dbl-heading.right .dbl-divider::before { left: -14px; right: auto; }
  .historia-box { padding: 1.8rem 1.4rem; font-size: 20px; }
  .dbl-sub { font-size: 14px; letter-spacing: 3px; }
  .dbl-heading h2, .live-title, .menu-dia-title, .historia-heading, .map-embed h2 { font-size: 32px; }
  .menu-dia-dish { font-size: 30px; }
  .section { padding: 3rem 5vw; }
  .live-cols { gap: 2rem; }
  .estado-box { margin-bottom: 1.4rem; }
  .menu-dia-inner { padding: 1.8rem 1.2rem 1.8rem; }
  .wx-temp { font-size: 48px; }
  .sl-headline { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .pill-xl { font-size: clamp(16px, 4.6vw, 22px); }
  .sl-pills .pill { min-height: 54px; }
  /* menú lateral móvil: más completo */
  .main-nav { display: flex; flex-direction: column; overflow-y: auto; }
  .main-nav > ul > li > a { font-size: 18px; padding: .7rem 0; }
  .sub-menu a { padding: 6px 20px; font-size: 16px; }
  .nav-mobile-extra { display: flex; flex-direction: column; gap: 1rem; margin-top: auto; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-mobile-extra .btn { text-align: center; }
  .nav-mobile-extra .social-icons { display: flex; justify-content: center; }
  .nav-close { display: none; }
  body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .burger span:nth-child(2) { opacity: 0; }
  body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 98; opacity: 0; visibility: hidden; transition: opacity .3s; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  /* portada: novedades / take away / instagram / horarios */
  .nov-feature-main { min-height: 280px; }
  .nov-feature-title { font-size: 26px; }
  .takeaway-card { min-height: 220px; }
  .takeaway-kicker { font-size: 26px; }
  .hub-today { padding: 1.2rem 1.2rem; }
  .ig-post { max-width: 100%; }
  .insta-home-profile .ig-username { font-size: 22px; }
  .map-side .logo-main { font-size: 34px; }
  .map-side .logo-sub { font-size: 16px; }
}
@media (min-width: 921px) { .nav-mobile-extra, .nav-close, .nav-backdrop { display: none; } }
@media (max-width: 920px) {
  .page-hero { min-height: 220px; }
  .page-hero h1 { font-size: 34px; }
  .insta-section .insta-side { order: -1; }
  .testi-quote { font-size: 18px; }
  .pv-bar { flex-direction: column; gap: .3rem; }
  .pv-hint { display: block; font-size: 12px; color: var(--muted); text-align: center; margin-top: .4rem; }
  .allergen-box { padding: 1.4rem 1.2rem; }
  .allergen-box h4 { font-size: 24px; }
  .hub-intro { font-size: 16px; margin-bottom: 2rem; }
  .cancel-box { padding: 0 .4rem; }
}
@media (min-width: 921px) { .pv-hint { display: none; } }

/* ---------- visor de la carta en PDF ---------- */
.pdf-viewer {
  position: relative; max-width: 960px; margin: 0 auto 2.5rem;
  display: grid; grid-template-columns: 48px 1fr 48px; grid-template-rows: auto auto;
  align-items: center; gap: .6rem;
}
.pv-stage {
  position: relative; background: #000; border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55); aspect-ratio: 595 / 842;
}
.pv-page {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .35s ease; user-select: none;
}
.pv-page.on { opacity: 1; position: relative; }
.pv-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(193,153,119,.6);
  background: rgba(14,19,23,.85); color: var(--accent); font-size: 30px; line-height: 1;
  cursor: pointer; transition: all .25s; display: grid; place-items: center; padding-bottom: 4px;
}
.pv-arrow:hover { background: var(--accent); color: #fff; }
.pv-bar {
  grid-column: 1 / -1; display: flex; justify-content: center; align-items: center; gap: 1.6rem;
  font-family: "Oswald", sans-serif; font-weight: 300; font-size: 17px; color: var(--text);
}
.pv-count { letter-spacing: 1px; }
.pv-dl { color: var(--accent); font-size: 15px; }
.pv-dl:hover { text-decoration: underline; }
.carta-text { margin: 0 auto 2.5rem; }
.carta-text > summary {
  cursor: pointer; text-align: center; font-family: "Open Sans", sans-serif; font-size: 14px;
  letter-spacing: 1.4px; text-transform: uppercase; color: #fff; border: 1px solid #fff;
  padding: 14px 26px; display: inline-block; margin: 0 auto 2.5rem; list-style: none;
  transition: all .25s;
}
.carta-text { text-align: center; }
.carta-text > .carta-section { text-align: left; }
.carta-text > summary::-webkit-details-marker { display: none; }
.carta-text > summary:hover, .carta-text[open] > summary { background: #fff; color: var(--bg); }
@media (max-width: 640px) {
  .pdf-viewer { grid-template-columns: 1fr; }
  .pv-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; font-size: 26px; }
  .pv-prev { left: 4px; } .pv-next { right: 4px; }
  .pv-stage { grid-row: 1; }
}

.pdf-viewer.single .pv-arrow { visibility: hidden; }
.pdf-viewer.single .pv-stage { aspect-ratio: auto; }
.pdf-viewer.single .pv-page { position: relative; height: auto; }

/* ---------- página Cartas (hub) ---------- */
.hub-page { max-width: 1180px; margin: 0 auto; }
.hub-intro {
  text-align: center; max-width: 640px; margin: -1rem auto 3rem;
  font-family: "Mulish", sans-serif; font-style: normal; font-size: 18px; color: var(--text);
}
/* en la página Cartas: sin cursivas — etiquetas en mayúsculas pequeñas */
.hub-page .dbl-sub, .hub-page .tile-kicker {
  font-family: "Oswald", sans-serif; font-style: normal; font-size: 16px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
}
.hub-page .hub-today .dbl-sub { margin-bottom: .3rem; }
.hub-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 14px;
}
.hub-tile {
  position: relative; display: block; overflow: hidden; border-radius: 6px;
  background: var(--panel); isolation: isolate;
}
.tile-menu { grid-column: span 2; grid-row: span 2; }
.tile-brekkie { grid-column: span 2; }
.tile-italiano, .tile-takeaway { grid-column: span 1; }
.tile-bg {
  position: absolute; inset: 0; background: var(--img) center/cover no-repeat;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.tile-menu .tile-bg { background-position: center 60%; }
.tile-brekkie .tile-bg { background-position: center 40%; }
.tile-takeaway .tile-bg { background-position: center 55%; }
.hub-tile:hover .tile-bg { transform: scale(1.06); }
.tile-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,11,15,.05) 30%, rgba(8,11,15,.55) 65%, rgba(8,11,15,.92) 100%);
  transition: background .4s;
}
.hub-tile:hover .tile-shade { background: linear-gradient(180deg, rgba(8,11,15,.15) 20%, rgba(8,11,15,.7) 60%, rgba(8,11,15,.95) 100%); }
.tile-body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: .25rem; color: #fff;
}
.tile-kicker { font-family: "Satisfy", cursive; color: var(--accent); font-size: 18px; }
.tile-title { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 30px; line-height: 1.1; }
.tile-menu .tile-title { font-size: 44px; }
.tile-desc { font-size: 14px; color: #d3d6d8; max-width: 46ch; }
.tile-menu .tile-desc { font-size: 16px; }
.tile-cta {
  margin-top: .7rem; font-family: "Open Sans", sans-serif; font-size: 12px; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--accent); display: inline-flex; gap: .4rem; align-items: center;
}
.tile-cta i { font-style: normal; transition: transform .3s; }
.hub-tile:hover .tile-cta i { transform: translateX(6px); }

/* menú del día de hoy */
.hub-today {
  margin: 2.6rem 0 0; background: var(--panel); border-left: 3px solid var(--accent);
  display: grid; grid-template-columns: 1.1fr 2fr auto; gap: 1.6rem; align-items: center;
  padding: 1.6rem 2rem;
}
.hub-today h3 { font-size: 26px; font-weight: 300; }
.hub-today-menu p { font-family: "Open Sans", sans-serif; font-weight: 300; font-size: 17px; color: #fff; }
.hub-dot { color: var(--accent); font-size: 10px; margin-right: .5rem; vertical-align: 2px; }
.hub-today-right { display: flex; flex-direction: column; align-items: flex-end; gap: .8rem; }
.hub-price { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 40px; color: var(--accent); line-height: 1; }
.hub-today-right .btn { padding: 12px 22px; font-size: 12px; }

/* novedades */
.hub-news { margin-top: 4.5rem; }
.nov-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.nov-card { background: var(--panel); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s; }
.nov-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.5); }
.nov-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.nov-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.nov-card:hover .nov-img img { transform: scale(1.05); }
.nov-badge {
  position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff;
  font-family: "Open Sans", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
}
.nov-body { padding: 1.3rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.nov-body h3 { font-size: 23px; font-weight: 300; }
.nov-body p { font-size: 15px; color: var(--text); flex: 1; }
.nov-link { color: var(--accent); font-family: "Open Sans", sans-serif; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; }
.nov-link:hover { text-decoration: underline; }

/* pie: descargas + alérgenos */
.hub-foot { margin-top: 4rem; text-align: center; border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; }
.hub-dl { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; font-size: 15px; }
.hub-dl a { color: var(--accent); }
.hub-dl a:hover { text-decoration: underline; }
.hub-allerg { margin-top: 1rem; font-size: 13px; color: var(--muted); max-width: 720px; margin-inline: auto; }

@media (max-width: 900px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .tile-menu { grid-column: span 2; grid-row: span 1; }
  .tile-brekkie { grid-column: span 2; }
  .tile-menu .tile-title { font-size: 34px; }
  .hub-today { grid-template-columns: 1fr; text-align: center; }
  .hub-today-right { align-items: center; }
}
@media (max-width: 560px) {
  .hub-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .tile-menu, .tile-brekkie { grid-column: span 1; }
}

/* ---------- novedades en portada (carrusel horizontal) ---------- */
.novedades-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.nov-strip-wrap { position: relative; max-width: 1250px; margin: 0 auto; }
.nov-strip {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: .4rem .2rem 1rem;
  scrollbar-width: none;
}
.nov-strip::-webkit-scrollbar { display: none; }
.nov-card.nov-h { flex: 0 0 340px; scroll-snap-align: start; }
.nov-card.nov-h .nov-img { aspect-ratio: 16 / 9; }
.nov-arrow {
  position: absolute; top: 40%; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(193,153,119,.6); background: rgba(14,19,23,.9); color: var(--accent);
  font-size: 28px; line-height: 1; cursor: pointer; display: grid; place-items: center; padding-bottom: 3px; transition: all .25s;
}
.nov-arrow:hover { background: var(--accent); color: #fff; }
.nov-arrow-prev { left: -22px; } .nov-arrow-next { right: -22px; }
@media (max-width: 1300px) { .nov-arrow-prev { left: 4px; } .nov-arrow-next { right: 4px; } }
@media (max-width: 600px) { .nov-card.nov-h { flex-basis: 82vw; } }
.nov-strip > :first-child { margin-left: auto; }
.nov-strip > :last-child { margin-right: auto; }

/* banda de novedades en portada */
.nov-banner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem;
  max-width: 1100px; margin: 0 auto; padding: 1.6rem 2rem; border-radius: 12px;
  background: var(--panel); border: 1px solid rgba(193,153,119,.3);
  transition: transform .3s, box-shadow .3s;
}
.nov-banner:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.nov-banner-thumbs { display: flex; }
.nov-banner-thumbs img {
  width: 82px; height: 82px; border-radius: 50%; object-fit: cover; border: 3px solid var(--panel);
  margin-left: -22px; box-shadow: 0 6px 16px rgba(0,0,0,.4);
}
.nov-banner-thumbs img:first-child { margin-left: 0; }
.nov-banner-body h2 { font-size: 34px; font-weight: 200; color: var(--white); line-height: 1.1; }
.nov-banner-body .dbl-sub { margin-bottom: .2rem; }
.nov-banner-list { font-size: 15px; color: var(--text); margin-top: .4rem; }
.nov-banner-btn { padding: 13px 24px 14px; font-size: 12px; white-space: nowrap; }
@media (max-width: 760px) {
  .nov-banner { grid-template-columns: 1fr; text-align: center; gap: 1.2rem; }
  .nov-banner-thumbs { justify-content: center; }
}

/* eventos: carrusel */
.eventos-list.is-slider .evento-card { display: none; }
.eventos-list.is-slider .evento-card.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.eventos-nav { display: flex; align-items: center; justify-content: center; gap: .9rem; margin-top: .6rem; }
.eventos-nav button {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(193,153,119,.5); background: transparent;
  color: var(--accent); font-size: 20px; line-height: 1; cursor: pointer; padding-bottom: 2px; transition: all .25s;
}
.eventos-nav button:hover { background: var(--accent); color: #fff; }
.ev-dots { display: flex; gap: 6px; }
.ev-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: background .25s; }
.ev-dots i.on { background: var(--accent); }

.news-birth { display: block; margin-top: .6rem; }
.news-birth span { display: block; font-size: 12px; color: var(--muted); margin-bottom: .2rem; letter-spacing: .5px; }
.news-form-wrap input[type=date] { color-scheme: dark; }

/* novedades destacadas en portada */
.nov-feature {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.2rem; max-width: 1150px; margin: 0 auto; align-items: stretch;
}
.nov-feature-main {
  position: relative; display: block; overflow: hidden; border-radius: 12px; min-height: 380px; isolation: isolate;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.nov-feature-bg { position: absolute; inset: 0; background: var(--img) center/cover no-repeat; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.nov-feature-main:hover .nov-feature-bg { transform: scale(1.05); }
.nov-feature-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,15,.05) 25%, rgba(8,11,15,.55) 60%, rgba(8,11,15,.95) 100%); }
.nov-feature-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.8rem 2rem 2rem; display: flex; flex-direction: column; gap: .35rem; }
.nov-feature-kicker { font-family: "Oswald", sans-serif; font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); }
.nov-feature-title { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 36px; line-height: 1.1; color: #fff; }
.nov-feature-text { font-size: 15px; color: #d9dcde; max-width: 52ch; }
.nov-feature-btn { align-self: flex-start; margin-top: .8rem; padding: 12px 24px 13px; font-size: 12px; }
.nov-feature-side { display: flex; flex-direction: column; gap: .8rem; }
.nov-mini {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 1rem; align-items: center; flex: 1;
  background: var(--panel); border-radius: 10px; padding: .8rem .9rem; transition: transform .3s, background .3s;
}
.nov-mini:hover { transform: translateX(4px); background: #2a3746; }
.nov-mini img { width: 96px; height: 76px; object-fit: cover; border-radius: 6px; }
.nov-mini-body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.nov-mini-title { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 21px; color: #fff; line-height: 1.15; }
.nov-mini-text { font-size: 13px; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nov-mini-arrow { color: var(--accent); font-size: 22px; transition: transform .3s; }
.nov-mini:hover .nov-mini-arrow { transform: translateX(4px); }
.nov-all { text-align: right; color: var(--accent); font-family: "Open Sans", sans-serif; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; padding: .2rem .3rem; }
.nov-all:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .nov-feature { grid-template-columns: 1fr; }
  .nov-feature-main { min-height: 300px; }
  .nov-feature-title { font-size: 28px; }
}
.nov-feature.single { grid-template-columns: 1fr; max-width: 1000px; }
.nov-feature.single .nov-feature-main { min-height: 340px; }

/* anulación por el cliente */
.cancel-box { max-width: 560px; margin: 0 auto; text-align: center; }
.cancel-q { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 26px; color: var(--white); margin-bottom: 1.4rem; }
.cancel-card { background: var(--panel); border-left: 3px solid var(--accent); border-radius: 8px; padding: 1.2rem 1.6rem; text-align: left; margin-bottom: 1.6rem; }
.cancel-card p { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #fff; font-family: "Oswald", sans-serif; font-weight: 300; font-size: 18px; }
.cancel-card p span { color: var(--accent); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.cancel-alt { margin-top: 1rem; }
.cancel-ok { font-size: 18px; color: var(--white); margin-bottom: 1.4rem; }
.cancel-ok a { color: var(--accent); }
