/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0A0A0A;
  --black2: #111111;
  --black3: #161616;
  --gold:   #C9A14A;
  --gold2:  #E8C46A;
  --gold3:  #A07832;
  --gold-glow: rgba(201, 161, 74, 0.18);
  --olive:  #2F3E34;
  --sage:   #A8B5A2;
  --beige:  #EDE6D8;
  --white:  #FFFFFF;
  --gray:   #888888;
  --nav-h:  88px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--black);
  color: var(--beige);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Eyebrow + Title shared styles ── */
.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;   /* sin flex: los · del HTML van donde corresponde */
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn--gold:hover::after { transform: translateX(100%); }
.btn--gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 161, 74, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--beige);
  border: 1px solid rgba(201, 161, 74, 0.5);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(201, 161, 74, 0.05);
}

.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 20px; font-size: 11px; margin-top: 16px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  /* Grid de 3 columnas: logo | links centrados | cta */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.0) 100%);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.nav__logo   { justify-self: start; }
.nav__links  { justify-self: center; }
.nav__hamburger { justify-self: end; display: none; flex-direction: column; gap: 5px; padding: 4px; }

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201, 161, 74, 0.15),
              0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav__logo a { display: flex; line-height: 0; }
.nav__logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav__links a:hover { opacity: 1; color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__right {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 11px 26px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px rgba(201, 161, 74, 0.3);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

/* ── Selector de idioma ── */
.nav__lang { position: relative; }
.nav__lang-btn {
  background: none;
  border: 1px solid rgba(201,161,74,0.35);
  color: var(--beige);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 14px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.nav__lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.nav__lang-btn svg { width: 10px; height: 10px; transition: transform 0.3s; }
.nav__lang-btn.open svg { transform: rotate(180deg); }
.nav__lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #111111;
  border: 1px solid rgba(201,161,74,0.2);
  border-radius: 3px;
  padding: 4px 0;
  min-width: 136px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav__lang-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-opt {
  display: block;
  padding: 9px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(237,230,216,0.75);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.lang-opt:hover { color: var(--gold); background: rgba(201,161,74,0.06); }
.lang-opt.active { color: var(--gold); font-weight: 600; }

/* Idiomas en menú mobile */
/* Idioma como título plegable dentro del menú móvil */
.mobile-menu__lang { display: flex; flex-direction: column; }
.mobile-menu__lang-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.8;
  transition: color 0.3s, opacity 0.3s;
}
.mobile-menu__lang-toggle:hover { opacity: 1; color: var(--gold); }
.mobile-menu__lang-arrow {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-left: 12px;
}
.mobile-menu__lang.open .mobile-menu__lang-arrow { transform: rotate(-135deg); }
.mobile-menu__lang-submenu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.mobile-menu__lang.open .mobile-menu__lang-submenu {
  max-height: 260px;
  opacity: 1;
  margin-top: 18px;
}
.mobile-menu__lang-submenu a {
  font-size: 12px !important;
  letter-spacing: 1.5px;
  padding-left: 16px;
  border-left: 1px solid rgba(201,161,74,0.25);
  opacity: 0.7;
}
.mobile-menu__lang-submenu a.active { color: var(--gold); opacity: 1; }
.flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 8px;
  border-radius: 2px;
  object-fit: cover;
  vertical-align: -2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--beige);
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--black2);
  border-left: 1px solid rgba(201, 161, 74, 0.15);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 32px;
  transition: right 0.4s ease;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.8;
  transition: color 0.3s, opacity 0.3s;
}
.mobile-menu a:hover { opacity: 1; color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }

/* Overlay con vignette dorado en los lados */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(10,10,10,0.55) 100%),
    linear-gradient(to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.45) 40%,
      rgba(10,10,10,0.88) 100%
    );
}

/* Línea dorada decorativa abajo — eliminada para no duplicar borde con strip */

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  margin-top: -60px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  justify-content: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 2px rgba(0,0,0,0.9);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
  /* Sombra para legibilidad */
  text-shadow:
    0 2px 8px rgba(0,0,0,0.9),
    0 8px 32px rgba(0,0,0,0.7),
    0 0 60px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  text-shadow:
    0 2px 8px rgba(0,0,0,0.8),
    0 0 40px rgba(201,161,74,0.25);
}

.hero__subtitle {
  font-size: 23px;
  color: var(--beige);
  text-shadow: 0 2px 12px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  display: block;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ===== STRIP ===== */
.strip {
  background: var(--black2);
  border-top: 1px solid rgba(201,161,74,0.45);
  border-bottom: 1px solid rgba(201,161,74,0.45);
  overflow: hidden;
  padding: 14px 0;
}

.strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.strip__track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 0 28px;
  opacity: 0.9;
}

.strip__track i {
  color: rgba(201,161,74,0.35);
  font-style: normal;
  font-size: 8px;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  padding: 130px 48px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.about__watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(100px, 13vw, 190px);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.03;
  letter-spacing: 16px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__visual { position: relative; }

.about__img-frame {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
}

.about__img-main {
  width: 100%;
  height: 560px;
  background-size: cover;
  background-position: center;
  display: block;
  position: relative;
  z-index: 2;
}

/* Gold offset shadow frame */
.about__img-offset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid rgba(201, 161, 74, 0.35);
  z-index: 1;
  pointer-events: none;
}

/* "Des de 2018" panel anchored to image left edge */
.about__img-caption {
  position: absolute;
  bottom: 32px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
  background: var(--black);
  padding: 18px 28px 18px 24px;
  border-right: 2px solid var(--gold);
}

.about__img-caption-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about__img-caption-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 4px;
}

/* Thin gold rule between eyebrow and title */
.about__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
  opacity: 0.6;
}

.about__body {
  color: var(--sage);
  margin-bottom: 16px;
  line-height: 1.9;
  font-size: 15px;
}

.about__stats {
  display: flex;
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid rgba(201, 161, 74, 0.15);
  border-bottom: 1px solid rgba(201, 161, 74, 0.15);
  margin: 32px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 0 24px;
  position: relative;
}

.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: rgba(201, 161, 74, 0.25);
}

.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--sage);
  text-transform: uppercase;
}

/* ===== MENU ===== */
.menu {
  padding: 130px 48px;
  background: var(--black2);
  position: relative;
  border-top: 1px solid rgba(201,161,74,0.45);
}

/* Patrón sutil de puntos */
.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,161,74,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.menu__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.menu__header .section__eyebrow { text-align: center; }

.menu__subtitle {
  color: var(--sage);
  font-size: 15px;
}

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  flex-wrap: nowrap;          /* siempre en una línea */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 161, 74, 0.12);
  border-radius: 3px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
}

.tab {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 13px 32px;
  border-radius: 2px;
  border: none;
  transition: all 0.3s;
  white-space: nowrap;
  text-align: center;
}
.tab:hover { color: var(--gold); }
.tab.active {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 2px 12px rgba(201,161,74,0.3);
}

.menu__panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.menu__panel.active { display: grid; }

.dish-card {
  background: var(--black3);
  border: 1px solid rgba(201, 161, 74, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
  position: relative;
}
.dish-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 161, 74, 0.28);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,161,74,0.08);
}
.dish-card:hover::before { opacity: 1; }

.dish-card__img {
  height: 220px;
  background-color: var(--black3);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.dish-card:hover .dish-card__img { transform: scale(1.04); }

.dish-card__info { padding: 22px 22px 20px; }

.dish-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.dish-card__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.dish-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.dish-card__info p {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.75;
  margin-bottom: 14px;
}
.dish-card__info p:last-child { margin-bottom: 0; }
.dish-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 161, 74, 0.1);
  padding: 5px 11px;
  border-radius: 2px;
  border: 1px solid rgba(201, 161, 74, 0.25);
}

.dish-card--more {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  background: var(--black3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(201, 161, 74, 0.15);
}
/* Foto en la parte superior, como las demás imágenes */
.dish-card--more__bg {
  position: relative;
  height: 220px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(5px) brightness(0.7);
  transform: scale(1.06);
  transition: transform 0.6s ease, filter 0.6s ease;
  z-index: 0;
}
.dish-card--more:hover .dish-card--more__bg {
  transform: scale(1.1);
  filter: blur(3px) brightness(0.8);
}
.dish-card--more__bg::after { content: none; }
.dish-card--more:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(201, 161, 74, 0.4);
}

/* Franja negra inferior con el título */
.dish-card--more__content {
  position: relative;
  z-index: 2;
  flex: 1;
  background: var(--black3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 22px 20px;
}

.dish-card--more__mark {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(15, 15, 15, 0.35);
  backdrop-filter: blur(2px);
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 0;
  padding-bottom: 4px;
  color: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.45), 0 6px 20px rgba(0,0,0,0.45);
  transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}
.dish-card--more:hover .dish-card--more__mark {
  transform: translate(-50%, -50%) scale(1.1) rotate(90deg);
  background: rgba(201, 161, 74, 0.18);
  box-shadow: 0 0 0 8px rgba(201, 161, 74, 0.12), 0 6px 24px rgba(0,0,0,0.5);
}

.dish-card--more span {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(237, 230, 216, 0.94);
  text-transform: uppercase;
}

/* Línea dorada bajo el título */
.dish-card--more__line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.dish-card--more:hover .dish-card--more__line {
  width: 72px;
}

.menu__footer {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.menu__footer p {
  color: var(--gray);
  font-size: 13px;
}

/* ── Carta completa PDF CTA ── */
.menu__pdf {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 56px auto 0;
  max-width: 860px;
  padding: 32px 44px;
  border: 1px solid rgba(201, 161, 74, 0.35);
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(201,161,74,0.06) 0%, rgba(201,161,74,0.02) 100%);
  position: relative;
  overflow: hidden;
}
.menu__pdf::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0.7;
}
.menu__pdf__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 161, 74, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 74, 0.3);
}
.menu__pdf__icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.menu__pdf__body {
  flex: 1;
}
.menu__pdf__body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.menu__pdf__body p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 640px) {
  .menu__pdf {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .menu__pdf::before { width: 100%; height: 3px; }
}

/* ===== EXPERIENCE ===== */
.experience {
  padding: 130px 48px;
  position: relative;
  overflow: hidden;
  /* Sin olive — fondo oscuro con brillo dorado radial */
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%,
      rgba(201, 161, 74, 0.06) 0%,
      transparent 70%
    ),
    var(--black);
}

/* Línea dorada superior */
.experience::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* Línea dorada inferior */
.experience::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.experience__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.experience__text .section__title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.experience__text p { color: var(--sage); line-height: 1.9; font-size: 15px; }

.experience__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.exp-card {
  background: rgba(22, 22, 22, 0.8);
  border: 1px solid rgba(201, 161, 74, 0.1);
  padding: 32px 28px;
  border-radius: 4px;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
/* Esquinas doradas decorativas */
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.4;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
}
.exp-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 16px; height: 16px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.4;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
}
.exp-card:hover {
  border-color: rgba(201, 161, 74, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 32px rgba(201,161,74,0.05);
}
.exp-card:hover::before,
.exp-card:hover::after {
  opacity: 1;
  width: 24px; height: 24px;
}

.exp-card__icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(201,161,74,0.3));
}
.exp-card__icon svg { width: 100%; height: 100%; }

.exp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.exp-card p {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.8;
}

/* ===== FAQ ===== */
.faq {
  padding: 110px 48px;
  background: #12100d;
  border-top: 1px solid rgba(201,161,74,0.16);
  border-bottom: 1px solid rgba(201,161,74,0.16);
}

.faq__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.faq__intro .section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.faq__intro p:not(.section__eyebrow) {
  color: var(--sage);
  font-size: 15px;
  line-height: 1.8;
}

.faq__list {
  display: grid;
  gap: 14px;
}

.faq__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,161,74,0.14);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}

.faq__item[open],
.faq__item:hover {
  border-color: rgba(201,161,74,0.36);
  background: rgba(201,161,74,0.055);
}

.faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item[open] summary::after {
  content: '+';
  transform: translateY(-50%) rotate(45deg);
}

.faq__item p {
  padding: 0 22px;
  padding-bottom: 0;
  color: var(--sage);
  font-size: 14px;
  line-height: 1.8;
  min-height: 0;
  opacity: 0;
}

.faq__body {
  overflow: hidden;
}

/* ===== GALLERY ===== */
.gallery {
  background: #0f0d0a;
  padding: 0;
}

.gallery__wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 56px;
}

/* ── Encabezado centrado ── */
.gallery__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.gallery__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.gallery__title em { font-style: italic; color: var(--gold); }

.gallery__subtitle {
  font-size: 15px;
  color: var(--sage);
  line-height: 1.8;
}

/* ── Grid principal ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

/* Imagen grande del espacio */
.gallery__feature {
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  grid-column: 2 / 4;
  grid-row: 1;
}
.gallery__feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(15,13,10,0.6) 0%,
    transparent 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.gallery__feature-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.gallery__feature-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.gallery__feature-badge-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(237,230,216,0.7);
}

/* ── Columna izquierda (info + stack) ── */
.gallery__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: 1;
  grid-row: 1;
}

/* Bloque de texto e info */
.gallery__info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,161,74,0.12);
  border-radius: 6px;
  padding: 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}
.gallery__info p {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.8;
  margin-bottom: 28px;
}

.gallery__stats {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(201,161,74,0.1);
  border-bottom: 1px solid rgba(201,161,74,0.1);
  padding: 20px 0;
}
.gallery__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  border-right: 1px solid rgba(201,161,74,0.1);
}
.gallery__stat:last-child { border-right: none; }
.gallery__stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.gallery__stat span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
}

/* Dos imágenes apiladas */
.gallery__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gallery__stack-img {
  height: 150px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.gallery__stack-img:hover { transform: scale(1.02); }
.gallery__stack-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.65) 0%, transparent 55%);
}
.gallery__stack-img span {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Fila inferior de 3 imágenes ── */
.gallery__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__strip-item {
  height: 200px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery__strip-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.gallery__strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.75) 0%, transparent 55%);
}
.gallery__strip-item span {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== RESERVATIONS / CONTACT ===== */
.reservations {
  padding: 130px 48px;
  background: var(--black);
  position: relative;
}

/* WhatsApp CTA */
.whatsapp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,161,74,0.12);
  border-radius: 6px;
  padding: 52px 40px;
}
.whatsapp-cta__icon svg {
  width: 72px;
  height: 72px;
}
.whatsapp-cta__text {
  font-size: 16px;
  color: var(--sage);
  line-height: 1.8;
  max-width: 360px;
}
.whatsapp-cta__note {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(168,181,162,0.55);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* Glow dorado de fondo */
.reservations::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,161,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.reservations__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.reservations__text p {
  color: var(--sage);
  line-height: 1.9;
  margin-bottom: 40px;
  font-size: 15px;
}

.reservations__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.res-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 161, 74, 0.1);
}
.res-info:last-child { border-bottom: none; }
.res-info__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.res-info__val {
  font-size: 14px;
  color: var(--beige);
}

/* FORM */
.reservation-form {
  background: var(--black3);
  border: 1px solid rgba(201, 161, 74, 0.12);
  padding: 48px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
/* Esquina dorada decorativa */
.reservation-form::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
  opacity: 0.6;
}
.reservation-form::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 4px 0;
  opacity: 0.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black2);
  border: 1px solid rgba(201, 161, 74, 0.15);
  color: var(--beige);
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,161,74,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group select option { background: var(--black2); }
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(2) hue-rotate(10deg);
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group { margin-bottom: 0; }
.reservation-form > .form-group { margin-bottom: 20px; }

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 161, 74, 0.12);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.footer__top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 280px;
}

.social-link {
  height: 48px;
  padding: 0 28px;
  border: 2px solid var(--gold);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  z-index: -1;
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease;
}
.social-link:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,161,74,0.4);
}
.social-link:hover::before {
  left: 0;
}
.social-link:hover svg {
  transform: translateX(3px);
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,161,74,0.12);
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold); }
.footer__col .btn--gold,
.footer__col .btn--gold:hover { color: var(--black); }
.footer__col p span {
  color: var(--beige);
  font-weight: 500;
  margin-right: 8px;
}

.footer__bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 12px; color: var(--gray); }
.footer__bottom a {
  font-size: 12px;
  color: var(--gray);
  margin-left: 24px;
  transition: color 0.3s;
}
.footer__bottom a:hover { color: var(--gold); }
.footer__credit {
  font-size: 12px;
  color: var(--gray);
  margin-right: 24px;
}
.footer__credit a {
  font-size: 12px;
  color: var(--gray);
  margin-left: 0;
  font-weight: 700;
  text-decoration: none;
}
.footer__credit a:hover { color: #8b5cf6; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--black3);
  border: 1px solid rgba(201, 161, 74, 0.3);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 4px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  z-index: 999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,161,74,0.08);
}
.toast.show { transform: translateX(0); }
.toast__icon {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.toast strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}
.toast p { font-size: 12px; color: var(--gray); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__visual { max-width: 600px; }
  .about__img-main { height: 460px; }
  .experience__inner { grid-template-columns: 1fr; gap: 48px; }
  .reservations__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { padding: 0 24px; grid-template-columns: 1fr 1fr; }
  .nav__right { grid-column: 2; }
  .nav__links, .nav__cta, .nav__lang { display: none; }
  .nav__hamburger { display: flex; }

  .about, .menu, .experience, .faq, .reservations { padding: 80px 24px; }

  /* Gallery responsive */
  .gallery__wrap { padding: 80px 24px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__feature { min-height: 320px; grid-column: 1; grid-row: 2; }
  .gallery__aside { flex-direction: column; grid-column: 1; grid-row: 1; }
  .gallery__strip { grid-template-columns: 1fr 1fr; }
  .gallery__strip-item:last-child { display: none; }

  .experience__cards { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__top { padding: 48px 24px; }
  .footer__bottom { padding: 20px 24px; flex-direction: column; text-align: center; }
  .footer__bottom a { margin-left: 12px; }
}

@media (max-width: 600px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__eyebrow { letter-spacing: 2.5px; font-size: 10px; }
  .hero__title { margin-bottom: 28px; }
  .hero__subtitle { font-size: 18px; line-height: 1.65; margin-bottom: 32px; }
  .about__stats { flex-wrap: wrap; }
  .stat { flex: 1 1 calc(50% - 12px); padding: 12px 0; }
  .stat + .stat::before { display: none; }
  .about__img-main { height: 340px; }
  .about__img-frame { padding-bottom: 14px; padding-right: 14px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .reservation-form { padding: 24px; }
  .strip { display: none; }
  .menu__tabs { gap: 0; }
  .tab { font-size: 10px; padding: 10px 12px; letter-spacing: 1px; }
}

@media (max-width: 400px) {
  .about, .menu, .experience, .faq, .reservations,
  .gallery__wrap, .footer__top { padding-left: 18px; padding-right: 18px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3rem); }
  .hero__subtitle { font-size: 17px; }
  .section__title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .footer__social { flex-wrap: wrap; }
  .footer__social .social-link { flex: 1 1 calc(50% - 8px); justify-content: center; }
}

/* ===== Centrado general en móvil ===== */
@media (max-width: 640px) {
  /* Eyebrows largos en una sola línea */
  .section__eyebrow { letter-spacing: 2.5px; }

  /* Secciones con texto centrado */
  .experience__text,
  .faq__intro,
  .reservations__text,
  .reservations__info,
  .gallery__info,
  .about__text { text-align: center; }

  /* Divisor dorado centrado */
  .about__rule { margin-left: auto; margin-right: auto; }

  /* Platos del menú centrados */
  .dish-card__info { text-align: center; }
  .dish-card__header { justify-content: center; }

  /* Tarjetas de "Més que un restaurant" centradas */
  .exp-card { text-align: center; }
  .exp-card__icon { margin-left: auto; margin-right: auto; }

  /* Stats 180 · 50 · 10 en una sola línea */
  .about__stats { flex-wrap: nowrap; gap: 0; }
  .stat { flex: 1 1 0; padding: 12px 6px; }
  .stat + .stat::before { display: block; }
  .stat__num { font-size: clamp(1.5rem, 8vw, 2.1rem); }
  .stat__label { font-size: 10px; letter-spacing: 1px; }

  /* Footer todo centrado */
  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__brand p { max-width: none; }
  .footer__social { justify-content: center; max-width: none; }
  .footer__col { text-align: center; }
  .footer__bottom { text-align: center; }
}
