:root {
  --fx-magenta: #d4146e;
  --fx-magenta-deep: #9d0d50;
  --fx-magenta-soft: rgba(212, 20, 110, 0.12);
  --fx-teal: #00b0a8;
  --fx-teal-dark: #008a84;
  --fx-teal-soft: rgba(0, 176, 168, 0.15);
  --fx-yellow: #ffd41d;
  --fx-yellow-deep: #e6b800;
  --fx-white: #ffffff;
  --fx-cream: #faf5f0;
  --fx-cream-dark: #f0e6de;
  --fx-tan-bar: #e5d4c6;
  --fx-burgundy: #9b1c3e;
  --fx-phone: #1e5631;
  --fx-dark: #1a1d23;
  --fx-dark-mid: #252b38;
  --fx-dark-slate: #343e52;
  --fx-text: #1c1917;
  --fx-muted: #5c534c;
  --fx-border: rgba(28, 25, 23, 0.12);
  --font-bebas: "Bebas Neue", Impact, sans-serif;
  --font-script: "Great Vibes", cursive;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --header-h: 72px;
  --shadow-soft: 0 12px 40px rgba(26, 29, 35, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fx-text);
  background: var(--fx-cream);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--fx-magenta);
  color: var(--fx-white);
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  text-decoration: none;
}

code {
  font-size: 0.85em;
  color: var(--fx-muted);
}

a {
  color: var(--fx-teal-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--fx-magenta-deep);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.65rem);
}

h3 {
  font-size: 1.2rem;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: rgba(250, 245, 240, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--fx-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header:not(.is-scrolled) .logo__text {
  color: var(--fx-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .logo__text {
  color: var(--fx-magenta-deep);
}

.logo {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: min(100%, 15rem);
}

.logo--brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: min(100%, calc(100vw - 5.5rem));
}

.logo__mark {
  width: clamp(38px, 9vw, 48px);
  height: clamp(38px, 9vw, 48px);
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.site-header:not(.is-scrolled) .logo__mark {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.65),
    0 4px 16px rgba(0, 0, 0, 0.25);
}

.logo__text {
  display: block;
  min-width: 0;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--fx-white);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.nav-social:hover {
  background: rgba(24, 119, 242, 0.95);
  border-color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transform: scale(1.06);
}

.site-header.is-scrolled .nav-social {
  color: var(--fx-white);
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.25);
}

.site-header.is-scrolled .nav-social:hover {
  background: #0d65d9;
}

@media (min-width: 900px) {
  .logo {
    max-width: none;
  }

  .logo--brand {
    max-width: none;
  }
}

.logo:hover {
  text-decoration: none;
}

.logo:hover .logo__text {
  color: var(--fx-yellow);
}

.site-header.is-scrolled .logo:hover .logo__text {
  color: var(--fx-magenta);
}

.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--fx-yellow);
  text-decoration: none;
}

.nav a.nav-social {
  letter-spacing: 0;
  text-transform: none;
}

.nav a.nav-social:hover {
  color: var(--fx-white);
}

.site-header.is-scrolled .nav a.nav-social {
  color: var(--fx-white);
}

.site-header.is-scrolled .nav a.nav-social:hover {
  color: var(--fx-white);
}

.site-header.is-scrolled .nav a {
  color: var(--fx-muted);
}

.site-header.is-scrolled .nav a:hover {
  color: var(--fx-magenta);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border: 2px solid var(--fx-yellow);
  border-radius: 999px;
  color: var(--fx-yellow) !important;
}

.nav-cta:hover {
  background: rgba(255, 212, 29, 0.15);
  text-decoration: none !important;
}

.site-header.is-scrolled .nav-cta {
  border-color: var(--fx-teal);
  color: var(--fx-teal-dark) !important;
}

.site-header.is-scrolled .nav-cta:hover {
  background: var(--fx-teal-soft);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--fx-white);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s, background 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--fx-text);
  box-shadow: none;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--fx-cream-dark);
  border-bottom: 2px solid var(--fx-magenta-soft);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.85rem 0;
  color: var(--fx-text);
  font-weight: 600;
  border-bottom: 1px solid var(--fx-border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1877f2;
}

.mobile-nav__social:hover {
  color: #0d65d9;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* ——— Hero (fiesta) ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2.5rem) clamp(1.25rem, 4vw, 3rem) 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(255, 212, 29, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(0, 176, 168, 0.35), transparent 45%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(165deg, #c0125a 0%, var(--fx-magenta) 40%, #8f0d48 100%);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%23ffffff' d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.14;
}

.hero-decor--top {
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 12px,
    rgba(255, 255, 255, 0.5) 12px,
    rgba(255, 255, 255, 0.5) 14px
  );
}

.hero-decor--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.25) 8px,
    rgba(255, 255, 255, 0.25) 10px
  );
}

.hero-inner {
  position: relative;
  max-width: 900px;
}

.eyebrow {
  font-family: var(--font-bebas);
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  color: var(--fx-yellow);
  margin: 0 0 0.75rem;
}

.hero-title {
  margin: 0 0 1rem;
  font-weight: 400;
  line-height: 1;
}

.hero-title__script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 14vw, 6.5rem);
  color: var(--fx-white);
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.15em;
}

.hero-title__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35em 0.5em;
  margin-bottom: 0.5rem;
}

.hero-title__mex,
.hero-title__food {
  font-family: var(--font-bebas);
  font-size: clamp(2.8rem, 12vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.2),
    5px 5px 0 rgba(0, 0, 0, 0.08);
}

.hero-title__mex {
  color: var(--fx-teal);
}

.hero-title__food {
  color: var(--fx-yellow);
}

.hero-title__sub {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.25rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, filter 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.btn-hero-primary {
  background: var(--fx-yellow);
  color: var(--fx-magenta-deep);
  border-color: var(--fx-yellow-deep);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--fx-white);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-hero-fb {
  gap: 0.5rem;
  background: #1877f2;
  color: var(--fx-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-hero-fb:hover {
  background: #0d65d9;
  color: var(--fx-white);
}

.btn-location {
  background: var(--fx-burgundy);
  color: var(--fx-white);
  border-color: #7a1530;
  font-weight: 700;
}

.btn-location:hover {
  filter: brightness(1.08);
}

.btn-primary {
  background: var(--fx-magenta);
  color: var(--fx-white);
  border-color: var(--fx-magenta-deep);
}

.btn-teal {
  background: var(--fx-teal);
  color: var(--fx-white);
  border-color: var(--fx-teal-dark);
}

.btn-magenta {
  background: var(--fx-magenta);
  color: var(--fx-white);
}

.btn-route {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  background: var(--fx-dark-slate);
  color: var(--fx-white);
  border-color: rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
}

.btn-route:hover {
  background: #3d4a62;
}

.btn-ghost {
  background: transparent;
  border-color: var(--fx-border);
  color: var(--fx-text);
}

.btn-ghost:hover {
  border-color: var(--fx-magenta);
  color: var(--fx-magenta-deep);
}

.btn-ghost-dark {
  background: transparent;
  border: 2px solid var(--fx-magenta);
  color: var(--fx-magenta-deep);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ——— Location bar (letrero) ——— */
.location-bar {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 2rem;
}

.location-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  background: var(--fx-white);
  border: 2px solid var(--fx-burgundy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .location-bar-inner {
    grid-template-columns: 1.35fr 1fr 1.15fr 1.1fr;
    align-items: center;
    gap: 1.5rem;
  }
}

.location-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fx-burgundy);
  margin-bottom: 0.35rem;
}

.location-address {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.45;
  color: var(--fx-text);
  margin: 0;
}

.location-phone {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--fx-phone);
}

.location-phone:hover {
  text-decoration: none;
  color: #143d24;
}

.location-hours {
  margin: 0;
  font-size: 0.92rem;
  color: var(--fx-muted);
  line-height: 1.55;
}

.location-block--cta {
  text-align: center;
}

@media (min-width: 768px) {
  .location-block--cta {
    text-align: right;
  }
}

.location-services {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--fx-text);
  font-weight: 500;
}

.location-evening-note {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--fx-text);
  background: rgba(255, 252, 245, 0.92);
  border: 1px solid rgba(155, 28, 62, 0.18);
  border-radius: 12px;
  text-align: left;
}

.location-evening-note strong {
  color: var(--fx-burgundy);
}

.location-evening-map {
  display: inline-block;
  margin-top: 0.45rem;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--fx-magenta);
}

.location-evening-map:hover {
  color: var(--fx-burgundy);
}

/* ——— Marquee strip ——— */
.strip {
  overflow: hidden;
  border-block: 1px solid rgba(155, 28, 62, 0.15);
  background: var(--fx-tan-bar);
  padding: 0.85rem 0;
}

.marquee {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b5d54;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 9vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--fx-muted);
  margin: 0.5rem 0 0;
}

.section-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--fx-teal);
  aspect-ratio: 4 / 5;
  max-height: 520px;
  background: linear-gradient(145deg, var(--fx-white), var(--fx-cream-dark));
  box-shadow: var(--shadow-soft);
}

.frame-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--fx-muted);
  font-size: 0.95rem;
}

.frame--photo {
  padding: 0;
  background: #1a1512;
}

.frame-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy .lead {
  font-size: 1.12rem;
  color: var(--fx-muted);
}

.about-copy p:not(.lead):not(.about-socials) {
  color: var(--fx-muted);
}

.about-socials {
  margin: 1.25rem 0 0;
}

.about-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #1877f2;
}

.about-fb:hover {
  color: #0d65d9;
}

.about-fb svg {
  flex-shrink: 0;
}

.inline-map {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--fx-magenta);
}

/* ——— Menu ——— */
.menu {
  background: linear-gradient(180deg, var(--fx-white) 0%, var(--fx-cream) 100%);
  border-block: 1px solid var(--fx-border);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--fx-border);
  background: var(--fx-white);
  color: var(--fx-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.tab:hover {
  color: var(--fx-magenta);
  border-color: var(--fx-magenta-soft);
}

.tab.is-active {
  background: linear-gradient(135deg, var(--fx-yellow), #ffe566);
  border-color: var(--fx-magenta);
  color: var(--fx-magenta-deep);
  box-shadow: 0 4px 14px rgba(212, 20, 110, 0.15);
}

.menu-panels {
  max-width: 1100px;
  margin: 0 auto;
}

.panel:not(.is-visible) {
  display: none;
}

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

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

.dish {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--fx-border);
  background: var(--fx-white);
  display: grid;
  gap: 0.35rem;
  align-content: start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.dish h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--fx-text);
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.dish p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--fx-muted);
}

.price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fx-teal-dark);
  margin-top: 0.5rem;
}

.panel-intro {
  max-width: 720px;
  margin: 0 auto 1.25rem;
  font-size: 0.95rem;
  color: var(--fx-muted);
  line-height: 1.55;
}

.callout {
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--fx-magenta);
  background: var(--fx-magenta-soft);
  color: var(--fx-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.dish-wide {
  grid-column: 1 / -1;
}

.menu-bullets {
  margin: 0.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--fx-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  columns: 1;
}

@media (min-width: 520px) {
  .menu-bullets {
    columns: 2;
    column-gap: 2rem;
  }
}

/* ——— Reviews ——— */
.reviews {
  background: linear-gradient(180deg, var(--fx-magenta-deep) 0%, var(--fx-magenta) 50%, #8f0d48 100%);
  color: var(--fx-white);
  border-block: none;
}

.reviews .section-head h2 {
  color: var(--fx-white);
}

.reviews .section-head p {
  color: rgba(255, 255, 255, 0.88);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.review-card {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 212, 29, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.review-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.review-card footer {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fx-yellow);
}

.reviews-cta {
  text-align: center;
  margin: 2rem 0 0;
}

.reviews-cta a {
  color: var(--fx-yellow);
  font-weight: 700;
}

.reviews-cta a:hover {
  color: var(--fx-white);
}

/* ——— Gallery ——— */
.food-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
  gap: 0.65rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .food-gallery {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.85rem;
  }
}

.food-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  background: var(--fx-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.food-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 20, 110, 0.2);
}

.food-gallery__item:focus-visible {
  outline: 3px solid var(--fx-yellow);
  outline-offset: 2px;
}

.food-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 12, 10, 0.92);
  cursor: pointer;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 920px);
  max-height: 92vh;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 3rem);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--fx-white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.lightbox__close:hover {
  background: var(--fx-magenta);
  border-color: var(--fx-magenta);
}

@media (max-width: 520px) {
  .lightbox__close {
    top: auto;
    bottom: calc(100% + 0.5rem);
    right: 0;
  }
}

/* ——— Map dark block ——— */
.section--ubicacion {
  background: var(--fx-cream-dark);
}

.map-dark {
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--fx-dark);
  box-shadow: 0 16px 48px rgba(26, 29, 35, 0.2);
}

.map-dark__mapwrap {
  position: relative;
  background: var(--fx-dark);
}

.map-dark__iframe {
  display: block;
  width: 100%;
  height: min(52vh, 380px);
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.map-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: min(calc(100% - 24px), 320px);
  padding: 0.55rem 0.85rem;
  background: var(--fx-white);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fx-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  line-height: 1.35;
}

.map-chip:hover {
  text-decoration: none;
  color: var(--fx-magenta);
}

.map-chip--secondary {
  top: auto;
  bottom: 12px;
  left: 12px;
  max-width: min(calc(100% - 24px), 340px);
}

.map-dark__panel {
  padding: 1.5rem clamp(1.25rem, 4vw, 2rem) 1.75rem;
  background: var(--fx-dark-mid);
  text-align: center;
}

.map-dark__text {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.visit--below-map {
  max-width: 640px;
  margin: 0 auto;
}

.visit-card--cream {
  background: var(--fx-white);
  border: 2px solid var(--fx-burgundy);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.visit-card__h {
  font-family: var(--font-serif);
  color: var(--fx-magenta-deep);
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.visit-address-box {
  padding: 0 0 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--fx-border);
}

.visit-address-title,
.visit-hours-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fx-burgundy);
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.visit-address {
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.45;
  margin: 0;
}

.visit-phone-row {
  margin: 0.75rem 0 0;
}

.visit-phone-row a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fx-phone);
}

.visit-hours-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.92rem;
  color: var(--fx-muted);
}

.visit-hours-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--fx-border);
}

.visit-hours-list li:last-child {
  border-bottom: none;
}

.visit-services {
  font-size: 0.95rem;
  color: var(--fx-text);
  margin: 0 0 1rem;
}

.visit-note {
  font-size: 0.92rem;
  color: var(--fx-text);
  background: var(--fx-magenta-soft);
  border: 1px solid rgba(212, 20, 110, 0.28);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin: 0 0 1.25rem;
  line-height: 1.45;
}

.visit-note--evening {
  background: rgba(20, 61, 36, 0.09);
  border-color: rgba(20, 61, 36, 0.28);
}

.visit-note--evening a {
  font-weight: 700;
  color: var(--fx-magenta);
}

.visit-note--evening a:hover {
  color: var(--fx-burgundy);
}

.visit-social {
  margin: -0.35rem 0 1.15rem;
}

.visit-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #1877f2;
}

.visit-fb:hover {
  color: #0d65d9;
}

.visit-fb svg {
  flex-shrink: 0;
}

.visit-btn {
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

/* ——— CTA ——— */
.cta {
  text-align: center;
  padding-bottom: 4rem;
  background: var(--fx-cream);
}

.cta-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--fx-magenta);
  background: linear-gradient(180deg, var(--fx-white), var(--fx-cream-dark));
  box-shadow: var(--shadow-soft);
}

.cta-inner h2 {
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: var(--fx-muted);
  margin: 0 0 1.25rem;
}

.cta-inner .btn {
  width: 100%;
  max-width: 300px;
}

.cta-inner .btn + .btn {
  margin-top: 0.75rem;
}

/* ——— Footer strip + footer ——— */
.footer-strip {
  background: var(--fx-tan-bar);
  border-top: 1px solid rgba(107, 93, 84, 0.2);
  padding: 0.75rem 1.25rem;
  text-align: center;
}

.footer-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #5c534c;
}

.footer-strip__dot {
  opacity: 0.6;
}

.site-footer {
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  background: #d8c4b4;
  border-top: 1px solid rgba(91, 78, 70, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #4a423c;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.footer-links a {
  color: #5c3d4a;
  font-weight: 600;
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #1877f2;
}

.footer-fb:hover {
  color: #0d65d9;
}

.footer-fb svg {
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--fx-magenta-deep);
}

.footer-links a.footer-fb:hover {
  color: #0d65d9;
}
