/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-950: #241712;
  --brown-900: #2e1c14;
  --brown-800: #3c261a;
  --brown-700: #5a3a26;
  --cream: #faf3e7;
  --cream-2: #f2e6d2;
  --mustard: #d69a3c;
  --mustard-dark: #b87d24;
  --terracotta: #b5502f;
  --ink: #241712;
  --muted: #7a6a5c;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(36, 23, 18, 0.15);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Poppins", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Pages (navegación tipo pestañas, sin scroll entre secciones) ---------- */
.page { display: none; }
.page.active-page { display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--brown-900);
  margin-bottom: 32px;
}

.section {
  padding: 84px 0;
  position: relative;
  background-image: radial-gradient(rgba(36, 23, 18, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section-alt { background-color: var(--cream-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 8px 20px rgba(181, 80, 47, 0.35);
}
.btn-primary:hover { background: #a2461f; }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-block { width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(36, 23, 18, 0.0);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(36, 23, 18, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  height: 50px; width: 50px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: #f2e6d2;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--mustard); }
.nav a.active-link:not(.nav-cta) {
  color: var(--mustard);
  position: relative;
}
.nav a.active-link:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--mustard);
  border-radius: 2px;
}
.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: #a2461f; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(214,154,60,0.18), transparent 55%),
    linear-gradient(160deg, rgba(36,23,18,0.86) 0%, rgba(58,38,26,0.75) 55%, rgba(181,80,47,0.5) 130%),
    url('../images/local-mesa-parrilla.jpg') center 30% / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; color: #fff; padding-top: 76px; }
.hero-logo {
  width: min(280px, 65%);
  height: auto;
  margin: 0 auto 24px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.hero-tagline {
  max-width: 560px;
  margin: 18px auto 36px;
  font-size: 1.1rem;
  color: var(--cream-2);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--mustard);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Especialidad (spotlight) ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.spotlight-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.spotlight-photo img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-copy p { color: var(--muted); margin: 14px 0 26px; }

.viandas-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: -8px 0 26px;
}
.viandas-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--brown-800);
  font-size: 0.95rem;
}
.viandas-list li::before {
  content: "✓";
  color: var(--terracotta);
  font-weight: 700;
}

/* ---------- Menu groups (nivel 1) ---------- */
.menu-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}
.menu-group-tab {
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--cream-2);
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-800);
  cursor: pointer;
  transition: all 0.15s ease;
}
.menu-group-tab:hover { background: #e9d9be; }
.menu-group-tab.active {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 16px rgba(181, 80, 47, 0.3);
}

/* ---------- Menu tabs (nivel 2, categorías dentro del grupo) ---------- */
.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 32px;
  scrollbar-width: thin;
}
.menu-tab {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--cream-2);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.menu-tab img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }
.menu-tab:hover { border-color: var(--mustard); color: var(--brown-800); }
.menu-tab.active {
  background: var(--brown-900);
  color: #fff;
  border-color: var(--brown-900);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.menu-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.menu-panel-header img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--mustard);
}
.menu-panel-header h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--brown-900);
}
.menu-panel-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

.menu-section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.menu-section-tab {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--cream-2);
  background: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brown-800);
  cursor: pointer;
  transition: all 0.15s ease;
}
.menu-section-tab:hover { border-color: var(--mustard); }
.menu-section-tab.active {
  background: var(--brown-900);
  color: #fff;
  border-color: var(--brown-900);
}

.carta-hint {
  color: var(--muted);
  margin-top: -20px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(36, 23, 18, 0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.menu-item:hover {
  box-shadow: 0 6px 18px rgba(36, 23, 18, 0.12);
  transform: translateY(-1px);
}

/* Item con selector de tamaño (ej. pizzas) */
.menu-item-sized,
.menu-item-desc-row,
.menu-item-salad {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.menu-item-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.size-selector { display: flex; flex-wrap: wrap; gap: 6px; }
.menu-item-sauces {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-item-sauces-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.size-chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--cream-2);
  background: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown-800);
  cursor: pointer;
  transition: all 0.15s ease;
}
.size-chip:hover { border-color: var(--mustard); }
.size-chip.active {
  background: var(--brown-900);
  color: #fff;
  border-color: var(--brown-900);
}

.ingredient-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ingredient-chip {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--cream-2);
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown-800);
  cursor: pointer;
  transition: all 0.15s ease;
}
.ingredient-chip:hover { border-color: var(--mustard); }
.ingredient-chip.active {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.ingredient-chip.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.menu-item-info {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.menu-item-name { font-weight: 500; color: var(--brown-800); }
.badge-popular {
  background: var(--mustard);
  color: var(--brown-950);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.menu-item-price {
  font-weight: 700;
  color: var(--terracotta);
  white-space: nowrap;
  margin-left: auto;
}

.menu-item-add { flex: 0 0 auto; }
.add-btn {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--terracotta);
  background: transparent;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.add-btn:hover { background: var(--terracotta); color: #fff; }

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 4px 6px;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--brown-900);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.qty-btn:hover { background: var(--terracotta); }
.qty-value { min-width: 16px; text-align: center; font-weight: 700; color: var(--brown-900); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--brown-800);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.gallery-note code {
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ---------- Ubicacion ---------- */
.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-list { margin: 24px 0; display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: flex; flex-direction: column; gap: 2px; }
.info-list strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
}
.info-list span { color: var(--brown-800); font-weight: 500; }

.social-row { display: flex; gap: 12px; margin: 20px 0; }
.social-row a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--brown-900);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.social-row a:hover { background: var(--terracotta); }

.ubicacion-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.ubicacion-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ---------- Reservas ---------- */
.reservas-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.reservas-copy p { color: var(--muted); margin-top: 12px; }

.reserva-form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reserva-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-800);
}
.reserva-form label.full { grid-column: 1 / -1; }
.reserva-form input,
.reserva-form textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-2);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}
.reserva-form input:focus,
.reserva-form textarea:focus {
  outline: none;
  border-color: var(--mustard);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-950);
  color: var(--cream-2);
  padding: 48px 0 28px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand img {
  height: 56px; width: 56px;
  object-fit: cover;
  border-radius: 50%;
}
.footer-inner .social-row { justify-content: center; }
.footer-copy { margin-top: 18px; font-size: 0.8rem; color: #a08a76; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px; right: 22px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
}
.whatsapp-float:hover { transform: translateY(-2px); }

/* ---------- Cart FAB ---------- */
.cart-fab {
  position: fixed;
  bottom: 22px; left: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brown-900);
  color: #fff;
  border: none;
  padding: 12px 20px 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 90;
  transition: transform 0.15s ease;
}
.cart-fab:hover { transform: translateY(-2px); }
.cart-fab-icon { font-size: 1.2rem; }
.cart-fab-count {
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.cart-fab-total { font-weight: 700; font-size: 0.9rem; }
.cart-fab.hidden { display: none; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(24, 15, 10, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 150;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--cream);
  box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  z-index: 151;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cart-drawer-header h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--brown-900); }
.cart-close {
  background: none; border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brown-800);
}

.cart-view { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.cart-view[hidden] { display: none; }

.cart-list { display: flex; flex-direction: column; gap: 12px; }
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(36,23,18,0.06);
}
.cart-line-name { font-weight: 600; color: var(--brown-800); font-size: 0.92rem; }
.cart-line-price { font-size: 0.8rem; color: var(--muted); }
.cart-line-controls { display: flex; align-items: center; gap: 10px; }
.cart-line-subtotal { font-weight: 700; color: var(--terracotta); min-width: 70px; text-align: right; }

.cart-empty { color: var(--muted); text-align: center; padding: 30px 0; }

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-900);
  border-top: 2px solid var(--cream-2);
  padding-top: 14px;
  margin-top: auto;
}

/* Checkout view */
.checkout-view { gap: 16px; }
.checkout-back {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--terracotta);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 4px;
}
.checkout-view label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-800);
}
.checkout-view input,
.checkout-view textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.checkout-view input:focus,
.checkout-view textarea:focus { outline: none; border-color: var(--mustard); }

.entrega-fieldset {
  border: 1.5px solid var(--cream-2);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  gap: 20px;
}
.entrega-fieldset legend {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--terracotta);
  font-weight: 700;
  padding: 0 4px;
}
.radio-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 6px;
  font-weight: 500 !important;
  cursor: pointer;
}
.radio-label input { width: auto; }

.checkout-summary {
  border-top: 2px solid var(--cream-2);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--brown-800);
}
.checkout-summary-total {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown-900);
  padding-top: 4px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 6, 4, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
  padding: 40px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ubicacion-grid, .reservas-grid, .spotlight-grid { grid-template-columns: 1fr; }
  .ubicacion-map { min-height: 300px; }
  .spotlight-photo { aspect-ratio: 16 / 10; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: rgba(36, 23, 18, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 14px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 8px 0; }
  .nav-cta { text-align: center; }
  .nav-toggle { display: flex; }
  .site-header { background: rgba(36, 23, 18, 0.92); }

  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }

  .cart-fab { left: 16px; bottom: 16px; padding: 10px 16px 10px 14px; }
  .whatsapp-float { padding: 12px 16px; }
  .cart-drawer { width: 100%; padding: 20px; }
}
