/* ═══════════════════════════════════════════════════════════════════
   EME TOURS — hoja de estilos única
   1. Tokens          5. Hero            9.  Contacto / formulario
   2. Reset y base    6. Marquesina      10. Footer
   3. Utilidades      7. Tours           11. Página de tour
   4. Header y menú   8. Galería · Reseñas  12. Nosotros · FAQ · Utilidades
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Tokens ───────────────────────────────────────────────────── */
:root {
  --green-900: #0F231A;
  --green-800: #123022;
  --green-600: #1C6B47;
  --green-700: #0D3F28;
  --lime:      #C6EC74;
  --brand:     #189030;
  --brand-dark:#147c29;
  --cream:     #F5F8F2;
  --sage-100:  #E7EEDF;
  --sage-200:  #DDE6D8;
  --ink:       #0F231A;
  --ink-70:    #3C5147;
  --ink-55:    #4D6357;
  --ink-45:    #5E7268;
  --ink-35:    #7B8D82;

  --amber-bg:   rgba(214, 163, 43, .20);
  --amber-line: inset 0 -1.5px 0 rgba(160, 110, 12, .5);
  --amber-bg-d:   rgba(255, 196, 84, .15);
  --amber-line-d: inset 0 -1.5px 0 rgba(255, 196, 84, .5);

  --font: 'Valley Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shell: 1320px;
  --pad: clamp(18px, 4vw, 44px);
  --section-y: clamp(60px, 8.5vw, 120px);
  --header-h: 92px;
  --radius-lg: 28px;
  --radius: 22px;
  --radius-sm: 18px;
}

/* ── 2. Reset y base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, figure, blockquote, ul { margin: 0; padding: 0; }
ul { list-style: none; }

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

input, select, textarea { font: inherit; color: inherit; }

a { color: var(--green-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-700); }

::selection { background: var(--lime); color: var(--ink); }

:focus-visible { outline: 2px solid var(--green-600); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--cream);
  font-weight: 600;
}
.skip-link:focus { left: 12px; color: var(--cream); }

/* ── 3. Utilidades ───────────────────────────────────────────────── */
.shell { max-width: var(--shell); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--dark { background: var(--green-900); color: var(--cream); }

.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}
.section--dark .eyebrow, .eyebrow--light { color: var(--lime); }

.h1 { font-weight: 800; font-size: clamp(36px, 6.2vw, 84px); line-height: .96; letter-spacing: -.04em; text-wrap: balance; }
.h2 { font-weight: 700; font-size: clamp(32px, 5vw, 64px); line-height: 1; letter-spacing: -.035em; text-wrap: balance; }
.h3 { font-weight: 700; font-size: clamp(30px, 4.4vw, 54px); line-height: 1; letter-spacing: -.035em; }
.lede { font-size: clamp(16px, 1.9vw, 19px); line-height: 1.62; color: var(--ink-70); text-wrap: pretty; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--lime { background: var(--brand); color: #fff; box-shadow: 0 8px 28px rgba(24, 144, 48, .3); }
.btn--lime:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 16px 40px rgba(24, 144, 48, .42); }
.btn--dark { background: var(--green-900); color: var(--cream); }
.btn--dark:hover { background: var(--green-600); color: #fff; }
.btn--ghost { border: 1px solid rgba(15, 35, 26, .16); color: var(--ink); font-weight: 600; }
.btn--ghost:hover { background: var(--green-900); color: var(--cream); border-color: var(--green-900); }
.btn--block { width: 100%; }

.icon { width: 17px; height: 17px; fill: currentColor; }

/* Marcas de contenido pendiente. Añade la clase `no-ph` al <body>
   (o borra esta regla) cuando el cliente entregue los textos reales. */
.ph { background: var(--amber-bg); box-shadow: var(--amber-line); border-radius: 5px; padding: 0 4px; }
.ph--dark, .section--dark .ph { background: var(--amber-bg-d); box-shadow: var(--amber-line-d); }
.ph--block { display: inline-block; }
body.no-ph .ph { background: none; box-shadow: none; padding: 0; }
body.no-ph .ph-note { display: none; }

.ph-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #F6E7C4;
  color: #7A5A10;
  max-width: 38ch;
  font-size: 13px;
  line-height: 1.5;
}
.ph-note::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 2px; background: #B8891A; margin-top: 6px; }

/* Animaciones de entrada */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-tile] { opacity: 0; transform: translateY(26px) scale(.97); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-tile].is-in { opacity: 1; transform: none; }

@keyframes rise-in { from { transform: translateY(108%) rotate(2.5deg); } to { transform: translateY(0) rotate(0); } }
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@keyframes ring { 0% { transform: scale(1); opacity: .4; } 100% { transform: scale(1.85); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal], [data-tile] { opacity: 1; transform: none; }
}

/* ── 4. Header y menú móvil ──────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height .3s ease;
}
.site-header.is-stuck {
  background: rgba(245, 248, 242, .9);
  box-shadow: 0 1px 0 rgba(15, 35, 26, .09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.is-stuck .site-header__inner { height: 76px; }

.brand { display: flex; align-items: center; }
.brand__logo { height: 42px; width: auto; }
.brand__logo--dark { display: none; }
/* Sobre fondo claro (scroll o páginas internas) el logo pasa a su versión oscura */
.site-header.is-light .brand__logo--light,
.site-header.is-stuck .brand__logo--light { display: none; }
.site-header.is-light .brand__logo--dark,
.site-header.is-stuck .brand__logo--dark { display: block; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover { background: rgba(245, 248, 242, .14); color: #fff; }
.site-header.is-light .nav__link,
.site-header.is-stuck .nav__link { color: var(--ink); }
.site-header.is-light .nav__link:hover,
.site-header.is-stuck .nav__link:hover { background: rgba(28, 107, 71, .09); color: var(--green-700); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(245, 248, 242, .26);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: border-color .3s ease;
}
.site-header.is-light .lang-switch,
.site-header.is-stuck .lang-switch { border-color: rgba(15, 35, 26, .14); }
.lang-switch button {
  padding: 9px 15px;
  border-radius: 999px;
  color: rgba(245, 248, 242, .74);
  transition: background .25s ease, color .25s ease;
}
.site-header.is-light .lang-switch button,
.site-header.is-stuck .lang-switch button { color: var(--ink-45); }
.lang-switch button.is-on { background: var(--cream); color: var(--ink); }
.site-header.is-light .lang-switch button.is-on,
.site-header.is-stuck .lang-switch button.is-on { background: var(--green-900); color: var(--cream); }

.lang-switch--dark { border-color: rgba(245, 248, 242, .2); font-size: 14px; }
.lang-switch--dark button { color: rgba(245, 248, 242, .7); padding: 11px 18px; }
.lang-switch--dark button.is-on { background: var(--lime); color: var(--ink); }

.btn--invert { padding: 13px 22px; font-size: 14.5px; font-weight: 600; background: var(--cream); color: var(--ink); }
.btn--invert:hover { background: var(--green-600); color: #fff; }
.site-header.is-light .btn--invert,
.site-header.is-stuck .btn--invert { background: var(--green-900); color: var(--cream); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(245, 248, 242, .26);
  transition: border-color .3s ease;
}
.burger span { display: block; width: 19px; height: 1.6px; background: var(--cream); box-shadow: 0 6px 0 var(--cream), 0 -6px 0 var(--cream); transition: background .3s ease, box-shadow .3s ease; }
.site-header.is-light .burger, .site-header.is-stuck .burger { border-color: rgba(15, 35, 26, .14); }
.site-header.is-light .burger span, .site-header.is-stuck .burger span { background: var(--ink); box-shadow: 0 6px 0 var(--ink), 0 -6px 0 var(--ink); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--green-900);
  color: var(--cream);
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; height: 60px; flex: none; }
.mobile-menu__close { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; border: 1px solid rgba(245, 248, 242, .2); font-size: 24px; line-height: 1; }
.mobile-menu__nav { margin-top: 28px; display: flex; flex-direction: column; }
.mobile-menu__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 15px 0;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -.02em;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 248, 242, .12);
}
.mobile-menu__item:hover { color: var(--lime); }
.mobile-menu__group { border-bottom: 1px solid rgba(245, 248, 242, .12); }
.mobile-menu__group .mobile-menu__item { border-bottom: 0; }
.mobile-menu__toggle { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.mobile-menu__plus {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(245, 248, 242, .22);
  font-size: 16px;
  color: var(--lime);
  transition: transform .35s var(--ease), background .25s ease, color .25s ease;
}
.mobile-menu__toggle[aria-expanded="true"] .mobile-menu__plus { transform: rotate(45deg); background: var(--lime); color: var(--ink); }
.mobile-menu__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: grid-template-rows .4s var(--ease), opacity .3s ease, padding-bottom .4s var(--ease);
}
.mobile-menu__panel.is-open { grid-template-rows: 1fr; opacity: 1; padding-bottom: 14px; }
.mobile-menu__panel-inner { min-height: 0; overflow: hidden; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__tour { display: flex; align-items: center; gap: 14px; padding: 8px 0; text-align: left; color: var(--cream); font-weight: 600; font-size: 19px; letter-spacing: -.015em; }
.mobile-menu__tour img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; opacity: .9; }
.mobile-menu__foot { margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(245, 248, 242, .12); flex: none; display: flex; }

/* ── 5. Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(80svh, 880px);
  height: auto;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-900);
}
.hero__media { position: absolute; inset: -10% 0 0; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(1.08) contrast(1.06); }
.hero__veil { position: absolute; inset: 0; background: rgba(18, 48, 34, .4); }
.hero__grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18, 48, 34, .5) 0%, rgba(18, 48, 34, .08) 26%, rgba(16, 42, 30, .6) 56%, rgba(15, 35, 26, .95) 100%); }
.hero__inner { position: relative; width: 100%; max-width: var(--shell); margin: 0 auto; padding: clamp(120px, 15svh, 164px) var(--pad) clamp(64px, 13svh, 150px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(198, 236, 116, .42);
  background: rgba(15, 35, 26, .5);
  margin-bottom: 24px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }

.hero__title {
  margin: 0;
  max-width: 15ch;
  font-weight: 800;
  font-size: clamp(34px, min(8.2vw, 10svh), 112px);
  line-height: .94;
  letter-spacing: -.04em;
  color: var(--cream);
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(9, 20, 15, .4);
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: inline-block; animation: rise-in 1.15s var(--ease) both; }
.hero__title .line:nth-child(1) > span { animation-delay: .05s; }
.hero__title .line:nth-child(2) > span { animation-delay: .14s; }

.hero__lead { margin-top: clamp(12px, 2svh, 22px); max-width: 44ch; font-size: clamp(14.5px, min(2vw, 2.4svh), 20px); line-height: 1.45; color: rgba(245, 248, 242, .88); text-wrap: pretty; }
.hero__cta { margin-top: clamp(18px, 3.4svh, 32px); }
.hero__cta .btn { padding: 17px 28px; font-size: 15.5px; }

/* ── 6. Marquesina ───────────────────────────────────────────────── */
.marquee { background: var(--sage-100); overflow: hidden; padding: 15px 0; border-top: 1px solid rgba(15, 35, 26, .1); border-bottom: 1px solid rgba(15, 35, 26, .1); }
.marquee__track { display: flex; width: max-content; will-change: transform; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 40px; padding-right: 40px; }
.marquee__item { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #4A5F54; white-space: nowrap; }
.marquee__dot { color: var(--green-600); font-size: 9px; }

/* ── 7. Tours ────────────────────────────────────────────────────── */
.section__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: clamp(32px, 4.5vw, 52px); }
.section__head > div:first-child { flex: 1 1 420px; }
.section__head p { flex: 0 1 320px; font-size: 16px; line-height: 1.6; color: var(--ink-55); text-wrap: pretty; }

.grid { display: grid; gap: clamp(14px, 1.8vw, 20px); }
.grid--tours { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); grid-auto-rows: 1fr; }
.grid--cards { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); grid-auto-rows: 1fr; }
.grid--reviews { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); grid-auto-rows: 1fr; }
.grid--gallery { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 12px; }
.grid--photos { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 12px; }

.tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(15, 35, 26, .06), 0 14px 40px -30px rgba(15, 35, 26, .45);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: 0 1px 0 rgba(15, 35, 26, .06), 0 28px 60px -32px rgba(15, 35, 26, .5); }
.tour-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage-200); flex: none; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.06); }
.tour-card__body { padding: 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.tour-card__title { font-weight: 700; font-size: 23px; line-height: 1.12; letter-spacing: -.025em; }
.tour-card__lead { font-size: 14.5px; line-height: 1.55; color: var(--ink-55); text-wrap: pretty; flex: 1; }
.tour-card__foot { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 4px; padding-top: 15px; border-top: 1px solid rgba(15, 35, 26, .09); }
.tour-card__more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--green-600); }

.why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 248, 242, .14);
  background: rgba(245, 248, 242, .04);
  transition: background .35s ease, border-color .35s ease, transform .35s var(--ease);
}
.why-card:hover { background: rgba(245, 248, 242, .08); border-color: rgba(198, 236, 116, .35); transform: translateY(-4px); }
.why-card { transition: background .35s ease, border-color .35s ease, opacity .8s var(--ease), transform .8s var(--ease); }
.why-card:hover { background: var(--lime); border-color: var(--lime); }
.why-card:hover .why-card__n, .why-card:hover .why-card__title { color: var(--ink); }
.why-card:hover p { color: rgba(15, 35, 26, .8); }
.why-card:hover p.ph { background: none; box-shadow: none; }
.why-card__n { font-weight: 700; font-size: 32px; color: var(--lime); letter-spacing: -.03em; line-height: 1; transition: color .35s ease; }
.why-card__title { margin: 16px 0 10px; font-weight: 600; font-size: 19px; letter-spacing: -.02em; transition: color .35s ease; }
.why-card p { font-size: 14.5px; line-height: 1.6; color: rgba(245, 248, 242, .68); text-wrap: pretty; transition: color .35s ease, background .35s ease; }

/* ── 8. Galería y reseñas ────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button {
  padding: 10px 17px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(15, 35, 26, .16);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filters button:hover { background: rgba(28, 107, 71, .08); }
.filters button.is-on { background: var(--green-900); color: var(--cream); border-color: var(--green-900); }

.tile { padding: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--sage-200); aspect-ratio: 4 / 3; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile:hover img { transform: scale(1.06); }

.gallery-more { display: flex; justify-content: center; margin-top: 22px; }

.review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 35, 26, .06), 0 14px 40px -32px rgba(15, 35, 26, .45);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(15, 35, 26, .06), 0 26px 54px -30px rgba(15, 35, 26, .5); }
.stars { display: inline-flex; gap: 2px; color: var(--green-600); }
.rating { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: #EFF5E7; }
.rating > span:last-child { font-size: 13.5px; font-weight: 600; color: var(--green-600); }
.tour-reviews__head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 22px; }
.tour-reviews__head .h3 { font-size: clamp(24px, 3.4vw, 40px); }

/* Slogan del hero */
.hero__slogan {
  margin: 0 0 10px;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(17px, 2.4vw, 26px);
  letter-spacing: -.015em;
  color: var(--lime);
  text-shadow: 0 2px 20px rgba(9, 20, 15, .5);
}

/* Carrusel de fotos del tour */
.car { position: relative; }
.car__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.car__track::-webkit-scrollbar { display: none; }
.car__slide {
  flex: 0 0 clamp(240px, 32vw, 380px);
  scroll-snap-align: start;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sage-200);
  aspect-ratio: 4 / 3;
}
.car__slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.car__slide:hover img { transform: scale(1.05); }
.car__nav { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.car__nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 35, 26, .18);
  display: grid;
  place-items: center;
  font-size: 17px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.car__nav button:hover { background: var(--green-900); color: var(--cream); border-color: var(--green-900); }
.car__hint { font-size: 13px; color: var(--ink-35); margin-left: 4px; }

/* Selector de idioma del tour */
.form__seg { display: flex; gap: 8px; }
.form__segbtn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 35, 26, .14);
  background: #fff;
  color: var(--ink-45);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.form__segbtn:hover { border-color: var(--green-600); }
.form__segbtn input { position: absolute; opacity: 0; width: 0; height: 0; }
.form__segbtn.is-on { background: var(--green-900); border-color: var(--green-900); color: var(--cream); }
.review blockquote { font-weight: 500; font-size: 18.5px; line-height: 1.4; letter-spacing: -.015em; text-wrap: pretty; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(15, 35, 26, .09); }
.review__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green-900); color: var(--lime); display: grid; place-items: center; font-weight: 700; font-size: 13px; flex: none; }
.review__name { display: block; font-size: 14.5px; font-weight: 600; }
.review__meta { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-35); margin-top: 3px; }

/* ── 9. Contacto y formulario ────────────────────────────────────── */
.contact { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 72px); align-items: flex-start; }
.contact__intro { flex: 1 1 420px; }
.contact__intro .h2 { max-width: 18ch; font-weight: 800; line-height: .97; }
.contact__intro > p { margin: 18px 0 32px; max-width: 40ch; font-size: 16.5px; line-height: 1.6; color: rgba(245, 248, 242, .74); text-wrap: pretty; }

.contact__list { display: flex; flex-direction: column; gap: 10px; max-width: 460px; }
/* Datos de contacto como píldoras con icono */
.contact__pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid rgba(245, 248, 242, .16);
  background: rgba(245, 248, 242, .05);
  color: var(--cream);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
a.contact__pill:hover { background: rgba(198, 236, 116, .14); border-color: rgba(198, 236, 116, .5); color: var(--cream); transform: translateX(3px); }
.contact__pill span:last-child { word-break: break-word; }
.contact__pill--plain { font-weight: 500; }
.contact__ico {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(198, 236, 116, .14);
  color: var(--lime);
  display: grid;
  place-items: center;
}
.contact__ico .icon { width: 17px; height: 17px; }

/* Bloque Nosotros dentro de "Por qué EME TOURS" */
.why-intro { max-width: 760px; }
.why-intro__lead { margin-top: 20px; max-width: 52ch; font-size: clamp(15.5px, 1.8vw, 18px); line-height: 1.6; color: rgba(245, 248, 242, .74); text-wrap: pretty; }
.about-inline__pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.about-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 248, 242, .18);
  background: rgba(245, 248, 242, .05);
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.about-pill:hover { background: rgba(198, 236, 116, .12); border-color: rgba(198, 236, 116, .45); transform: translateY(-2px); }
.about-pill strong { font-weight: 700; font-size: 16.5px; letter-spacing: -.02em; color: var(--lime); order: 2; }
.about-pill > span { order: 1; }
.about-pill span { font-size: 13px; font-weight: 500; color: rgba(245, 248, 242, .66); white-space: nowrap; }
.about-inline__photos { display: flex; align-items: stretch; gap: clamp(10px, 1.6vw, 16px); margin-top: clamp(32px, 4.5vw, 48px); }
.about-inline__photos img {
  flex: 1;
  min-width: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: var(--green-600);
  filter: saturate(.95);
  transition: transform .7s var(--ease), filter .5s ease;
}
.about-inline__photos img:hover { transform: translateY(-6px) scale(1.02); filter: saturate(1.1); }


/* Preguntas en la home */
.faq--home { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.faq--home .faq__intro h2 { max-width: 16ch; }
.contact__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(245, 248, 242, .14);
  color: var(--cream);
}
.contact__row:last-child { border-bottom: 1px solid rgba(245, 248, 242, .14); }
a.contact__row:hover { color: var(--lime); }
.contact__label { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(245, 248, 242, .5); margin-bottom: 5px; }
.contact__value { font-weight: 600; font-size: 20px; letter-spacing: -.02em; word-break: break-word; }
.contact__sub { display: block; font-size: 14px; color: rgba(245, 248, 242, .62); margin-top: 4px; }
.contact__arrow { font-size: 17px; color: var(--lime); }

.form {
  flex: 1 1 400px;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 24px 70px -40px rgba(0, 0, 0, .6);
  padding: clamp(22px, 3.4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__row { display: flex; flex-wrap: wrap; gap: 14px; }
.form__field { display: flex; flex-direction: column; gap: 7px; flex: 1 1 190px; }
.form__field--wide { flex-basis: 100%; }
.form__label { font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-35); }
.form input, .form select, .form textarea {
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 35, 26, .14);
  background: #fff;
  font-size: 15.5px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form select { appearance: none; }
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(28, 107, 71, .14); }
.form__submit { margin-top: 4px; }
.form__submit .btn { padding: 17px; }

.sent {
  flex: 1 1 400px;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  box-shadow: 0 24px 70px -40px rgba(0, 0, 0, .6);
}
.sent__check { width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; font-size: 24px; font-weight: 700; }
.sent h3 { font-weight: 700; font-size: clamp(22px, 2.8vw, 30px); line-height: 1.08; letter-spacing: -.03em; }
.sent p { margin: 14px auto 24px; max-width: 38ch; font-size: 15.5px; line-height: 1.6; color: var(--ink-45); text-wrap: pretty; }
.sent__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ── 10. Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--sage-100); color: var(--ink); border-top: 1px solid rgba(15, 35, 26, .1); }
.site-footer__inner { max-width: var(--shell); margin: 0 auto; padding: clamp(44px, 6vw, 76px) var(--pad) 26px; }
.site-footer__cols { display: flex; flex-wrap: wrap; gap: clamp(26px, 4vw, 64px); justify-content: space-between; }
.site-footer__brand { flex: 1 1 280px; max-width: 34ch; }
.site-footer__brand img { margin-bottom: 16px; }
.site-footer__brand p { font-size: 15px; line-height: 1.6; color: var(--ink-70); text-wrap: pretty; }
.site-footer__col { flex: 0 1 200px; }
.site-footer__col--contact { flex: 0 1 300px; }
.site-footer .eyebrow { color: #4A5F54; font-size: 11px; letter-spacing: .16em; margin-bottom: 14px; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.site-footer__links a { font-size: 15px; color: var(--ink-70); text-align: left; }
.site-footer__links a { transition: color .2s ease, transform .25s var(--ease); }
.site-footer__links a:hover { color: var(--green-600); transform: translateX(3px); }
.site-footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--ink-70); }
.site-footer__contact > a, .site-footer__contact > span { display: flex; align-items: center; gap: 11px; }
.foot-ico {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(15, 35, 26, .14);
  color: var(--green-600);
  display: grid;
  place-items: center;
}
.foot-ico .icon { width: 15px; height: 15px; }
.site-footer__contact > a { transition: color .2s ease, transform .25s var(--ease); }
.site-footer__contact > a:hover { transform: translateX(3px); }
.site-footer__contact > a:hover .foot-ico { border-color: var(--green-600); background: rgba(28, 107, 71, .08); }
.foot-ico { transition: border-color .25s ease, background .25s ease; }
.site-footer__contact a { color: var(--ink-70); word-break: break-word; }
.site-footer__contact a:hover { color: var(--green-600); }
.site-footer__bar {
  margin-top: clamp(30px, 4vw, 52px);
  padding-top: 20px;
  border-top: 1px solid rgba(15, 35, 26, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4A5F54;
}

.social { display: flex; gap: 10px; margin-top: 6px; }
.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(15, 35, 26, .16);
  color: var(--green-600);
  transition: background .2s ease, color .2s ease;
}
.social__link:hover { background: var(--green-900); color: var(--lime); transform: translateY(-2px); }
.social__link { transition: background .2s ease, color .2s ease, transform .25s var(--ease); }
.social__link .icon { width: 19px; height: 19px; }

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px -12px rgba(15, 35, 26, .7);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float .icon { width: 27px; height: 27px; }
.wa-float__ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(198, 236, 116, .8); animation: ring 2.8s ease-out infinite; }

/* ── 11. Página de tour ──────────────────────────────────────────── */
.tour-hero { position: relative; min-height: min(74vh, 660px); display: flex; align-items: flex-end; background: var(--green-900); overflow: hidden; }
.tour-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour-hero__grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 35, 26, .74) 0%, rgba(15, 35, 26, .36) 42%, rgba(15, 35, 26, .94) 100%); }
.tour-hero__inner { position: relative; width: 100%; max-width: var(--shell); margin: 0 auto; padding: 140px var(--pad) clamp(32px, 4.5vw, 52px); }
.tour-hero h1 { max-width: 18ch; font-weight: 800; font-size: clamp(36px, 6.6vw, 86px); line-height: .95; letter-spacing: -.04em; color: var(--cream); text-wrap: balance; text-shadow: 0 2px 26px rgba(9, 20, 15, .35); }
.tour-hero p { margin-top: 18px; max-width: 48ch; font-size: clamp(16px, 2vw, 20px); line-height: 1.5; color: rgba(245, 248, 242, .88); text-wrap: pretty; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(245, 248, 242, .3);
  background: rgba(15, 35, 26, .42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 22px;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s var(--ease);
}
.back-link:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); transform: translateX(-3px); }
.back-link span:first-child { font-size: 16px; line-height: 1; }
.facts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.facts span { padding: 10px 15px; border-radius: 999px; border: 1px solid rgba(245, 248, 242, .28); background: rgba(15, 35, 26, .4); font-size: 13.5px; font-weight: 500; color: var(--cream); }

.tour-body { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 64px); align-items: flex-start; padding-top: clamp(44px, 6.5vw, 92px); padding-bottom: clamp(52px, 7.5vw, 104px); }
.tour-body__main { flex: 1 1 420px; min-width: 0; }
.tour-body__main > .h2 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.04; letter-spacing: -.03em; margin-bottom: 18px; }
.tour-body__text { margin-bottom: 38px; font-size: clamp(16px, 1.9vw, 18.5px); line-height: 1.62; color: var(--ink-70); max-width: 62ch; text-wrap: pretty; }

.includes { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 40px); }
.includes__col { flex: 1 1 290px; }
.includes__col--no { flex: 0 1 250px; }
.includes .eyebrow { font-size: 11.5px; letter-spacing: .18em; margin-bottom: 16px; }
.includes .eyebrow--no { color: #A2564A; }
.includes ul { display: flex; flex-direction: column; gap: 10px; }
.includes li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; color: #243C31; }
.includes li::before {
  content: "✓";
  flex: none;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 10.5px; font-weight: 700;
  margin-top: 3px;
}
.includes__col--no li { font-size: 15px; color: var(--ink-45); }
.includes__col--no li::before { content: "×"; background: none; border: 1px solid rgba(15, 35, 26, .18); font-weight: 400; }

.plan { margin-top: clamp(40px, 5.5vw, 68px); }
.plan .eyebrow { font-size: 11.5px; letter-spacing: .18em; margin-bottom: 20px; }
.plan__step { display: flex; gap: clamp(14px, 3vw, 30px); padding: 20px 0; border-top: 1px solid rgba(15, 35, 26, .1); }
.plan-note {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #EFF5E7;
  border: 1px solid rgba(28, 107, 71, .18);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.plan-note__ico {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}
.plan-note strong { display: block; font-weight: 700; font-size: 15.5px; letter-spacing: -.015em; margin-bottom: 6px; }
.plan-note p { font-size: 14.5px; line-height: 1.58; color: var(--ink-70); max-width: 62ch; text-wrap: pretty; }

.plan__time { flex: none; width: 62px; font-size: 13px; color: var(--green-600); padding-top: 3px; height: fit-content; }
.plan__step h3 { margin-bottom: 5px; font-weight: 600; font-size: 18.5px; letter-spacing: -.02em; }
.plan__step p { font-size: 15px; line-height: 1.55; color: var(--ink-45); max-width: 56ch; text-wrap: pretty; }

.booking { flex: 0 1 350px; position: sticky; top: 104px; }
.booking__card { border-radius: 26px; background: #fff; box-shadow: 0 1px 0 rgba(15, 35, 26, .06), 0 24px 60px -36px rgba(15, 35, 26, .5); padding: 26px; }
.booking__price { padding-bottom: 18px; border-bottom: 1px solid rgba(15, 35, 26, .09); }
.booking__price .form__label { display: block; }
.booking__price strong { display: block; font-weight: 700; font-size: 29px; letter-spacing: -.03em; line-height: 1.12; margin-top: 5px; }
.booking__price p { margin-top: 8px; font-size: 13.5px; line-height: 1.5; color: var(--ink-35); text-wrap: pretty; }
.booking__terms { margin: 18px 0 22px; display: flex; flex-direction: column; gap: 11px; }
.booking__terms li { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; }
.booking__terms span:first-child { color: var(--ink-35); }
.booking__terms span:last-child { font-weight: 600; text-align: right; }
.booking__card .btn + .btn { margin-top: 9px; }

.other-tours { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); grid-auto-rows: 1fr; gap: 14px; }
.other-tour {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(245, 248, 242, .05);
  border: 1px solid rgba(245, 248, 242, .12);
  color: var(--cream);
}
.other-tour__media { aspect-ratio: 16 / 10; overflow: hidden; flex: none; }
.other-tour__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.other-tour:hover .other-tour__media img { transform: scale(1.06); }
.other-tour__foot { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex: 1; font-weight: 600; font-size: 18px; letter-spacing: -.02em; }
.other-tour__foot span:last-child { color: var(--lime); font-size: 17px; }

/* ── 12. Nosotros, FAQ y varios ──────────────────────────────────── */
.page-head { padding-top: clamp(126px, 15vw, 196px); padding-bottom: clamp(40px, 6vw, 70px); }

.about { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px); margin-top: clamp(32px, 4.5vw, 54px); }
.about__text { flex: 1 1 380px; }
.about__text p + p { margin-top: 16px; }
.about__stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(15, 35, 26, .12); }
.about__stat strong { display: inline-block; font-weight: 700; font-size: 30px; letter-spacing: -.03em; }
.about__stat span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-35); margin-top: 5px; }
.about__photos { flex: 1 1 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.about__photos img { width: 100%; object-fit: cover; border-radius: 20px; background: var(--sage-200); aspect-ratio: 1; }
.about__photos img:first-child { aspect-ratio: 3 / 4; grid-row: span 2; }

.faq { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 72px); align-items: flex-start; padding-top: clamp(126px, 15vw, 196px); padding-bottom: var(--section-y); }
.faq__intro { flex: 1 1 300px; }
.faq__intro h1 { max-width: 16ch; font-size: clamp(32px, 4.8vw, 62px); line-height: .97; }
.faq__list { flex: 1 1 440px; min-width: 0; }
.faq__item { border-top: 1px solid rgba(15, 35, 26, .12); }
.faq__item[data-reveal] { transform: translateY(14px); }
.faq__q { transition: opacity .25s ease; }
.faq__q:hover { opacity: .72; }
.faq__list > :last-child { border-bottom: 1px solid rgba(15, 35, 26, .12); }
.faq__q { width: 100%; text-align: left; padding: 22px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; font-weight: 600; font-size: clamp(17px, 2vw, 20px); line-height: 1.3; letter-spacing: -.02em; }
.faq__plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(15, 35, 26, .16);
  display: grid; place-items: center;
  font-size: 15px;
  color: var(--green-600);
  transition: transform .35s var(--ease), background .25s ease;
}
.faq__q[aria-expanded="true"] .faq__plus { transform: rotate(45deg); background: var(--lime); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: grid-template-rows .4s var(--ease), opacity .3s ease, padding-bottom .4s var(--ease);
}
.faq__a.is-open { grid-template-rows: 1fr; opacity: 1; padding-bottom: 24px; }
.faq__a > div { min-height: 0; overflow: hidden; }
.faq__a p { max-width: 60ch; font-size: 15.5px; line-height: 1.62; color: var(--ink-45); text-wrap: pretty; }
.faq__cta { padding-top: 26px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(9, 20, 15, .96);
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-items: center;
  padding: clamp(56px, 7vw, 76px) clamp(12px, 3vw, 80px) clamp(18px, 3vw, 32px);
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
/* La foto entra completa: nunca se recorta arriba ni abajo */
.lightbox__stage { min-height: 0; min-width: 0; width: 100%; display: flex; align-items: center; justify-content: center; }
.lightbox img {
  /* Relación de aspecto original, siempre dentro de la pantalla */
  max-width: 100%;
  max-height: calc(100vh - 190px);
  max-height: calc(100dvh - 190px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  cursor: default;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, .8);
}
.lightbox__bar { display: flex; align-items: center; gap: 16px; margin-top: clamp(14px, 2.5vw, 22px); cursor: default; }
.lightbox__nav {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(245, 248, 242, .28);
  color: var(--cream);
  font-size: 19px;
  transition: background .2s ease, border-color .2s ease;
}
.lightbox__nav:hover { background: rgba(245, 248, 242, .16); border-color: rgba(245, 248, 242, .55); }
.lightbox__count { font-size: 13.5px; font-weight: 600; letter-spacing: .1em; color: rgba(245, 248, 242, .7); min-width: 74px; text-align: center; }
.lightbox__close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(245, 248, 242, .3); color: var(--cream); font-size: 24px; line-height: 1; }
.lightbox__close:hover { background: rgba(245, 248, 242, .14); }

@media (max-width: 560px) {
  .lightbox { padding: 62px 10px 20px; }
  .lightbox__nav { width: 52px; height: 52px; }
  .lightbox img { max-height: calc(100vh - 168px); max-height: calc(100dvh - 168px); }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 939px) {
  :root { --header-h: 76px; }
  .nav, .site-header__actions .lang-switch, .site-header__actions .btn--wa { display: none; }
  .burger { display: grid; }
  .booking { position: static; flex-basis: 100%; }
  .about__photos { grid-template-columns: 1fr 1fr; }
  .hero__inner { padding-top: clamp(96px, 13svh, 130px); }
  .tour-hero__inner { padding-top: 120px; }
  .page-head, .faq { padding-top: 116px; }
}

@media (max-width: 939px) {
  /* Objetivos táctiles de 44px como mínimo */
  .filters button { padding: 13px 18px; }
  .site-footer__links a { padding: 6px 0; }
  .site-footer__contact > a, .site-footer__contact > span { padding: 5px 0; }
  .contact__pill { padding: 16px 20px; }
  .faq__q { padding: 20px 0; }
}

@media (max-width: 560px) {
  .about__photos img:first-child { grid-row: auto; aspect-ratio: 1; }
  /* Las 3 fotos de Nosotros pasan a franja horizontal */
  .about-inline__photos { gap: 8px; }
  .about-inline__photos img { aspect-ratio: 3 / 4; }
  .section__head { gap: 16px; }
  .section__head p { flex-basis: 100%; }
  .hero__title { font-size: clamp(32px, 11vw, 52px); }
  .badge { font-size: 10.5px; letter-spacing: .1em; }
  .marquee__group { gap: 26px; padding-right: 26px; }
  .booking__card { padding: 22px; }
  .plan-note {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #EFF5E7;
  border: 1px solid rgba(28, 107, 71, .18);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.plan-note__ico {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}
.plan-note strong { display: block; font-weight: 700; font-size: 15.5px; letter-spacing: -.015em; margin-bottom: 6px; }
.plan-note p { font-size: 14.5px; line-height: 1.58; color: var(--ink-70); max-width: 62ch; text-wrap: pretty; }

.plan__time { width: 54px; font-size: 12.5px; }
  .site-footer__cols { gap: 30px; }
  .form__field { flex-basis: 100%; }
}

@media print {
  .site-header, .mobile-menu, .wa-float, .lightbox, .gallery-more, .filters { display: none !important; }
  body { background: #fff; }
}
