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

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

:root {
  /* Pistacho pastel */
  --green:       #B8D98A;
  --green-dark:  #7AAD50;
  --green-mid:   #A0C870;
  --green-light: #D6EDAE;
  --green-pale:  #F2F9E6;
  --green-card:  #EAF5D2;

  /* Neutros cálidos */
  --cream:   #FDFAF4;
  --warm:    #F5EDD8;
  --dark:    #1E2A10;
  --text:    #2D3B1A;
  --muted:   #6B7A56;
  --white:   #ffffff;

  --radius:    20px;
  --radius-sm: 12px;
  --shadow:    0 4px 20px rgba(50,80,20,0.10);
  --shadow-lg: 0 10px 40px rgba(50,80,20,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: var(--dark);
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(120,180,60,0.30);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  box-shadow: 0 6px 20px rgba(120,180,60,0.40);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease, padding .4s ease, height .4s ease;
}
.navbar.scrolled {
  background: rgba(253,250,244,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(50,80,20,0.10);
  padding: 0;
  height: 80px;
}
.navbar.scrolled .nav-inner {
  height: 80px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
}

/* === NAV LOGO === */
/* Todo transiciona con la MISMA duración y curva — simultáneo */
.nav-logo {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 201;
  width: 260px;
  height: 174px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
  transition: top .4s ease, left .4s ease, width .4s ease, height .4s ease, filter .4s ease;
}

.nav-logo .logo-full,
.nav-logo .logo-mini {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /* Las imágenes se ESCALAN con el container — width/height en % */
  transition: opacity .4s ease;
}

/* El logo grande llena el container al 100% */
.nav-logo .logo-full {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  border-radius: 16px;
  opacity: 1;
}

/* El logo mini también al 100% — cuando el container es chico, llena el container chico */
.nav-logo .logo-mini {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}

.navbar.scrolled .nav-logo {
  top: 8px;
  left: 14px;
  width: 148px;
  height: 64px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.navbar.scrolled .nav-logo .logo-full {
  opacity: 0;
  pointer-events: none;
}

.navbar.scrolled .nav-logo .logo-mini {
  opacity: 1;
  pointer-events: auto;
}
.logo-fallback {
  display: none;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -.02em;
}
.navbar.scrolled .logo-fallback { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity .2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.navbar.scrolled .nav-links a {
  color: var(--text);
  text-shadow: none;
}
.nav-links a:hover { opacity: .7; }

.btn-wa {
  background: #25D366 !important;
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-shadow: none !important;
  transition: background .2s, transform .15s !important;
}
.btn-wa:hover { background: #1da851 !important; opacity: 1 !important; transform: translateY(-2px); }

/* Botón cerrar dentro del nav: oculto en desktop */
.nav-close-row { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: background .3s, transform .3s, opacity .3s;
  transform-origin: center;
}
.navbar.scrolled .hamburger span { background: var(--dark); }

/* Hamburger → X cuando el menú está abierto */
.hamburger.open span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO — COLLAGE ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Grid de imágenes */
.collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}
.collage-item { overflow: hidden; }
.collage-item img,
.collage-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero:hover .collage-item img,
.hero:hover .collage-item video { transform: scale(1.04); }

/* Las 6 celdas: celda 1 ocupa las 2 filas de la col 1 */
.c1 { grid-column: 1; grid-row: 1 / 3; }
.c2 { grid-column: 2; grid-row: 1; }
.c3 { grid-column: 3; grid-row: 1; }
.c4 { grid-column: 2; grid-row: 2; }
.c5 { grid-column: 3; grid-row: 2; }
.c6 { display: none; } /* reserva por si agregan más fotos */

/* Overlay que unifica el collage */
.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,35,10,0.52) 0%,
    rgba(20,35,10,0.38) 50%,
    rgba(20,35,10,0.55) 100%
  );
  z-index: 1;
}

/* Card central sobre el collage */
.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(253,250,244,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 24px 24px 40px;
  text-align: center;
  max-width: 580px;
  width: calc(100% - 48px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.10);
  border: 1.5px solid rgba(255,255,255,0.7);
}

.hero-logo {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: block;
}
.hero-logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}
.hero-sub {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Flecha scroll */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s ease-in-out infinite;
  line-height: 0;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  background: var(--green-card);
  color: var(--green-dark);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tag-light {
  background: rgba(184,217,138,0.18);
  color: var(--green-light);
}

/* ===== NOSOTROS ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 14px;
}
.about-text p strong { color: var(--text); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.chip {
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ===== SECCIÓN HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-sub { color: var(--muted); font-size: 0.97rem; }
.section-sub a { color: var(--green-dark); font-weight: 700; }
.section-sub a:hover { text-decoration: underline; }

/* ===== MENÚ ===== */
.menu-section {
  padding: 100px 0;
  background: var(--green-pale);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.menu-card {
  background: var(--white);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.menu-icon { font-size: 2.4rem; margin-bottom: 12px; line-height: 1; }

/* Thumbnail foto en card */
.menu-thumb {
  margin: -32px -20px 18px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1.5px) calc(var(--radius) - 1.5px) 0 0;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.menu-card:hover .menu-thumb img { transform: scale(1.05); }
.menu-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.menu-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.menu-card {
  display: flex;
  flex-direction: column;
}

.menu-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== GALERÍA ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-sm); background: var(--warm); }
.gallery-item img,
.gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.07); }
/* item 1 ocupa 2 filas */
.gi-tall { grid-row: span 2; }
/* fila 3: los últimos 3 ítems llenan normalmente */

/* ===== RESEÑAS ===== */
.reviews-section {
  padding: 100px 0;
  background: var(--green-pale);
}
/* Carrusel de reseñas — full width, sale del container */
.reviews-carousel {
  overflow: hidden;
  margin-top: 16px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 16px 0 20px;
  animation: scroll-reviews 35s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  width: clamp(380px, 30vw, 520px);
  flex-shrink: 0;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--green-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
}
.review-stars {
  color: #F4B400;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.review-name {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--dark);
}
.review-source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: white;
  border: 2px solid #dadce0;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
  text-decoration: none;
}
.btn-google:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .review-card { width: 78vw; padding: 22px 24px; }
}

/* ===== CONTACTO ===== */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 36px;
  line-height: 1.2;
}
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  font-size: 1.3rem;
  width: 46px; height: 46px;
  background: rgba(184,217,138,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 800; margin-bottom: 2px; }
.contact-item p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 4px; }
.contact-item a { color: var(--green-light); font-weight: 700; font-size: 0.88rem; }
.contact-item a:hover { text-decoration: underline; }
.contact-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }

.contact-map {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-map iframe { display: block; }

.map-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-link {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px;
  border-radius: var(--radius);
  width: 100%; height: 100%;
  justify-content: center;
  transition: background .2s;
}
.map-link:hover { background: rgba(255,255,255,0.04); }
.map-icon { font-size: 2.8rem; }
.map-link strong { font-size: 1.1rem; font-weight: 800; }
.map-link span { color: rgba(255,255,255,0.40); font-size: 0.88rem; }

/* ===== FOOTER ===== */
.footer {
  background: #111a08;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-copy { color: rgba(255,255,255,0.28); font-size: 0.82rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  color: rgba(255,255,255,0.38);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ===== MODAL MENÚ ===== */
#menu-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#menu-modal.active { display: flex; }

#mm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 16, 0.7);
  backdrop-filter: blur(6px);
  animation: mm-fade-in .25s ease;
}

#mm-panel {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: 28px;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  animation: mm-slide-up .3s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
}

@keyframes mm-fade-in  { from { opacity: 0 } to { opacity: 1 } }
@keyframes mm-slide-up { from { opacity: 0; transform: translateY(32px) scale(.97) } to { opacity: 1; transform: none } }

#mm-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  background: rgba(20,20,20,0.72);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: background .2s, transform .2s;
}
#mm-close:hover { background: rgba(20,20,20,0.92); transform: scale(1.1); }

#mm-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  flex: 1;
}

/* Panel izquierdo — carrusel */
#mm-images {
  background: #111;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
#mm-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: none;
}
#mm-carousel-track {
  display: flex;
  height: 100%;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mm-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
.mm-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mm-slide video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Flechas */
.mm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: none;
  color: white;
  font-size: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
  line-height: 1;
}
.mm-arrow:hover { background: rgba(255,255,255,0.35); }
.mm-prev { left: 12px; }
.mm-next { right: 12px; }
/* Dots */
#mm-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.mm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.mm-dot.active {
  background: white;
  transform: scale(1.3);
}
.mm-img-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  padding: 40px;
  background: #1a1a1a;
}
.mm-img-placeholder span { font-size: 4rem; line-height: 1; }

/* Panel derecho — info */
#mm-info {
  padding: 44px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
#mm-icon { font-size: 2.6rem; line-height: 1; }
#mm-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

#mm-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}


/* Mobile */
@media (max-width: 640px) {
  #mm-body { grid-template-columns: 1fr; }
  #mm-images { min-height: 220px; max-height: 240px; }
  #mm-info { padding: 28px 24px; }
  #mm-title { font-size: 1.3rem; }
}

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
#lightbox.active {
  display: flex;
  animation: lb-in .2s ease;
}
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}
#lb-content img,
#lb-content video {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
#lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
#lb-close:hover { background: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .gallery-item, .gi-tall { grid-column: unset !important; grid-row: unset !important; aspect-ratio: 4/3; }
  .gallery-item img, .gallery-item video { height: 100%; }
  /* Collage en tablet: simplify */
  .collage { grid-template-columns: 1.5fr 1fr; grid-template-rows: repeat(3,1fr); }
  .c1 { grid-column:1; grid-row: 1/3; }
  .c2 { grid-column:2; grid-row:1; }
  .c3 { grid-column:2; grid-row:2; }
  .c4 { grid-column:1/3; grid-row:3; }
  .c5 { display:none; }
}

@media (max-width: 768px) {
  .nav-logo { width: 115px !important; height: 77px !important; top: 10px !important; left: 10px !important; }
  .nav-logo .logo-full { width: 115px !important; height: 77px !important; }
  .nav-logo .logo-mini { width: 90px !important; height: 40px !important; }
  .navbar.scrolled .nav-logo { width: 90px !important; height: 40px !important; }
  .navbar.scrolled { height: 62px !important; }
  .navbar.scrolled .nav-inner { height: 62px !important; }
  .hamburger { display: flex; }

  /* ── Overlay full-screen con clip-path circular desde el hamburger ── */
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    /* Empieza como un punto en la esquina superior derecha (donde está el hamburger) */
    clip-path: circle(0% at calc(100% - 34px) 34px);
    transition: clip-path .52s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    z-index: 300;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.open {
    clip-path: circle(170% at calc(100% - 34px) 34px);
    pointer-events: auto;
  }

  /* Hamburger se oculta cuando el nav abre */
  .nav-links.open ~ .hamburger { opacity: 0; pointer-events: none; transition: opacity .15s; }

  /* Ítems: ocultos por defecto, aparecen en cascada al abrir */
  .nav-links li {
    width: 100%; text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .15s, transform .15s; /* cierre rápido */
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .32s ease, transform .32s ease;
  }
  /* Stagger: cada ítem aparece 50ms después del anterior */
  .nav-links.open li:nth-child(1) { transition-delay: .18s; }
  .nav-links.open li:nth-child(2) { transition-delay: .24s; }
  .nav-links.open li:nth-child(3) { transition-delay: .29s; }
  .nav-links.open li:nth-child(4) { transition-delay: .34s; }
  .nav-links.open li:nth-child(5) { transition-delay: .39s; }
  .nav-links.open li:nth-child(6) { transition-delay: .44s; }
  .nav-links.open li:nth-child(7) { transition-delay: .49s; }

  /* Botón X — esquina superior derecha del overlay */
  .nav-close-row {
    display: flex;
    position: absolute;
    top: 20px; right: 20px;
    width: auto !important;
  }
  .nav-close-btn {
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px; height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform .15s;
  }
  .nav-close-btn:active { transform: scale(0.9); }

  /* Links */
  .nav-links a {
    color: var(--dark) !important;
    text-shadow: none !important;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 16px 40px;
    display: block;
    letter-spacing: -.01em;
  }
  .nav-links a:active { opacity: .55; }
  .btn-wa { font-size: 1.05rem; padding: 16px 32px; margin-top: 8px; border-radius: 50px; }

  /* Collage mobile: 2 cols */
  .collage { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,1fr); }
  .c1 { grid-column:1; grid-row:1/3; }
  .c2 { grid-column:2; grid-row:1; }
  .c3 { grid-column:2; grid-row:2; }
  .c4 { grid-column:1/3; grid-row:3; }
  .c5, .c6 { display:none; }

  .hero-card { padding: 32px 28px 36px; }
  .hero-logo { width: 100%; height: auto; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { order: -1; }
  .about-img-deco { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-map { order: -1; }
  .map-placeholder { height: 240px; }

  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }

  .about, .menu-section, .gallery-section, .contact-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-card { padding: 28px 20px 32px; border-radius: 20px; }
  .hero-logo { width: 100%; height: auto; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .chips { justify-content: center; }
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--green-pale);
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-section .section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  margin-top: 12px;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: var(--green);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-item[open] .faq-q { color: var(--green-dark); }
.faq-a {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .faq-section { padding: 72px 0; }
  .faq-q { padding: 18px 20px; font-size: 0.92rem; }
  .faq-a { padding: 0 20px 20px; }
}
