/* ====================================================================
   IBZJSB · V5 Editorial + atmósfera marina (MOCK standalone)
   Bundled: tokens + base + V5-specific + marine effects.
   Brief: .claude/proposals/ibzjsb-home-design-brief-2026-04-21.md
   ==================================================================== */

:root {
  /* Turquesa — brand equity del logo */
  --ijs-turquoise-50:  #E6F7F9;
  --ijs-turquoise-400: #5FD3DE;
  --ijs-turquoise-600: #00A3B4;
  --ijs-turquoise-900: #00555E;
  /* Navy — profundidad premium */
  --ijs-navy-400: #4A6B91;
  --ijs-navy-600: #1C3A5F;
  --ijs-navy-900: #0B2545;
  /* Coral — acento mediterráneo */
  --ijs-coral-50:  #FFEEEB;
  --ijs-coral-500: #FF8A7B;
  --ijs-coral-600: #FF6B5B;
  /* Gold — solo SuperPromo */
  --ijs-gold-50:  #FFF6E4;
  --ijs-gold-600: #F5B14E;
  /* Sand — neutros cálidos */
  --ijs-sand-50:  #FAF8F4;
  --ijs-sand-100: #F5F2EB;
  /* Ink */
  --ijs-ink-500:  #6B7280;
  --ijs-ink-900:  #1A1F2E;
  --ijs-white:    #FFFFFF;

  --ijs-font-display: 'Fraunces', ui-serif, Georgia, serif;
  --ijs-font-body:    'Inter', ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--ijs-font-body);
  color: var(--ijs-ink-900);
  background: #fafaf8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

.font-display {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.font-display-italic {
  font-family: var(--ijs-font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.eyebrow {
  font-family: var(--ijs-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ijs-turquoise-600);
  display: inline-block;
}
.eyebrow--gold { color: var(--ijs-gold-600); }
.eyebrow--white { color: rgba(255,255,255,0.75); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 40px; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 10px;
  transition: background-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
  white-space: nowrap;
}
/* Coral-600 (#FF6B5B) vs white da 2.7:1 — falla AA. Usamos coral-700 (#CC2B19)
   sobre blanco para 5.5:1 ✓. Hover vuelve a coral-600 (visualmente "se ilumina"). */
.btn--primary {
  color: #fff;
  background: var(--ijs-coral-700);
  box-shadow: 0 1px 2px rgba(204,43,25,0.25), 0 10px 24px -8px rgba(204,43,25,0.45);
}
.btn--primary:hover, a.btn--primary:hover, a.btn--primary:focus-visible { background: var(--ijs-coral-600); color: #fff; transform: translateY(-1px); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn--ghost-dark {
  color: var(--ijs-navy-900);
  border: 1.5px solid var(--ijs-navy-900);
}
.btn--ghost-dark:hover { background: var(--ijs-navy-900); color: white; }
.btn--ghost-light {
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--ghost-light:hover { background: white; color: var(--ijs-navy-900); border-color: white; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: white;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--ijs-coral-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reveal: visible por defecto. Solo se anima si JS añade .js-reveal al <html>.
   Patrón robusto que evita el flash invisible para bots/noscript/fullPage screenshots. */
.reveal { opacity: 1; transform: none; transition: opacity 700ms ease-out, transform 700ms ease-out; }
.js-reveal .reveal { opacity: 0; transform: translateY(20px); }
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
/* Above-the-fold (hero): visible desde el primer paint, NO espera al JS.
   Evita que el texto display (candidato LCP) arranque en opacity:0 → NO_LCP en Lighthouse. */
.js-reveal .cine-hero .reveal { opacity: 1; transform: none; }

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

.h1-hero { font-size: clamp(2.5rem, 5vw + 1rem, 5rem); line-height: 0.98; letter-spacing: -0.03em; }
.h2-section { font-size: clamp(1.9rem, 3vw + 0.75rem, 3.25rem); line-height: 1.04; letter-spacing: -0.022em; }
.h3-card { font-size: clamp(1.3rem, 1.2vw + 0.75rem, 1.65rem); line-height: 1.15; letter-spacing: -0.015em; }

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.brand-mark { width: auto; height: 32px; flex-shrink: 0; display: block; }
@media (min-width: 768px) { .brand-mark { height: 38px; } }
/* Anular el :visited global de typography.css que tiñe el link → SVG con currentColor. */
a.brand-lockup, a.brand-lockup:visited { color: inherit; }

/* ================ V5 Editorial cinematographic ================ */

/* HEADER — por defecto navy sobre blanco translúcido (páginas con hero claro).
   En `body.has-dark-hero` (home, singles zona/tour con featured image full-bleed)
   se invierte: transparente con texto blanco hasta que el usuario scrollea. */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color 260ms, backdrop-filter 260ms, color 260ms, border-color 260ms;
  border-bottom: 1px solid rgba(11,37,69,0.08);
  color: var(--ijs-navy-900);
  background: rgba(250,250,248,0.94);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
}
body.has-dark-hero .site-header:not(.is-scrolled) {
  color: white;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.site-header.is-scrolled {
  background: rgba(250,250,248,0.94);
  backdrop-filter: saturate(1.4) blur(14px);
  color: var(--ijs-navy-900);
  border-bottom-color: rgba(11,37,69,0.08);
}
.header-inner {
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .header-inner { height: 80px; } }

.nav-primary { display: none; gap: 2.25rem; font-size: 0.9rem; font-weight: 500; }
@media (min-width: 1024px) { .nav-primary { display: flex; align-items: center; } }
.nav-primary a {
  position: relative;
  padding-block: 6px;
  text-decoration: none;
  color: inherit;
  transition: color 180ms ease;
}
/* Underline coral animado en hover (top-level). Se ancla a 0 px del bottom y
   crece de izquierda a derecha. Sutil pero claramente visible. */
.nav-primary > a::after,
.nav-primary > .has-submenu > .has-submenu__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ijs-coral-600);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-primary > a:hover::after,
.nav-primary > a:focus-visible::after,
.nav-primary > .has-submenu:hover > .has-submenu__toggle::after,
.nav-primary > .has-submenu:focus-within > .has-submenu__toggle::after {
  transform: scaleX(1);
}
.nav-primary > a:hover,
.nav-primary > .has-submenu > .has-submenu__toggle:hover {
  color: var(--ijs-coral-600);
}
body.has-dark-hero .site-header:not(.is-scrolled) .nav-primary > a:hover,
body.has-dark-hero .site-header:not(.is-scrolled) .nav-primary > .has-submenu > .has-submenu__toggle:hover {
  color: var(--ijs-coral-500);
}

/* Submenu (1 nivel) — desktop dropdown CSS-only en hover/focus,
   mobile drawer todos los items planos (se gestiona desde el drawer). */
.nav-primary .has-submenu { position: relative; display: inline-flex; }
.nav-primary .has-submenu__toggle { display: inline-flex; align-items: center; gap: 0.3em; }
.nav-primary .has-submenu__caret { transition: transform 200ms ease; flex-shrink: 0; }
.nav-primary .has-submenu:hover .has-submenu__caret,
.nav-primary .has-submenu:focus-within .has-submenu__caret { transform: rotate(180deg); }
.nav-primary .submenu {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	display: flex;
	flex-direction: column;
	min-width: 14rem;
	padding: 0.6rem;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	border: 1px solid var(--ijs-sand-100);
	border-radius: 12px;
	box-shadow: 0 12px 28px -8px rgba(11, 37, 69, 0.18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
	z-index: 60;
}
/* Puente invisible que cubre el gap entre el toggle y el submenu — sin él el
   :hover se pierde al mover el cursor desde el item al dropdown y se cierra. */
.nav-primary .submenu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -16px;
	height: 16px;
	background: transparent;
}
.nav-primary .has-submenu:hover .submenu,
.nav-primary .has-submenu:focus-within .submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.nav-primary .submenu__link {
	padding: 0.55rem 0.85rem;
	color: var(--ijs-navy-900) !important;
	opacity: 1 !important;
	border-radius: 6px;
	font-size: 0.88rem;
	font-weight: 500;
	white-space: nowrap;
	transition: background 160ms ease, color 160ms ease, padding-left 160ms ease;
}
.nav-primary .submenu__link:hover,
.nav-primary .submenu__link:focus-visible {
	background: var(--ijs-coral-50);
	color: var(--ijs-coral-700) !important;
	padding-left: 1.05rem;
}

/* Drawer móvil — submenu plano indentado, sin dropdown. */
.drawer .has-submenu { display: contents; }
.drawer .has-submenu__caret { display: none; }
.drawer .submenu {
	display: contents;
}
.drawer .submenu__link {
	padding-left: 1.25em;
	font-size: 0.95em;
	opacity: 0.78;
}

.header-right { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .header-right { gap: 1.25rem; } }
.lang-switcher { display: none; font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; }
@media (min-width: 768px) { .lang-switcher { display: flex; align-items: center; gap: 0.45rem; } }
.lang-switcher span.is-active { border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }
/* Inactivos: en lugar de opacity 0.55 (rompía contrast 4.5:1), color sólido más
   tenue. En body.has-dark-hero (header transparente sobre hero oscuro) usamos
   blanco con opacidad mayor; en cabecera clara, gris navy explícito. */
.lang-switcher span:not(.is-active) { color: rgba(11, 37, 69, 0.78); }
body.has-dark-hero .site-header:not(.is-scrolled) .lang-switcher span:not(.is-active) {
	color: rgba(255, 255, 255, 0.85);
}
.hamburger { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Drawer móvil */
.drawer {
  position: fixed; inset: 0;
  background: var(--ijs-navy-900);
  color: white; z-index: 60;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer-inner { padding: 1.25rem 1.5rem 2.5rem; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.drawer nav a {
  display: block; padding: 1rem 0;
  font-family: var(--ijs-font-display);
  font-size: 1.6rem;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-lang { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; gap: 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.7; }
.drawer-lang span.is-active { color: var(--ijs-turquoise-400); }

/* HERO cinematographic */
.cine-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.cine-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-color: var(--ijs-navy-900);
}
.cine-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.04);
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.1) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) { .cine-hero__img { animation: none; } }

.cine-hero__yt {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
  opacity: 0; transition: opacity 0.6s ease;
}
.cine-hero__yt.is-loaded { opacity: 1; }
@media (min-width: 768px) {
  .cine-hero:has(.cine-hero__yt.is-loaded) .cine-hero__bg { opacity: 0; transition: opacity 0.6s ease; }
}
.cine-hero__yt iframe {
  position: absolute; top: 50%; left: 50%;
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.cine-hero__yt::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(11,37,69,0.15), rgba(11,37,69,0.55) 70%),
    linear-gradient(180deg, rgba(11,37,69,0.55) 0%, rgba(11,37,69,0.1) 30%, rgba(11,37,69,0) 55%, rgba(11,37,69,0.75) 100%);
}
@media (prefers-reduced-motion: reduce) { .cine-hero__yt { display: none; } }
/* Mobile: video 16:9 completo centrado (vs cover que lo recortaba mucho en portrait).
   El bg image queda visible arriba/abajo del video como continuidad. */
@media (max-width: 767px) {
  .cine-hero__yt iframe {
    width: 100vw;
    height: calc(100vw * 9 / 16);
  }
}

.cine-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(11,37,69,0.15), rgba(11,37,69,0.55) 70%),
    linear-gradient(180deg, rgba(11,37,69,0.55) 0%, rgba(11,37,69,0.1) 30%, rgba(11,37,69,0) 55%, rgba(11,37,69,0.75) 100%);
}

.cine-hero__top {
  padding-top: 7rem;
  padding-bottom: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.72);
}
.cine-hero__top .meta-row { display: none; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .cine-hero__top .meta-row { display: flex; } }
.cine-hero__top .meta-row::before {
  content: ""; width: 40px; height: 1px;
  background: rgba(255,255,255,0.35);
}
.cine-hero__body {
  padding-bottom: 5rem;
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .cine-hero__body {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr auto;
    align-items: end;
    gap: 1.25rem 5rem;
    padding-bottom: 6.5rem;
  }
  .cine-hero__body > h1 { grid-column: 1; grid-row: 1 / span 2; align-self: end; }
  .cine-hero__body > .cine-hero__right { grid-column: 2; grid-row: 1 / span 2; align-self: end; }
}

.cine-hero__display {
  display: block;
  color: var(--ijs-white);
  font-size: clamp(3.2rem, 8vw + 1rem, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-family: var(--ijs-font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  margin: 0;
  color: white;
}
.cine-hero__display em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ijs-turquoise-400);
  display: inline-block;
}
.cine-hero__right { display: flex; flex-direction: column; gap: 2rem; }
.cine-hero__blurb {
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 28rem;
  margin: 0;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 1.25rem;
}
.cine-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.cine-hero__bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-end;
  pointer-events: none;
  padding: 0 20px 1.2rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
@media (min-width: 768px) { .cine-hero__bottom { padding: 0 40px 1.5rem; } }
.cine-hero__bottom > .cine-hero__coords { justify-self: start; }
.cine-hero__bottom > .cine-hero__scroll { justify-self: center; }
.cine-hero__bottom > :last-child { justify-self: end; text-align: right; }
.cine-hero__coords { display: flex; gap: 1rem; align-items: center; }
.cine-hero__coords::before {
  content: ""; width: 32px; height: 1px;
  background: rgba(255,255,255,0.35);
}
.cine-hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.cine-hero__scroll::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* Hero gold promo badge */
.hero-promo-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 209, 102, 0.15);
  border: 1px solid rgba(255, 209, 102, 0.5);
  color: var(--ijs-gold-600);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-promo-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ijs-gold-600);
  box-shadow: 0 0 0 3px rgba(255,209,102,0.25);
}

/* OVERTURE */
.overture {
  padding: 5rem 0 5rem;
  background: #fafaf8;
}
@media (min-width: 768px) { .overture { padding: 8rem 0 7rem; } }
.overture__inner { display: grid; gap: 3rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 900px) { .overture__inner { grid-template-columns: 1fr 1.7fr; gap: 6rem; align-items: start; } }
/* Variante 1 columna (Brezmes 2026-05-06: eliminado bloque "03 puntos de salida"). */
.overture__inner--single { grid-template-columns: 1fr; max-width: 46rem; }
@media (min-width: 900px) { .overture__inner--single { grid-template-columns: 1fr; max-width: 46rem; gap: 0; } }
.overture__meta {
  position: static;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ijs-turquoise-600);
  font-weight: 600;
  padding-bottom: 0.5rem;
}
/* Sticky solo en desktop — en mobile el sticky pisaba el body siguiente (Brezmes v8) */
@media (min-width: 900px) {
  .overture__meta {
    position: sticky;
    top: 6rem;
    align-self: start;
    padding-bottom: 0;
  }
}
.overture__meta-count {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ijs-navy-900);
  margin: 1rem 0 0.25rem;
  display: block;
}
.overture__meta-label {
  display: block;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--ijs-ink-500);
  font-weight: 400;
  max-width: 14rem;
  margin-top: 0.4rem;
  line-height: 1.45;
}
.overture__lede {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem);
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: var(--ijs-navy-900);
  margin: 0;
}
.overture__lede em {
  font-style: italic; font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ijs-coral-700);
}
.overture__sub {
  margin-top: 1.4rem;
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 60;
  font-weight: 300;
  font-size: clamp(1.05rem, 0.6vw + 0.85rem, 1.35rem);
  line-height: 1.45;
  color: var(--ijs-ink-500);
  max-width: 38rem;
}
.overture__body {
  margin-top: 1.5rem;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--ijs-ink-500);
  max-width: 38rem;
}
.overture__body + .overture__body { margin-top: 1.1rem; }
.overture__dropcap {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  float: left;
  font-size: 4.5rem;
  line-height: 0.85;
  padding: 0.2rem 0.6rem 0 0;
  color: var(--ijs-navy-900);
  letter-spacing: -0.03em;
}

/* INDEX / LOCATIONS */
.index {
  background: var(--ijs-turquoise-50);
  color: var(--ijs-navy-900);
  padding: 5rem 0 4rem;
}
@media (min-width: 768px) { .index { padding: 7rem 0 6.5rem; } }
.index__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem;
}
.index__head h2 { margin: 0.75rem 0 0; color: var(--ijs-navy-900); max-width: 38rem; }
.index__head h2 em { color: var(--ijs-turquoise-600); font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 100; }
.index__head .aside { font-size: 0.95rem; color: rgba(11,37,69,0.65); max-width: 18rem; line-height: 1.55; }

.loc-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .loc-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* No incluir :hover/:visited/:focus-visible en el grupo base — su especificidad
   superior machaca cualquier override en media queries (reportado: la card
   colapsaba a aspect-ratio 16/9 en desktop al sobrevolarla porque el grupo base
   con :hover ganaba al `@media (min-width:768px) .loc-card`). */
.loc-card,
a.loc-card {
  position: relative; display: block;
  border-radius: 6px; overflow: hidden;
  color: white; isolation: isolate;
  aspect-ratio: 16/9;
  transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
a.loc-card:visited { color: white; }
@media (min-width: 768px) {
  .loc-card, a.loc-card, a.loc-card:hover, a.loc-card:focus-visible { aspect-ratio: 3/4; }
}
a.loc-card:hover, a.loc-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--ijs-shadow-lg);
}
.loc-card__bg {
  position: absolute; inset: 0; z-index: -2;
}
.loc-card__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  /* Zoom equivalente al `.shot` del catálogo: timing largo (2.4s) para que el
     zoom se perciba como "respiración" lenta, no como un salto brusco. */
  transition: transform 2400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a.loc-card:hover .loc-card__img,
a.loc-card:focus-visible .loc-card__img { transform: scale(1.08); }

.loc-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,0.92) 0%, rgba(11,37,69,0.78) 22%, rgba(11,37,69,0.32) 44%, rgba(11,37,69,0.04) 58%, transparent 68%);
  transition: opacity 300ms ease-out;
  opacity: 1;
}
a.loc-card:hover::after {
  background: linear-gradient(to top, rgba(11,37,69,0.96) 0%, rgba(11,37,69,0.85) 22%, rgba(11,37,69,0.42) 44%, rgba(11,37,69,0.10) 58%, transparent 68%);
}
.loc-card__inner {
  position: relative; z-index: 1; height: 100%;
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between;
}
.loc-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.loc-card__num {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.18em;
  color: var(--ijs-white);
  text-shadow: 0 1px 2px rgba(11, 37, 69, 0.45);
}
.loc-card__badge-new {
  padding: 0.25rem 0.6rem; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--ijs-coral-600); color: white; border-radius: 3px;
}
.loc-card h3 {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 500; font-size: clamp(1.5rem, 2vw + 0.5rem, 2.2rem);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 0.9rem; color: white;
}
.loc-card__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.loc-chip {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  font-size: 0.72rem; font-weight: 500;
  color: white; letter-spacing: 0.01em;
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.loc-card__foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2);
}
.loc-card__price,
.loc-card__range {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 500; font-size: 1.4rem;
  color: white; letter-spacing: -0.02em; line-height: 1;
}
.loc-card__price .from,
.loc-card__range .from {
  display: block; font-family: var(--ijs-font-body);
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.78);
  font-weight: 600; margin-bottom: 0.3rem;
}
.loc-card__range .range-num {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 500;
}
.loc-card__arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
  transition: transform 220ms, background-color 220ms, border-color 220ms;
}
.loc-card:hover .loc-card__arrow { transform: translateX(4px); background: var(--ijs-turquoise-400); border-color: var(--ijs-turquoise-400); color: var(--ijs-navy-900); }
.loc-card--soon { cursor: default; }
.loc-card--soon:hover .loc-card__img { transform: none; }
.loc-card__soon-label {
  font-family: var(--ijs-font-display);
  font-style: italic; font-weight: 400;
  font-size: 0.92rem; color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.loc-escape { text-align: center; margin-top: 2.5rem; }
.loc-escape a {
  font-size: 0.95rem; color: rgba(11,37,69,0.75);
  text-decoration: underline; text-underline-offset: 5px;
  text-decoration-color: rgba(11,37,69,0.25);
  transition: color 180ms, text-decoration-color 180ms;
}
.loc-escape a:hover { color: var(--ijs-navy-900); text-decoration-color: var(--ijs-turquoise-600); }

/* PAIN POINTS — franja estrecha de objeciones */
.pain-points {
  padding: 2.25rem 0;
  background: var(--ijs-sand-50);
  border-top: 1px solid rgba(11,37,69,0.07);
  border-bottom: 1px solid rgba(11,37,69,0.07);
}
@media (min-width: 768px) { .pain-points { padding: 3rem 0; } }
.pain-points__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .pain-points__list { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2rem; } }
@media (min-width: 1000px) { .pain-points__list { grid-template-columns: repeat(4, 1fr); gap: 0 2.25rem; } }
.pain-point {
  display: flex; align-items: flex-start; gap: 0.85rem;
  position: relative;
}
@media (min-width: 1000px) {
  .pain-point + .pain-point::before {
    content: ""; position: absolute; left: -1.125rem; top: 0.25rem; bottom: 0.25rem;
    width: 1px; background: rgba(11,37,69,0.1);
  }
}
.pain-point__num {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400; font-size: 1.35rem;
  font-style: italic;
  color: var(--ijs-turquoise-600);
  letter-spacing: 0.01em; line-height: 1;
  flex-shrink: 0; min-width: 1.6rem;
}
.pain-point h3 {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 500; font-size: 1.02rem;
  color: var(--ijs-navy-900);
  margin: 0 0 0.3rem; line-height: 1.18;
  letter-spacing: -0.01em;
}
.pain-point p {
  font-family: var(--ijs-font-body);
  font-size: 0.85rem; line-height: 1.5;
  color: rgba(11,37,69,0.7);
  margin: 0;
}

/* SPREAD (2-col image + text) */
.spread { background: #fafaf8; padding: 5rem 0; }
@media (min-width: 768px) { .spread { padding: 8rem 0; } }
.spread__grid { display: grid; gap: 2.5rem; align-items: center; }
.spread__media {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: url('/wp-content/uploads/2026/04/Atlantis-PORTADA.webp') center / cover no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(11,37,69,0.35);
}
/* Desktop: align-items:start + sticky en .spread__media para que la foto acompañe
   el scroll del texto (Brezmes 2026-05-06). En mobile flujo natural. */
@media (min-width: 900px) {
  .spread__grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .spread__media { position: sticky; top: 6rem; }
}
.spread__media-caption {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  background: rgba(11,37,69,0.35);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
}

.spread__text h2 { margin: 1rem 0 0; color: var(--ijs-navy-900); }
.spread__text h2 em { color: var(--ijs-coral-700); font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 100; }
.spread__text p { color: var(--ijs-ink-500); font-size: 1.02rem; line-height: 1.72; margin: 1.5rem 0 0; max-width: 32rem; }
.spread__pillars { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: 0; }
.spread__pillar {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(11,37,69,0.12);
  align-items: baseline;
}
.spread__pillar:last-child { border-bottom: 1px solid rgba(11,37,69,0.12); }
.spread__pillar-num {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ijs-turquoise-600);
  letter-spacing: 0.04em;
}
.spread__pillar h3 {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ijs-navy-900);
  margin: 0 0 0.4rem;
  letter-spacing: -0.015em;
}
.spread__pillar p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--ijs-ink-500); }

/* GALLERY (tours) */
.gallery { padding: 5rem 0; background: #fafaf8; }
@media (min-width: 768px) { .gallery { padding: 7rem 0 8rem; } }
.gallery__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem;
}
.gallery__head h2 { margin: 0.6rem 0 0; color: var(--ijs-navy-900); }
.gallery__head h2 em { color: var(--ijs-coral-700); font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 100; }
.gallery__head .aside { max-width: 22rem; color: var(--ijs-ink-500); line-height: 1.6; }

.gallery__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 10rem; gap: 1.25rem; }
}

.shot,
a.shot,
a.shot:hover,
a.shot:visited,
a.shot:focus-visible {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  isolation: isolate;
  min-height: 16rem;
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.shot:hover { transform: translateY(-5px); }
.shot__bg {
  position: absolute; inset: 0; z-index: -2;
}
.shot__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 2400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shot:hover .shot__img { transform: scale(1.03); }

.shot::after {
  content: "";
  position: absolute; inset: 0;
  /* Overlay reducido tras feedback Brezmes 2026-05-06 (recuperar turquesa).
     Bajada en base (0.92→0.78) y media (0.35→0.18). Mantiene legibilidad WCAG. */
  background: linear-gradient(to top, rgba(11,37,69,0.78) 0%, rgba(11,37,69,0.18) 45%, rgba(11,37,69,0) 70%);
}
.shot__inner {
  position: relative; z-index: 1; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%; min-height: inherit;
}
.shot__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.shot__num {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400; font-size: 1rem;
  letter-spacing: 0.1em; opacity: 0.75;
}
.shot h3 {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw + 0.5rem, 2.35rem);
  line-height: 1; letter-spacing: -0.022em;
  margin: 0 0 1rem;
}
.shot__meta {
  display: flex; gap: 0.9rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.82);
  border-top: 1px solid rgba(255,255,255,0.2); padding-top: 1rem;
}
.shot__meta-hint {
  opacity: 0.7; font-size: 0.72rem; font-weight: 400;
}
.shot__price {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 500; font-size: 1.4rem;
  color: white; letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .shot--a { grid-column: span 7; grid-row: span 3; }
  .shot--b { grid-column: span 5; grid-row: span 3; }
  .shot--c { grid-column: span 4; grid-row: span 2; }
  .shot--d { grid-column: span 4; grid-row: span 2; }
  .shot--e { grid-column: span 4; grid-row: span 2; }
  .shot--f { grid-column: span 6; grid-row: span 2; }
  .shot--g { grid-column: span 6; grid-row: span 2; }
  .shot--h { grid-column: span 6; grid-row: span 2; }
  .shot--i { grid-column: span 6; grid-row: span 2; }
}

/* VOICES skeleton — paleta clara (Brezmes v8) */
.voices { background: var(--ijs-turquoise-50); color: var(--ijs-navy-900); padding: 5rem 0 4rem; }
@media (min-width: 768px) { .voices { padding: 7rem 0 6rem; } }
.voices__head { max-width: 42rem; margin-bottom: 3rem; }
.voices__head h2 { color: var(--ijs-navy-900); margin: 0.6rem 0 0; }
.voices__head h2 em { color: var(--ijs-turquoise-600); font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 100; }
.voices__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .voices__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.voice-skeleton {
  border: 1px solid rgba(11,37,69,0.10);
  background: rgba(255,255,255,0.65);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  position: relative;
}
.voice-skeleton__stars { display: flex; gap: 0.2rem; margin: 0 0 1.1rem; }
.voice-skeleton__star { width: 13px; height: 13px; color: var(--ijs-gold-600); }
.voice-skeleton__line { height: 0.65rem; background: rgba(11,37,69,0.10); border-radius: 3px; margin: 0.55rem 0; }
.voice-skeleton__byline { height: 0.55rem; background: rgba(11,37,69,0.16); border-radius: 3px; margin-top: 1.5rem; width: 38%; }
.voices__note {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(11,37,69,0.55);
}
.voices__note::before {
  content: ""; width: 32px; height: 1px;
  background: rgba(11,37,69,0.35);
}

/* Voices — reviews reales (data desde ijsb_get_google_reviews) */
.voices__summary {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.65rem 0.85rem;
  margin: 0 0 2rem;
  font-family: var(--ijs-font-body);
}
.voices__rating {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--ijs-navy-900);
}
.voices__stars { display: inline-flex; gap: 0.15rem; }
.voices__stars .voice-star { width: 16px; height: 16px; color: var(--ijs-gold-600); }
.voices__count {
  font-size: 0.85rem; color: var(--ijs-ink-500);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(11,37,69,0.18);
}
.voices__count:hover { color: var(--ijs-navy-900); border-bottom-color: var(--ijs-navy-900); }
.voices__google-logo { display: inline-flex; line-height: 0; }
.voices__google-logo svg { display: block; }

.voice-card {
  background: var(--ijs-white);
  border: 1px solid rgba(11,37,69,0.08);
  border-radius: var(--ijs-radius-md);
  padding: 1.5rem 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  box-shadow: var(--ijs-shadow-sm);
}
.voice-card__head { display: flex; align-items: center; gap: 0.85rem; }
.voice-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; background: var(--ijs-sand-100);
}
.voice-card__avatar--initials {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ijs-turquoise-50); color: var(--ijs-turquoise-900);
  font-weight: 600; font-family: var(--ijs-font-body);
}
.voice-card__meta { flex: 1; min-width: 0; }
.voice-card__author {
  margin: 0; font-weight: 600; font-size: 0.95rem; color: var(--ijs-navy-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.voice-card__date { margin: 0.1rem 0 0; font-size: 0.75rem; color: var(--ijs-ink-500); }
.voice-card__stars { display: inline-flex; gap: 0.12rem; flex-shrink: 0; }
.voice-card__stars .voice-star { width: 14px; height: 14px; color: var(--ijs-gold-600); }
.voice-card__text {
  margin: 0; font-size: 0.95rem; line-height: 1.55; color: var(--ijs-ink-900);
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Carrusel de reseñas — scroll-snap horizontal + flechas */
.voices__carousel { position: relative; }
.voices__track {
  display: flex; gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0.25rem 1rem;
  margin: 0 -0.25rem;
}
.voices__track::-webkit-scrollbar { display: none; }
.voices__track:focus-visible { outline: 2px solid var(--ijs-turquoise-600); outline-offset: 4px; border-radius: var(--ijs-radius-md); }
.voices__track > .voice-card { flex: 0 0 86%; scroll-snap-align: start; }
@media (min-width: 600px) { .voices__track > .voice-card { flex-basis: calc((100% - 1.5rem) / 2); } }
@media (min-width: 768px) {
  .voices__track { gap: 2rem; }
  .voices__track > .voice-card { flex-basis: calc((100% - 4rem) / 3); }
}
.voices__nav { display: flex; justify-content: flex-end; gap: 0.5rem; margin-top: 1.25rem; }
.voices--no-overflow .voices__nav { display: none; }
.voices__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(11,37,69,0.18); background: var(--ijs-white);
  color: var(--ijs-navy-900); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
}
.voices__arrow:hover { background: var(--ijs-turquoise-600); color: var(--ijs-white); border-color: var(--ijs-turquoise-600); }
.voices__arrow:focus-visible { outline: 2px solid var(--ijs-turquoise-600); outline-offset: 2px; }
.voices__arrow:disabled { opacity: 0.35; cursor: default; }
.voices__arrow svg { width: 20px; height: 20px; }

.voices__attribution {
  margin-top: 1.75rem;
  font-size: 0.78rem; color: var(--ijs-ink-500);
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
}
.voices__attribution a { color: var(--ijs-turquoise-600); text-decoration: none; border-bottom: 1px solid currentColor; }
.voices__attribution a:hover { color: var(--ijs-turquoise-900); }

/* FAQ editorial */
.faq-section {
  position: relative;
  background: var(--ijs-sand-100);
  padding: 5rem 0;
  overflow: hidden;
  isolation: isolate;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11,37,69,0.09) 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.55;
  z-index: -2;
  mask-image: radial-gradient(ellipse 70% 90% at 70% 40%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 70% 40%, black 10%, transparent 75%);
}
.faq-section::after {
  content: "06";
  position: absolute;
  top: 3rem;
  right: -2.5vw;
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(12rem, 28vw, 30rem);
  line-height: 0.75;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11,37,69,0.11);
  text-stroke: 1.5px rgba(11,37,69,0.11);
  pointer-events: none;
  z-index: -1;
  user-select: none;
}
@media (max-width: 767px) {
  .faq-section::after {
    top: 1rem;
    right: -5vw;
    font-size: clamp(10rem, 45vw, 18rem);
    -webkit-text-stroke-width: 1px;
  }
  .faq-section::before { background-size: 22px 22px; opacity: 0.4; }
}
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }
.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 900px) { .faq-layout { grid-template-columns: 1fr 1.7fr; gap: 6rem; } }
/* Eyebrow FAQ va sobre sand-100. coral-800 (10.6:1 AAA) en lugar de coral-700 (4.33 AA Large only). */
.faq-head p.eyebrow { color: var(--ijs-coral-800); }
.faq-head h2 { margin: 0.6rem 0 0; color: var(--ijs-navy-900); }
.faq-head h2 em { color: var(--ijs-coral-700); font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 100; }
.faq-head p { color: var(--ijs-ink-500); margin: 1.5rem 0 0; line-height: 1.65; max-width: 22rem; }

details.faq { border-bottom: 1px solid rgba(11,37,69,0.12); }
details.faq:first-child { border-top: 1px solid rgba(11,37,69,0.12); }
details.faq:last-child { border-bottom: 0; }
.faq-see-all { margin: 1.75rem 0 0; }
.faq-see-all__link {
  font-family: var(--ijs-font-body);
  font-size: 0.95rem; font-weight: 500;
  color: var(--ijs-coral-700);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.faq-see-all__link:hover, .faq-see-all__link:focus { color: var(--ijs-coral-800); }
details.faq summary {
  list-style: none; cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--ijs-font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 0.5vw + 1rem, 1.4rem);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  color: var(--ijs-navy-900);
  letter-spacing: -0.01em;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq .faq-num {
  font-family: var(--ijs-font-display);
  font-size: 0.85rem;
  color: var(--ijs-coral-700);
  letter-spacing: 0.08em;
  min-width: 2.5rem;
  flex-shrink: 0;
}
details.faq summary .caret {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 1.35rem;
  color: var(--ijs-navy-900);
  transition: transform 280ms ease-out;
  font-family: var(--ijs-font-body);
  font-weight: 300;
}
details.faq[open] summary .caret { transform: rotate(45deg); color: var(--ijs-coral-700); }
details.faq .faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 340ms ease-out;
  color: var(--ijs-ink-500);
  line-height: 1.7;
}
details.faq[open] .faq-body.enhanced { max-height: var(--faq-h, 400px); }
details.faq[open] .faq-body:not(.enhanced) { max-height: none; }
details.faq .faq-body-inner {
  padding: 0 2.5rem 1.75rem 3.5rem;
  font-size: 0.98rem;
  max-width: 36rem;
}
details.faq .faq-body-inner a { color: var(--ijs-coral-600); text-decoration: underline; text-underline-offset: 3px; }

/* CLOSER / CTA */
.closer {
  position: relative;
  padding: 6rem 0;
  background: var(--ijs-turquoise-50);
  color: var(--ijs-navy-900);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) { .closer { padding: 9rem 0 8rem; } }
.closer__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('/wp-content/uploads/2026/04/Puertas-de-Cielo-PORTADA.webp') center / cover no-repeat;
  opacity: 0.18;
  filter: grayscale(0.05) saturate(1.1);
}
.closer__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(230,247,249,0.72) 0%, rgba(230,247,249,0.92) 100%);
}
.closer h2 {
  text-align: center;
  font-size: clamp(2.75rem, 6vw + 1rem, 6rem);
  line-height: 0.96;
  letter-spacing: -0.032em;
  margin: 1.5rem auto 0;
  color: var(--ijs-navy-900);
  max-width: 24ch;
}
.closer h2 em { font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--ijs-coral-700); }
.closer__promo {
  max-width: 34rem;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--ijs-ink-500);
  line-height: 1.65;
  font-size: 1.05rem;
}
.closer__code {
  display: inline-block;
  margin: 2.5rem 0 0;
  padding: 0.85rem 1.5rem;
  border: 1px dashed rgba(11,37,69,0.35);
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-size: 1.15rem;
  letter-spacing: 0.3em;
  color: var(--ijs-navy-900);
  text-align: center;
  border-radius: 2px;
  background: rgba(255,255,255,0.55);
}
.closer__code small { display: block; font-family: var(--ijs-font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.24em; color: var(--ijs-coral-600); margin-bottom: 0.35rem; }
.closer__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
/* Pill navy detrás del eyebrow gold para que el ratio gold/navy pase AAA (8.79:1) sin
   renunciar al "look comercial dorado" del SuperPromo. Inline-block + width:max-content
   + margin auto para centrar el pill dentro del container. */
.closer__eyebrow {
	display: block;
	width: max-content;
	max-width: 100%;
	margin: 0 auto 1.25rem;
	padding: 0.55em 1.25em;
	text-align: center;
	background: var(--ijs-navy-900);
	border-radius: 9999px;
}


/* Footer — paleta clara (Brezmes v8). Color con ratio AA sobre sand-100. */
footer {
  background: var(--ijs-sand-100);
  color: #5A6068;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-about { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-about { grid-column: auto; } }
.footer-about .brand-lockup { color: var(--ijs-navy-900); margin-bottom: 1rem; }
.footer-logo, .footer-logo:visited { display: inline-block; color: var(--ijs-navy-900); margin-bottom: 1.25rem; }
.footer-logo-mark { display: block; width: 140px; height: auto; }
@media (min-width: 768px) { .footer-logo-mark { width: 160px; } }
.footer-about p { max-width: 22rem; line-height: 1.6; margin: 0 0 1.5rem; }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(11,37,69,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--ijs-navy-900);
  transition: background-color 180ms, border-color 180ms;
}
.footer-socials a:hover { background: rgba(11,37,69,0.06); border-color: var(--ijs-navy-900); }
footer .footer-grid > div > h2 {
  font-family: var(--ijs-font-display);
  font-variation-settings: "opsz" 14, "SOFT" 20;
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ijs-navy-900);
  margin: 0 0 1.2rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 0.65rem; }
/* No estado :visited en links del footer (browser default los pinta morado).
   Heredan el color del padre y solo reaccionan a :hover/:focus/:active. */
footer a,
footer a:visited,
.footer-strip a,
.footer-strip a:visited { color: inherit; }
footer ul a:hover,
footer ul a:focus-visible,
footer ul a:active { color: var(--ijs-turquoise-600); }
.footer-strip { border-top: 1px solid rgba(11,37,69,0.10); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 0.78rem; color: #5A6068; }
@media (min-width: 768px) { .footer-strip { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-strip-left { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; }
.footer-strip-left a:hover,
.footer-strip-left a:focus-visible,
.footer-strip-left a:active { color: var(--ijs-turquoise-600); }
.footer-credit-wrap { display: inline-flex; align-items: baseline; gap: 0.35rem; }
.footer-credit-prefix { color: #5A6068; }
.footer-lang { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-lang span.label { text-transform: uppercase; letter-spacing: 0.2em; color: #5A6068; margin-right: 0.3rem; }
.footer-lang span.is-active { color: var(--ijs-navy-900); font-weight: 600; }

/* =====================================================================
   Marine Effects (V5 atmósfera marina)
   Todos los efectos respetan prefers-reduced-motion.
   ===================================================================== */

/* Caustics hero overlay */
.cine-hero__caustics {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: screen;
  will-change: transform;
  animation: caustics-drift 22s ease-in-out infinite alternate;
}
@keyframes caustics-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, -1%, 0) scale(1.03); }
  100% { transform: translate3d(1.5%, 1%, 0) scale(1.05); }
}
@media (max-width: 767px) { .cine-hero__caustics { display: none; } }

/* Hero promo badge shine */
.hero-promo-badge::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.55) 55%,
    transparent 100%);
  transform: skewX(-20deg);
  animation: badge-glint 8s ease-in-out 2;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
@keyframes badge-glint {
  0%, 82%  { left: -40%; }
  100%     { left: 110%; }
}

/* CTA ripple */
.btn--primary { position: relative; overflow: hidden; isolation: isolate; }
.cine-hero__ctas .btn--primary { animation: cta-shadow-pulse 3.6s ease-in-out 3; }
.cine-hero__ctas .btn--primary::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -45%;
  width: 45%;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255,255,255,0.22) 45%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0.22) 55%,
    transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 0;
  animation: cta-shine 6.5s ease-in-out 2;
}
.cine-hero__ctas .btn--primary:hover { animation: none; }
.cine-hero__ctas .btn--primary:hover::before { animation: none; opacity: 0; }
@keyframes cta-shine {
  0%, 78%  { left: -45%; }
  100%     { left: 110%; }
}
@keyframes cta-shadow-pulse {
  0%, 100% { box-shadow: 0 1px 2px rgba(255,107,91,0.25), 0 10px 24px -8px rgba(255,107,91,0.45); }
  50%      { box-shadow: 0 1px 2px rgba(255,107,91,0.35), 0 14px 34px -8px rgba(255,107,91,0.65); }
}
.ripple-drop {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.28) 40%,
    rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
  animation: ripple-expand 600ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes ripple-expand {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: 0.7; }
  60%  {                                              opacity: 0.35; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}

/* Wave dividers */
.wave-divider {
  display: block;
  width: 100%;
  height: 72px;
  margin: 0;
  pointer-events: none;
  overflow: hidden;
}
.wave-divider svg { width: 110%; height: 100%; display: block; margin-left: -5%; }
.wave-divider__path {
  fill: none;
  stroke: var(--ijs-turquoise-400);
  stroke-width: 1.25;
  stroke-opacity: 0.28;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}
.wave-divider__path--shadow { stroke-opacity: 0.14; animation: wave-drift-slow 14s linear infinite; }
.wave-divider__path--top    { stroke-opacity: 0.34; animation: wave-drift-fast 9s linear infinite reverse; }
.wave-divider__path--mid    { animation: wave-drift-mid 11s linear infinite; }
@keyframes wave-drift-slow { from { transform: translateX(0) translateY(0); } to { transform: translateX(-6%) translateY(-2px); } }
@keyframes wave-drift-mid  { from { transform: translateX(0) translateY(0); } to { transform: translateX(-5%) translateY(1px); } }
@keyframes wave-drift-fast { from { transform: translateX(0) translateY(0); } to { transform: translateX(-4%) translateY(-1px); } }
.wave-divider--on-light { background: #fafaf8; }
/* "on-dark" en v8 (paleta clara): el divisor se monta sobre la sección
   anterior con margin-top:-72px y un path con fill turquesa-50 que muerde
   con onda. Las 3 líneas animadas (paths de stroke) quedan encima del fill. */
.wave-divider--on-dark {
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: -72px;
  pointer-events: none;
}
.wave-divider--on-dark .wave-divider__fill { fill: var(--ijs-turquoise-50); }

/* Variante "inset-top": el wave-divider va DENTRO del .closer en su top
   (position absolute) para que el .closer__bg se vea también detrás de la onda.
   El path fill aquí se invierte: pinta sand-100 (color de la sección anterior)
   en la parte superior del SVG, dejando transparente la inferior — donde se ve
   la imagen del closer con su overlay turquesa. */
.wave-divider--inset-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  margin-top: 0;
  z-index: 1;
}
.wave-divider--inset-top .wave-divider__fill { fill: var(--ijs-sand-100); }
/* El .closer sube 72px para que su imagen cubra también la zona del wave-divider.
   Padding-top extra equivale a los 72px subidos. */
.closer { margin-top: -72px; padding-top: calc(6rem + 72px); }
@media (min-width: 768px) {
  .closer { padding-top: calc(9rem + 72px); }
}
.wave-divider--on-dark .wave-divider__path { stroke: var(--ijs-turquoise-600); stroke-opacity: 0.30; }
.wave-divider--on-dark .wave-divider__path--top    { stroke-opacity: 0.42; }
.wave-divider--on-dark .wave-divider__path--shadow { stroke-opacity: 0.16; }
/* Padding bottom extra en las secciones que llevan wave-divider--on-dark
   inmediatamente después, para que sus contenidos no queden tapados por el
   margin-top:-72px del divisor. */
/* Mobile: padding ajustado para que el hueco visible (tras restar -72px del
   divisor) sea ~16px en vez de los 80px que daba calc(5rem+72px). */
.spread       { padding-bottom: calc(1rem + 72px); }
.faq-section  { padding-bottom: calc(1rem + 72px); }
@media (min-width: 768px) {
  .spread      { padding-bottom: calc(8rem + 72px); }
  .faq-section { padding-bottom: calc(5rem + 72px); }
}
@media (max-width: 767px) {
  .wave-divider { height: 56px; }
  .wave-divider__path--shadow { animation-duration: 22s; }
  .wave-divider__path--top    { animation-duration: 14s; }
  .wave-divider__path--mid    { animation-duration: 18s; }
  /* Quitado el scaleY(0.7) — aplastaba las curvas y dejaba un borde casi
     recto al top del fill que parecía un divider lineal. */
}

/* Chip glint on enter */
.loc-chip::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 60%;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255,255,255,0.45) 50%,
    transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}
.loc-chip.is-glinting::before { animation: chip-glint 600ms ease-out forwards; }
@keyframes chip-glint {
  0%   { left: -80%; opacity: 0; }
  20%  { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}
@media (max-width: 767px) { .loc-chip.is-glinting::before { animation: none; } }

/* Hover ripple on location cards */
.loc-card__hover-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(95,211,222,0.55);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 2;
  will-change: transform, opacity;
}
.loc-card__hover-ring.is-pulsing { animation: loc-hover-ring 420ms ease-out forwards; }
@keyframes loc-hover-ring {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0;   }
}

/* Footer coastline (static) — paleta clara (Brezmes v8).
   El SVG pinta la onda en sand-100 (color del footer) que "muerde" los últimos
   72px de la sección anterior. Para que la zona sobre la curva tome prestado el
   color de la sección previa (sea turquesa-50 closer, navy hub-cta o lo que
   sea), usamos margin-top:-72px + position:relative para sobrelapar visualmente
   sin reservar espacio extra en el flow. */
.footer-coastline {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 72px;
  margin-top: -72px;
  background: transparent;
  pointer-events: none;
}
.footer-coastline svg { display: block; width: 100%; height: 100%; }
/* Asegurar que `.closer` tenga padding-bottom suficiente para no quedar
   tapado por los 72px del coastline montado encima.
   `.hub-cta` y otras secciones-CTA aplican el mismo extra en su componente. */
.closer { padding-bottom: calc(6rem + 72px); }
@media (min-width: 768px) {
  .closer { padding-bottom: calc(8rem + 72px); }
}

/* Reduced motion: disable ambient, keep click feedback as flash */
@media (prefers-reduced-motion: reduce) {
  .cine-hero__caustics,
  .hero-promo-badge::after,
  .cine-hero__ctas .btn--primary,
  .cine-hero__ctas .btn--primary::before,
  .wave-divider__path--shadow,
  .wave-divider__path--top,
  .wave-divider__path--mid,
  .loc-chip.is-glinting::before,
  .loc-card__hover-ring.is-pulsing {
    animation: none !important;
  }
  .hero-promo-badge::after { display: none; }
  .cine-hero__caustics { opacity: 0.08; }
  .ripple-drop { animation: ripple-flash 120ms ease-out forwards; }
  @keyframes ripple-flash {
    0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
    100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.2); }
  }
}

/* ── [ijsb_excursions_video] facade ───────────────────────────── */
.excursiones-video {
  padding: 3rem 0;
  background: var(--ijs-sand-50);
}
.excursiones-video__eyebrow {
  font-family: var(--ijs-font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center; color: var(--ijs-coral-700);
  margin: 0 0 1.25rem;
}
.excursiones-video__frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 24px 60px -20px rgba(0, 30, 60, 0.45);
}
.excursiones-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.excursiones-video__frame:hover .excursiones-video__poster {
  transform: scale(1.04);
}
.excursiones-video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: none; border: 0; padding: 0;
  cursor: pointer;
  transition: transform 200ms ease;
}
.excursiones-video__play:hover,
.excursiones-video__play:focus-visible {
  transform: translate(-50%, -50%) scale(1.08);
}
