/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== ROOT ===== */
:root {
  /* Restaurante / Día */
  --dark:    #0F0E0C;
  --darker:  #1A1814;
  --wood:    #3B2F1E;
  --brick:   #8B3A2A;
  --amber:   #C8920A;
  --amber2:  #E5A810;
  --cream:   #F5E6C8;
  /* Terraza / Noche */
  --neon:    #38BDF8;
  --purple:  #8B5CF6;
  --magenta: #EC4899;
  --night:   #060612;
  --night2:  #0E0E24;
  --night3:  #141432;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-family: 'Inter', sans-serif; }
body { background: var(--dark); color: var(--cream); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(200,146,10,0.3); border-radius: 4px; }

/* ===== SPLASH ===== */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse at 30% 40%, rgba(59,47,30,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(8,8,28,0.5) 0%, transparent 60%),
              linear-gradient(135deg, #0F0E0C 0%, #0a0a18 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; margin-bottom: 1.5rem; }
.splash-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; text-align: center; line-height: 1.1;
  color: #fff; margin-bottom: 0.5rem;
}
.splash-sub { color: rgba(245,230,200,0.4); font-size: 0.85rem; margin-bottom: 3rem; text-align: center; letter-spacing: 0.05em; }

.splash-cards { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 480px; }
@media (min-width: 600px) { .splash-cards { flex-direction: row; max-width: 700px; } }

.splash-card {
  flex: 1; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s ease;
  overflow: hidden;
}
.splash-card::before {
  content: ''; position: absolute; inset: 0;
  background: inherit; opacity: 0; transition: opacity 0.3s;
}
.splash-card:hover { transform: translateY(-6px) scale(1.02); }

.splash-card--restaurante {
  background: linear-gradient(145deg, rgba(59,47,30,0.7), rgba(139,58,42,0.4));
  border-color: rgba(200,146,10,0.4);
  box-shadow: 0 8px 40px rgba(200,146,10,0.15);
}
.splash-card--restaurante:hover { box-shadow: 0 20px 60px rgba(200,146,10,0.3); }

.splash-card--terraza {
  background: linear-gradient(145deg, rgba(14,14,36,0.9), rgba(139,92,246,0.2));
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 8px 40px rgba(56,189,248,0.1);
}
.splash-card--terraza:hover { box-shadow: 0 20px 60px rgba(56,189,248,0.25); }

.splash-card__logo { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; }
.splash-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.1;
}
.splash-card__sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }
.splash-card__arrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }
.splash-card--restaurante .splash-card__arrow { color: var(--amber2); }
.splash-card--terraza .splash-card__arrow { color: var(--neon); }

/* ===== FLOATING MODE SWITCHER (Apple-style pill) ===== */
#mode-pill {
  position: fixed;
  top: 80px; /* below navbar */
  left: 50%; transform: translateX(-50%);
  z-index: 95;
  display: flex;
  background: rgba(10,10,18,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  padding: 4px;
  transition: opacity 0.3s;
}
#mode-pill.hidden { opacity: 0; pointer-events: none; }

.pill-btn {
  position: relative; z-index: 1;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer;
  background: transparent; color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  white-space: nowrap;
}
.pill-btn.active { color: #fff; }
#pill-indicator {
  position: absolute; top: 4px; bottom: 4px;
  border-radius: 999px;
  transition: left 0.35s cubic-bezier(.34,1.56,.64,1), width 0.35s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.pill-restaurante #pill-indicator { background: linear-gradient(135deg, var(--amber), var(--brick)); box-shadow: 0 2px 12px rgba(200,146,10,0.5); }
.pill-terraza    #pill-indicator { background: linear-gradient(135deg, var(--purple), var(--neon)); box-shadow: 0 2px 12px rgba(139,92,246,0.5); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,9,8,0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { background: rgba(10,9,8,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.5); }
.navbar__inner { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; display: flex; align-items: center; justify-content: space-between; height: 60px; }

/* Logo */
.navbar__logo { display: flex; align-items: center; gap: 0.625rem; }
.navbar__logo-img { height: 36px; width: 36px; object-fit: contain; border-radius: 50%; }
.navbar__logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.navbar__logo-sub { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.35); font-family: 'Inter', sans-serif; margin-top: -2px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Nav links */
.navbar__links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .navbar__links { display: flex; } }

.navbar__link {
  padding: 0.45rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: transparent; border: none;
  cursor: pointer; transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.navbar__link:hover { color: #fff; background: rgba(255,255,255,0.06); }

.navbar__cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 0.5rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.navbar__cta:hover { opacity: 0.85; transform: scale(1.02); }
.navbar.restaurante .navbar__cta { background: var(--amber); }
.navbar.terraza    .navbar__cta { background: linear-gradient(135deg, var(--purple), #7c3aed); }

.navbar__hamburger { padding: 0.5rem; color: rgba(255,255,255,0.7); background: none; border: none; cursor: pointer; }
@media (min-width: 768px) { .navbar__hamburger { display: none; } }

.navbar__mobile { display: none; flex-direction: column; gap: 0.25rem; padding: 0.75rem 1rem 1rem; }
.navbar__mobile.open { display: flex; }
.navbar__mobile-link { padding: 0.7rem 0.75rem; border-radius: 0.5rem; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); background: none; border: none; cursor: pointer; text-align: left; letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s; }
.navbar__mobile-link:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; }
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 860px;
  padding: 8rem 1.5rem 6rem; /* top: 60px navbar + 55px pill + buffer */
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}
.hero__sub { font-size: clamp(0.9rem, 2vw, 1.05rem); line-height: 1.65; margin-bottom: 2rem; max-width: 540px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Day hero */
.hero--day .hero__overlay { background: linear-gradient(to bottom, rgba(12,10,8,0.25) 0%, rgba(12,10,8,0.6) 55%, rgba(12,10,8,0.96) 100%); }
.hero--day .hero__badge { background: rgba(59,47,30,0.55); border: 1px solid rgba(200,146,10,0.35); color: var(--amber2); }
.hero--day .hero__heading { color: var(--cream); }
.hero--day .hero__heading em { font-style: normal; background: linear-gradient(90deg, var(--amber2), var(--amber)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero--day .hero__sub { color: rgba(245,230,200,0.65); }

/* Night hero */
.hero--night .hero__overlay { background: linear-gradient(to bottom, rgba(6,6,18,0.3) 0%, rgba(6,6,18,0.7) 55%, rgba(6,6,18,0.97) 100%); }
.hero--night .hero__badge { background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.25); color: var(--neon); }
.hero--night .hero__heading { color: #fff; }
.hero--night .hero__heading em { font-style: normal; color: var(--neon); text-shadow: 0 0 30px rgba(56,189,248,0.6), 0 0 60px rgba(56,189,248,0.3); }
.hero--night .hero__sub { color: rgba(255,255,255,0.55); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 0.75rem;
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.04em;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.2s;
  cursor: pointer; border: none; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary { background: var(--amber); color: #0F0E0C; box-shadow: 0 4px 20px rgba(200,146,10,0.35); font-weight: 700; }
.btn--primary:hover { box-shadow: 0 8px 32px rgba(200,146,10,0.5); }
.btn--primary-night { background: linear-gradient(135deg, var(--purple), #6d28d9); color: #fff; box-shadow: 0 4px 20px rgba(139,92,246,0.35); }
.btn--primary-night:hover { box-shadow: 0 8px 32px rgba(139,92,246,0.5); }
.btn--ghost { background: rgba(255,255,255,0.06); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.btn--wa { background: #22c55e; color: #fff; box-shadow: 0 4px 20px rgba(34,197,94,0.35); }
.btn--wa:hover { box-shadow: 0 8px 32px rgba(34,197,94,0.5); }
.btn--neon { background: rgba(56,189,248,0.08); color: var(--neon); border: 1.5px solid rgba(56,189,248,0.4); }
.btn--neon:hover { background: rgba(56,189,248,0.15); box-shadow: 0 0 20px rgba(56,189,248,0.25); }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }

/* ===== SECTION BASE ===== */
.section { padding: 5rem 1.25rem; }
@media (min-width: 768px) { .section { padding: 7rem 2rem; } }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section__eyebrow { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section__title { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.section__divider { width: 3rem; height: 2px; border-radius: 999px; margin: 0 auto 2.5rem; }

.day-eyebrow { color: var(--amber); }
.day-title { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); }
.day-divider { background: linear-gradient(90deg, var(--amber), var(--brick)); }

.night-eyebrow { color: var(--neon); }
.night-title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.night-divider { background: linear-gradient(90deg, var(--neon), var(--purple)); }

/* ===== TEXTURES ===== */
.texture-brick { background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238B3A2A' fill-opacity='0.04'%3E%3Cpath d='M0 0h42v22H0V0zm1 1h19v20H1V1zm21 0h19v20H22V1zM0 22h42v22H0V22zm1 1h19v20H1V23zm21 0h19v20H22V23z'/%3E%3C/g%3E%3C/svg%3E"); }

/* ===== PREMIUM MENU CARDS ===== */
.pm-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px) { .pm-grid { grid-template-columns: 1fr 1fr; } }

/* Card base — light (restaurante) */
.pm-card {
  background: #fff; color: #1a1510;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s cubic-bezier(.34,1.4,.64,1), box-shadow 0.3s ease;
  position: relative;
}
.pm-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }

.pm-card__header {
  padding: 1.75rem 1.75rem 1rem;
  background: linear-gradient(135deg, #FFFDF9 0%, #FFF7E6 100%);
  border-bottom: 1px solid rgba(200,146,10,0.12);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.pm-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: #1a1510; line-height: 1.1; }
.pm-card__subtitle { font-size: 0.72rem; color: rgba(26,21,16,0.45); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.25rem; }
.pm-card__price-badge { background: var(--amber); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; padding: 0.35rem 0.85rem; border-radius: 0.625rem; white-space: nowrap; }

.pm-card__body { padding: 1.25rem 1.75rem 1.75rem; }
.pm-card__item { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid rgba(26,21,16,0.06); }
.pm-card__item:last-of-type { border-bottom: none; }
.pm-card__item-name { font-size: 0.95rem; color: #2a2015; font-weight: 500; }
.pm-card__item-desc { font-size: 0.72rem; color: rgba(42,32,21,0.45); margin-top: 1px; }
.pm-card__item-price { font-size: 0.95rem; font-weight: 700; color: var(--amber); white-space: nowrap; padding-left: 1rem; }
.pm-card__note { font-size: 0.72rem; color: rgba(42,32,21,0.5); padding-top: 0.75rem; line-height: 1.5; }

/* Night card look */
.pm-card--night { background: rgba(14,14,36,0.9); color: #fff; border: 1px solid rgba(56,189,248,0.12); }
.pm-card--night .pm-card__header { background: linear-gradient(135deg, rgba(20,20,50,0.9), rgba(30,20,60,0.9)); border-bottom-color: rgba(56,189,248,0.12); }
.pm-card--night .pm-card__title { color: #fff; }
.pm-card--night .pm-card__subtitle { color: rgba(255,255,255,0.35); }
.pm-card--night .pm-card__price-badge { background: linear-gradient(135deg, var(--purple), #6d28d9); }
.pm-card--night .pm-card__item { border-bottom-color: rgba(255,255,255,0.06); }
.pm-card--night .pm-card__item-name { color: rgba(255,255,255,0.85); }
.pm-card--night .pm-card__item-price { color: var(--neon); }
.pm-card--night .pm-card__note { color: rgba(255,255,255,0.35); }
.pm-card--night:hover { box-shadow: 0 16px 48px rgba(56,189,248,0.12); }

/* Card expanded (modal) */
.pm-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.pm-overlay.open { opacity: 1; pointer-events: all; }
.pm-modal {
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(.34,1.4,.64,1);
  border-radius: 1.5rem;
}
.pm-overlay.open .pm-modal { transform: scale(1) translateY(0); }
.pm-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: rgba(26,21,16,0.6);
  transition: background 0.2s;
}
.pm-modal-close:hover { background: rgba(0,0,0,0.2); }

/* ===== STATS STRIP ===== */
.stats-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 2.5rem; }
.stat-item { text-align: center; min-width: 80px; }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--amber); display: block; }
.stat-label { font-size: 0.68rem; color: rgba(245,230,200,0.4); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== CTA SECTION (Restaurante — replaces digital menu) ===== */
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 600px; margin: 0 auto; }
@media (min-width: 500px) { .cta-grid { grid-template-columns: 1fr 1fr; } }
.cta-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 1.75rem 1.25rem;
  border-radius: 1.25rem; text-align: center; cursor: pointer;
  transition: transform 0.3s cubic-bezier(.34,1.4,.64,1), box-shadow 0.3s;
  text-decoration: none; font-weight: 600;
}
.cta-card:hover { transform: translateY(-4px); }
.cta-card--wa { background: #16a34a; color: #fff; box-shadow: 0 4px 24px rgba(22,163,74,0.3); }
.cta-card--wa:hover { box-shadow: 0 12px 40px rgba(22,163,74,0.45); }
.cta-card--menu { background: #fff; color: #1a1510; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.cta-card--menu:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.cta-card__icon { font-size: 2.5rem; line-height: 1; }
.cta-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; }
.cta-card__sub { font-size: 0.72rem; opacity: 0.6; }

/* ===== EVENTS (Night) ===== */
.event-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .event-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .event-grid { grid-template-columns: repeat(3, 1fr); } }
.event-card {
  background: rgba(14,14,36,0.7); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.25rem; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.event-card:hover { transform: translateY(-4px); border-color: rgba(56,189,248,0.25); box-shadow: 0 12px 40px rgba(56,189,248,0.1); }
.event-card__img { height: 180px; overflow: hidden; }
.event-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.event-card:hover .event-card__img img { transform: scale(1.06); }
.event-card__body { padding: 1.25rem; }
.event-card__date { font-size: 0.68rem; color: var(--neon); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem; }
.event-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.event-card__desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.55; }
.event-card__tag { display: inline-block; margin-top: 0.75rem; padding: 0.2rem 0.65rem; border-radius: 999px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.tag--karaoke { background: rgba(139,92,246,0.2); color: #a78bfa; border: 1px solid rgba(139,92,246,0.25); }
.tag--tributo { background: rgba(236,72,153,0.15); color: #f472b6; border: 1px solid rgba(236,72,153,0.25); }
.tag--show    { background: rgba(56,189,248,0.12); color: var(--neon); border: 1px solid rgba(56,189,248,0.2); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 0.875rem; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__over {
  position: absolute; inset: 0; background: rgba(6,6,18,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__over { opacity: 1; }
.gallery-item__over span { color: #fff; font-size: 0.8rem; font-weight: 600; }

/* ===== HOURS (Night) ===== */
.hours-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; max-width: 560px; margin: 0 auto; }
@media (min-width: 480px) { .hours-grid { grid-template-columns: repeat(3, 1fr); } }
.hours-card { padding: 1.1rem; border-radius: 0.875rem; text-align: center; background: rgba(14,14,36,0.6); border: 1px solid rgba(255,255,255,0.07); }
.hours-card--hi { border-color: rgba(56,189,248,0.35); box-shadow: 0 0 20px rgba(56,189,248,0.12); }
.hours-card__label { font-size: 0.65rem; color: var(--neon); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; opacity: 0.8; }
.hours-card__time { font-size: 1.1rem; font-weight: 700; color: #fff; }
.hours-card--hi .hours-card__time { color: var(--neon); font-size: 1.2rem; }

/* ===== LOCATION ===== */
.loc-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 960px) { .loc-grid { grid-template-columns: 1fr 1fr; } }
.loc-map { border-radius: 1.25rem; overflow: hidden; min-height: 280px; border: 1px solid rgba(255,255,255,0.06); }
.loc-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; filter: grayscale(60%) brightness(0.75); }
.info-list { display: flex; flex-direction: column; gap: 0.875rem; }
.info-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.1rem; border-radius: 0.875rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.info-row__icon { width: 40px; height: 40px; border-radius: 0.625rem; background: rgba(200,146,10,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-row__icon svg { width: 20px; height: 20px; color: var(--amber); }
.info-row__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(245,230,200,0.35); margin-bottom: 0.2rem; }
.info-row__val { font-size: 0.9rem; color: rgba(245,230,200,0.8); }
.info-row__link { color: var(--amber); font-size: 0.8rem; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 2.5rem 1.25rem; text-align: center; }
.footer__logo { height: 40px; width: auto; margin: 0 auto 0.75rem; border-radius: 50%; object-fit: contain; }
.footer__name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: #fff; }
.footer__addr { font-size: 0.75rem; color: rgba(245,230,200,0.3); margin-top: 0.25rem; }
.footer__credit { margin-top: 1.25rem; font-size: 0.7rem; color: rgba(245,230,200,0.2); }
.footer__credit a { color: rgba(245,230,200,0.4); text-decoration: underline; }
.footer__credit a:hover { color: var(--amber); }

/* ===== WHATSAPP BTN ===== */
.wa-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(34,197,94,0.55); }
.wa-float svg { width: 28px; height: 28px; }

/* ===== SECTION VISIBILITY ===== */
.section-day   { display: none; }
.section-night { display: none; }
.section-day.active   { display: block; }
.section-night.active { display: block; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Night bg helpers */
.bg-night  { background: var(--night); }
.bg-night2 { background: var(--night2); }

/* Body mode classes */
body.mode-restaurante { background: var(--dark); }
body.mode-terraza     { background: var(--night); }

/* ===== NEON ===== */
@keyframes glow { 0%{text-shadow:0 0 8px var(--neon)} 100%{text-shadow:0 0 20px var(--neon),0 0 40px var(--neon)} }
.neon-text { color: var(--neon); animation: glow 2s ease-in-out infinite alternate; }
