/* =============================================================
   NEXUS GT — RESTAURANT ONE
   Hoja de estilos principal
   ============================================================= */

:root {
  --bg: #0b2536;
  --bg-deep: #061923;
  --bg-soft: #12384a;
  --panel: rgba(255, 255, 255, .065);
  --line: rgba(216, 182, 106, .22);
  --text: #f8f2df;
  --muted: #d5c9ad;
  --accent: #ef6f4c;
  --accent-2: #d8b66a;
  --accent-3: #22a6a1;
  --success: #55d38a;
  --danger: #ff8a7a;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --radius: 24px;
  --container: min(1120px, 92%);
  --hero-image: url('/assets/img/restaurant/ambiente-02.webp');
  --menu-background-image: url('/assets/img/restaurant/ambiente-01.webp');
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #16465a 0%, var(--bg) 38%, var(--bg-deep) 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open, body.full-menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 3000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent-2);
  color: #211507;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* NEXUS GT | SECCIÓN 01: ENCABEZADO Y NAVEGACIÓN */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .54), rgba(0, 0, 0, .12));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(8, 6, 5, .91);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.brand-logo {
  width: auto;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,.28));
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: .92rem; color: #e7ddd2; transition: color .2s ease, background .2s ease; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1d1408 !important;
  font-weight: 800;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 35%, transparent);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* NEXUS GT | SECCIÓN 02: HERO COMERCIAL */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 52% 38%, rgba(6, 25, 35, .12) 0%, rgba(6, 25, 35, .24) 48%, rgba(6, 25, 35, .52) 100%),
    linear-gradient(180deg, rgba(6, 25, 35, .38) 0%, rgba(6, 25, 35, .46) 48%, rgba(6, 25, 35, .82) 100%),
    linear-gradient(90deg, rgba(6, 25, 35, .34) 0%, rgba(6, 25, 35, .15) 50%, rgba(6, 25, 35, .34) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, rgba(2, 20, 28, .82));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 92%);
  padding: 76px clamp(14px, 3vw, 28px) 0;
  text-align: center;
  border-radius: 30px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .48);
}
.eyebrow, .kicker {
  color: var(--accent-2);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
}
.eyebrow { display: inline-block; margin-bottom: 14px; }
.hero-logo {
  width: min(640px, 76vw);
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.45));
}
.hero h1 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: .93;
  text-wrap: balance;
}
.hero p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: #f6efe8;
  font-size: clamp(1.03rem, 2vw, 1.16rem);
  text-shadow: 0 2px 16px rgba(0,0,0,.38);
}
.hero-actions, .contact-actions, .menu-conversion-actions, .visit-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-trust span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  color: #d7c9bc;
  font-size: .78rem;
  font-weight: 700;
}

/* NEXUS GT | COMPONENTES: BOTONES Y ENCABEZADOS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #22170a;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 30%, transparent);
}
.btn-secondary, .btn-ghost {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
}
.btn-secondary:hover, .btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-ghost { background: rgba(0, 0, 0, .24); }

.section { padding: 108px 0; scroll-margin-top: 76px; }
.section-alt { background: linear-gradient(to bottom, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015)); }
.section-head { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.kicker { margin-bottom: 12px; }
.section-head h2, .contact-title, .visit-panel h2 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.06;
  color: #fff;
  text-wrap: balance;
}
.section-head p, .muted { color: var(--muted); }

/* NEXUS GT | SECCIÓN 03: MENÚ ESCAPARATE */
#menu {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-deep);
}
#menu::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--menu-background-image) center center / cover no-repeat;
  transform: scale(1.02);
}
#menu::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(6, 25, 35, .86), rgba(11, 37, 54, .82) 46%, rgba(6, 25, 35, .92)),
    linear-gradient(to right, rgba(6, 25, 35, .62), rgba(6, 25, 35, .30), rgba(6, 25, 35, .62));
}
#menu .container { position: relative; z-index: 1; }
#menu .section-head {
  padding: 22px 24px;
  border: 1px solid rgba(216, 182, 106, .18);
  border-radius: 22px;
  background: rgba(6, 25, 35, .52);
  backdrop-filter: blur(5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .20);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.menu-card {
  position: relative;
  min-height: 285px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #110d0a;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card.featured { grid-column: span 7; min-height: 390px; }
.menu-card.wide { grid-column: span 5; min-height: 390px; }
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.menu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 5, 4, .98) 0%, rgba(6, 5, 4, .52) 45%, transparent 76%);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .35);
}
.menu-card:hover img { transform: scale(1.06); filter: brightness(1.05); }
.menu-info { position: absolute; inset: auto 0 0; z-index: 2; padding: 20px; }
.tag {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--accent-2);
  font-size: .64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.menu-info h3 {
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  line-height: 1.05;
}
.menu-info p { margin: 0; color: #d2c5b8; font-size: .91rem; }
.menu-conversion {
  max-width: 860px;
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  text-align: center;
}
.menu-conversion p { margin: 0 0 16px; color: var(--muted); }
.menu-conversion strong { color: var(--accent-2); }

/* NEXUS GT | MENÚ DIGITAL COMPLETO */
.full-menu-dialog {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #061923;
  color: var(--text);
}
.full-menu-dialog::backdrop { background: rgba(0, 0, 0, .82); }
.full-menu-shell {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, .10), transparent 32%),
    linear-gradient(180deg, #0b2536, #08202d 55%, #061923);
}
.full-menu-header {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(130px, 190px) 1fr 48px;
  gap: 20px;
  align-items: center;
  width: min(920px, 92%);
  margin: 0 auto;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(6, 25, 35, .94);
  backdrop-filter: blur(16px);
}
.full-menu-brand img { width: 100%; height: 58px; object-fit: contain; object-position: left center; }
.full-menu-header h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}
.full-menu-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
}
.full-menu-close:hover { background: rgba(255, 255, 255, .12); }
.full-menu-tools, .full-menu-content, .menu-empty {
  width: min(920px, 92%);
  margin-inline: auto;
}
.full-menu-tools { padding: 28px 0 18px; }
.menu-search-label {
  display: block;
  margin-bottom: 8px;
  color: #f8f2df;
  font-size: .82rem;
  font-weight: 800;
}
.menu-search-wrap {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(216, 182, 106, .38);
  border-radius: 15px;
  background: rgba(255, 255, 255, .045);
}
.menu-search-wrap span { color: var(--accent-2); font-size: 1.4rem; }
.menu-search-wrap input {
  width: 100%;
  padding: 13px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}
.menu-search-wrap input::placeholder { color: #aebfc5; }
.menu-result-count { margin: 8px 2px 0; color: #aebfc5; font-size: .8rem; }
.full-menu-content { display: grid; gap: 14px; padding-bottom: 24px; }
.menu-category {
  overflow: hidden;
  border: 1px solid rgba(216, 182, 106, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}
.menu-category-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 94px 1fr 32px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.menu-category-toggle:hover { background: rgba(255, 255, 255, .035); }
.menu-category-media {
  position: relative;
  width: 94px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, .22);
  border-radius: 14px;
  background: #0a2b3a;
}
.menu-category-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-category-media.is-placeholder {
  background:
    linear-gradient(135deg, rgba(34, 166, 161, .22), transparent 65%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 8px, transparent 8px 16px),
    #0a2b3a;
}
.menu-category-media.is-placeholder > span {
  color: var(--accent-2);
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.menu-category-heading { display: grid; gap: 3px; }
.menu-category-heading strong {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  line-height: 1.1;
}
.menu-category-heading small { color: #b5c6cb; }
.menu-category-chevron {
  color: var(--accent-2);
  font-size: 1.8rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .2s ease;
}
.menu-category-toggle[aria-expanded="true"] .menu-category-chevron { transform: rotate(180deg); }
.menu-category-panel { padding: 0 18px 18px; }
.menu-category-note {
  margin: 0 0 8px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(34, 166, 161, .10);
  color: #d5e2e5;
  font-size: .86rem;
}
.menu-product-list { display: grid; }
.menu-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.menu-product:last-child { border-bottom: 0; }
.menu-product h3 { margin: 0 0 4px; color: #fff; font-size: 1rem; }
.menu-product p { margin: 0; color: #bfd0d4; font-size: .88rem; line-height: 1.48; }
.menu-product-price { color: var(--accent-2); white-space: nowrap; }
.menu-product-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}
.menu-product-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(251, 191, 36, .38);
  border-radius: 999px;
  background: rgba(216, 182, 106, .10);
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.menu-product-order:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #211507;
}
.menu-empty {
  padding: 36px 20px;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}
.full-menu-footer {
  position: sticky;
  bottom: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 14px 4%;
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: rgba(6, 25, 35, .95);
  backdrop-filter: blur(16px);
}
.full-menu-footer p { margin: 0; color: #aebfc5; font-size: .78rem; }
.full-menu-whatsapp { min-height: 46px; }

/* NEXUS GT | SECCIÓN 04: GALERÍA */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.gallery-grid figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.gallery-grid figure.tall { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }

/* NEXUS GT | SECCIÓN 05 Y 06: EXPERIENCIA Y SERVICIOS */
.feature-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature, .service {
  padding: 25px 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.feature .icon, .service .icon { margin-bottom: 12px; font-size: 1.4rem; }
.feature h3, .service h3 { margin: 0 0 7px; color: #fff; font-size: 1rem; }
.feature p, .service p { margin: 0; color: var(--muted); font-size: .88rem; }

/* NEXUS GT | SECCIÓN 07: LLAMADO COMERCIAL */
.visit-panel {
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 28px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
}
.visit-panel h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.visit-panel p { margin: 0; color: var(--muted); }
.visit-actions { justify-content: flex-end; }

/* NEXUS GT | SECCIÓN 08: CONTACTO Y MAPA */
.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-panel, .map-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow);
}
.contact-list { display: grid; gap: 18px; margin: 22px 0; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent-2);
}
.contact-item strong { display: block; color: #fff; }
.contact-item span, .contact-item a { color: var(--muted); }
.contact-item a:hover { color: #fff; }
.status-open { color: var(--success) !important; font-weight: 800; }
.status-closed { color: var(--danger) !important; font-weight: 800; }
.status-note { display: block; margin-top: 2px; font-size: .78rem; color: #aebfc5; }
.contact-actions { justify-content: flex-start; }
.map-frame { min-height: 100%; overflow: hidden; border: 1px solid rgba(255, 255, 255, .08); border-radius: 16px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }

/* NEXUS GT | SECCIÓN 09: PIE DE PÁGINA */
footer {
  padding: 28px 0 92px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #a59586;
  font-size: .9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, .75fr) minmax(200px, auto) minmax(280px, 1.25fr);
  gap: 28px;
  align-items: start;
}
.footer-brand strong { color: #fff; }
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.footer-menu a {
  color: #cbbeb0;
  font-weight: 700;
  transition: color .2s ease;
}
.footer-menu a:last-child { color: var(--accent-2); }
.footer-contact { text-align: right; }
.footer-inner a:hover { color: #fff; }

/* NEXUS GT | SECCIÓN 10: BARRA MÓVIL */
.mobile-actions { display: none; }

/* NEXUS GT | REDES SOCIALES FLOTANTES */
.social-float {
  position: fixed;
  right: 18px;
  bottom: 28px;
  z-index: 1150;
  display: grid;
  gap: 10px;
}
.social-float-link {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(251, 191, 36, .46);
  border-radius: 50%;
  background: rgba(8, 6, 5, .95);
  color: var(--accent-2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .42);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.social-float-link:hover {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #211507;
}
.social-float-link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.social-float-link .social-icon-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-float-link .social-icon-dot { fill: currentColor; stroke: none; }
.social-float-link > span {
  position: absolute;
  right: 60px;
  padding: 7px 10px;
  border: 1px solid rgba(251, 191, 36, .30);
  border-radius: 9px;
  background: rgba(8, 6, 5, .97);
  color: #f7efe7;
  font-size: .76rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
}
.social-float-link:hover > span,
.social-float-link:focus-visible > span {
  opacity: 1;
  transform: translateX(0);
}

/* NEXUS GT | ANIMACIONES */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* NEXUS GT | RESPONSIVE TABLETA */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-menu {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
  .footer-contact { text-align: right; }
  .menu-card, .menu-card.featured, .menu-card.wide { grid-column: span 6; min-height: 310px; }
  .feature-grid, .service-grid, .contact-wrap { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .visit-panel { grid-template-columns: 1fr; text-align: center; }
  .visit-actions { justify-content: center; }
}

/* NEXUS GT | RESPONSIVE MÓVIL */
@media (max-width: 768px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 78px 4% auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(10, 7, 6, .98);
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 11px 12px; border-radius: 10px; }
  .nav-links a:hover { background: rgba(255, 255, 255, .06); }
  .nav-cta { text-align: center; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card, .menu-card.featured, .menu-card.wide { grid-column: auto; min-height: 285px; }
  .feature-grid, .service-grid, .contact-wrap, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure.tall { grid-row: auto; }

  .section { padding: 84px 0; }
  .brand-logo { height: 50px; }
  .hero { min-height: 100svh; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 25, 35, .48) 0%, rgba(6, 25, 35, .60) 48%, rgba(6, 25, 35, .90) 100%);
  }
  .hero-bg { object-position: 58% center; }
  .hero-content { width: min(92%, 620px); padding-top: 92px; }
  .hero-logo { width: min(440px, 78vw); margin-bottom: 10px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero p { max-width: 32ch; margin-bottom: 20px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 7px; }
  .contact-panel, .map-panel { padding: 22px; }
  .map-frame iframe { min-height: 340px; }
  footer { padding-bottom: 100px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-menu {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
  }
  .footer-contact { text-align: left; }

  .social-float {
    right: 12px;
    bottom: 92px;
    gap: 8px;
  }
  .social-float-link { width: 43px; height: 43px; }
  .social-float-link svg { width: 20px; height: 20px; }
  .social-float-link > span { display: none; }
  .social-float-whatsapp { display: none; }

  .full-menu-header {
    grid-template-columns: 104px 1fr 44px;
    gap: 10px;
    width: 94%;
    padding: 11px 0;
  }
  .full-menu-brand img { height: 48px; }
  .full-menu-header .kicker { display: none; }
  .full-menu-tools, .full-menu-content, .menu-empty { width: 94%; }
  .full-menu-tools { padding-top: 18px; }
  .menu-category-toggle {
    grid-template-columns: 72px 1fr 26px;
    gap: 11px;
    padding: 11px;
  }
  .menu-category-media { width: 72px; border-radius: 11px; }
  .menu-category-panel { padding: 0 13px 13px; }
  .menu-product { gap: 12px; padding: 15px 2px; }
  .menu-product p { font-size: .82rem; }
  .menu-product-actions { gap: 6px; }
  .menu-product-order { min-height: 32px; padding-inline: 12px; }
  .full-menu-footer { display: grid; gap: 7px; padding: 9px 3% calc(9px + env(safe-area-inset-bottom)); }
  .full-menu-footer p { text-align: center; }
  .full-menu-whatsapp { width: 100%; }

  .mobile-actions {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(8, 6, 5, .94);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .46);
  }
  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 48px;
    padding: 7px 4px;
    border-radius: 12px;
    color: #e9ded3;
    font-size: .72rem;
    font-weight: 800;
    text-align: center;
  }
  .mobile-actions a:nth-child(2) {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #211507;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   EL RANCHO V9 FRESH — PALETA DEL MENÚ Y AJUSTES RESPONSIVE
   ========================================================= */
.kicker,
.eyebrow { color: var(--accent-3); }

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(34, 166, 161, .055), rgba(255, 255, 255, .015));
}


.menu-card,
.feature,
.service,
.menu-category,
.visit-panel,
.contact-card {
  backdrop-filter: blur(8px);
}

.menu-product-price {
  max-width: 240px;
  white-space: normal;
  text-align: right;
  line-height: 1.35;
}
.menu-product-price-list {
  display: grid;
  gap: 2px;
}
.menu-product-price-line {
  display: block;
  white-space: nowrap;
}

.gallery-grid img { object-position: center; }

@media (max-width: 720px) {
  .hero { min-height: 92svh; }
  .hero-content { padding-top: 96px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .menu-product { align-items: flex-start; gap: 14px; }
  .menu-product-actions { min-width: 118px; }
  .menu-product-price { font-size: .85rem; max-width: 130px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 430px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid > * { grid-column: auto !important; min-height: 280px; }
  .menu-product { grid-template-columns: 1fr; }
  .menu-product-actions { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
  .menu-product-price { text-align: left; max-width: 210px; }
  .menu-product-price-line { white-space: nowrap; }
}


/* Happy Hour — imagen retirada de la galería y convertida en anuncio */
.happy-hour-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 166, 161, .18), transparent 34%),
    linear-gradient(135deg, #071f2c 0%, #0b3441 55%, #102a36 100%);
}

.happy-hour-card {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(229, 192, 119, .3);
  border-radius: 28px;
  background: rgba(7, 31, 44, .76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.happy-hour-image {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background: #041720;
  isolation: isolate;
}
.happy-hour-image::before {
  content: '';
  position: absolute;
  inset: -24px;
  z-index: -1;
  background:
    linear-gradient(rgba(4, 23, 32, .46), rgba(4, 23, 32, .46)),
    url('/assets/img/restaurant/mojito.webp') center / cover no-repeat;
  filter: blur(18px) saturate(.9);
  transform: scale(1.08);
}
.happy-hour-image img {
  width: 100%;
  height: 100%;
  max-height: 424px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.happy-hour-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(32px, 6vw, 76px);
}

.happy-hour-content h2 {
  margin: 8px 0 18px;
  color: #fff8e8;
}

.happy-hour-content p {
  max-width: 58ch;
  margin: 0 0 28px;
  color: rgba(255, 248, 232, .82);
}

@media (max-width: 820px) {
  .happy-hour-card { grid-template-columns: 1fr; }
  .happy-hour-image { min-height: 300px; max-height: none; padding: 14px; }
  .happy-hour-image img { height: auto; max-height: none; }
}

@media (max-width: 430px) {
  .happy-hour-card { border-radius: 20px; }
  .happy-hour-image { min-height: 240px; padding: 10px; }
  .happy-hour-content { padding: 30px 24px 34px; }
  .happy-hour-content .btn { width: 100%; justify-content: center; }
}



/* Promoción mensual dinámica — septiembre 2026 */
/* UX: botón discreto + modal centrado y legible. */

.floating-monthly-promo {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.floating-monthly-promo.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.floating-monthly-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 25, 35, .56);
  backdrop-filter: blur(2px);
}
.floating-monthly-promo-card {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 48px));
  max-height: min(82vh, 900px);
  overflow: hidden;
  border: 1px solid rgba(212, 166, 74, .72);
  border-radius: 22px;
  background: linear-gradient(180deg, #0a2434 0%, #061923 100%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .46);
  transform: translateY(18px) scale(.985);
  transition: transform .28s ease;
}
.floating-monthly-promo.is-visible .floating-monthly-promo-card {
  transform: translateY(0) scale(1);
}
.floating-monthly-promo-body {
  display: block;
  padding: 16px;
  text-decoration: none;
}
.floating-monthly-promo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(66vh, 560px);
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: #08202f;
}
.floating-monthly-promo-conditions {
  display: block;
  padding: 12px 14px 2px;
  color: rgba(255, 248, 232, .88);
  text-align: center;
  font-size: .82rem;
  line-height: 1.45;
}
.floating-monthly-promo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: rgba(6, 25, 35, .92);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
  transition: transform .18s ease, background .18s ease;
}
.floating-monthly-promo-close:hover {
  background: #ec804c;
  transform: scale(1.06);
}
.floating-monthly-promo-close:focus-visible,
.floating-monthly-promo-body:focus-visible,
.floating-monthly-promo-trigger:focus-visible {
  outline: 3px solid #55c4c2;
  outline-offset: 3px;
}
.floating-monthly-promo-trigger {
  position: fixed;
  left: 50%;
  bottom: clamp(20px, 4vh, 32px);
  transform: translateX(-50%);
  z-index: 979;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(212, 166, 74, .84);
  border-radius: 999px;
  background: linear-gradient(135deg, #0b2536, #0d3145);
  color: #fff8e8;
  font: inherit;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .34);
  transition: transform .18s ease, background .18s ease, opacity .24s ease;
}
.floating-monthly-promo-trigger:hover {
  background: #ec804c;
  transform: translateX(-50%) translateY(-1px);
}
@media (max-width: 720px) {
  .floating-monthly-promo {
    padding: 14px;
  }
  .floating-monthly-promo-card {
    width: min(92vw, 560px);
    max-height: 84vh;
    border-radius: 18px;
  }
  .floating-monthly-promo-body {
    padding: 12px 12px 14px;
  }
  .floating-monthly-promo-image {
    max-height: 56vh;
  }
  .floating-monthly-promo-trigger {
    bottom: 16px;
    max-width: calc(100vw - 28px);
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-monthly-promo,
  .floating-monthly-promo-card,
  .floating-monthly-promo-close,
  .floating-monthly-promo-trigger {
    transition: none;
  }
}


/* Botones de plataformas de entrega */
.service-action {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 15px;
  font-size: .86rem;
}
.service {
  display: flex;
  flex-direction: column;
}

/* =========================================================
   VISOR FLOTANTE DE IMÁGENES / LIGHTBOX
   Mantiene la galería sobre la página sin desplazar al footer.
   ========================================================= */
body.lightbox-open {
  overflow: hidden;
}
.image-lightbox[hidden] {
  display: none;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 36px);
  opacity: 0;
  transition: opacity .18s ease;
}
.image-lightbox.is-open {
  opacity: 1;
}
.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 10, 15, .94);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}
.image-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(94vw, 1400px);
  height: min(92vh, 960px);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
}
.image-lightbox-figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 14px;
}
.image-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 70px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}
.image-lightbox-caption {
  max-width: min(78ch, 85vw);
  color: #fff8e8;
  text-align: center;
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
}
.image-lightbox-close,
.image-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(5, 28, 38, .78);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.image-lightbox-close:hover,
.image-lightbox-nav:hover {
  background: rgba(236, 128, 76, .94);
  transform: scale(1.06);
}
.image-lightbox-close:focus-visible,
.image-lightbox-nav:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}
.image-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
}
.image-lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
}
.image-lightbox-prev { justify-self: start; }
.image-lightbox-next { justify-self: end; }
.image-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(5, 28, 38, .75);
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
}
@media (max-width: 720px) {
  .image-lightbox {
    padding: 10px;
  }
  .image-lightbox-panel {
    width: 100%;
    height: 96vh;
    grid-template-columns: 1fr;
  }
  .image-lightbox-figure {
    grid-column: 1;
    grid-row: 1;
    padding: 52px 4px 58px;
  }
  .image-lightbox-image {
    max-height: calc(96vh - 150px);
    border-radius: 10px;
  }
  .image-lightbox-nav {
    position: absolute;
    bottom: 12px;
    width: 46px;
    height: 46px;
  }
  .image-lightbox-prev { left: 8px; }
  .image-lightbox-next { right: 8px; }
  .image-lightbox-close {
    top: 8px;
    right: 8px;
  }
  .image-lightbox-counter {
    bottom: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .image-lightbox,
  .is-lightbox-enabled,
  .image-lightbox-close,
  .image-lightbox-nav {
    transition: none;
  }
}


/* Consentimiento de cookies analíticas */
.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 10px 0 6px;
}
.footer-legal-links a,
.footer-legal-links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 248, 232, .78);
  font: inherit;
  font-size: .84rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.footer-legal-links a:hover,
.footer-legal-links button:hover { color: #f0c96c; }
.cookie-consent[hidden] { display: none !important; }
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1200;
  width: min(920px, calc(100vw - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(212, 166, 74, .72);
  border-radius: 18px;
  background: rgba(6, 25, 35, .98);
  color: #fff8e8;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .46);
}
.cookie-consent-copy { max-width: 650px; }
.cookie-consent-copy strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.16rem;
}
.cookie-consent-copy p {
  margin: 0 0 5px;
  color: rgba(255, 248, 232, .82);
  font-size: .9rem;
  line-height: 1.45;
}
.cookie-consent-copy a { color: #69d0ce; font-size: .86rem; }
.cookie-consent-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-btn {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.cookie-btn-primary {
  border: 1px solid #f0c96c;
  background: linear-gradient(135deg, #ec804c, #d6a84c);
  color: #071923;
}
.cookie-btn-secondary {
  border: 1px solid rgba(255, 248, 232, .46);
  background: transparent;
  color: #fff8e8;
}
.cookie-btn:focus-visible,
.footer-legal-links button:focus-visible {
  outline: 3px solid #55c4c2;
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .cookie-consent {
    bottom: 72px;
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }
  .cookie-consent-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}


/* Promoción diaria de septiembre 2026 */
.daily-promo-section[hidden] {
  display: none !important;
}

.daily-promo-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  max-width: 980px;
  margin: 2rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(216, 182, 106, 0.22);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(6, 25, 35, 0.97), rgba(11, 37, 54, 0.97));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
}

.daily-promo-image-wrap {
  min-height: 420px;
  background: var(--bg-deep);
}

.daily-promo-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.daily-promo-content {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.daily-promo-day {
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.daily-promo-content h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--text);
}

.daily-promo-content p {
  margin: 0;
  color: var(--muted);
}

.daily-promo-conditions {
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 760px) {
  .daily-promo-card {
    grid-template-columns: 1fr;
  }

  .daily-promo-image-wrap {
    min-height: 0;
  }

  .daily-promo-image-wrap img {
    aspect-ratio: 4 / 5;
  }
}
