/* ═══════════════════════════════════════════════════════════
   LA CARRETA RESTAURANTE WESTERN – Design System
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:    #FFF8E7;
  --cream-dk: #F5EDD6;
  --maroon:   #800000;
  --maroon-dk:#5C0000;
  --yellow:   #F5A623;
  --yellow-dk:#D4881A;
  --teal:     #008080;
  --teal-lt:  #009999;
  --white:    #FFFFFF;
  --dark:     #1A0A00;
  --gray:     #6B5B4E;
  --gray-lt:  #B8A89A;

  --ff-head: 'Roboto Slab', Georgia, serif;
  --ff-body: 'Montserrat', system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(128,0,0,.08);
  --shadow-md: 0 8px 32px rgba(128,0,0,.14);
  --shadow-lg: 0 20px 60px rgba(128,0,0,.18);

  --radius: 16px;
  --radius-sm: 8px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: 1rem; }
.hidden { display: none !important; }

/* ── SHARED HELPERS ──────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
}
.section-tag.light { color: var(--yellow); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.section-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--maroon);
  line-height: 1.15;
}
.section-header h2 em, h2 em { font-style: italic; color: var(--yellow-dk); }
.section-desc { color: var(--gray); margin-top: .75rem; font-size: .95rem; }

.teal-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-lt));
  border-radius: 2px;
  margin: 1rem auto;
}
.teal-line.left { margin: 1rem 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--maroon-dk);
  border-color: var(--yellow);
  box-shadow: 0 4px 18px rgba(245,166,35,.35);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.75);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn.full-width { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: .75rem 0;
}
.navbar.scrolled {
  background: rgba(255,248,231,.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img {
  height: 58px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a,
.nav-links.open a {
  color: var(--maroon);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.navbar.scrolled .nav-links a::after,
.nav-links.open a::after {
  background: var(--teal);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--yellow); }
.navbar.scrolled .nav-links a:hover,
.nav-links.open a:hover {
  color: var(--teal);
}
.nav-cta {
  background: var(--yellow) !important;
  color: var(--maroon-dk) !important;
  padding: .55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(245,166,35,.3);
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--yellow-dk) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--maroon);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 12s ease-out;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92,0,0,.82) 0%,
    rgba(128,0,0,.65) 50%,
    rgba(0,40,40,.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 1.5rem 6rem;
  width: 100%;
}
.hero-label {
  display: block;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  animation: fadeUp .9s .1s ease both;
  max-width: 680px;
}
.hero-title em {
  color: var(--yellow);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s .2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 1s .35s ease both;
}
.hero-badges {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeUp 1s .5s ease both;
}
.badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .4rem .9rem;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
}
.badge-icon { font-size: 1rem; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* ═══════════════════════════════════════════════════════════
   USP STRIP
   ═══════════════════════════════════════════════════════════ */
.usp-strip {
  background: var(--maroon);
  padding: 2.5rem 1.5rem;
}
.usp-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex: 1;
  min-width: 220px;
}
.usp-icon { font-size: 2.2rem; }
.usp-item h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: .1rem;
}
.usp-item p { font-size: .82rem; color: rgba(255,255,255,.7); }
.usp-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════════════════════════ */
.menu-section {
  padding: 6rem 1.5rem;
  background: var(--cream);
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.tab {
  padding: .65rem 1.6rem;
  border-radius: 50px;
  border: 2px solid var(--teal);
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.tab:hover, .tab.active {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,128,128,.25);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }
.menu-badge {
  position: absolute;
  top: .8rem; right: .8rem;
  background: var(--yellow);
  color: var(--maroon-dk);
  font-size: .72rem;
  font-weight: 800;
  padding: .3rem .75rem;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.menu-card-body { padding: 1.4rem 1.5rem; }
.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .6rem;
}
.menu-card-header h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--maroon);
  line-height: 1.25;
}
.price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--yellow-dk);
  white-space: nowrap;
}
.teal-sep {
  width: 36px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: .75rem;
}
.menu-card-body p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: .9rem;
}
.menu-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.menu-tags span {
  font-size: .75rem;
  padding: .25rem .65rem;
  border-radius: 50px;
  background: var(--cream-dk);
  color: var(--gray);
  font-weight: 500;
}
.menu-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92,0,0,.88) 0%,
    rgba(0,40,40,.75) 100%
  );
}
.about-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.about-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  padding: 3rem;
  max-width: 560px;
  width: 100%;
}
.about-card h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.about-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
}
.stat { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 6rem 1.5rem;
  background: var(--cream-dk);
}
.gallery-mural {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gal-item.tall {
  grid-row: span 2;
}
.gal-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gal-col .gal-item { flex: 1; }
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--ff-head);
}

/* ═══════════════════════════════════════════════════════════
   RESERVA
   ═══════════════════════════════════════════════════════════ */
.reserva-section {
  padding: 6rem 1.5rem;
  background: var(--cream);
}
.reserva-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.reserva-info h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.reserva-info > p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: .95rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  font-size: 1.4rem;
  margin-top: .1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--maroon);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .15rem;
}
.contact-item span {
  display: block;
  color: var(--gray);
  font-size: .9rem;
}
.contact-item a { color: var(--teal); font-weight: 600; }
.contact-item a:hover { color: var(--teal-lt); }

.reserva-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.reserva-form-card h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dk);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--maroon);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 2px solid var(--cream-dk);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,128,128,.12);
  background: var(--white);
}
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0,128,128,.1);
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  color: var(--teal);
  font-weight: 600;
  text-align: center;
  font-size: .92rem;
}
.map-embed {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--maroon-dk);
  padding: 4rem 1.5rem 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-logo {
  height: 70px;
  width: auto;
  border-radius: var(--radius-sm);
}
.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.4rem;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover {
  background: var(--yellow);
  color: var(--maroon-dk);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.footer-links h4, .footer-hours h4 {
  font-family: var(--ff-head);
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-links ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-links li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--yellow); }
.hours-list { display: flex; flex-direction: column; gap: .55rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.hours-row span:last-child { color: rgba(255,255,255,.85); font-weight: 600; }
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  background: rgba(0,200,100,.15);
  border: 1px solid rgba(0,200,100,.3);
  color: #5cff9d;
  padding: .4rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
  animation: fabPop .6s 1.5s ease both;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.55);
}
@keyframes fabPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gallery-mural {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item.tall { grid-row: span 1; }
  .gal-col { flex-direction: row; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 1.2rem; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,248,231,.97);
    backdrop-filter: blur(14px);
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 1.2rem;
  }
  .nav-toggle { display: flex; z-index: 1000; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badges { gap: .7rem; }

  .usp-container { flex-direction: column; }
  .usp-divider { width: 80px; height: 1px; }

  .about-content { justify-content: center; }
  .about-card { padding: 2rem 1.5rem; }
  .about-stats { flex-direction: column; gap: 1.2rem; }
  .stat-div { width: 60px; height: 1px; }

  .gallery-mural {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gal-col { flex-direction: column; gap: 0; }

  .reserva-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-mural {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gal-item { height: 220px; }
  .gal-col { flex-direction: column; }

  .menu-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}
