/* ═══════════════════════════════════════════
   QUINTA MOMPANÍ — ADDITIONS (parallax bg, lp, lighter palette)
   ═══════════════════════════════════════════ */

:root {
  /* Override: paleta más clara, menos morado dominante */
  --paper:   #FAF8F4;
  --cream:   #F3EFE8;
  --plum-soft: #6B5680;
}

/* Body baja de paper crudo a casi blanco cálido */
body { background: var(--paper); }

/* Honeypot anti-bot: fuera de pantalla (no display:none, para que los bots lo rellenen) */
.hp-field {
  position: absolute !important;
  left: -9999px; top: 0;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Blog skeleton shimmer */
@keyframes skimmer { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
.blog-skeleton { pointer-events: none; }
.blog-skeleton-img { width: 100%; aspect-ratio: 16/9; border-radius: 2px; background: linear-gradient(90deg, #e8e4dc 25%, #f3efe8 50%, #e8e4dc 75%); background-size: 800px 100%; animation: skimmer 1.4s ease-in-out infinite; }
.blog-skeleton-line { height: 0.9rem; border-radius: 2px; margin: 0.75rem 0; background: linear-gradient(90deg, #e8e4dc 25%, #f3efe8 50%, #e8e4dc 75%); background-size: 800px 100%; animation: skimmer 1.4s ease-in-out infinite; }
.blog-skeleton-line.w-sm { width: 35%; }
.blog-skeleton-line.w-md { width: 65%; }
.blog-skeleton-line.w-lg { width: 85%; }
.blog-img-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--cream); }

/* Exp-card overlay más oscuro en hover para que el texto crema sea legible */
.exp-card .exp-img::after {
  background: linear-gradient(180deg, rgba(10,5,20,0.72) 0%, rgba(40,25,60,0.94) 100%);
}
/* Cards sin imagen de fondo: mantener texto oscuro en hover */
.exp-card:not(:has(.exp-img)):hover {
  color: var(--ink);
  background: var(--cream);
}

/* H2 display negro por defecto */
h2.display { color: var(--ink) !important; }
/* Excepciones: secciones con fondo oscuro real */
.sobre-bg h2.display,
.contacto h2.display { color: var(--cream) !important; }

/* Section-head: más espacio para el h2 */
.section-head {
  grid-template-columns: 3fr 2fr;
}
.section-head h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
}

/* Reduce fondos morados que dominaban */
.concepto { background: var(--paper); }
.experiences { background: #FFFFFF; }
.pilares { background: var(--paper); }
.galeria { background: #FFFFFF; }
.galeria .container { position: relative; }
.galeria .container::after {
  content: '';
  display: none;
  z-index: 10;
}
/* ── Button hover fixes — currentColor causes invisible text on light nav ── */
.nav-cta:hover {
  background: var(--plum) !important;
  color: var(--cream) !important;
  border-color: var(--plum) !important;
  transform: translateY(-1px);
  box-shadow: 0 9px 24px -7px rgba(63,43,86,.5) !important;
}
.nav-cta:active {
  transform: translateY(0) scale(.97);
}
.btn-ghost:hover {
  background: var(--plum) !important;
  color: var(--cream) !important;
}

/* Nav social icons */
.nav-socials { display: flex; align-items: center; gap: 0.1rem; }
.nav-social {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: currentColor; opacity: 0.8; text-decoration: none;
  border: 1px solid transparent;
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1),
              color 0.3s cubic-bezier(0.16,1,0.3,1),
              transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-social:hover {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.12);
  border-color: rgba(180,162,105,0.35);
}

/* ═══════════════ NAV MÓVIL (hamburguesa + overlay) ═══════════════ */
.nav-burger, .nav-mobile, .pilares-dots { display: none; }

@media (max-width: 900px) {
  /* En la barra solo queda logo + hamburguesa */
  .nav-links, .nav-socials, .nav-cta { display: none !important; }

  .nav-burger {
    display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
    gap: 6px; width: 44px; height: 44px; margin-left: auto; padding: 0;
    background: none; border: 0; cursor: pointer; color: inherit;
  }
  .nav-burger span { width: 26px; height: 2px; background: currentColor; border-radius: 2px; transition: width .3s; }
  .nav-burger span:nth-child(2) { width: 18px; }
  .nav:not(.scrolled) .nav-burger span { box-shadow: 0 1px 3px rgba(10,5,18,.55); }

  /* Logo más compacto en móvil (cuelga menos) */
  .nav-logo { width: 88px; height: 40px; }
  .nav-logo .logo-img { top: -22px; }
  .nav:not(.scrolled) .nav-logo .logo-img { height: 84px; }
  /* sticky móvil: logo centrado en la barra y un poco más grande
     (antes heredaba top:-22px del estado colgante → quedaba muy arriba) */
  .nav.scrolled .nav-logo .logo-img { height: 66px; top: 50%; transform: translateY(-50%); }

  /* Overlay a pantalla completa */
  .nav-mobile {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: fixed; inset: 0; z-index: 300; gap: 2.4rem; padding: 2rem;
    background: var(--plum-deep);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
  }
  .nav-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; }

  .nav-mobile-close {
    position: absolute; top: 1.3rem; right: 1.3rem; width: 44px; height: 44px;
    background: none; border: 0; cursor: pointer;
  }
  .nav-mobile-close span {
    position: absolute; top: 50%; left: 50%; width: 26px; height: 2px; background: var(--cream);
  }
  .nav-mobile-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
  .nav-mobile-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }

  .nav-mobile-links { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
  .nav-mobile-links a {
    font-family: var(--display); font-size: clamp(1.9rem, 8vw, 2.6rem);
    color: var(--cream); letter-spacing: .01em;
    opacity: 0; transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1), color .3s;
  }
  .nav-mobile.open .nav-mobile-links a { opacity: 1; transform: translateY(0); }
  .nav-mobile-links a:active { color: var(--gold); }

  .nav-mobile-cta {
    opacity: 0; transform: translateY(20px);
    transition: opacity .6s ease .42s, transform .6s ease .42s;
  }
  .nav-mobile.open .nav-mobile-cta { opacity: 1; transform: translateY(0); }

  .nav-mobile-socials {
    display: flex; gap: 1.2rem; color: var(--sage);
    opacity: 0; transition: opacity .6s ease .55s;
  }
  .nav-mobile.open .nav-mobile-socials { opacity: 1; }
  .nav-mobile-socials .nav-social {
    width: 42px; height: 42px; border: 1px solid rgba(205,210,169,0.3); border-radius: 50%;
  }
}

/* ═══════════════ HERO MÓVIL ═══════════════ */
@media (max-width: 700px) {
  /* altura estable (evita el salto de barras en iOS Safari) */
  .hero { height: auto; min-height: 100dvh; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 3.4rem); margin-bottom: 1.4rem; }
  .hero p { font-size: 1rem; line-height: 1.65; opacity: .92; }
  /* CTAs apilados a ancho completo (mejor tap target en móvil) */
  .hero-actions { flex-direction: column; align-items: stretch; gap: .8rem; width: 100%; max-width: 420px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* el indicador "Scroll" (abajo-centrado) se encimaba con los botones → ocultar en móvil */
  .scroll-indicator { display: none; }

  /* Pilares: carrusel horizontal deslizable con snap (antes el track se cortaba
     por el overflow-x:hidden global y no se podía desplazar) */
  .pilares-track {
    display: flex !important;        /* anula el grid inline del JSX */
    flex-direction: row; flex-wrap: nowrap;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    margin-left: 0; padding: 0 var(--pad) 1rem;
  }
  .pilares-track::-webkit-scrollbar { display: none; }
  .pilares-track .pilar { flex: 0 0 80%; scroll-snap-align: start; padding: 1.5rem 0; }
  /* puntos indicadores del carrusel (afordancia de deslizamiento) */
  .pilares-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 1.6rem; }
  .pdot {
    width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
    background: rgba(97,99,85,.3); transition: background .3s, transform .3s;
  }
  .pdot.on { background: var(--gold); transform: scale(1.3); }

  /* Titular + texto al lado (.section-head 3fr/2fr) → cada uno a ancho completo */
  .section-head { grid-template-columns: 1fr; gap: 1rem; }

  /* Secciones con fondo parallax: el offset JS de backgroundPosition dejaba un
     cuadro gris (parecía que el fondo no cubría) → fijar cover/center en móvil */
  .parallax-bg {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  /* TIPOGRAFÍA MÓVIL: los titulares tenían mínimo ~48px y apretaban/partían feo */
  .section-head h2, h2.display { font-size: clamp(2rem, 8.5vw, 2.7rem); line-height: 1.1; }
  .dual-card h3 { font-size: clamp(1.45rem, 6vw, 1.9rem); line-height: 1.18; }
  .section-head p, .dual-card p, .sobre-text p { font-size: 1rem; line-height: 1.62; }
  /* RITMO VERTICAL UNIFORME: en desktop section = clamp(5rem,12vh,10rem) → en móvil
     daba ~160px entre secciones. Lo acotamos parejo para todas (el hero conserva
     su propio padding). */
  section { padding-top: clamp(3.25rem, 9vw, 4.5rem); padding-bottom: clamp(3.25rem, 9vw, 4.5rem); }

  /* Footer: una sola columna en móvil — el logo ya no comparte fila con
     "Experiencias"; logo full-width arriba y las secciones apiladas debajo.
     Contenido centrado. */
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; text-align: center; }
  .footer-logo { height: 104px; margin: 0 auto 1.1rem; }
  .footer-tag { margin-left: auto; margin-right: auto; }
  .footer-col ul { align-items: center; }
  .footer-bot { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
  /* limpiar el top del hero en pantallas pequeñas */
  .hero-corner-tr { display: none; }
}

/* ═══════════════ FILOSOFÍA — rediseño SOLO móvil (cita editorial) ═══════════════ */
@media (max-width: 700px) {
  /* (usa el ritmo vertical uniforme de section) */
  /* eyebrow: alineado a la izquierda con guion oro editorial */
  .filosofia .eyebrow {
    text-align: left !important;
    display: inline-flex !important;
    align-items: center; gap: .6rem;
    margin-bottom: 1.6rem !important;
  }
  .filosofia .eyebrow::before {
    content: ''; width: 26px; height: 1px; background: var(--gold-warm); opacity: .9;
  }

  /* manifiesto como pull-quote: izquierda, regla oro, comilla decorativa */
  .filosofia .manifiesto {
    text-align: left;
    max-width: 100%;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.5;
    padding-left: 1.2rem;
    border-left: 2px solid rgba(180, 162, 105, 0.45);
    position: relative;
  }
  .filosofia .manifiesto::before {
    content: '\201C';
    position: absolute; top: -2.6rem; left: -0.4rem;
    font-family: var(--serif); font-style: italic;
    font-size: 4.5rem; line-height: 1; color: var(--gold-warm); opacity: 0.4;
    pointer-events: none;
  }
  /* las frases en oro mantienen el ritmo; un punto más de aire entre líneas */
  .filosofia .manifiesto .it { color: var(--gold); }
}

.blog-section { background: var(--paper); }
.blog-more-wrap {
  display: flex; justify-content: flex-end;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(97,99,85,0.15);
}
.blog-more-link {
  font-family: var(--mono-cap); font-size: 0.7rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--plum); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: color 0.25s ease, gap 0.3s cubic-bezier(0.16,1,0.3,1);
}
.blog-more-link:hover { color: var(--gold); gap: 1rem; }

/* ── Blog listing (blc) ── */

/* Hero */
.blc-hero {
  position: relative; min-height: 72vh;
  background: var(--plum) center/cover no-repeat;
  display: flex; align-items: center;
}
.blc-hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20, 10, 30, 0.52);
}
.blc-hero-content {
  position: relative; z-index: 2;
  padding-top: 8rem; padding-bottom: 4rem;
  max-width: 62%;
  animation: bpaFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
.blc-hero-eyebrow { color: var(--gold) !important; display: block; margin-bottom: 0.85rem; }
.blc-hero-title {
  font-family: var(--display); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; color: var(--cream); line-height: 1.0;
  margin: 0 0 1.25rem;
}
.blc-hero-sub {
  font-family: var(--serif); font-size: 1.08rem;
  color: rgba(243,239,232,0.72); max-width: 46ch;
  line-height: 1.65; margin: 0;
}

/* Container */
.blc-container { padding-top: 4.5rem; padding-bottom: 7rem; }

/* ── Featured card ── */
.blc-featured {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 0; text-decoration: none; overflow: hidden;
  margin-bottom: 4rem;
  border: 1px solid rgba(97,99,85,0.13);
  transition: box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
}
.blc-featured:hover { box-shadow: 0 16px 50px rgba(63,43,86,0.12); }
.blc-featured-img {
  min-height: 460px;
  background: var(--plum) center/cover no-repeat;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.blc-featured:hover .blc-featured-img { transform: scale(1.04); }
.blc-featured-body {
  padding: 3.5rem 3rem; display: flex; flex-direction: column;
  justify-content: center; gap: 1.1rem;
  background: var(--cream);
  border-left: 1px solid rgba(97,99,85,0.1);
}
.blc-featured-title {
  font-family: var(--display); font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 400; color: var(--plum); line-height: 1.1; margin: 0;
}
.blc-featured-excerpt {
  font-family: var(--serif); font-size: 0.98rem;
  line-height: 1.72; color: var(--moss); margin: 0;
}
.blc-cta {
  font-family: var(--mono-cap); font-size: 0.64rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.25rem; transition: gap 0.3s cubic-bezier(0.16,1,0.3,1);
}
.blc-featured:hover .blc-cta { gap: 0.9rem; }

/* ── Divider between featured and grid ── */
.blc-grid-label {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.blc-grid-label-text {
  font-family: var(--mono-cap); font-size: 0.64rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--moss);
  white-space: nowrap;
}
.blc-grid-label-line { flex: 1; height: 1px; background: rgba(97,99,85,0.18); }

/* ── Card grid ── */
.blc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.blc-card {
  text-decoration: none; display: flex; flex-direction: column;
  overflow: hidden; background: var(--paper);
  border: 1px solid rgba(97,99,85,0.12);
  transition: box-shadow 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.blc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.blc-card:hover { box-shadow: 0 10px 36px rgba(63,43,86,0.09); transform: translateY(-4px); }
.blc-card:hover::after { transform: scaleX(1); }
.blc-card-img {
  height: 230px; background: var(--plum) center/cover no-repeat;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.blc-card:hover .blc-card-img { transform: scale(1.05); }
.blc-card-body { padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.blc-card-title {
  font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400; color: var(--plum); line-height: 1.15; margin: 0;
}
.blc-card-excerpt {
  font-family: var(--serif); font-size: 0.93rem;
  line-height: 1.68; color: var(--moss); margin: 0; flex: 1;
}

/* Shared atoms */
.blc-eyebrow {
  font-family: var(--mono-cap); font-size: 0.64rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.blc-date {
  font-family: var(--mono-cap); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--moss); opacity: 0.65;
}
.blc-empty { padding: 4rem 0; }
.blc-empty-text { font-family: var(--serif); font-size: 1rem; color: var(--moss); margin-top: 0.5rem; }

/* Skeletons */
.blc-skel-featured {
  height: 460px; margin-bottom: 4rem;
  background: linear-gradient(90deg,#ddd8cf 25%,#eae5dc 50%,#ddd8cf 75%);
  background-size: 800px 100%; animation: skimmer 1.4s ease-in-out infinite;
}
.blc-skel-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem; }
.blc-skel-card {
  height: 300px;
  background: linear-gradient(90deg,#ddd8cf 25%,#eae5dc 50%,#ddd8cf 75%);
  background-size: 800px 100%; animation: skimmer 1.4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 900px) {
  .blc-hero-content { max-width: 100%; padding-top: 7rem; padding-bottom: 3rem; }
  .blc-featured { grid-template-columns: 1fr; }
  .blc-featured-img { min-height: 280px; }
  .blc-featured-body { padding: 2rem; border-left: none; border-top: 1px solid rgba(97,99,85,0.1); }
  .blc-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .blc-hero { min-height: 65vh; }
  .blc-hero-content { padding-top: 6rem; }
  .blc-hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
}

/* ── Blog post article (bpa) ── */

/* Reading progress */
.bpa-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gold);
  z-index: 300; transition: width 0.08s linear;
  pointer-events: none;
}

/* Hero */
.bpa-hero {
  position: relative; min-height: 85vh;
  background: var(--plum) center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bpa-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(20,10,30,0.85) 0%, rgba(20,10,30,0.45) 55%, rgba(20,10,30,0.18) 100%);
}
.bpa-hero-top {
  position: relative; z-index: 1;
  padding-top: 9rem;
  animation: bpaFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.bpa-hero-bottom {
  position: relative; z-index: 1;
  padding-bottom: 5rem; max-width: 70%;
}
.bpa-eyebrow {
  font-family: var(--mono-cap); font-size: 0.72rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); display: inline-block;
}
.bpa-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 6rem);
  color: var(--cream); line-height: 1.0;
  margin: 0.9rem 0 0.6rem;
  animation: bpaFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.bpa-hero-date {
  font-family: var(--mono-cap); font-size: 0.68rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(243,239,232,0.5); margin: 0;
  animation: bpaFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}

/* Three-column layout */
.bpa-layout {
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  gap: 0 3.5rem;
  padding-top: 5rem; padding-bottom: 7rem;
  align-items: start;
}

/* Aside */
.bpa-aside { animation: bpaFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s both; }
.bpa-aside-sticky { position: sticky; top: 7rem; padding-top: 0.25rem; }
.bpa-meta-block {
  display: flex; flex-direction: column; gap: 0.2rem;
  margin-bottom: 1.6rem; padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(97,99,85,0.16);
}
.bpa-meta-label {
  font-family: var(--mono-cap); font-size: 0.6rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--moss);
}
.bpa-meta-val { font-family: var(--serif); font-size: 0.92rem; color: var(--plum); line-height: 1.4; }
.bpa-back {
  font-family: var(--mono-cap); font-size: 0.64rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--moss); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color 0.25s ease; margin-top: 0.25rem;
}
.bpa-back:hover { color: var(--gold); }

/* Main reading column */
.bpa-main { animation: bpaFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.5s both; }

/* Right column — table of contents */
.bpa-right { animation: bpaFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.6s both; }
.bpa-right-sticky { position: sticky; top: 7rem; padding-top: 0.25rem; }
.bpa-toc-label {
  font-family: var(--mono-cap); font-size: 0.6rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--moss); display: block;
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(97,99,85,0.16);
}
.bpa-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.bpa-toc-item { }
.bpa-toc-h3 { padding-left: 0.75rem; }
.bpa-toc-link {
  font-family: var(--serif); font-size: 0.83rem;
  line-height: 1.4; color: var(--moss);
  text-decoration: none; display: block;
  transition: color 0.22s ease;
}
.bpa-toc-link:hover { color: var(--gold); }
.bpa-lead {
  font-family: var(--serif); font-size: 1.28rem;
  font-style: italic; line-height: 1.7; color: var(--plum);
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(180,162,105,0.28);
}
.bpa-body { color: var(--ink); }
.bpa-p {
  font-family: var(--serif); font-size: 1.08rem;
  line-height: 1.88; margin-bottom: 1.75rem; color: var(--ink);
}
/* Dropcap */
.bpa-body .bpa-p:first-child::first-letter {
  font-family: var(--display); font-size: 4.8rem;
  float: left; line-height: 0.78;
  margin: 0.06em 0.12em 0 0; color: var(--gold);
}
.bpa-h2 {
  font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  font-weight: 400; color: var(--plum);
  margin: 3.5rem 0 1.25rem; line-height: 1.2;
}
.bpa-h3 {
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400; color: var(--plum); margin: 2.5rem 0 0.75rem;
}
/* Pull quote */
.bpa-quote {
  margin: 3rem -1.5rem; padding: 1.75rem 2.25rem;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.55; color: var(--plum);
  border-left: 3px solid var(--gold);
  background: rgba(180,162,105,0.05);
}
.bpa-body-img { width: 100%; height: auto; margin: 2.5rem 0; display: block; }

/* End back link */
.bpa-end { margin-top: 5rem; padding-top: 2.5rem; border-top: 1px solid rgba(97,99,85,0.16); }
.bpa-back-btn {
  font-family: var(--mono-cap); font-size: 0.7rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--plum); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.25s ease;
}
.bpa-back-btn:hover { color: var(--gold); }

/* Error */
.bpa-error { padding-top: 10rem; padding-bottom: 6rem; }

/* Skeletons */
.bpa-skel-hero {
  width: 100%; min-height: 85vh;
  background: linear-gradient(90deg,#ddd8cf 25%,#eae5dc 50%,#ddd8cf 75%);
  background-size: 800px 100%; animation: skimmer 1.4s ease-in-out infinite;
}
.bpa-skel-body { padding: 5rem 0 6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.bpa-skel-line {
  height: 1rem; border-radius: 2px;
  background: linear-gradient(90deg,#ddd8cf 25%,#eae5dc 50%,#ddd8cf 75%);
  background-size: 800px 100%; animation: skimmer 1.4s ease-in-out infinite;
}
.bpa-skel-line.w-sm { width: 32%; }
.bpa-skel-line.w-md { width: 58%; }
.bpa-skel-line.w-lg { width: 88%; }

/* Keyframe */
@keyframes bpaFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1100px) {
  .bpa-layout { grid-template-columns: 200px 1fr; }
  .bpa-right { display: none; }
}
@media (max-width: 900px) {
  .bpa-layout { grid-template-columns: 1fr; gap: 0; }
  .bpa-aside { display: none; }
  .bpa-hero-bottom { max-width: 100%; padding-bottom: 3.5rem; }
  .bpa-quote { margin: 2rem 0; }
}
@media (max-width: 500px) {
  .bpa-hero { min-height: 75vh; }
  .bpa-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .bpa-hero-bottom { padding-bottom: 2.5rem; }
}
.filosofia { background: #FFFFFF; color: var(--ink); }
.filosofia .manifiesto { color: var(--ink); }
.filosofia .manifiesto .it { color: var(--plum); }
.testimonios { background: var(--paper); }
.testi-track { user-select: none; cursor: grab; }
.testi-track:active { cursor: grabbing; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; padding-bottom: 1rem; }
.testi-arrow { width: 2.75rem; height: 2.75rem; border: 1px solid var(--plum); background: transparent; color: var(--plum); font-size: 1.1rem; cursor: pointer; transition: background 0.3s, color 0.3s, transform 0.2s cubic-bezier(0.16,1,0.3,1); }
.testi-arrow:hover:not(:disabled) { background: var(--plum); color: var(--cream); transform: scale(1.06); }
.testi-arrow:disabled { opacity: 0.25; cursor: default; }
.testi-dots { display: flex; gap: 0.5rem; align-items: center; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--moss); opacity: 0.35; cursor: pointer; transition: opacity 0.3s, background 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.testi-dot.active { background: var(--gold); opacity: 1; transform: scale(1.4); }

/* Make plum-deep variants softer */
.dual-card { background: #FFFFFF; border-color: rgba(63,43,86,0.12); }
.dual-card:hover { background: rgba(243, 239, 232, 0.5); }

/* Border draw on hover */
.card-border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 3;
}
.card-border-svg rect {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.dual-card:hover .card-border-svg rect {
  stroke-dashoffset: 0;
}

/* ─── PARALLAX BG SECTION ─── */
.parallax-bg {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0;
}
@media (max-width: 900px) {
  .parallax-bg { background-attachment: scroll; padding: 5rem 0; }
}
.parallax-bg::before { display: none; }

/* Overlay real (div) — siempre visible sobre la imagen */
.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.overlay-dark .parallax-overlay {
  background:
    linear-gradient(to top, rgba(8,5,3,0.90) 0%, rgba(8,5,3,0.55) 45%, rgba(8,5,3,0.30) 100%),
    linear-gradient(135deg, rgba(20,14,10,0.50) 0%, rgba(45,28,58,0.40) 100%);
}
.overlay-light .parallax-overlay {
  background: linear-gradient(135deg, rgba(250,248,244,0.85) 0%, rgba(243,239,232,0.7) 100%);
}
.parallax-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.bg-section-inner {
  max-width: 720px;
}
.bg-section-inner .eyebrow {
  margin-bottom: 1.5rem;
  display: block;
}
.bg-section-inner h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
}
.bg-section-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 640px;
}
.bg-section-inner .signature {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
}

/* ═══ ESPACIOS — SLIDER ═══ */

.esp-slider-section {
  background: var(--paper);
}

.esp-header {
  padding: 3rem var(--pad) 2rem;
  text-align: center;
}
.esp-header .eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.esp-header h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
}

/* Contenedor del slider */
.esp-slider {
  position: relative;
  height: 72vh;
  min-height: 500px;
  max-height: 780px;
  overflow: hidden;
}

/* Cada slide */
.esp-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.esp-slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* Foto */
.esp-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 9s cubic-bezier(.2,.6,.2,1);
  will-change: transform;
}
.esp-slide--active .esp-slide-img {
  transform: scale(1.04);
}

/* Velo — oscuro desde abajo e izquierda */
.esp-slide-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(4,2,1,0.94) 0%,
      rgba(4,2,1,0.65) 38%,
      rgba(4,2,1,0.20) 65%,
      transparent 100%),
    linear-gradient(to top,
      rgba(4,2,1,0.80) 0%,
      rgba(4,2,1,0.15) 45%,
      transparent 70%);
}

/* Texto */
.esp-slide-text {
  position: relative;
  z-index: 2;
  padding: 40px 105px;
  max-width: 920px;
}

/* Número */
.esp-no {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 1.1rem;
}

/* Línea dorada */
.esp-rule {
  border: none;
  border-top: 1px solid var(--gold);
  width: 48px;
  margin: 0 0 1.3rem;
  opacity: 0.6;
}

/* Subtítulo */
.esp-sub {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(236,234,230,0.48);
  margin-bottom: 0.85rem;
}

/* Título */
.esp-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.97;
  letter-spacing: -0.03em;
  margin: 0 0 1.4rem;
}

/* Descripción */
.esp-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(236,234,230,0.70);
  margin: 0;
  max-width: 400px;
}

/* Flechas */
.esp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(236,234,230,0.08);
  border: 1px solid rgba(236,234,230,0.18);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  backdrop-filter: blur(6px);
}
.esp-arrow:hover {
  background: rgba(200,168,75,0.18);
  border-color: var(--gold);
  color: var(--gold);
}
.esp-arrow--prev { left: clamp(1rem, 3vw, 3rem); }
.esp-arrow--next { right: clamp(1rem, 3vw, 3rem); }

/* Puntos */
.esp-dots {
  position: absolute;
  bottom: 2rem;
  right: clamp(2rem, 5vw, 5rem);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.esp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(236,234,230,0.45);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  padding: 0;
}
.esp-dot--active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .esp-slider { height: 80vh; min-height: 460px; }
  .esp-arrow { width: 40px; height: 40px; }
  .esp-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .esp-body { font-size: 0.9rem; }
}

/* Hide old encuadrada sections que ya no se renderizan */
.sobre, .espacios { display: none; }

/* ─── LIGHTBOX ─── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 7, 15, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-fade-in 0.35s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lb-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 88vw;
  max-height: 90vh;
  animation: lb-rise 0.4s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes lb-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lb-img {
  display: block;
  max-width: 88vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.lb-caption {
  margin-top: 1.2rem;
  padding-left: 0.1rem;
}
.lb-meta {
  display: block;
  font-family: var(--mono-cap);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.lb-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0;
}
.lb-close {
  position: fixed;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: 1px solid rgba(243,239,232,0.2);
  color: var(--cream);
  font-size: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  z-index: 1001;
}
.lb-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(180,162,105,0.1);
}
.lb-counter {
  position: fixed;
  top: 2.1rem;
  left: 2.5rem;
  font-family: var(--mono-cap);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: rgba(243,239,232,0.45);
  z-index: 1001;
}
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(243,239,232,0.15);
  color: var(--cream);
  font-size: 1.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  z-index: 1001;
}
.lb-prev { left: 2rem; }
.lb-next { right: 2rem; }
.lb-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(180,162,105,0.1);
}
@media (max-width: 600px) {
  .lb-img { max-width: 95vw; max-height: 65vh; }
  .lb-arrow { width: 38px; height: 38px; font-size: 1rem; }
  .lb-prev { left: 0.75rem; }
  .lb-next { right: 0.75rem; }
  .lb-close { top: 1rem; right: 1rem; }
  .lb-counter { top: 1.1rem; left: 1rem; }
}

/* ─── LP INCLUYE — SPLIT COMPACTO ─── */
.lp-incluye {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 5rem var(--pad);
}
.lp-incluye-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(4,2,1,0.97) 0%, rgba(4,2,1,0.88) 45%, rgba(4,2,1,0.70) 100%);
}
.lp-incluye-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.lp-incluye-head .eyebrow {
  display: block;
  margin-bottom: 1.2rem;
}
.lp-incluye-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem) !important;
  line-height: 1.05;
  color: var(--cream) !important;
}
.lp-incluye-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.lp-incluye-list li {
  position: relative;
  padding: 0.9rem 0.5rem 0.9rem 1.4rem;
  border-bottom: 1px solid rgba(236,234,230,0.08);
  color: rgba(236,234,230,0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}
.lp-incluye-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 10px;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 900px) {
  .lp-incluye-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-incluye-list  { grid-template-columns: 1fr; }
}

/* ─── LP PAGES ─── */
.page-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--plum-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.55);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.05) 40%, rgba(63,43,86,0.55) 100%);
  z-index: 1;
}
.page-hero {
  height: auto;
  min-height: 80vh;
  align-items: flex-start;
  padding: calc(8rem + 50px) 0 calc(4rem + 50px);
}
.page-hero .hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.page-hero .hero-actions {
  margin-top: 2.5rem;
}
.page-hero p {
  margin-bottom: 0;
}
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin: 1.5rem 0 2rem;
  color: var(--cream);
}
.page-hero .tag {
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-family: var(--mono-cap);
}
.page-hero p { color: rgba(236,234,230,0.92); font-size: 1.05rem; line-height: 1.7; }

.lp-intro {
  background: var(--paper);
  padding: 8rem var(--pad);
}
.lp-intro .container { max-width: 880px; text-align: center; }
.lp-intro .eyebrow { display: inline-block; margin-bottom: 1.5rem; }
.lp-intro h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 2rem; }
.lp-intro p { font-size: 1.15rem; line-height: 1.7; color: rgba(26,20,16,0.75); }

.lp-options {
  background: #FFFFFF;
  padding: 6rem var(--pad);
}

.lp-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .lp-list { grid-template-columns: 1fr; }
}
.lp-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(236,234,230,0.92);
  font-size: 1rem;
  line-height: 1.5;
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.1rem;
  width: 16px; height: 1px;
  background: var(--gold);
}

.lp-proceso {
  background: var(--paper);
  padding: 8rem var(--pad);
}
@media (max-width: 900px) {
  .lp-proceso .pilares-track { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .lp-proceso .pilares-track { grid-template-columns: 1fr !important; }
}

/* Lighten existing hero — más blanco que morado */
.hero {
  background: linear-gradient(180deg, var(--plum-deep) 0%, rgba(63,43,86,0.85) 100%);
}

/* Nav cream cuando NO está scrolled, sobre fondos claros del home (ej tras pasar hero) */
body { color: var(--ink); }

/* Footer adapta a paleta más clara */
footer {
  background: #ECEAE6;
  /* fondo claro → texto base en plum (marca) para que no se pierda */
  color: var(--plum);
}
/* Textos del footer en colores de marca legibles sobre crema */
.footer-tag { color: var(--moss); }
.footer-col a { color: var(--plum); }
.footer-col a:hover { color: var(--gold); }
/* h5 (headings) se mantienen en --gold: patrón de etiqueta de marca sobre claro */
.footer-bot {
  color: rgba(63, 43, 86, 0.6);
  border-top-color: rgba(63, 43, 86, 0.15);
}

/* ─── BODA OPCIONES — header cap + body ─── */
.lp-options { padding: 5rem 0 6rem; background: var(--paper); }

.bopt2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.bopt2-col {
  background: #fff;
  box-shadow: 0 4px 40px rgba(63,43,86,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1), box-shadow 0.55s;
}
.bopt2-col:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(63,43,86,0.16);
}

/* Header cap oscuro */
.bopt2-head {
  background: var(--plum);
  padding: 2.5rem 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.bopt2-col:hover .bopt2-head { background: #2e1f40; }

/* Número fantasma dentro del header */
.bopt2-head-num {
  position: absolute;
  right: -0.25rem;
  bottom: -1.5rem;
  font-family: var(--display);
  font-size: clamp(7rem, 12vw, 14rem);
  color: rgba(243,239,232,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), color 0.4s;
}
.bopt2-col:hover .bopt2-head-num {
  transform: scale(1.06) translateX(-6px);
  color: rgba(243,239,232,0.08);
}

.bopt2-eyebrow {
  display: block;
  font-family: var(--mono-cap);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.bopt2-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
  line-height: 1.08;
  font-weight: 400;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

/* Línea dorada inferior del header — crece en hover */
.bopt2-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
}
.bopt2-col:hover .bopt2-head::after { width: 100%; }

/* Body */
.bopt2-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bopt2-venue {
  font-family: var(--mono-cap);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(63,43,86,0.08);
}

.bopt2-specs { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.bopt2-specs > div {
  display: flex; gap: 1rem; align-items: baseline;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.bopt2-col:hover .bopt2-specs > div:nth-child(1) { transform: translateX(5px); transition-delay: 0s; }
.bopt2-col:hover .bopt2-specs > div:nth-child(2) { transform: translateX(5px); transition-delay: 0.06s; }
.bopt2-specs > div > span:first-child {
  font-family: var(--mono-cap);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,20,16,0.38);
  flex-shrink: 0;
  min-width: 9rem;
}
.bopt2-specs > div > span:last-child { font-size: 1rem; color: var(--ink); line-height: 1.4; }

.bopt2-areas { margin-bottom: 2rem; flex: 1; }
.bopt2-areas-label {
  font-family: var(--mono-cap);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,20,16,0.38);
  margin-bottom: 0.85rem;
}
.bopt2-areas ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.bopt2-areas ul li {
  font-size: 0.95rem;
  color: rgba(26,20,16,0.65);
  line-height: 1.42;
  padding-left: 1.2rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), color 0.3s;
}
.bopt2-areas ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.68rem; top: 0.1em; }
.bopt2-col:hover .bopt2-areas ul li:nth-child(1) { transform: translateX(5px); transition-delay: 0s; }
.bopt2-col:hover .bopt2-areas ul li:nth-child(2) { transform: translateX(5px); transition-delay: 0.04s; }
.bopt2-col:hover .bopt2-areas ul li:nth-child(3) { transform: translateX(5px); transition-delay: 0.08s; }
.bopt2-col:hover .bopt2-areas ul li:nth-child(4) { transform: translateX(5px); transition-delay: 0.12s; }
.bopt2-col:hover .bopt2-areas ul li:nth-child(5) { transform: translateX(5px); transition-delay: 0.16s; }
.bopt2-col:hover .bopt2-areas ul li:nth-child(6) { transform: translateX(5px); transition-delay: 0.20s; }
.bopt2-col:hover .bopt2-areas ul li:nth-child(7) { transform: translateX(5px); transition-delay: 0.24s; }
.bopt2-note { font-size: 0.85rem; font-style: italic; color: rgba(26,20,16,0.38); margin-top: 0.85rem; line-height: 1.55; }

.bopt2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(63,43,86,0.08);
}
.bopt2-cap { display: flex; align-items: baseline; gap: 0.6rem; }
.bopt2-cap-num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 3.5vw, 3.8rem);
  color: var(--plum);
  line-height: 1;
  font-weight: 400;
  display: inline-block;
  transition: color 0.4s, transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.bopt2-col:hover .bopt2-cap-num { color: var(--gold); transform: scale(1.06); }
.bopt2-cap-label {
  font-family: var(--mono-cap);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,20,16,0.38);
}
.bopt2-cta {
  display: inline-block;
  font-family: var(--mono-cap);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: var(--ink);
  transition: background 0.35s, transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.bopt2-cta:hover { background: var(--plum); color: var(--cream); transform: translateY(-2px); }

@media (max-width: 900px) {
  .bopt2-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bopt2-head { padding: 2rem 1.75rem 2.5rem; }
  .bopt2-body { padding: 2rem 1.75rem; }
  .bopt2-footer { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .bopt2-specs > div > span:first-child { min-width: 7.5rem; }
}

.boda-tagline {
  text-align: center;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(63,43,86,0.08);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-style: italic;
  color: rgba(26,20,16,0.42);
}

@media (max-width: 768px) {
  .boda-split { grid-template-columns: 1fr; gap: 3.5rem 0; padding: 3.5rem 0 3rem; }
  .bsplit-divider { height: 1px; width: 100%; }
  .bsplit-specs dt { min-width: 7.5rem; }
}

/* ─── GALERÍA — botón cargar más ─── */
.gal-load-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.gal-load-btn {
  font-family: var(--mono-cap);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--plum);
  background: transparent;
  border: 1px solid var(--plum);
  padding: 0.85rem 2.8rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.gal-load-btn:hover {
  background: var(--plum);
  color: var(--cream);
}
