/* ===========================================================
   GODI — Pasta é calle
   Tipografía: Newsreader · IBM Plex Sans · Bellerina (script)
   =========================================================== */

/* ===========================================================
   FUENTE PERSONALIZADA
   =========================================================== */
@font-face {
  font-family: 'Bellarina';
  src: url('fonts/Bellarina.woff2') format('woff2'),
       url('fonts/Bellarina.otf')   format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===========================================================
   TOKENS
   =========================================================== */
:root {
  /* Paleta */
  --cream:      #F7E2D0;
  --warm-gray:  #DDD5D0;
  --maroon:     #410D02;
  --gold:       #D78D18;
  --olive:      #4A4D2B;
  --rust:       #9D3D29;
  --tan:        #B08C70;

  /* Tipografía */
  --ff-serif:   'Newsreader', Georgia, serif;
  --ff-sans:    'IBM Plex Sans', system-ui, sans-serif;
  --ff-script:  'Bellarina', cursive;

  /* Sistema */
  --nav-h:      72px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x:      clamp(1.25rem, 5vw, 5rem);
  --pad-y:      clamp(4rem, 10vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--cream);
  color: var(--maroon);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===========================================================
   UTILIDADES
   =========================================================== */
.label {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
}

.label--muted {
  color: rgba(247, 226, 208, 0.45);
}

/* Tipografía script (Bellerina) */
.script {
  font-family: var(--ff-script);
  font-style: normal;
  font-weight: 700;
}

/* Botón */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
  border: none;
  align-self: flex-start;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(247, 226, 208, 0.5);
  color: var(--cream);
}

.btn--outline:hover {
  background: var(--cream);
  color: var(--olive);
  border-color: var(--cream);
}

/* ===========================================================
   GRAIN TEXTURE (overlay sutil en body)
   =========================================================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===========================================================
   FADE-IN ON SCROLL
   =========================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(247, 226, 208, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(65, 13, 2, 0.1);
}

.nav__logo-img {
  height: 110px;
  width: auto;
  transition: filter 0.35s;
}

/* Logo blanco sobre video, oscuro con fondo claro */
.nav .nav__logo-img       { filter: brightness(0) invert(1); }
.nav.scrolled .nav__logo-img { filter: none; }

.nav__links {
  display: flex;
  gap: 2.25rem;
}

.nav__links a,
.nav__ig {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 226, 208, 0.9);
  transition: color 0.35s, opacity 0.2s;
}

.nav.scrolled .nav__links a,
.nav.scrolled .nav__ig {
  color: var(--maroon);
}

.nav__links a:hover,
.nav__ig:hover { opacity: 0.55; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: background 0.35s, transform 0.3s;
}

.nav.scrolled .nav__burger span { background: var(--maroon); }

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--maroon);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}

.nav__mobile.open {
  transform: translateX(0);
}

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: var(--pad-x);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.nav__mobile-close:hover { opacity: 1; }

.nav__mobile-link {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.2s;
}

.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-ig {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-top: 1.5rem;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: clamp(4rem, 8vh, 6rem);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(65, 13, 2, 0.45) 0%,
    rgba(65, 13, 2, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__logo {
  width: clamp(200px, 38vw, 460px);
  filter: brightness(0) invert(1);
  animation: hero-enter 1.2s var(--ease) both;
  animation-delay: 0.3s;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__cta {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1.5px solid rgba(247, 226, 208, 0.6);
  padding: 0.85rem 2.25rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s;
  animation: hero-enter 1.2s var(--ease) both;
  animation-delay: 0.6s;
}

.hero__cta:hover {
  background: var(--cream);
  color: var(--maroon);
  border-color: var(--cream);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 226, 208, 0.75);
  animation: float 2.4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee {
  background: var(--maroon);
  overflow: hidden;
  padding: 0.875rem 0;
  border-top: 1px solid rgba(247, 226, 208, 0.08);
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9375rem;
  color: rgba(247, 226, 208, 0.55);
  letter-spacing: 0.03em;
}

.marquee__dot {
  color: var(--gold) !important;
  font-style: normal !important;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================================
   MANIFESTO
   =========================================================== */
.manifesto {
  background: var(--maroon);
  color: var(--cream);
  padding: var(--pad-y) var(--pad-x);
}

.manifesto__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 85vh;
  margin-left:  calc(-1 * var(--pad-x));
  margin-right: calc(-1 * var(--pad-x));
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(247, 226, 208, 0.12);
  overflow: hidden;
}

@media (min-width: 1201px) {
  .manifesto__top {
    margin-top: calc(-1 * var(--pad-y));
  }
}

.manifesto__top-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transition: transform 0.8s var(--ease);
}

.manifesto__top:hover .manifesto__top-bg {
  transform: scale(1.03);
}

.manifesto__top-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(65, 13, 2, 0.88) 0%,
    rgba(65, 13, 2, 0.45) 50%,
    rgba(65, 13, 2, 0.1) 100%
  );
}

.manifesto__top-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 820px;
  padding: 0 var(--pad-x) 5rem;
}

.manifesto__top-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 760px;
}

.manifesto__top-body p {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.75;
  color: rgba(247, 226, 208, 0.75);
}

.manifesto__headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.75rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.manifesto__headline em {
  display: inline-block;
  font-size: 1.05em;
  color: var(--gold);
}

.manifesto__body {
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.manifesto__col p {
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  line-height: 1.75;
  color: rgba(247, 226, 208, 0.7);
  margin-bottom: 1.5rem;
}

.manifesto__accent {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: 2.2em;
  line-height: 1;
  display: inline-block;
}

.manifesto__big-text {
  font-family: var(--ff-serif);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

.manifesto__strip {
  margin-left:   calc(-1 * var(--pad-x));
  margin-right:  calc(-1 * var(--pad-x));
  margin-bottom: calc(-1 * var(--pad-y));
  border-top: 1px solid rgba(247, 226, 208, 0.12);
  line-height: 0;
}

.manifesto__strip img {
  width: 100%;
  display: block;
}

.manifesto__strip > p {
  font-size: 1rem;
  color: rgba(247, 226, 208, 0.65);
  line-height: 1.75;
}

.manifesto__tagline {
  font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
  color: var(--gold) !important;
  text-align: right;
  line-height: 1.2 !important;
}

/* ===========================================================
   MENÚ
   =========================================================== */
.menu {
  background: #fff;
  padding: var(--pad-y) var(--pad-x);
}

.menu__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(65, 13, 2, 0.15);
}

.menu__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--maroon);
}

.menu__title em {
  color: var(--rust);
  font-size: 1.05em;
}

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

.menu__cat-title {
  font-family: var(--ff-serif);
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 400;
  color: var(--maroon);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--tan);
}

.menu__items {
  display: flex;
  flex-direction: column;
}

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(65, 13, 2, 0.12);
  font-size: 0.9375rem;
  color: var(--maroon);
}

.menu__item-name { flex: 1; }

.menu__item-price {
  font-weight: 500;
  color: var(--rust);
  white-space: nowrap;
}

.menu__note {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--tan);
}

/* ===========================================================
   FATTO IN CASA
   =========================================================== */
.fatto {
  position: relative;
  background: var(--maroon);
  overflow: hidden;
}



.fatto__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: var(--pad-y) 10px calc(var(--pad-y) * 1.5);
  position: relative;
  z-index: 1;
}

.fatto__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
}

/* posición inicial manejada por GSAP */

.fatto__item {
  overflow: hidden;
  flex-shrink: 0;
}

.fatto__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.fatto__item:hover img { transform: scale(1.05); }


@media (max-width: 960px) {
  .fatto__columns {
    grid-template-columns: 1fr 1fr;
    margin-top: -30px;
    margin-bottom: -30px;
  }
  .fatto__col[data-dir="1"]  { transform: translateY(40px); }
  .fatto__col[data-dir="-1"] { transform: translateY(-40px); }
}

@media (max-width: 600px) {
  .fatto__columns { grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 6px; }
  .fatto__title { font-size: clamp(3rem, 15vw, 6rem); }
}

/* ===========================================================
   EVENTOS
   =========================================================== */
.eventos {
  background: var(--olive);
  color: var(--cream);
  padding: var(--pad-y) var(--pad-x);
}

.eventos__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(247, 226, 208, 0.15);
}

.eventos__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.025em;
}

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

.eventos__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem;
  border: 1px solid rgba(247, 226, 208, 0.2);
  transition: border-color 0.25s;
}

.eventos__card:hover {
  border-color: rgba(247, 226, 208, 0.5);
}

.eventos__num {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.eventos__card-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.625rem, 3vw, 2.625rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
}

.eventos__card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(247, 226, 208, 0.75);
  flex: 1;
}

/* ===========================================================
   UBICACIÓN
   =========================================================== */
.ubicacion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: var(--cream);
}

.ubicacion__info {
  padding: clamp(3rem, 8vw, 6rem) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.ubicacion__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--maroon);
}

.ubicacion__title em {
  color: var(--rust);
  font-size: 1.05em;
}

/* Tabla horarios */
.horarios {
  width: 100%;
  border-collapse: collapse;
}

.horarios td {
  padding: 0.7rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(65, 13, 2, 0.08);
  vertical-align: top;
}

.horarios__day {
  font-weight: 500;
  width: 42%;
  padding-right: 1rem;
}

.horarios__time {
  color: var(--tan);
}

.horarios__row--muted td {
  opacity: 0.55;
}

.horarios__note {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--tan);
  margin-top: -0.75rem;
}

.ubicacion__contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1.75rem;
}

.ubicacion__contact a {
  font-size: 0.9375rem;
  color: var(--tan);
  transition: color 0.2s;
}

.ubicacion__contact a:hover { color: var(--rust); }

.ubicacion__maps-btn {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  border: 1.5px solid rgba(65, 13, 2, 0.35);
  padding: 0.75rem 1.5rem;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.ubicacion__maps-btn:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}

/* Mapa */
.ubicacion__map {
  height: 100%;
  min-height: 480px;
}

.ubicacion__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(30%) sepia(10%);
}

/* ===========================================================
   MENU TOOLTIP (lupa de salsa)
   =========================================================== */
.menu-tooltip {
  position: fixed;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  transform: scale(0.5) translate(0, 0);
  transition: opacity 0.18s ease, transform 0.22s var(--ease);
  border: 2.5px solid var(--maroon);
  box-shadow: 0 6px 28px rgba(65, 13, 2, 0.22);
  will-change: transform, opacity;
}

.menu-tooltip.is-visible {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

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

.menu__item[data-img] {
  cursor: none;
}

/* Hint debajo del título de salsas */
.menu__salsa-hint {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.75rem;
  font-family: var(--ff-sans);
}

/* Label "click" dentro del tooltip */
.menu-tooltip__hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(65, 13, 2, 0.7);
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
  pointer-events: none;
}

/* Card expandida */
.menu-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  z-index: 600;
  width: min(420px, 90vw);
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(65, 13, 2, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.28s var(--ease);
}

.menu-card.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.menu-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.menu-card__body {
  padding: 1.5rem 1.75rem 2rem;
}

.menu-card__name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--maroon);
  margin-bottom: 0.6rem;
}

.menu-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--maroon);
  opacity: 0.75;
}

.menu-card__close {
  position: absolute;
  top: 0.875rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--cream);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  line-height: 1;
}

.menu-card__close:hover { opacity: 1; }

/* Overlay oscuro detrás de la card */
.menu-card-overlay {
  position: fixed;
  inset: 0;
  z-index: 599;
  background: rgba(65, 13, 2, 0.35);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.menu-card-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ===========================================================
   GALERÍA PAGE HEADER
   =========================================================== */
.galeria-page__header {
  background: var(--maroon);
  color: var(--cream);
  padding: calc(var(--pad-y) * 1.5) var(--pad-x) var(--pad-y);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 55vh;
  justify-content: flex-end;
}

.galeria-page__title {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin: 0;
}

.nav__link--active {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--maroon);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5rem) var(--pad-x);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(247, 226, 208, 0.12);
}

.footer__logo {
  height: 160px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__nav a,
.footer__social a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 226, 208, 0.55);
  transition: color 0.2s;
}

.footer__nav a:hover,
.footer__social a:hover {
  color: var(--cream);
}

.footer__social {
  display: flex;
  gap: 1.75rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(247, 226, 208, 0.35);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 960px) {
  :root { --nav-h: 60px; }

  .nav__links,
  .nav__ig    { display: none; }
  .nav__burger { display: flex; }

  .manifesto__top    { min-height: 70vh; }
  .manifesto__body   { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto__strip  { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto__tagline { text-align: left !important; }

  .menu__grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

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

  .ubicacion__map {
    display: none;
  }

  .ubicacion__maps-btn {
    display: inline-flex;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .manifesto__top   { margin-bottom: 3rem; padding-bottom: 2.5rem; }
  .manifesto__strip { padding-top: 2.5rem; }

  .eventos__card { padding: 1.75rem; }

  .footer__nav,
  .footer__social { gap: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .hero__logo,
  .hero__scroll,
  .marquee__track {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===========================================================
   MANIFESTO — POLAROID
   =========================================================== */
.manifesto__strip-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.manifesto__polaroid {
  width: clamp(140px, 20vw, 220px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  rotate: 2.5deg;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  filter: sepia(15%);
  transition: rotate 0.4s var(--ease), box-shadow 0.4s;
}

.manifesto__polaroid:hover {
  rotate: 0deg;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

/* ===========================================================
   VIDEO DUO
   =========================================================== */
.video-duo {
  position: relative;
  background: #000;
  overflow: hidden;
}

.video-duo__stage {
  position: relative;
  width: 100%;
}

.video-duo__video {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 100vh;
}

.video-duo__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 52%, 680px);
  height: auto;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

.video-duo__text--high {
  top: clamp(1.5rem, 5vh, 4rem);
  transform: translate(-50%, 0);
}

/* ===========================================================
   GALERÍA
   =========================================================== */
.galeria {
  background: var(--maroon);
  padding: 0;
  line-height: 0;
}

.galeria__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 55vh 38vh;
  gap: 3px;
}

.galeria__item {
  overflow: hidden;
  position: relative;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}

.galeria__item:hover img {
  transform: scale(1.05);
}

.galeria__item--main {
  grid-column: 1;
  grid-row: 1 / 3;
}

@media (max-width: 960px) {
  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 52vw 40vw 40vw;
  }

  .galeria__item--main {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

@media (max-width: 600px) {
  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60vw 50vw 50vw;
  }
}

/* ===========================================================
   MENÚ — ACTUALIZACIONES
   =========================================================== */
.menu__concept {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--maroon);
  font-weight: 300;
  opacity: 0.75;
}

.menu__item {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(65, 13, 2, 0.1);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--maroon);
}

.menu__item:last-child {
  border-bottom: none;
}

.menu__category--winter {
  border: 1px dashed rgba(65, 13, 2, 0.25);
  padding: 1.5rem;
  opacity: 0.75;
}

.menu__winter-badge {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ===========================================================
   EVENTOS — CARDS CON IMAGEN
   =========================================================== */
.eventos__card {
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.eventos__card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--maroon);
}

.eventos__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.eventos__card:hover .eventos__card-img img {
  transform: scale(1.05);
}

.eventos__card-img--tomato {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventos__card-img--tomato img {
  width: 55%;
  height: auto;
  object-fit: contain;
}

.eventos__card-img--light {
  background: rgba(247, 226, 208, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.eventos__card-img--light img {
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(0) brightness(10);
  opacity: 0.9;
}

.eventos__card-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 2.5rem 2.5rem;
  flex: 1;
}
