/* =============================================================
   1. TOKENS — custom properties
   ============================================================= */
:root {
  /* Palette */
  --bg:          #faf3e8;
  --bg-2:        #f0e5d0;
  --bg-dark:     #1c1208;
  --bg-dark-2:   #251a0f;
  --ink:         #1c1208;
  --ink-soft:    #3a2818;
  --ink-mute:    #7d6148;
  --cream:       #faf3e8;
  --cream-2:     #e8d8c0;
  --accent:      #c85e10;
  --accent-2:    #a04808;
  --accent-light:#f5e0cc;
  --green:       #4a7530;
  --line:        rgba(28,18,8,0.1);
  --line-dark:   rgba(250,243,232,0.12);

  /* Fonts */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing */
  --gutter:    clamp(1.25rem, 5vw, 2.5rem);
  --max-width: 1200px;
  --nav-h:     72px;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
address { font-style: normal; }

::selection { background: var(--accent); color: #fff; }

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

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.2rem;
  background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: var(--r-sm);
  font-weight: 500; font-size: .875rem;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. TYPOGRAPHY — section headers
   ============================================================= */
.section-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-kicker--light { color: var(--accent-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-title--light { color: var(--cream); }
.section-title em { font-style: italic; color: var(--accent); }
.section-title--light em { color: var(--accent-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-mute);
  max-width: 54ch;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* =============================================================
   5. COMPONENTS — buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background .25s var(--ease-out),
    color .25s var(--ease-out),
    transform .2s var(--ease-bounce),
    box-shadow .25s var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,94,16,.28);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 6px 24px rgba(200,94,16,.38);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(250,243,232,.14);
  color: var(--cream);
  border: 1px solid rgba(250,243,232,.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(250,243,232,.22);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,243,232,.4);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s var(--ease-out), transform .2s var(--ease-bounce);
  white-space: nowrap;
  margin-top: 1.5rem;
}
.btn-outline-light:hover {
  background: rgba(250,243,232,.1);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: .55rem 1.25rem;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  transition: background .2s var(--ease-out), transform .2s var(--ease-bounce);
}
.btn-nav:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(250,243,232,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* Invert logo for hero (dark bg) — handled via JS class */
  transition: filter .35s var(--ease-out);
}
/* When nav is transparent (over dark hero) show logo in a readable way */
.nav:not(.is-scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .25s var(--ease-out);
  border-radius: 2px;
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }

/* On transparent nav, links become cream */
.nav:not(.is-scrolled) .nav-link { color: rgba(250,243,232,.85); }
.nav:not(.is-scrolled) .nav-link:hover { color: #fff; }
.nav:not(.is-scrolled) .nav-link::after { background: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav:not(.is-scrolled) .nav-toggle span { background: #fff; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(28,18,8,.45) 0%,
      rgba(28,18,8,.35) 40%,
      rgba(28,18,8,.72) 100%
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 6rem;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-kicker {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,243,232,.7);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: #fff;
  font-size: 1.05em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(250,243,232,.8);
  line-height: 1.55;
  max-width: 50ch;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(250,243,232,.6);
  animation: heroScrollBounce 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250,243,232,.2);
  transition: color .2s, border-color .2s;
}
.hero-scroll:hover {
  color: rgba(250,243,232,1);
  border-color: rgba(250,243,232,.5);
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Reveal classes for hero elements */
.reveal { opacity: 1; }

/* =============================================================
   8. MENU SECTION
   ============================================================= */
.menu-section {
  background: var(--bg);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,18,8,.06), 0 1px 3px rgba(28,18,8,.04);
  transition:
    box-shadow .3s var(--ease-out),
    transform .3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  box-shadow: 0 12px 40px rgba(28,18,8,.12), 0 2px 8px rgba(28,18,8,.06);
  transform: translateY(-6px);
}

.menu-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}
.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.menu-card:hover .menu-card-img-wrap img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.menu-card-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.menu-card-body p {
  font-size: .9rem;
  color: var(--ink-mute);
  line-height: 1.5;
  flex: 1;
}

.menu-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.menu-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.btn-order {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1rem;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  transition: background .2s var(--ease-out), transform .2s var(--ease-bounce);
}
.btn-order:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.menu-footer {
  text-align: center;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.menu-footer p {
  font-size: 1rem;
  color: var(--ink-mute);
}
.menu-footer p strong {
  color: var(--ink);
}

/* =============================================================
   9. HORARIO SECTION
   ============================================================= */
.horario-section {
  background: var(--bg-dark);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.horario-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,94,16,.15) 0%, transparent 70%);
  pointer-events: none;
}

.horario-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.horario-left .horario-note {
  font-size: 1rem;
  color: rgba(250,243,232,.6);
  max-width: 42ch;
  line-height: 1.65;
  margin-top: 1.25rem;
}

.horario-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.horario-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line-dark);
}
.horario-row:first-child { border-top: 1px solid var(--line-dark); }

.h-dia {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(250,243,232,.85);
  min-width: 150px;
}
.h-sep {
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}
.h-horas {
  font-size: .95rem;
  font-weight: 400;
  color: var(--accent-light);
  text-align: right;
}

/* =============================================================
   10. UBICACIÓN SECTION
   ============================================================= */
.ubicacion-section {
  background: var(--bg-2);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.ubicacion-address {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .95rem;
  color: var(--ink-mute);
  margin-top: .25rem;
}
.ubicacion-address svg { flex-shrink: 0; margin-top: .2rem; }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28,18,8,.1);
  margin-top: .5rem;
}
.map-iframe {
  display: block;
  width: 100%;
  border: 0;
}

.ubicacion-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* =============================================================
   11. CONTACTO SECTION
   ============================================================= */
.contacto-section {
  background: var(--bg);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 780px;
  margin-inline: auto;
}

.contacto-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 2px 12px rgba(28,18,8,.06);
  border: 1.5px solid transparent;
  transition:
    box-shadow .3s var(--ease-out),
    transform .3s var(--ease-out),
    border-color .3s;
  cursor: pointer;
}
.contacto-card:hover {
  box-shadow: 0 8px 32px rgba(28,18,8,.1);
  transform: translateY(-4px);
}

.contacto-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contacto-icon--wa {
  background: #e8f8ee;
  color: #25d366;
}
.contacto-card:hover .contacto-icon--wa {
  background: #25d366;
  color: #fff;
}
.contacto-icon--ig {
  background: #fce8f5;
  color: #e1306c;
}
.contacto-card:hover .contacto-icon--ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.contacto-icon svg {
  transition: transform .3s var(--ease-bounce);
}
.contacto-card:hover .contacto-icon svg {
  transform: scale(1.1);
}

.contacto-card-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .35rem;
}
.contacto-card-body p {
  font-size: .9rem;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-bottom: .75rem;
}
.contacto-cta {
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
  transition: letter-spacing .2s;
}
.contacto-card:hover .contacto-cta {
  letter-spacing: .02em;
}

/* =============================================================
   12. FOOTER
   ============================================================= */
.footer {
  background: var(--bg-dark);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
  transition: opacity .2s;
}
.footer-logo:hover img { opacity: 1; }
.footer-tagline {
  font-size: .875rem;
  color: rgba(250,243,232,.5);
}

.footer-address {
  font-size: .875rem;
  color: rgba(250,243,232,.6);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
  text-align: center;
}
.footer-address svg {
  display: inline;
  color: var(--accent);
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
.footer-social-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,243,232,.4);
}
.footer-social-links {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,243,232,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,243,232,.6);
  transition:
    background .25s var(--ease-out),
    color .25s,
    border-color .25s,
    transform .2s var(--ease-bounce);
}
.social-link:hover { transform: translateY(-3px); }
.social-link--ig:hover { background: #e1306c; color: #fff; border-color: #e1306c; }
.social-link--wa:hover { background: #25d366; color: #fff; border-color: #25d366; }

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(250,243,232,.3);
}

/* =============================================================
   13. WHATSAPP FLOATING BUTTON
   ============================================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .25s var(--ease-bounce), box-shadow .25s var(--ease-out);
}
.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =============================================================
   14. REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger for cards */
.menu-card.reveal:nth-child(2) { transition-delay: .08s; }
.menu-card.reveal:nth-child(3) { transition-delay: .16s; }
.menu-card.reveal:nth-child(4) { transition-delay: .24s; }
.menu-card.reveal:nth-child(5) { transition-delay: .32s; }
.menu-card.reveal:nth-child(6) { transition-delay: .40s; }

.contacto-card.reveal:nth-child(2) { transition-delay: .1s; }

/* =============================================================
   15. RESPONSIVE
   ============================================================= */
@media (min-width: 540px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .nav-toggle { display: none; }
}

@media (min-width: 960px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 719px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250,243,232,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
    z-index: 9;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-links .nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink) !important;
  }
  .nav-links .btn-nav { font-size: 1rem; }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

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

  .horario-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .h-dia { min-width: unset; }

  .contacto-grid { grid-template-columns: 1fr; }
  .contacto-card { flex-direction: column; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-address { align-items: center; text-align: center; }
  .footer-social { align-items: center; }
}

@media (max-width: 539px) {
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (min-width: 720px) and (max-width: 959px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .horario-layout { gap: 3rem; }
}

/* =============================================================
   16. REDUCED MOTION — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
  .whatsapp-fab::before { animation: none; }
  /* Reveal: skip transform, keep opacity */
  .reveal {
    transform: none;
    transition: opacity .4s var(--ease-out);
  }
  /* Hero parallax image: no transform */
  .hero-img { will-change: auto; }
}
