/* ═══════════════════════════════════════════════════════════════
   PEPE SUSHI HOUSE — Hoja de estilos principal
   Mobile-first · Paleta: #FFFFFF / #0A0A0A / #C8102E
   Tipografía: Inter (Google Fonts)
═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ── Variables globales ── */
:root {
  /* Paleta */
  --c-white:   #FFFFFF;
  --c-black:   #0A0A0A;
  --c-red:     #C8102E;
  --c-red-dim: #9e0d24;        /* hover del rojo */
  --c-grey:    #F5F5F5;        /* fondo alternativo suave */
  --c-grey-2:  #E8E8E8;        /* bordes, separadores */
  --c-grey-3:  #767676;        /* texto secundario */

  /* Tipografía */
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs:     0.75rem;   /* 12px */
  --fs-sm:     0.875rem;  /* 14px */
  --fs-base:   1rem;      /* 16px */
  --fs-md:     1.125rem;  /* 18px */
  --fs-lg:     1.25rem;   /* 20px */
  --fs-xl:     1.5rem;    /* 24px */
  --fs-2xl:    1.875rem;  /* 30px */
  --fs-3xl:    2.25rem;   /* 36px */
  --fs-4xl:    3rem;      /* 48px */

  /* Espaciado */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Layout */
  --max-w:      1200px;
  --max-w-text: 680px;
  --radius:     4px;
  --radius-lg:  8px;

  /* Transiciones */
  --transition: 200ms ease;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  color: var(--c-black);
  background: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }

/* ════════════════════════════════════════
   UTILIDADES
════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.container--narrow {
  max-width: var(--max-w-text);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-red   { color: var(--c-red); }
.text-grey  { color: var(--c-grey-3); }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

/* ════════════════════════════════════════
   TIPOGRAFÍA
════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { max-width: 65ch; }

.section-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: var(--sp-3);
}

/* ════════════════════════════════════════
   BOTONES
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--c-red);
  color: var(--c-white);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--c-red-dim);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,16,46,.35);
}

.btn--secondary {
  background: var(--c-black);
  color: var(--c-white);
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.btn--outline {
  border: 1.5px solid var(--c-black);
  color: var(--c-black);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--c-black);
  color: var(--c-white);
}

.btn--ghost {
  color: var(--c-black);
  padding-inline: var(--sp-4);
}
.btn--ghost:hover { color: var(--c-red); }

.btn--full { width: 100%; }

/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-grey-2);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-inline: var(--sp-5);
  max-width: var(--max-w);
  margin-inline: auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img,
.site-header__logo svg {
  height: 48px;
  width: auto;
}

/* Nav desktop */
.site-nav {
  display: none;
}
.site-nav__list {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
}
.site-nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-black);
  transition: color var(--transition);
  padding-block: var(--sp-2);
  position: relative;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.site-nav__link:hover::after,
.site-nav__link.is-active::after { transform: scaleX(1); }
.site-nav__link:hover { color: var(--c-red); }

/* Nav actions (botones en header) */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  width: 36px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--c-black);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--c-white);
  z-index: 99;
  padding: var(--sp-6) var(--sp-5);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--sp-4);
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__list { display: flex; flex-direction: column; gap: 0; }
.mobile-menu__link {
  display: block;
  padding: var(--sp-5) 0;
  font-size: var(--fs-lg);
  font-weight: 600;
  border-bottom: 1px solid var(--c-grey-2);
  transition: color var(--transition);
}
.mobile-menu__link:hover { color: var(--c-red); }

.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

/* Selector de idioma en mobile menu */
.lang-selector {
  margin-top: auto;
  padding-top: var(--sp-6);
}
.lang-selector__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-grey-3);
  margin-bottom: var(--sp-3);
}
.lang-selector__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.lang-selector__btn {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--c-grey-3);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--c-grey-2);
  border-radius: 2px;
  transition: all var(--transition);
}
.lang-selector__btn:hover,
.lang-selector__btn.is-active {
  border-color: var(--c-black);
  color: var(--c-black);
  background: var(--c-grey);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100svh - 64px);
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,.85) 0%,
    rgba(10,10,10,.40) 50%,
    rgba(10,10,10,.05) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--sp-10) var(--sp-5);
  color: var(--c-white);
}

.hero__eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-3);
}

.hero__title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.hero__title em { color: var(--c-red); font-style: normal; }

.hero__desc {
  font-size: var(--fs-md);
  font-weight: 400;
  color: rgba(255,255,255,.85);
  max-width: 42ch;
  margin-bottom: var(--sp-8);
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ════════════════════════════════════════
   BANDA DE PRUEBA SOCIAL
════════════════════════════════════════ */
.social-proof {
  background: var(--c-black);
  color: var(--c-white);
  padding: var(--sp-5) var(--sp-5);
  overflow: hidden;
}

.social-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-6) var(--sp-10);
  max-width: var(--max-w);
  margin-inline: auto;
}

.social-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  text-align: center;
}

.social-proof__value {
  font-size: var(--fs-2xl);
  font-weight: 900;
  line-height: 1;
  color: var(--c-white);
}
.social-proof__value span { color: var(--c-red); }

.social-proof__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-proof__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  display: none;
}

/* ════════════════════════════════════════
   SECCIONES GENERALES
════════════════════════════════════════ */
.section {
  padding-block: var(--sp-16);
}

.section--grey { background: var(--c-grey); }
.section--dark {
  background: var(--c-black);
  color: var(--c-white);
}
.section--dark p { color: rgba(255,255,255,.75); }

.section__header {
  margin-bottom: var(--sp-10);
}

.section__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
}

.section__subtitle {
  font-size: var(--fs-md);
  color: var(--c-grey-3);
  margin-top: var(--sp-3);
  max-width: 55ch;
}
.section--dark .section__subtitle { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════
   MODOS DE SERVICIO (Cards)
════════════════════════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.service-card {
  border: 1.5px solid var(--c-grey-2);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--c-black);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-grey);
  border-radius: var(--radius);
}

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-grey-3);
  flex-grow: 1;
}

/* ════════════════════════════════════════
   PLATOS DESTACADOS (Grid de fotos)
════════════════════════════════════════ */
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--c-grey);
}

.dish-card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.dish-card:hover img { transform: scale(1.04); }

.dish-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(to top, rgba(10,10,10,.8), transparent);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* ════════════════════════════════════════
   CARTA / MENÚ
════════════════════════════════════════ */
.menu-nav {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: var(--sp-3);
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: var(--sp-8);
}
.menu-nav::-webkit-scrollbar { display: none; }

.menu-nav__btn {
  flex-shrink: 0;
  padding: var(--sp-2) var(--sp-5);
  border: 1.5px solid var(--c-grey-2);
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: all var(--transition);
  scroll-snap-align: start;
}
.menu-nav__btn:hover { border-color: var(--c-black); }
.menu-nav__btn.is-active {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}

.menu-section { display: none; }
.menu-section.is-active { display: block; }

.menu-section__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-black);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-grey-2);
}
.menu-item:last-child { border-bottom: none; }

.menu-item__img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--c-grey);
}

.menu-item__body { flex: 1; min-width: 0; }

.menu-item__name {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

.menu-item__desc {
  font-size: var(--fs-sm);
  color: var(--c-grey-3);
  line-height: 1.45;
}

.menu-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
}

.badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid currentColor;
}
.badge--veg   { color: #2e7d32; }
.badge--gf    { color: #8b5000; }
.badge--spicy { color: var(--c-red); }
.badge--new   { color: var(--c-red); background: rgba(200,16,46,.08); }

.menu-item__price {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-black);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Precio con variantes (pokés) */
.menu-item__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}
.menu-item__prices span {
  font-size: var(--fs-sm);
  color: var(--c-grey-3);
}
.menu-item__prices strong {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-black);
}

/* ════════════════════════════════════════
   FORMULARIO TAKE-AWAY
════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-black);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--sp-4);
  border: 1.5px solid var(--c-grey-2);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  color: var(--c-black);
  background: var(--c-white);
  transition: border-color var(--transition);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-black);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%230A0A0A' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-3) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}

.form-hint {
  font-size: var(--fs-xs);
  color: var(--c-grey-3);
}

/* Tabla de pedido */
.order-table { width: 100%; border-collapse: collapse; }
.order-table th {
  text-align: left;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-grey-3);
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--c-grey-2);
}
.order-table td {
  padding: var(--sp-3) var(--sp-3);
  border-bottom: 1px solid var(--c-grey-2);
  vertical-align: middle;
}
.order-table input[type="number"] {
  width: 60px;
  padding: var(--sp-2) var(--sp-3);
  border: 1.5px solid var(--c-grey-2);
  border-radius: var(--radius);
  text-align: center;
  font-size: var(--fs-sm);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,.8);
  padding-block: var(--sp-12) var(--sp-8);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-10);
}

.site-footer__brand {}

.footer-logo {
  filter: brightness(0) invert(1);
  height: 56px;
  width: auto;
  margin-bottom: var(--sp-4);
}

.site-footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  max-width: 30ch;
  line-height: 1.6;
}

.site-footer__col-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.site-footer__link {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.site-footer__link:hover { color: var(--c-white); }

.site-footer__contact-line {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.site-footer__contact-line:hover { color: var(--c-white); }
.site-footer__contact-line svg { flex-shrink: 0; }

.site-footer__bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}

.site-footer__copy {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.4);
}

.site-footer__social {
  display: flex;
  gap: var(--sp-4);
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.site-footer__social-link:hover { color: var(--c-white); }

/* CTA flotante "click-to-call" en mobile */
.cta-call {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-red);
  color: var(--c-white);
  padding: var(--sp-4) var(--sp-5);
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200,16,46,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cta-call:hover { transform: scale(1.04); }
.cta-call svg { flex-shrink: 0; }

/* ════════════════════════════════════════
   ELEMENTO DECORATIVO ENSO
════════════════════════════════════════ */
.enso-deco {
  display: block;
  width: 80px;
  height: 80px;
  opacity: 0.07;
}

/* ════════════════════════════════════════
   RESPONSIVE — Tablet (≥ 640px)
════════════════════════════════════════ */
@media (min-width: 640px) {
  h1 { font-size: var(--fs-4xl); }
  h2 { font-size: var(--fs-3xl); }

  .service-grid { grid-template-columns: 1fr 1fr; }
  .dishes-grid  { grid-template-columns: 1fr 1fr 1fr; }
  .dishes-grid .dish-card--wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }

  .social-proof__divider { display: block; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Desktop (≥ 1024px)
════════════════════════════════════════ */
@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }

  .hero__content { padding: var(--sp-20) var(--sp-10); }
  .hero__title { font-size: clamp(2.5rem, 4vw, 4rem); }

  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .dishes-grid  {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .menu-item__img { width: 100px; height: 100px; }

  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .cta-call { display: none; } /* En desktop el teléfono está en nav */
}

/* ════════════════════════════════════════
   PÁGINA: MENÚ QR
════════════════════════════════════════ */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  max-width: 480px;
  margin: 0 auto;
}

.lang-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-3);
  border: 1.5px solid var(--c-grey-2);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}
.lang-card:hover {
  border-color: var(--c-black);
  background: var(--c-grey);
}
.lang-card__flag { font-size: 2rem; line-height: 1; }
.lang-card__name { font-size: var(--fs-xs); font-weight: 600; color: var(--c-grey-3); }

/* Marcar platos */
.mark-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--c-grey-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.mark-btn.is-marked {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}

/* Panel "Mi selección" */
.selection-panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--c-white);
  border-top: 1.5px solid var(--c-grey-2);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: 0 -4px 20px rgba(0,0,0,.10);
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.selection-panel.is-visible { transform: translateY(0); }
.selection-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
}
.selection-panel__count {
  font-size: var(--fs-sm);
  font-weight: 700;
}
.selection-panel__count span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 50%;
  font-size: var(--fs-xs);
  margin-left: var(--sp-2);
}
.selection-list {
  font-size: var(--fs-sm);
  color: var(--c-grey-3);
  max-height: 120px;
  overflow-y: auto;
}

/* ════════════════════════════════════════
   PÁGINA: NOSOTROS / FILOSOFÍA
════════════════════════════════════════ */
.philosophy-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.philosophy-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.philosophy-item__img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  width: 100%;
}

.philosophy-item__number {
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--c-grey-2);
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.philosophy-item__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.philosophy-item__text {
  color: var(--c-grey-3);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .philosophy-item { grid-template-columns: 1fr 1fr; }
  .philosophy-item:nth-child(even) .philosophy-item__img { order: 2; }
}

/* ════════════════════════════════════════
   FAQ (Contacto)
════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--c-grey-2);
}
.faq-item:first-child { border-top: 1px solid var(--c-grey-2); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  font-size: var(--fs-base);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-trigger:hover { color: var(--c-red); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after  { width: 2px; height: 12px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-body {
  display: none;
  padding-bottom: var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-grey-3);
  line-height: 1.7;
  max-width: 60ch;
}
.faq-item.is-open .faq-body { display: block; }

/* ════════════════════════════════════════
   GALERÍA
════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--tall { aspect-ratio: 3 / 4; }
.gallery-item--wide { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
.gallery-item--sq   { aspect-ratio: 1 / 1; }

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

/* ════════════════════════════════════════
   MAPA
════════════════════════════════════════ */
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  background: var(--c-grey);
}

/* ════════════════════════════════════════
   HORARIO
════════════════════════════════════════ */
.horario-table { width: 100%; }
.horario-table tr { border-bottom: 1px solid var(--c-grey-2); }
.horario-table tr:last-child { border-bottom: none; }
.horario-table td {
  padding: var(--sp-3) 0;
  font-size: var(--fs-sm);
}
.horario-table td:first-child { font-weight: 600; color: var(--c-black); }
.horario-table td:last-child  { color: var(--c-grey-3); text-align: right; }
.horario-table .today td { color: var(--c-red); }

/* ════════════════════════════════════════
   ANIMACIONES SUAVES
════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms ease, transform 500ms ease;
  }
  .fade-in.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════════════════════
   PRINT
════════════════════════════════════════ */
@media print {
  .site-header, .site-footer, .cta-call,
  .mobile-menu, .selection-panel { display: none !important; }
  body { font-size: 12pt; }
  .section { padding-block: 1.5rem; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.75em; color: #666; }
}
