/* ===========================================================================
   MONITAS MEXICAN RESTAURANT — Estilos
   Marca: morado (letrero) + acentos festivos papel picado. Mobile-first, AA.
   =========================================================================== */

:root {
  /* Marca */
  --purple-900: #4C1D6E;
  --purple-800: #5B1E86;
  --purple:     #6B21A8;
  --purple-600: #7C3AED;
  --magenta:    #BE2D87;

  /* Acentos festivos (papel picado) */
  --red:    #DC2626;
  --gold:   #F59E0B;
  --green:  #16A34A;
  --teal:   #0EA5A4;
  --orange: #EA580C;
  --pink:   #EC4899;

  /* Neutros cálidos */
  --cream:   #FFF8F0;
  --cream-2: #FDF1E3;
  --ink:     #2A1733;
  --ink-soft:#5A4A63;
  --line:    #EADFD2;
  --white:   #FFFFFF;

  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(76, 29, 110, .28);
  --shadow-sm: 0 4px 14px -8px rgba(76, 29, 110, .35);
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Karla", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; margin: 0; color: var(--purple-900); }

.kicker {
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: .78rem; color: var(--magenta); margin: 0 0 .5rem;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.2rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { color: var(--ink-soft); margin-top: .6rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--purple); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  font-weight: 700; font-family: var(--font-body); font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  text-align: center; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--purple-800); }
.btn--ghost { background: transparent; color: var(--purple-900); border-color: var(--purple); }
.btn--ghost:hover { background: var(--purple); color: #fff; }
.btn--call { background: var(--gold); color: #3a2400; padding: .55rem 1rem; font-size: .92rem; }
.btn--call:hover { background: #e69000; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; color: var(--magenta);
  margin-top: .4rem;
}
.link-arrow:hover { color: var(--purple-800); }
.link-arrow svg { transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 240, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  display: flex; align-items: center; gap: 1rem; height: 68px;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__mark { flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--purple-800); letter-spacing: .01em; }
.brand__o { color: var(--magenta); }
.brand__sub { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }

.nav__links { display: none; gap: 1.6rem; margin-left: auto; }
.nav__links a { color: var(--ink); font-weight: 600; position: relative; padding: .3rem 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--magenta); transition: width .2s ease;
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { width: 100%; }

.nav__actions { display: none; align-items: center; gap: .7rem; margin-left: 1rem; }
.lang { display: inline-flex; border: 1.5px solid var(--purple); border-radius: 999px; overflow: hidden; }
/* Selector de idioma siempre visible en la barra (también en móvil) */
.lang--nav { margin-left: auto; flex: none; }
.lang__btn {
  border: 0; background: transparent; color: var(--purple-800); cursor: pointer;
  font-weight: 700; font-family: var(--font-body); padding: .5rem .8rem; font-size: .85rem;
  min-height: 34px; line-height: 1; display: inline-flex; align-items: center;
}
.lang__btn.is-active { background: var(--purple); color: #fff; }

.nav__toggle {
  width: 44px; height: 44px; display: inline-flex; flex-direction: column;
  justify-content: center; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 10px;
}
.nav__toggle span { height: 2.5px; background: var(--purple-800); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  overflow: hidden; max-height: 0; visibility: hidden;
  transition: max-height .28s ease, visibility 0s linear .28s;
  background: var(--cream);
  border-bottom: 1px solid transparent;
}
.nav__mobile.is-open {
  max-height: 380px; visibility: visible;
  transition: max-height .28s ease, visibility 0s;
  border-bottom-color: var(--line);
}
.nav__mobile a {
  display: block; padding: .9rem 1.25rem; color: var(--ink); font-weight: 600;
  border-top: 1px solid var(--line);
}
.nav__mobile a:first-child { border-top: 0; }
.nav__mobile-call { color: var(--magenta) !important; font-weight: 800 !important; }

/* ---------- Papel picado ---------- */
.papel {
  height: 22px;
  background:
    repeating-linear-gradient(90deg,
      var(--red) 0 40px, var(--gold) 40px 80px, var(--green) 80px 120px,
      var(--teal) 120px 160px, var(--orange) 160px 200px, var(--pink) 200px 240px);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 28px, transparent 28px 40px);
          mask: repeating-linear-gradient(90deg, #000 0 28px, transparent 28px 40px);
  position: relative;
}
.papel::after {
  content: ""; position: absolute; inset: 0;
  background: inherit;
  -webkit-mask: radial-gradient(circle at 50% 0, transparent 0 7px, #000 7px) 0 0 / 40px 22px repeat-x;
          mask: radial-gradient(circle at 50% 0, transparent 0 7px, #000 7px) 0 0 / 40px 22px repeat-x;
}

/* ---------- Hero / Video ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero__video { position: absolute; inset: 0; z-index: -2; }
.hero__video video,
.hero__video img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(76,29,110,.78) 0%, rgba(107,33,168,.42) 38%, rgba(40,12,60,.30) 60%),
    linear-gradient(180deg, rgba(40,12,60,.20), rgba(40,12,60,.78)),
    radial-gradient(70% 80% at 18% 35%, rgba(190,45,135,.40), transparent 72%);
}

.hero__content { color: #fff; padding: 4rem 0; width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-block; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; font-size: .78rem;
  color: #3a2400; background: linear-gradient(90deg, var(--gold), #fbbf24); padding: .4rem .9rem; border-radius: 999px;
  margin: 0 0 1.1rem; box-shadow: 0 6px 18px -6px rgba(245,158,11,.6);
}
.hero__title { font-size: clamp(2.6rem, 8vw, 5.2rem); color: #fff; max-width: 16ch; line-height: 1.02; text-shadow: 0 6px 28px rgba(0,0,0,.45); }
.hero__title-line { display: block; }
.hero__title-accent {
  display: block;
  background: linear-gradient(90deg, #fbbf24 0%, #fb7185 45%, #f0abfc 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { max-width: 48ch; font-size: clamp(1rem, 2.5vw, 1.22rem); margin: 1.3rem 0 2rem; color: #f6ecfc; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__cta .btn--ghost { color: #fff; border-color: #fff; }
.hero__cta .btn--ghost:hover { background: #fff; color: var(--purple-900); }
.hero__cta .btn--primary {
  background: linear-gradient(90deg, var(--magenta), var(--purple-600));
  box-shadow: 0 10px 26px -8px rgba(190,45,135,.7);
}
.hero__cta .btn--primary:hover { filter: brightness(1.08); }
.hero__badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 2.2rem 0 0;
}
.hero__badges li {
  font-size: .82rem; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.34); padding: .42rem .85rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.hero__badges li::before { content: "•"; color: var(--gold); margin-right: .4rem; }

/* botón de sonido del hero */
.hero__mute {
  position: absolute; bottom: 20px; right: 20px; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.55);
  background: rgba(40,12,60,.4); color: #fff; cursor: pointer; backdrop-filter: blur(6px);
  display: grid; place-items: center; transition: background .2s, transform .2s;
}
.hero__mute:hover { background: var(--magenta); transform: scale(1.08); }
.hero__mute.is-muted { opacity: .9; }

/* ---------- Galería con carrusel ---------- */
.gallery { padding: clamp(3rem, 7vw, 5rem) 0; background:
  radial-gradient(50% 60% at 100% 0, rgba(14,165,164,.12), transparent 70%), var(--cream-2); }
.gallery__stage {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 16/9; background: var(--purple-900);
}
.gallery__track { position: absolute; inset: 0; }
.gallery__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .8s ease, transform 7s ease; transform: scale(1.06);
}
.gallery__slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.4rem 1.4rem 1.2rem;
  color: #fff; font-weight: 700; font-size: 1.05rem;
  background: linear-gradient(transparent, rgba(40,12,60,.85));
}

.gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6);
  background: rgba(40,12,60,.4); color: #fff; cursor: pointer; backdrop-filter: blur(6px);
  display: grid; place-items: center; transition: background .2s, transform .2s, border-color .2s;
}
.gallery__arrow:hover { background: var(--magenta); border-color: var(--magenta); transform: translateY(-50%) scale(1.08); }
.gallery__arrow--prev { left: 14px; }
.gallery__arrow--next { right: 14px; }

.gallery__dots {
  display: flex; gap: .55rem; justify-content: center; margin-top: 1.2rem;
}
.gallery__dot {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  background: #d8c7e6; transition: background .2s, width .25s;
}
.gallery__dot:hover { background: var(--purple-600); }
.gallery__dot.is-active { background: var(--magenta); width: 26px; border-radius: 999px; }

/* miniaturas */
.gallery__thumbs { display: flex; gap: .6rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.gallery__thumb {
  width: 84px; height: 56px; border-radius: 10px; overflow: hidden; cursor: pointer; padding: 0;
  border: 3px solid transparent; transition: border-color .2s, transform .2s; background: none;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--magenta); transform: translateY(-2px); }
@media (max-width: 560px) { .gallery__thumbs { display: none; } }

@media (max-width: 640px) {
  .gallery__arrow { width: 40px; height: 40px; }
  .gallery__arrow--prev { left: 8px; }
  .gallery__arrow--next { right: 8px; }
}

/* ---------- About ---------- */
.about {
  padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; overflow: hidden;
  background:
    radial-gradient(40% 50% at 92% 8%, rgba(245,158,11,.16), transparent 70%),
    radial-gradient(45% 55% at 4% 96%, rgba(190,45,135,.14), transparent 70%),
    var(--cream);
}
.about__grid { display: grid; gap: 2.5rem; }
.about__text h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.about__text h2 .hl {
  background: linear-gradient(120deg, var(--magenta), var(--purple-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about__text p { color: var(--ink-soft); margin: 0 0 1rem; max-width: 56ch; }
.about__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.about__gallery img {
  border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; object-fit: cover; aspect-ratio: 4/3;
  border: 4px solid #fff; outline: 3px solid transparent; transition: transform .25s, outline-color .25s;
}
.about__gallery img:first-child { outline-color: var(--magenta); }
.about__gallery img:last-child { outline-color: var(--gold); margin-top: 1.6rem; }
.about__gallery img:hover { transform: translateY(-4px) rotate(-1deg); }

/* ---------- Tira de sabores (banda de color) ---------- */
.flavors {
  background: linear-gradient(90deg, var(--purple-800), var(--magenta) 50%, var(--orange));
  color: #fff; padding: 1rem 0; overflow: hidden;
}
.flavors__track {
  display: flex; gap: 2.5rem; white-space: nowrap; width: max-content;
  animation: marquee 28s linear infinite;
}
.flavors__track span { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; opacity: .95; }
.flavors__track span::after { content: "✦"; margin-left: 2.5rem; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .flavors__track { animation: none; } }

/* ---------- Platos destacados ---------- */
.dishes {
  padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; overflow: hidden;
  background:
    radial-gradient(45% 50% at 0% 0%, rgba(107,33,168,.12), transparent 70%),
    radial-gradient(45% 50% at 100% 100%, rgba(234,88,12,.12), transparent 70%),
    var(--cream);
}
.dishes__grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.dish {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.dish:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -20px rgba(76,29,110,.45); }
.dish__media { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish:hover .dish__media img { transform: scale(1.07); }
.dish__tag {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  color: #fff; padding: .28rem .65rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.dish:nth-child(1) .dish__tag { background: rgba(245,158,11,.92); color: #3a2400; }
.dish:nth-child(2) .dish__tag { background: rgba(22,163,74,.92); }
.dish:nth-child(3) .dish__tag { background: rgba(220,38,38,.92); }
.dish:nth-child(4) .dish__tag { background: rgba(190,45,135,.92); }
.dish__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.dish__body h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--purple-800); }
.dish__body p { color: var(--ink-soft); font-size: .9rem; margin: 0; flex: 1; }
.dish__price {
  font-weight: 800; color: var(--magenta); font-size: 1.15rem; margin-top: .3rem;
  font-variant-numeric: tabular-nums;
}
.dishes__cta { text-align: center; margin-top: 2.2rem; }

/* ---------- Menu ---------- */
.menu { padding: clamp(3rem, 7vw, 5.5rem) 0; background:
  linear-gradient(180deg, var(--cream), var(--cream-2)); }
.menu__tabs {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.2rem;
}
.menu__tab {
  border: 2px solid var(--line); background: var(--white); color: var(--purple-800);
  font-weight: 700; font-family: var(--font-body); cursor: pointer;
  padding: .6rem 1.1rem; border-radius: 999px; font-size: .95rem;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.menu__tab:hover { border-color: var(--purple); transform: translateY(-1px); }
.menu__tab.is-active {
  background: linear-gradient(90deg, var(--purple), var(--magenta)); color: #fff; border-color: transparent;
  box-shadow: 0 8px 20px -8px rgba(190,45,135,.6);
}

.menu__panel { display: none; }
.menu__panel.is-active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.menu__panel-note {
  text-align: center; color: var(--ink-soft); font-style: italic; margin: -.4rem auto 1.8rem; max-width: 60ch;
}
.menu__cols { columns: 2; column-gap: 2.2rem; }
@media (max-width: 700px) { .menu__cols { columns: 1; } }

.menu-card {
  --accent: var(--magenta);
  break-inside: avoid; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.3rem 1.1rem; margin-bottom: 1.4rem; box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--accent); position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -16px rgba(76,29,110,.4); }
/* colores rotativos por tarjeta */
.menu-card:nth-child(6n+1) { --accent: var(--magenta); }
.menu-card:nth-child(6n+2) { --accent: var(--gold); }
.menu-card:nth-child(6n+3) { --accent: var(--green); }
.menu-card:nth-child(6n+4) { --accent: var(--teal); }
.menu-card:nth-child(6n+5) { --accent: var(--orange); }
.menu-card:nth-child(6n+6) { --accent: var(--purple-600); }

.menu-card__head {
  display: flex; align-items: baseline; gap: .6rem; justify-content: space-between;
  border-bottom: 2px dashed var(--line); padding-bottom: .55rem; margin-bottom: .7rem;
}
.menu-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--accent); }
.menu-card__price-tag {
  font-weight: 800; color: #fff; background: var(--accent); padding: .15rem .6rem; border-radius: 999px;
  font-size: .9rem; white-space: nowrap;
}
.menu-card__sub { color: var(--ink-soft); font-size: .85rem; margin: 0 0 .7rem; }

.menu-item {
  display: flex; align-items: baseline; gap: .5rem; padding: .28rem 0;
}
.menu-item__name { font-weight: 600; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted #c9bcae; transform: translateY(-3px); min-width: 12px; }
.menu-item__price { font-weight: 700; color: var(--purple-800); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-item__note { display: block; color: var(--ink-soft); font-size: .82rem; font-style: italic; margin-top: .1rem; }
.menu-item--noprice .menu-item__dots { display: none; }

.menu__note { text-align: center; color: var(--ink-soft); font-size: .86rem; margin-top: 1.5rem; max-width: 62ch; margin-inline: auto; }

/* ---------- Hours ---------- */
.hours { padding: clamp(2.6rem, 6vw, 4.5rem) 0; background: var(--purple-900); color: #fff; }
.hours h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.hours .kicker { color: var(--gold); }
.hours__grid { display: grid; gap: 2rem; align-items: center; }
.hours__open { font-weight: 700; margin-top: .8rem; }
.hours__open .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: .4rem; vertical-align: middle; }
.is-open  { color: #86efac; }
.is-closed{ color: #fca5a5; }
.hours__table { width: 100%; border-collapse: collapse; font-size: 1.05rem; }
.hours__table th, .hours__table td { text-align: left; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.hours__table th { font-weight: 600; color: #efe1fb; }
.hours__table td { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- Visit ---------- */
.visit { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.visit__grid { display: grid; gap: 2.5rem; }
.visit__info h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1.2rem; }
.visit__list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 1.1rem; }
.visit__list li { display: flex; gap: .9rem; align-items: flex-start; }
.visit__list svg { color: var(--magenta); flex: none; margin-top: 2px; }
.visit__label { display: block; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.visit__cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.visit__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #e9dcf2; padding: 2.6rem 0; text-align: center; }
.footer__inner { display: grid; gap: .8rem; justify-items: center; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__sub { color: #b9a8c6; }
.footer__addr { margin: 0; color: #cdbcd8; }
.footer__fb { color: var(--gold); font-weight: 700; }
.footer__fb:hover { color: #ffd47a; }
.footer__copy { margin: .4rem 0 0; font-size: .85rem; color: #9d8caa; }

/* ---------- Responsive ---------- */
@media (min-width: 860px) {
  .nav__links, .nav__actions { display: flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none; }
  .lang--nav { margin-left: 0; }
  .about__grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .hours__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .visit__grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

@media (max-width: 859px) {
  .nav__mobile a { font-size: 1.05rem; }
}

/* ---------- Accesibilidad ---------- */
:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
