/* ============================================================
   LA BRASERÍA — Parrilla Argentina
   styles.css  |  Mobile-first · Rústico Cálido / Bold
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --bg:           #1c1008;
  --surface:      #2a1a0a;
  --surface-2:    #3a2010;
  --primary:      #c1440e;
  --primary-dk:   #9a3309;
  --primary-lt:   #e05a20;
  --secondary:    #e8a020;
  --secondary-dk: #b07810;
  --text:         #f5ead8;
  --text-muted:   #a89070;
  --text-dim:     #7a6050;
  --border:       rgba(232,160,32,0.18);
  --shadow:       0 8px 40px rgba(0,0,0,0.6);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   0.3s ease;
  --font-title:   'Abril Fatface', serif;
  --font-body:    'Lato', sans-serif;
  --nav-h:        68px;
}

/* ---- RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}

select option {
  background: var(--surface-2);
  color: var(--text);
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-lt);
  border-color: var(--primary-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,68,14,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(245,234,216,0.45);
}

.btn-outline:hover {
  background: rgba(245,234,216,0.08);
  border-color: var(--text);
  transform: translateY(-2px);
}

/* ---- SECTION UTILITIES ---- */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ---- ANIMATIONS ---- */
@keyframes flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 20px rgba(232,160,32,0.6); }
  25%       { opacity: 0.92; text-shadow: 0 0 40px rgba(193,68,14,0.9); }
  50%       { opacity: 1; text-shadow: 0 0 30px rgba(232,160,32,0.8); }
  75%       { opacity: 0.96; text-shadow: 0 0 25px rgba(193,68,14,0.7); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flameDance {
  0%, 100% {
    transform: scaleX(1) scaleY(1) rotate(-1deg);
    opacity: 0.85;
  }
  33% {
    transform: scaleX(0.88) scaleY(1.08) rotate(1.5deg);
    opacity: 1;
  }
  66% {
    transform: scaleX(1.06) scaleY(0.95) rotate(-0.5deg);
    opacity: 0.9;
  }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- REVEAL (scroll animation) ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== NAV ===================== */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: var(--nav-h);
}

#mainNav.scrolled {
  background: rgba(28,16,8,0.97);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--text);
  white-space: nowrap;
}

.nav-logo i {
  color: var(--primary);
  font-size: 1.2rem;
  animation: flameDance 3s ease-in-out infinite;
}

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-reservar {
  display: none;
  padding: 0.5rem 1.2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-reservar:hover {
  background: var(--primary-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(193,68,14,0.4);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

/* Hamburger open state on <nav> */
#mainNav.nav-open .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#mainNav.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#mainNav.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile nav links open */
#mainNav.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 24px 20px 32px;
  gap: 0;
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.28s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

#mainNav.nav-open .nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#mainNav.nav-open .nav-links a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,16,8,0.72);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
}

.hero-badge-wrap {
  margin-bottom: 20px;
}

#statusBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,26,10,0.85);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

#statusBadge.badge-open {
  border-color: rgba(76,175,80,0.4);
  color: #a5d6a7;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
}

.badge-dot.dot-open {
  background: #4caf50;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  animation: flicker 6s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Flames decorativas */
.hero-flames {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.flame {
  display: block;
  width: 40px;
  height: 80px;
  border-radius: 50% 50% 30% 30%;
  background: linear-gradient(to top, var(--secondary), var(--primary), transparent);
  opacity: 0.25;
  animation: flameDance 2.5s ease-in-out infinite;
}

.flame-2 {
  animation-delay: 0.8s;
  height: 60px;
  opacity: 0.18;
}

.flame-3 {
  animation-delay: 1.6s;
  height: 70px;
  opacity: 0.22;
}

/* ===================== ESPECIALIDADES ===================== */
.especialidades-section {
  background: var(--surface);
}

.esp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.esp-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.esp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.esp-img-wrap {
  height: 200px;
  overflow: hidden;
}

.esp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.esp-card:hover .esp-img-wrap img {
  transform: scale(1.04);
}

.esp-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.esp-body h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.esp-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  flex: 1;
}

.esp-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: auto;
}

.esp-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 50px;
  vertical-align: middle;
}

.esp-card-featured {
  border-color: rgba(193,68,14,0.45);
  box-shadow: 0 0 0 1px rgba(193,68,14,0.2);
}

/* ===================== MENÚ DIGITAL ===================== */
.menu-section {
  background: var(--bg);
}

.tabs-wrap {
  margin-bottom: 28px;
}

.tabs-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.tabs-scroll::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: var(--surface);
  border: 1.5px solid var(--border);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.tab-btn:hover {
  color: var(--text);
  border-color: rgba(232,160,32,0.4);
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--surface);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.menu-item:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.menu-item:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.menu-item:hover {
  background: var(--surface-2);
}

.menu-item-featured {
  border-left: 3px solid var(--primary);
  background: rgba(193,68,14,0.08);
}

.menu-item-info h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.tag-menu {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--secondary);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 50px;
  vertical-align: middle;
}

.menu-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* ===================== GALERÍA ===================== */
.galeria-section {
  background: var(--surface);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item:hover img {
  transform: scale(1.06);
}

.galeria-item-tall {
  grid-row: span 2;
}

.galeria-item-wide {
  grid-column: span 2;
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,16,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.galeria-overlay i {
  font-size: 1.8rem;
  color: #fff;
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(10,5,0,0.92);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

#lightboxCaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(42,26,10,0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.lightbox-close {
  top: 16px;
  right: 16px;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ===================== RESERVAS ===================== */
.reservas-section {
  background: var(--bg);
}

.reservas-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.reservas-info .section-title {
  text-align: left;
}

.reservas-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.reservas-datos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reservas-datos li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.reservas-datos li i {
  color: var(--primary);
  width: 16px;
  flex-shrink: 0;
}

.reservas-datos a {
  color: var(--secondary);
  transition: color var(--transition);
}

.reservas-datos a:hover {
  color: var(--text);
}

.reserva-form {
  background: var(--surface);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.required {
  color: var(--primary);
}

.form-error {
  font-size: 0.8rem;
  color: #e05858;
  min-height: 1rem;
}

input.error,
select.error {
  border-color: #e05858;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 1rem;
}

/* ===================== NOSOTROS ===================== */
.nosotros-section {
  background: var(--surface);
}

.nosotros-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.nosotros-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 420px;
}

.nosotros-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nosotros-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.nosotros-img-badge strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.6rem;
}

.nosotros-text .section-title {
  text-align: left;
}

.nosotros-text p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.75;
}

.nosotros-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
}

.stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--secondary);
}

.stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===================== HORARIOS ===================== */
.horarios-section {
  background: var(--bg);
}

.horarios-table-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.horarios-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.horarios-table th {
  background: var(--surface-2);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.horarios-table td {
  padding: 14px 16px;
  font-size: 0.93rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.horarios-table tr:last-child td {
  border-bottom: none;
}

.horarios-table td strong {
  color: var(--text);
}

.dia-cerrado td {
  opacity: 0.5;
}

.fin-de-semana {
  background: rgba(232,160,32,0.04);
}

.cerrado-badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(136,136,136,0.15);
  color: #888;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.horarios-nota {
  margin-top: 16px;
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.horarios-nota i {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== REVIEWS ===================== */
.reviews-section {
  background: var(--surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-card-featured {
  border-color: rgba(193,68,14,0.4);
  background: rgba(193,68,14,0.05);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--secondary);
  font-size: 0.9rem;
}

.review-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  border: none;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.review-card footer strong {
  font-size: 0.9rem;
  color: var(--text);
}

.review-card footer time {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===================== FOOTER ===================== */
.footer {
  background: #110900;
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo i {
  color: var(--primary);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer-col li i {
  color: var(--primary);
  width: 14px;
  flex-shrink: 0;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-horarios {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-horarios li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cerrado-text {
  color: #888;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--secondary);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--text);
}

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #1e3a1e;
  border: 1px solid rgba(76,175,80,0.4);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3000;
  min-width: 280px;
  max-width: 90vw;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast i {
  color: #4caf50;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.toast-content strong {
  font-size: 0.95rem;
  color: #a5d6a7;
}

.toast-content span {
  font-size: 0.83rem;
  color: #81c784;
  font-weight: 300;
}

/* ===================== BREAKPOINT 480px ===================== */
@media (min-width: 480px) {
  .esp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .esp-card:last-child {
    grid-column: span 2;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== BREAKPOINT 768px ===================== */
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  /* Nav desktop */
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    border: none;
    animation: none;
    box-shadow: none;
  }

  .nav-links li {
    border: none;
  }

  .nav-links a {
    padding: 0;
    font-size: 0.9rem;
  }

  .btn-reservar {
    display: block;
  }

  .hamburger {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
  }

  /* Especialidades */
  .esp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .esp-card:last-child {
    grid-column: auto;
  }

  /* Menú grid */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .menu-item:nth-child(odd):last-child {
    grid-column: span 2;
  }

  /* Galería */
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  /* Reservas */
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .reserva-form {
    padding: 36px 32px;
  }

  /* Nosotros */
  .nosotros-wrap {
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===================== BREAKPOINT 1024px ===================== */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  /* Nav */
  .nav-logo {
    font-size: 1.5rem;
  }

  /* Galería */
  .galeria-grid {
    grid-auto-rows: 220px;
  }

  /* Reservas */
  .reservas-wrap {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
    gap: 60px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
