/* ============================================================
   SEGRETA — Sistema de diseño principal
   Basado en los tokens extraídos del build de Lovable
   ============================================================ */

/* Accesibilidad / SEO: visualmente oculto pero legible por crawlers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── 2. Variables de diseño ───────────────────────────────── */
:root {
  /* Paleta de color */
  --noir:          #000000;             /* negro puro — fondo principal */
  --noir-mid:      #0a0a0a;             /* casi negro — fondo cards */
  --noir-light:    #141414;             /* bordes, hover fondo */
  --ochre:         hsl(38, 44%, 40%);   /* dorado oscuro — acento principal */
  --ochre-light:   hsl(38, 44%, 55%);   /* dorado claro — hover, links */
  --ochre-dim:     hsl(38, 44%, 40%, 0.15); /* ochre muy suave para bordes */
  --cream:         hsl(30, 8%, 93%);    /* #EDEBE8 — texto principal claro */
  --cream-dim:     hsl(30, 8%, 70%);    /* texto secundario */
  --burgundy:      hsl(0, 62%, 26%);    /* burdeos — acento especial */
  --burgundy-light:hsl(0, 62%, 35%);

  /* Tipografía */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Red Hat Display', system-ui, sans-serif;

  /* Espaciado base */
  --section-py:  clamp(4rem, 8vw, 7rem);
  --container:   1200px;
  --gutter:      clamp(1.25rem, 5vw, 3rem);

  /* Transiciones */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --duration:    300ms;

  /* Nav */
  --nav-h:       82px;
}

/* ── 3. Reset base ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--ochre-light);
  outline-offset: 3px;
}

::selection {
  background: var(--burgundy);
  color: var(--cream);
}

/* ── 4. Tipografía ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.label {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre-light);
}

.italic {
  font-style: italic;
}

p {
  max-width: 65ch;
  color: var(--cream-dim);
}

/* ── 5. Layout helpers ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  padding-block: var(--section-py);
}

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

/* ── 6. Botones ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--duration) var(--ease),
              background-color var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background-color: #6E1717;
  color: var(--cream);
  border: 1px solid #967B38;
}
.btn-primary:hover {
  background-color: #967B38;
  border-color: #967B38;
}

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border: 1px solid var(--ochre);
}
.btn-outline:hover {
  background-color: var(--ochre);
  border-color: var(--ochre);
  color: var(--cream);
}

.btn-ghost {
  background-color: transparent;
  color: var(--cream-dim);
  border: 1px solid rgba(237, 235, 232, 0.18);
  padding: 0.75rem 2rem;
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: rgba(237, 235, 232, 0.4);
}

.btn-burgundy {
  background-color: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--burgundy);
}
.btn-burgundy:hover { opacity: 0.85; }

/* ── 7. Navegación ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color var(--duration) var(--ease),
              backdrop-filter var(--duration) var(--ease);
}

.site-nav.scrolled {
  background-color: hsl(0, 0%, 3%, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(0, 0%, 100%, 0.06);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Links centrados absolutamente respecto al nav completo */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  /* el centrado lo maneja el bloque position:absolute de arriba */
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--duration) var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: #967B38;
}

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

/* Selector de idioma */
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-select {
  background: transparent;
  border: 1px solid hsl(0, 0%, 28%);
  color: var(--cream-dim);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3rem 1.6rem 0.3rem 0.6rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.45rem center;
  background-size: 0.5rem;
  transition: border-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.lang-select:hover {
  border-color: var(--ochre);
  color: var(--cream);
}

.lang-select:focus {
  outline: none;
  border-color: var(--ochre);
}

.lang-select option {
  background: #1a1a1a;
  color: var(--cream);
}

/* Hamburguesa (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--noir);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream-dim);
  transition: color var(--duration) var(--ease);
}
.nav-drawer a:hover {
  color: var(--cream);
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ── 8. Footer ────────────────────────────────────────────── */
.site-footer {
  background-color: var(--noir-mid);
  border-top: 1px solid hsl(0, 0%, 100%, 0.06);
  padding-block: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: auto;
  width: 140px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.85rem;
  max-width: 26ch;
  line-height: 1.7;
}

.footer-brand .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ochre-light);
  transition: color var(--duration) var(--ease);
}
.footer-brand .social-link:hover {
  color: var(--cream);
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: color var(--duration) var(--ease);
}
.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

.footer-col address strong {
  display: block;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.footer-col a[href^="tel"] {
  color: var(--cream-dim);
  font-size: 0.85rem;
  transition: color var(--duration) var(--ease);
}
.footer-col a[href^="tel"]:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid hsl(0, 0%, 100%, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: hsl(0, 0%, 35%);
  max-width: none;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 9. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Muestra la parte superior del restaurante — gente en mesas */
.hero > .hero-bg {
  background-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 35%,
    rgba(0, 0, 0, 0.6) 68%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-inline: var(--gutter);
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
}

.hero-logo {
  display: block;
  width: 80%;
  margin-bottom: 2rem;
}

.hero-location {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(30, 8%, 70%);
  margin-bottom: 1rem;
  padding-left: 0.3em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2.5rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  min-height: 2.5em;
}

.hero-tagline span {
  display: inline-block;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  margin-inline: auto;
  gap: 0.75rem;
}

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

.hero-actions-row .btn {
  flex: 1;
  text-align: center;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── 10. Sección: El Espíritu ─────────────────────────────── */
.espiritu {
  background-color: var(--noir);
}

.espiritu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.espiritu-text .label {
  margin-bottom: 1.25rem;
}

.espiritu-text h2 {
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.espiritu-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.espiritu-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.espiritu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.espiritu-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .espiritu-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .espiritu-image {
    aspect-ratio: 16/9;
    order: -1;
  }
}

/* ── 11. Sección: Especialidades ──────────────────────────── */
.especialidades {
  background-color: var(--noir);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .label {
  margin-bottom: 0.75rem;
}

.section-header h2 {
  color: var(--cream);
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.esp-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}

.esp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.esp-card:hover img {
  transform: scale(1.06);
}

.esp-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.28) 0%,
    transparent 42%
  );
  transition: background var(--duration) var(--ease);
}

.esp-card:hover .esp-card-overlay {
  background: linear-gradient(
    to top,
    hsl(0, 0%, 3%, 0.95) 0%,
    hsl(0, 0%, 3%, 0.6) 60%,
    hsl(0, 0%, 3%, 0.2) 100%
  );
}

.esp-card h3 {
  color: var(--ochre);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.esp-card p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  max-width: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.esp-card:hover h3,
.esp-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .especialidades-grid {
    grid-template-columns: 1fr;
  }
  .esp-card {
    aspect-ratio: 4/5;
    cursor: pointer;
  }
  /* texto oculto por defecto — se revela con scroll (IntersectionObserver) */
  .esp-card h3,
  .esp-card p {
    opacity: 0;
    transform: translateY(8px);
  }
  .esp-card.is-active img {
    transform: scale(1.06);
  }
  .esp-card.is-active .esp-card-overlay {
    background: linear-gradient(
      to top,
      hsl(0, 0%, 3%, 0.95) 0%,
      hsl(0, 0%, 3%, 0.6) 60%,
      hsl(0, 0%, 3%, 0.2) 100%
    );
  }
  .esp-card.is-active h3,
  .esp-card.is-active p {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 12. Sección: Frase / Quote ───────────────────────────── */
.frase {
  background-color: var(--noir);
  text-align: center;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.frase blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--ochre-light);
  max-width: 750px;
  margin-inline: auto;
  line-height: 1.5;
}

.frase blockquote::before {
  content: '\201C';
}
.frase blockquote::after {
  content: '\201D';
}

/* ── 13. Marquee de marcas ────────────────────────────────── */
.brands-section {
  background-color: var(--noir);
  padding-block: 3rem;
  overflow: hidden;
}

.brands-section .marquee-track {
  overflow: visible;
}

.brands-section .label {
  text-align: center;
  display: block;
  margin-bottom: 2rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding-inline: 3rem;
}

.marquee-inner img {
  height: 96px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

/* Mistral se mantiene en su tamaño original via inline style en el HTML */

.marquee-inner img:hover {
  opacity: 1;
  transform: scale(1.2);
}

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

/* ── 14. Almuerzo Segreta ────────────────────────────────── */
.almuerzo-section {
  background: var(--noir-mid);
  padding-block: var(--section-py);
}

.almuerzo-header-desc {
  text-align: center;
  margin-inline: auto;
  margin-top: 0.75rem;
  max-width: 58ch;
  color: var(--cream-dim);
}

.almuerzo-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.almuerzo-exp-info {
  position: sticky;
  top: 5.5rem;
}

.almuerzo-info-block {
  padding-block: 2rem;
}

.almuerzo-info-block:first-child {
  padding-top: 0;
}

.almuerzo-info-block + .almuerzo-info-block {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.almuerzo-info-block .label {
  display: block;
  margin-bottom: 0.75rem;
}

.almuerzo-info-block h3 {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.almuerzo-info-block p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.75;
}

.almuerzo-info-block strong {
  color: var(--ochre);
  font-weight: 500;
}

.almuerzo-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.almuerzo-exp-photos {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.almuerzo-exp-photos img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .almuerzo-exp-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .almuerzo-exp-info {
    position: static;
  }
  .almuerzo-ctas {
    justify-content: flex-start;
  }
}

/* ── 15. CTA Final ────────────────────────────────────────── */
.cta-final {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-final .hero-bg {
  filter: brightness(0.35);
}

.cta-final-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cta-final .label {
  margin-bottom: 1rem;
}

.cta-final h2 {
  color: var(--cream);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.cta-final p {
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: center;
}

.cta-final .btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── 15. Hero interno (páginas secundarias) ───────────────── */
.page-hero {
  position: relative;
  height: clamp(380px, 50vh, 560px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-top: var(--nav-h);
  overflow: hidden;
}

.page-hero .hero-bg::after {
  content: '';
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 1) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-inline: var(--gutter);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.page-hero-content .label {
  margin-bottom: 0.75rem;
}

.page-hero-content h1 {
  color: var(--cream);
}

/* ── 16. Formularios ──────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--noir-light);
  border: 1px solid hsl(0, 0%, 20%);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  transition: border-color var(--duration) var(--ease);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ochre);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.75rem;
  color: hsl(0, 62%, 60%);
  margin-top: 0.25rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  text-align: center;
  padding: 2rem;
  border: 1px solid hsl(120, 30%, 35%);
  background: hsl(120, 30%, 8%);
  display: none;
  margin-top: 1.5rem;
}

.form-success.visible {
  display: block;
}

/* ── 17. Iframe containers ────────────────────────────────── */
.iframe-container {
  width: 100%;
  min-height: 600px;
  background: var(--noir-mid);
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
}

/* ── 18. Galería ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: hsl(0, 0%, 0%, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  color: var(--cream-dim);
  font-size: 1.5rem;
  transition: color var(--duration) var(--ease);
}
.lightbox-close:hover {
  color: var(--cream);
}

/* ── 19. Logos grid (Partners) ────────────────────────────── */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1px;
  background: hsl(0, 0%, 100%, 0.06);
}

.logo-item {
  background: var(--noir-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  transition: background-color var(--duration) var(--ease);
}

.logo-item:hover {
  background: var(--noir-light);
}

.logo-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity var(--duration) var(--ease);
}

.logo-item:hover img {
  opacity: 1;
}

/* ── 20. Animaciones ──────────────────────────────────────── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fade-up 0.7s var(--ease) forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* Reveal on scroll (activado por JS con IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 20b. Reducción de movimiento (accesibilidad) ────────── */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-play-state: paused;
  }
  .fade-up,
  .fade-up-1,
  .fade-up-2,
  .fade-up-3,
  .fade-up-4 {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ── 21. Divisor decorativo ───────────────────────────────── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--ochre);
  margin-block: 1.5rem;
}

.divider-center {
  margin-inline: auto;
}

/* ── 22. Horarios ─────────────────────────────────────────── */
.horarios-table {
  width: 100%;
  border-collapse: collapse;
}

.horarios-table tr {
  border-bottom: 1px solid hsl(0, 0%, 100%, 0.06);
}

.horarios-table td {
  padding: 0.65rem 0;
  font-size: 0.85rem;
  color: var(--cream-dim);
  white-space: nowrap;
}

.horarios-table td:first-child {
  color: var(--cream);
  width: 140px;
}

.horarios-table td:last-child {
  text-align: right;
}

/* ── 23. Utilidades ───────────────────────────────────────── */
.text-ochre    { color: var(--ochre-light); }
.text-cream    { color: var(--cream); }
.text-dim      { color: var(--cream-dim); }
.text-center   { text-align: center; }
.text-serif    { font-family: var(--font-serif); }
.text-italic   { font-style: italic; }

.mb-xs { margin-bottom: 0.5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.75rem; }
.mb-lg { margin-bottom: 2.5rem; }
.mb-xl { margin-bottom: 4rem; }

.pt-nav { padding-top: var(--nav-h); }

.bg-noir-mid { background-color: var(--noir-mid); }

/* ── 24. Nosotros — layout info ───────────────────────────── */
.nosotros-reverse {
  direction: rtl;
}
.nosotros-reverse > * {
  direction: ltr;
}

.nosotros-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(0, 0%, 100%, 0.08);
}

.nosotros-info-item .label {
  display: block;
  margin-bottom: 0.25rem;
}

.nosotros-info-item p {
  margin-bottom: 0;
  color: var(--cream);
}

/* ── 25. Reservas — info grid ────────────────────────────── */
.reservas-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: start;
}

.reservas-info-block .label {
  margin-bottom: 1rem;
  display: block;
}

.horarios-table-lg td {
  padding-block: 0.5rem;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .reservas-info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nosotros-reverse {
    direction: ltr;
  }
}

/* ── Nosotros ─────────────────────────────────────────────── */

/* Hero */
.nos-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.nos-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  animation: fadeIn 1.2s ease forwards;
}

.nos-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 1.0) 78%,
    rgba(0, 0, 0, 1.0) 100%
  );
}

.nos-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nos-hero-content .label {
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.nos-hero-content h1 {
  color: var(--cream);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  text-align: center;
  line-height: 1.1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Historia */
.nos-historia {
  background: var(--noir);
  padding-top: clamp(1rem, 1.5vw, 1.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.nos-historia-inner {
  max-width: 768px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nos-historia-inner p {
  color: var(--cream-dim);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.85;
  margin-bottom: 1.75rem;
  text-align: center;
}

/* Full-image sections (El Alma, La Familia) */
.nos-fullimg {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.nos-fullimg-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.nos-fullimg-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 1.0) 75%,
    rgba(0, 0, 0, 1.0) 100%
  );
}

.nos-fullimg-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 0;
}

.nos-fullimg-content .label {
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.nos-fullimg-content h2 {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  text-align: center;
}

/* Cita */
.nos-cita {
  background: var(--noir);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.nos-cita blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--ochre-light);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.6;
  padding-inline: var(--gutter);
}

/* Familia texto */
.nos-familia-texto {
  background: var(--noir);
  padding-top: clamp(0.75rem, 1vw, 1.25rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.nos-trabaja {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.nos-trabaja .label,
.nos-ubicacion .label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* Ubicación */
.nos-ubicacion {
  background: var(--noir);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.nos-ubicacion .section-header {
  margin-bottom: 2.5rem;
}

.nos-ubicacion .section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
}

.nos-mapa {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.nos-mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.nos-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 620px;
  margin-inline: auto;
}

.nos-ctas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.nos-ctas-row .btn {
  flex: 1;
  text-align: center;
}

/* btn-burgundy si no está definido */
.btn-burgundy {
  background-color: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--burgundy);
}
.btn-burgundy:hover { opacity: 0.85; }

@media (max-width: 600px) {
  .nos-ctas-row {
    flex-direction: column;
  }
  .nos-mapa {
    aspect-ratio: 4 / 3;
  }
}

/* ── 26. Experiencias — Galería + Activaciones + Eventos ──── */

/* Intro (reutiliza nos-historia-inner) */
.exp-intro {
  background: var(--noir);
  padding-block: var(--section-py);
}

/* Galería */
.exp-galeria {
  background: var(--noir);
  padding-block: var(--section-py);
}

/* Activaciones semanales */
.activaciones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.activacion-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

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

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

.activacion-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.28) 0%,
    transparent 38%
  );
  transition: background var(--duration) var(--ease);
}

.activacion-card:hover .activacion-overlay {
  background: linear-gradient(
    to top,
    hsl(0, 0%, 3%, 0.97) 0%,
    hsl(0, 0%, 3%, 0.55) 60%,
    hsl(0, 0%, 3%, 0.1) 100%
  );
}

.activacion-dia {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 0.4rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.activacion-nombre {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.activacion-desc {
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-top: 0.4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  max-width: none;
}

.activacion-card:hover .activacion-dia,
.activacion-card:hover .activacion-nombre,
.activacion-card:hover .activacion-desc {
  opacity: 1;
  transform: translateY(0);
}

.activacion-meta {
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s 0.05s var(--ease), transform 0.35s 0.05s var(--ease);
  font-size: 0.75rem;
  color: var(--cream-dim);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.activacion-card:hover .activacion-meta {
  opacity: 1;
  transform: translateY(0);
}

.activacion-horario {
  color: var(--ochre-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.activacion-regla {
  font-style: italic;
  line-height: 1.5;
  color: hsl(30, 8%, 70%);
}

.activacion-proximamente {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ff4444;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .activaciones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .activacion-card {
    aspect-ratio: 1/1;
    cursor: pointer;
  }
  /* texto oculto por defecto — se revela con scroll (IntersectionObserver) */
  .activacion-dia,
  .activacion-nombre,
  .activacion-desc,
  .activacion-meta {
    opacity: 0;
    transform: translateY(6px);
  }
  .activacion-card.is-active img {
    transform: scale(1.05);
  }
  .activacion-card.is-active .activacion-overlay {
    background: linear-gradient(
      to top,
      hsl(0, 0%, 3%, 0.97) 0%,
      hsl(0, 0%, 3%, 0.55) 60%,
      hsl(0, 0%, 3%, 0.1) 100%
    );
  }
  .activacion-card.is-active .activacion-dia,
  .activacion-card.is-active .activacion-nombre,
  .activacion-card.is-active .activacion-desc,
  .activacion-card.is-active .activacion-meta {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .activaciones-grid {
    grid-template-columns: 1fr;
  }
  .activacion-card {
    aspect-ratio: 4/5;
  }
}

/* Eventos — split info + form */
.exp-eventos-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.exp-eventos-info .label {
  display: block;
  margin-bottom: 1rem;
}

.exp-eventos-info h2 {
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.exp-eventos-info > p {
  line-height: 1.85;
  margin-bottom: 1rem;
}

.exp-eventos-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
}

.exp-eventos-list li {
  font-size: 0.88rem;
  color: var(--cream-dim);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.exp-eventos-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ochre);
}

.form-wrapper {
  position: relative;
}

.form-wrapper .form-success {
  display: none;
}

.form-wrapper .form-success.visible {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

@media (max-width: 900px) {
  .exp-eventos-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── 27. Partners — Hero, Logos, Formulario ───────────────── */

/* Hero full screen */
.partners-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.partners-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: fadeIn 1.2s ease forwards;
}

.partners-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 1.0) 78%,
    rgba(0, 0, 0, 1.0) 100%
  );
}

.partners-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}

.partners-hero-content .label {
  display: block;
  margin-bottom: 1rem;
}

.partners-hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
}

/* Intro */
.partners-intro {
  background: var(--noir);
  padding-block: var(--section-py);
}

.partners-intro-inner {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.partners-intro-inner p {
  color: var(--cream-dim);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 2;
  margin-bottom: 1.75rem;
  text-align: center;
}

/* Cabecera de sección logos */
.logos-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.logos-section-header .divider-ochre {
  width: 40px;
  height: 1px;
  background: var(--ochre);
  margin: 1.25rem auto 0;
}

/* Grid logos principales — flex para centrar último row */
.logos-main-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: hsl(0, 0%, 100%, 0.07);
}

.logo-main-card {
  flex: 0 0 calc(20% - 0.8px);
  background: var(--noir-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  aspect-ratio: 3/2;
  position: relative;
  cursor: default;
  overflow: hidden;
  transition: background-color var(--duration) var(--ease);
}

/* Bordes esquineros animados en hover */
.logo-main-card::before,
.logo-main-card::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  transition: width 0.35s var(--ease), height 0.35s var(--ease);
}

.logo-main-card::before {
  top: 0;
  left: 0;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
}

.logo-main-card::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}

.logo-main-card:hover {
  background: hsl(0, 0%, 5%);
}

.logo-main-card:hover::before {
  width: 40%;
  height: 40%;
  border-color: var(--ochre);
}

.logo-main-card:hover::after {
  width: 40%;
  height: 40%;
  border-color: var(--ochre);
}

.logo-main-card img {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

/* Mistral es landscape */
.logo-main-card--mistral img {
  height: 110px;
  max-width: 240px;
}

.logo-main-card:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* Grid logos secundarios (4×2) */
.logos-secondary-section {
  background: var(--noir-mid);
  padding-block: 2.5rem;
  border-block: 1px solid hsl(0, 0%, 100%, 0.05);
}

.logos-secondary-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.logos-secondary-header .label {
  letter-spacing: 0.25em;
}

.logos-secondary-header .divider-ochre {
  width: 30px;
  height: 1px;
  background: var(--ochre);
  margin: 0.75rem auto 0;
}

.logos-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: hsl(0, 0%, 100%, 0.05);
}

.logo-secondary-card {
  background: var(--noir-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  height: 88px;
  cursor: default;
  transition: background-color var(--duration) var(--ease);
}

.logo-secondary-card img {
  height: 70px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

.logo-secondary-card:hover {
  background: var(--noir);
}

.logo-secondary-card:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* Grandes Proveedores */
.proveedores-section {
  background: var(--noir);
  padding-block: var(--section-py);
}

.proveedores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: hsl(0, 0%, 100%, 0.05);
  margin-top: 3rem;
}

.proveedor-card {
  background: var(--noir-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background-color var(--duration) var(--ease);
}

.proveedor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ochre);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.proveedor-card:hover {
  background: hsl(0, 0%, 5%);
}

.proveedor-card:hover::before {
  transform: scaleX(1);
}

.proveedor-card img {
  height: 90px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

.proveedor-card:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* Formulario Conversemos */
.conversemos-section {
  position: relative;
  padding-block: var(--section-py);
}

.conversemos-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.conversemos-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(0, 0%, 0%, 0.80);
}

.conversemos-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.conversemos-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.conversemos-header .label {
  display: block;
  margin-bottom: 1rem;
}

.conversemos-header h2 {
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.conversemos-header p {
  text-align: center;
  margin-inline: auto;
  line-height: 1.8;
}

/* Responsive logos */
@media (max-width: 900px) {
  .logo-main-card {
    flex: 0 0 calc(33.33% - 0.67px);
  }
  .logos-secondary-grid,
  .proveedores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .logo-main-card {
    flex: 0 0 calc(50% - 0.5px);
  }
  .logos-secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proveedores-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── 28. Experiencias — Hero full screen ──────────────────── */
.exp-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.exp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeIn 1.2s ease forwards;
}

.exp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 1.0) 78%,
    rgba(0, 0, 0, 1.0) 100%
  );
}

.exp-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}

.exp-hero-content .label {
  display: block;
  margin-bottom: 1rem;
}

.exp-hero-content h1 {
  color: var(--cream);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.exp-hero-desc {
  font-size: 0.9rem;
  color: var(--cream-dim);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 29. Experiencias — Galería carrusel horizontal ───────── */
.gallery-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-carousel-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}

.gallery-carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-carousel-track:active {
  cursor: grabbing;
}

.gallery-carousel-item {
  flex-shrink: 0;
  width: clamp(240px, 28vw, 370px);
  height: clamp(190px, 22vw, 280px);
  overflow: hidden;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.gallery-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  pointer-events: none;
  display: block;
}

.gallery-carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--ochre-dim);
  color: var(--cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 1.2rem;
  line-height: 1;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: var(--ochre);
  border-color: var(--ochre);
}

.carousel-arrow-prev { left: 0.75rem; }
.carousel-arrow-next { right: 0.75rem; }

@media (max-width: 600px) {
  .gallery-carousel-item {
    width: 260px;
    height: 190px;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* ── 30. Experiencias — Eventos acordeón ─────────────────── */
.eventos-section {
  background: var(--noir-mid);
  padding-block: var(--section-py);
  border-block: 1px solid hsl(0, 0%, 100%, 0.05);
}

.eventos-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 3rem;
  align-items: start;
}

.evento-block {
  background: var(--noir);
  overflow: hidden;
}

.evento-block-cover {
  position: relative;
  height: 380px;
  overflow: hidden;
}

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

.evento-block:hover .evento-block-cover img {
  transform: scale(1.03);
}

.evento-cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    hsl(0, 0%, 3%, 0.88) 100%
  );
}

.evento-cover-overlay .label {
  display: block;
  margin-bottom: 0.5rem;
}

.evento-cover-overlay h3 {
  color: var(--cream);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.evento-toggle-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid hsl(0, 62%, 35%);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  width: fit-content;
}

.evento-toggle-btn:hover {
  background: hsl(0, 62%, 35%);
}

.evento-block-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.evento-block-body.open {
  max-height: 1000px;
}

.evento-block-body-inner {
  padding: 2.5rem;
}

.evento-block-body-inner p {
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: none;
}

.evento-block-cta {
  margin-top: 1.5rem;
}

/* Mini carrusel dentro de eventos */
.mini-carousel-wrapper {
  position: relative;
}

.mini-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: hsl(0, 0%, 0%, 0.6);
  border: 1px solid hsl(0, 0%, 100%, 0.15);
  color: var(--cream);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 1.4rem;
  line-height: 1;
  transition: background var(--duration) var(--ease);
}

.mini-carousel-arrow:hover {
  background: hsl(0, 0%, 0%, 0.9);
}

.mini-carousel-arrow--prev { left: 6px; }
.mini-carousel-arrow--next { right: 6px; }

.mini-carousel {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  margin: 1.5rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mini-carousel::-webkit-scrollbar {
  display: none;
}

.mini-carousel-item {
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  overflow: hidden;
  cursor: zoom-in;
}

.mini-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
  display: block;
}

.mini-carousel-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .eventos-blocks {
    grid-template-columns: 1fr;
  }
  .evento-block-cover {
    height: 300px;
  }
}

/* ── 31. Categorías de eventos ────────────────────────────── */
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: hsl(0, 0%, 100%, 0.06);
  margin-top: 3rem;
}

.categoria-item {
  background: var(--noir-mid);
  padding: 1.5rem 0.75rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  cursor: pointer;
  transition: color var(--duration) var(--ease),
              background-color var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  border: 1px solid transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.categoria-item:hover {
  color: var(--ochre-light);
  border-color: var(--ochre);
  background: var(--noir);
}

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

@media (max-width: 480px) {
  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 32. Frase destacada ──────────────────────────────────── */
.frase-segreta {
  text-align: center;
  padding-block: 3.5rem;
  background: var(--noir-mid);
}

.frase-segreta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--ochre-light);
  max-width: none;
  margin: 0;
}

/* ── 33. Sección Celebra (formulario con bg imagen) ───────── */
.exp-celebra {
  position: relative;
  padding-block: var(--section-py);
}

.exp-celebra-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.exp-celebra-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(0, 0%, 0%, 0.82);
}

.exp-celebra-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.exp-celebra-inner .section-header {
  margin-bottom: 2.5rem;
}

.exp-celebra-inner .section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-style: italic;
  color: var(--cream);
}

.exp-celebra-inner .section-header p {
  text-align: center;
  margin-inline: auto;
  margin-top: 0.75rem;
}

.exp-celebra-ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.exp-celebra-ctas .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 165px;
  max-width: 200px;
  white-space: normal;
  line-height: 1.3;
}

/* ── 34. Medios de Pago (Nosotros) ────────────────────────── */
.medios-pago-section {
  position: relative;
  background: var(--noir);
  padding-block: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
}

.medios-pago-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.medios-pago-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.85) 60%,
    #000000 100%
  );
}

.medios-pago-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: hsl(0, 0%, 100%, 0.05);
  margin-top: 3rem;
}

.medios-pago-card {
  background: var(--noir-mid);
  border: 1px solid hsl(0, 0%, 100%, 0.06);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color var(--duration) var(--ease),
              background-color var(--duration) var(--ease);
}

.medios-pago-card:hover {
  border-color: hsl(38, 44%, 40%, 0.5);
  background: hsl(0, 0%, 5%);
}

.medios-pago-card p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 34ch;
}

@media (max-width: 640px) {
  .medios-pago-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 35. Club Segreta (Experiencias) ──────────────────────── */
.club-segreta-section {
  background: var(--noir);
  padding-block: var(--section-py);
}

.club-segreta-card {
  background: var(--burgundy);
  max-width: 960px;
  margin-inline: auto;
  padding: 3.5rem 3rem;
  border-radius: 2px;
}

.club-segreta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.club-segreta-text .label {
  display: block;
  margin-bottom: 1rem;
  color: var(--ochre);
}

.club-segreta-text h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.club-segreta-text p {
  line-height: 1.85;
  margin-bottom: 0.85rem;
  color: hsl(30, 8%, 80%);
  max-width: 48ch;
}

.club-segreta-wallets {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.15);
}

.club-segreta-wallet-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.club-segreta-wallet-icons a {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.club-segreta-wallet-icons a:hover {
  opacity: 0.8;
  transform: scale(1.06);
}

.club-segreta-wallet-icons img {
  height: 44px;
  width: auto;
  display: block;
}

/* Apple Wallet es un icono cuadrado — se ve más chico al mismo height */
.club-segreta-wallet-icons a:first-child img {
  height: 68px;
}

.club-segreta-qr {
  flex-shrink: 0;
}

.club-segreta-qr a {
  display: block;
  padding: 1rem;
  background: var(--cream);
  border: 2px solid hsl(38, 44%, 60%);
}

.club-segreta-qr img {
  width: 260px;
  height: 260px;
  display: block;
}

@media (max-width: 900px) {
  .club-segreta-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .club-segreta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .club-segreta-qr {
    margin-inline: auto;
  }
  .club-segreta-qr img {
    width: 220px;
    height: 220px;
  }
}

/* btn-ochre */
.btn-ochre {
  background-color: hsl(38, 44%, 42%);
  color: var(--cream);
  border: 1px solid hsl(38, 44%, 55%);
}
.btn-ochre:hover {
  background-color: hsl(38, 44%, 55%);
  border-color: hsl(38, 44%, 60%);
}

@media (max-width: 600px) {
  .exp-celebra-ctas {
    flex-direction: column;
  }
  .exp-celebra-ctas .btn {
    flex: none;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   NUESTRA CARTA — Sección recomendaciones nosotros.html
   ═══════════════════════════════════════════════════════════ */

.carta-section {
  background: var(--noir);
  padding-block: var(--section-py);
}

.carta-section .section-header p {
  max-width: 60ch;
  margin-inline: auto;
  margin-top: 1rem;
}

.carta-toggle-btn {
  margin-top: 2.5rem;
  width: 280px;
  max-width: 90vw;
}

/* Categorías: ocultas por defecto, se revelan con JS */
.carta-categorias {
  display: none;
  margin-top: 4rem;
}
.carta-categorias.open {
  display: block;
}

.carta-categoria {
  margin-bottom: 5rem;
}
.carta-categoria:last-child {
  margin-bottom: 0;
}

.carta-categoria-header {
  padding-inline: var(--gutter);
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
.carta-categoria-header .label {
  display: block;
  margin-bottom: 0.5rem;
}
.carta-categoria-header h3 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.carta-categoria-header p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 55ch;
}

/* Track del carrusel (mismo patrón que gallery-carousel) */
.carta-track-wrapper {
  position: relative;
  overflow: hidden;
}

.carta-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  padding-inline-start: var(--gutter);
  padding-inline-end: var(--gutter);
}
.carta-track:active { cursor: grabbing; }
.carta-track::-webkit-scrollbar { display: none; }

/* Cada ítem de carta */
.carta-item {
  flex-shrink: 0;
  width: clamp(200px, 26vw, 300px);
  height: clamp(250px, 33vw, 380px);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: zoom-in;
}

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

.carta-item:hover img {
  transform: scale(1.07);
}

/* Overlay con info del plato */
.carta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.carta-item:hover .carta-overlay,
.carta-item.is-active .carta-overlay {
  opacity: 1;
}
.carta-item.is-active img {
  transform: scale(1.07);
}

.carta-overlay h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ochre-light);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.carta-overlay p {
  font-size: 0.78rem;
  color: var(--cream-dim);
  line-height: 1.5;
  margin-bottom: 0.65rem;
  max-width: none;
}

.carta-precio {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .carta-item {
    width: clamp(180px, 70vw, 260px);
    height: clamp(220px, 85vw, 320px);
  }
  .carta-overlay {
    opacity: 0;
  }
  .carta-item.is-active .carta-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.65) 60%,
      transparent 100%
    );
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE FIXES GLOBALES
   ═══════════════════════════════════════════════════════════ */

/* ── Hero home: gradiente en mobile (contenido abajo, gente visible arriba) */
@media (max-width: 768px) {
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.12) 35%,
      rgba(0,0,0,0.72) 68%,
      rgba(0,0,0,0.95) 100%
    );
  }
}

/* ── Overlays de hero: gradiente más agresivo en mobile ── */
@media (max-width: 768px) {
  .nos-hero-bg::after,
  .nos-fullimg-bg::after,
  .exp-hero-bg::after,
  .partners-hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.55) 50%,
      rgba(0,0,0,1.0) 72%,
      rgba(0,0,0,1.0) 100%
    );
  }
  /* Fondo sólido para evitar gap entre imagen y siguiente sección */
  .nos-fullimg,
  .nos-hero {
    background: var(--noir);
  }
}

/* ── Experiencias hero: mover imagen a la izquierda en mobile ── */
@media (max-width: 768px) {
  .exp-hero-bg {
    background-position: 20% center;
  }
}

/* ── Almuerzo section: rediseño mobile (formato galería) ─────── */
@media (max-width: 900px) {
  .almuerzo-exp-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
  }

  /* Fotos primero, info después — scroll horizontal contenido */
  .almuerzo-photos-wrapper {
    order: -1;
  }

  .almuerzo-exp-photos {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }
  .almuerzo-exp-photos::-webkit-scrollbar { display: none; }

  .almuerzo-exp-photos img {
    flex: 0 0 auto;
    width: clamp(220px, 70vw, 320px);
    height: clamp(160px, 52vw, 240px);
    border-radius: 0;
    scroll-snap-align: start;
    cursor: pointer;
    object-fit: cover;
  }

  /* Info section debajo de las fotos */
  .almuerzo-exp-info {
    position: static;
    margin-top: 2.5rem;
  }

  /* Solo mostrar "Reservar mesa" en mobile */
  .almuerzo-phone-btn {
    display: none;
  }

  .almuerzo-ctas {
    justify-content: flex-start;
  }
}

/* ── Reseñas ──────────────────────────────────────────────── */
.reviews-section {
  background: var(--noir-mid);
  padding-block: 5rem;
  text-align: center;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.reviews-stars { color: var(--ochre); font-size: 1.1rem; letter-spacing: 0.08em; }
.reviews-score { color: var(--cream); font-family: var(--font-serif); font-size: 1.35rem; }
.reviews-count { color: rgba(237,237,237,0.38); font-size: 0.8rem; letter-spacing: 0.06em; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 1.75rem;
  text-align: left;
}

.review-card-stars { color: var(--ochre); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.85rem; }

.review-card-text {
  color: var(--cream-dim);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.review-card-author {
  color: rgba(237,237,237,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reviews-cta-link {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--ochre);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid rgba(150,123,56,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.reviews-cta-link:hover { color: var(--cream); border-color: rgba(237,237,237,0.3); }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── Mapa ─────────────────────────────────────────────────── */
.map-section {
  background: var(--noir-mid);
  padding-block: 3rem 0;
}

.map-section .container { max-width: 860px; text-align: center; }

.map-section h3 {
  color: var(--cream-dim);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 7;
  border: none;
  border-radius: 4px;
  display: block;
  filter: grayscale(0.3);
}

/* ── Botón flotante WhatsApp ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.wa-float--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ── Activaciones teaser (homepage) ─────────────────────── */
.activaciones-teaser {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(0.25rem, 0.5vw, 0.5rem);
  overflow: hidden;
}
.activaciones-teaser .nos-fullimg-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.15) 42%,
    rgba(0,0,0,0.72) 57%,
    rgba(0,0,0,1.0) 65%,
    rgba(0,0,0,1.0) 100%
  );
}
.activaciones-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.act-teaser-card {
  background: var(--noir-light);
  border: 1px solid var(--ochre-dim);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color var(--duration) var(--ease);
}
.act-teaser-card:hover { border-color: var(--ochre); }
.act-teaser-dia {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre-light);
}
.act-teaser-card strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
}
.act-teaser-card p {
  font-size: 0.83rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .activaciones-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .activaciones-teaser-grid { grid-template-columns: 1fr; }
}

/* ── Nuestras marcas (nosotros) ──────────────────────────── */
#marcas {
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}
#marcas .nos-fullimg-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.08) 30%,
    rgba(0,0,0,0.35) 52%,
    rgba(0,0,0,0.75) 68%,
    rgba(0,0,0,1.0) 82%,
    rgba(0,0,0,1.0) 100%
  );
}
.nos-marcas-cuerpo {
  background: var(--noir);
  padding-top: 0;
  padding-bottom: var(--section-py);
}
.nos-marcas-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.nos-expand-panel {
  display: none;
  margin-top: 2.5rem;
}
.nos-expand-panel.is-open { display: block; }

/* ── Activaciones grid — top margin ─────────────────────── */
.activaciones-grid { margin-top: 3rem; }

/* ── Flechas scroll carta ────────────────────────────────── */
.carta-track-wrapper { position: relative; }
.carta-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.65);
  border: 1px solid var(--ochre-dim);
  color: var(--cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.carta-arrow:hover { background: var(--ochre); border-color: var(--ochre); }
.carta-arrow--prev { left: 0.5rem; }
.carta-arrow--next { right: 0.5rem; }
@media (max-width: 767px) {
  .carta-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* ══════════════════════════════════════════════════════
   P10 — Estilos migrados desde inline HTML a clases
   ══════════════════════════════════════════════════════ */

/* ── Formularios (compartidos nosotros + experiencias) ── */
.btn-submit-full { width: 100%; margin-top: 0.25rem; }

.form-success p {
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  max-width: none;
}

.form-intro {
  color: var(--cream-dim);
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 48ch;
  margin-inline: auto;
}

.nos-expand-panel .form-wrapper {
  margin-top: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

/* ── Nosotros — Marcas ─────────────────────────────── */
.nos-marcas-desc {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}

.nos-expand-panel .logos-section-header { margin-top: 2.5rem; }
.logos-section-proveedores { margin-top: 3rem; }

/* ── Medios de pago ─────────────────────────────────── */
.medios-pago-section .container { position: relative; z-index: 1; }

.medios-pago-section .section-header p {
  text-align: center;
  margin-inline: auto;
  margin-top: 1rem;
  max-width: 60ch;
}

.medios-pago-card .label {
  margin-top: 1.75rem;
  display: block;
  text-align: center;
}

.medios-pago-logo-sm { height: 48px; width: auto; object-fit: contain; margin-bottom: 0.5rem; }
.medios-pago-logo-md { height: 56px; width: auto; object-fit: contain; }
.medios-pago-logo-lg { height: 80px; width: auto; object-fit: contain; }

/* ── Home — Activaciones teaser ─────────────────────── */
.activaciones-teaser-desc {
  max-width: 50ch;
  margin-inline: auto;
  margin-top: 0.75rem;
  color: var(--cream-dim);
  text-align: center;
}

.activaciones-teaser-cta { text-align: center; margin-top: 2rem; }

/* ── Carta ──────────────────────────────────────────── */
.carta-intro-header { text-align: center; }
.carta-intro-header h2 { margin-bottom: 1.25rem; }
.carta-intro-header p { max-width: 62ch; margin-inline: auto; color: var(--cream-dim); }
.carta-intro-cta { margin-top: 1.5rem; }

.carta-pizza-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 0 1rem;
  gap: 1rem;
}

.carta-pizza-cta p {
  color: rgba(237, 237, 237, 0.38);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  margin: 0;
  max-width: none;
}

.carta-final { margin-top: 4rem; padding-bottom: var(--section-py); }

.carta-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.carta-final-inner p {
  color: var(--cream-dim);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
  margin: 0;
  max-width: none;
}

.btn-carta-completa { font-size: 1rem; padding-inline: 2.5rem; }

/* ── Experiencias ───────────────────────────────────── */
#activaciones { background: var(--noir); padding-block: var(--section-py); }

#activaciones .section-header p {
  text-align: center;
  margin-inline: auto;
  margin-top: 0.75rem;
  max-width: 55ch;
}

.activaciones-cta { text-align: center; margin-top: 3rem; padding-bottom: 0.5rem; }

.eventos-section .section-header p {
  text-align: center;
  margin-inline: auto;
  margin-top: 1rem;
  max-width: 65ch;
}

.exp-galeria .section-header { margin-bottom: 2.5rem; }

.club-label-ochre { color: var(--ochre); }
.club-disponible-label { display: block; margin-bottom: 1.25rem; color: var(--ochre); }
.club-qr { width: 260px; height: 260px; }
.club-scan-label { display: block; text-align: center; margin-top: 1rem; color: var(--ochre); }

/* ── Almuerzo photos wrapper (flechas solo en mobile) ── */
.almuerzo-photos-wrapper {
  position: relative;
}

.almuerzo-arrow {
  display: none;
}

@media (max-width: 900px) {
  .almuerzo-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid var(--ochre-dim);
    color: var(--cream);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    transition: background var(--duration) var(--ease);
  }
  .almuerzo-arrow:hover { background: var(--ochre); }
  .almuerzo-arrow--prev { left: 0.4rem; }
  .almuerzo-arrow--next { right: 0.4rem; }
}

/* ══════════════════════════════════════════════════════
   P13 — Imágenes responsivas: versión 800w en mobile
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero .hero-bg {
    background-image: url('/assets/img/hero-restaurant-800.webp') !important;
  }
  .nos-hero-bg {
    background-image: url('/assets/img/nosotros-hero-pizza-800.webp') !important;
  }
  .exp-hero-bg {
    background-image: url('/assets/img/events-hero-800.webp') !important;
  }
  .page-hero .hero-bg {
    background-image: url('/assets/img/tiradito-pomelo-hero-800.webp') !important;
  }
}
