/* =============================================================
   BRAUNY VELOZ — Sistema de diseño v3
   Paleta oficial Utopia Development:
     Negro marca   #0E1217
     Pantone 421 U #9DA1AA
     Pantone 5445C #82A0BC
     Blanco        #FFFFFF
   Tipografía: Mark Pro (self-hosted) · Figtree de respaldo
   ============================================================= */

/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* ==========================================================
     BRAUNY VELOZ — Paleta oficial Utopia Development
     Negro marca   #0E1217
     Pantone 421 U #9DA1AA
     Pantone 5445C #82A0BC
     Blanco        #FFFFFF
     ========================================================== */
  --utopia-black: #0e1217;
  --utopia-accent: #82a0bc;
  --utopia-accent-hover: #6b8ea9;   /* shade del acento (hover) */
  --utopia-accent-glow: rgba(130, 160, 188, 0.28);
  --utopia-accent-muted: rgba(130, 160, 188, 0.16);
  --utopia-white: #ffffff;
  --text: #0e1217;
  --muted: #6e737b;

  /* --- Tipografía (restaurada: Mark Pro en toda la jerarquía) --- */
  --font-sans: 'Mark Pro', 'Inter', 'Figtree', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Mark Pro', 'Inter', 'Figtree', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;

  /* --- Tokens de UI (restaurados) --- */
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 14px;
  --card-shadow: 0 10px 30px rgba(14, 18, 23, 0.10);

  /* --- Compatibilidad con nombres legacy (mapeados a paleta oficial) --- */
  --emerald-950: #0e1217;                  /* texto/fondos oscuros */
  --emerald-900: #0e1217;
  --emerald-850: #0e1217;
  --emerald-700: #82a0bc;                  /* acentos y hovers */
  --color-khaki-elegant: #82a0bc;
  --terracotta-500: #82a0bc;
  --terracotta-600: #82a0bc;
  --sage-100: rgba(130, 160, 188, 0.14);   /* tiles de icono */
  /* Tintes opacos derivados de Pantone 421 U (mantienen la paleta) */
  --sand-50: #ffffff;
  --sand-100: #f3f4f5;                     /* fondo alterno de sección */
  --sand-200: #e3e5e8;                     /* bordes */
  --sand-300: #cfd2d6;                     /* bordes fuertes */
}

/* Luxury Editorial Glass & Cinematic Utilities */
.glass-pill {
  background: rgba(14, 18, 23, 0.76) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.glass-card {
  background: linear-gradient(135deg, rgba(14, 18, 23, 0.82) 0%, rgba(14, 18, 23, 0.90) 100%) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.hero-gradient {
  background: linear-gradient(
    180deg,
    rgba(14, 18, 23, 0.72) 0%,
    rgba(14, 18, 23, 0.15) 28%,
    rgba(14, 18, 23, 0.5) 58%,
    rgba(14, 18, 23, 0.94) 86%,
    #0e1217 100%
  ) !important;
}

.cinematic-glow {
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.85);
}

/* Mobile Language Bottom Sheet Modal Styles */
.bv-lang-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom, 16px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bv-lang-modal-overlay.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.bv-lang-modal-card {
  width: 100%;
  max-width: 390px;
  border-radius: 20px !important;
  padding: 20px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateY(20px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.bv-lang-modal-overlay.is-open .bv-lang-modal-card {
  transform: translateY(0);
}

.bv-lang-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.bv-lang-modal-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #82a0bc;
  font-family: var(--font-sans);
}

.bv-lang-modal-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.bv-lang-modal-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.bv-lang-modal-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bv-lang-modal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: #6e737b;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.15s ease;
  font-family: var(--font-sans);
}

.bv-lang-modal-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

.bv-lang-modal-item.is-active {
  background: rgba(130, 160, 188, 0.16);
  border-color: rgba(130, 160, 188, 0.4);
  color: #ffffff;
  font-weight: 600;
}

.bv-lang-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #82a0bc;
  box-shadow: 0 0 8px #82a0bc;
}

.bv-lang-modal-code {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background-color: #0e1217;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: #0e1217;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.has-fullscreen-hero {
  background-color: #0e1217 !important;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--emerald-950);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.5rem; }

a { color: var(--utopia-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--utopia-accent-hover); }
img { max-width: 100%; display: block; }

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

.lead { font-weight: 300; font-size: 1.12rem; color: var(--muted); max-width: 60ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--utopia-accent);
  margin-bottom: 12px;
}

.muted { color: var(--muted); }

/* ===== Botones ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--utopia-accent);
  color: var(--utopia-black);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(130, 160, 188, 0.25);
  text-decoration: none;
}
.btn:hover {
  background: var(--utopia-accent-hover);
  transform: translateY(-1px);
  color: var(--utopia-black);
  box-shadow: 0 8px 24px rgba(130, 160, 188, 0.35);
}
.btn.secondary {
  background: transparent;
  color: var(--utopia-white);
  border: 1.5px solid rgba(130, 160, 188, 0.4);
  box-shadow: none;
}
.btn.secondary:hover {
  background: rgba(130, 160, 188, 0.12);
  border-color: var(--utopia-accent);
  color: var(--utopia-white);
  transform: translateY(-1px);
}

/* =============================================================
   STICKY / FIXED LUXURY TOPBAR — macOS / Apple Precision
   Dark frosted glass (bg-[#0e1217]/45) + 3-Axis Monolithic Layout
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding: 0 32px;
  background: linear-gradient(180deg, rgba(14, 18, 23, 0.72) 0%, rgba(14, 18, 23, 0.35) 65%, rgba(14, 18, 23, 0) 100%) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  pointer-events: auto;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-docked {
  background: rgba(14, 18, 23, 0.82) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(130, 160, 188, 0.16) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5) !important;
}

.site-header .nav {
  position: relative;
  width: 100%;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* --- EJE IZQUIERDA: Tipografía en línea horizontal pura + Monograma satinado --- */
.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.site-header .brand:hover {
  opacity: 0.92;
}

.site-header .bv-badge {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.site-header .bv-badge svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}
.site-header .brand:hover .bv-badge {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  transform: scale(1.04);
}

.site-header .brand-text {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.site-header .brand-name,
body.has-fullscreen-hero .site-header .brand-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff !important;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}

.site-header .brand-sep,
body.has-fullscreen-hero .site-header .brand-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.22) !important;
  margin: 0 10px;
  flex-shrink: 0;
}

.site-header .brand-sub,
body.has-fullscreen-hero .site-header .brand-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62) !important;
  white-space: nowrap;
  line-height: 1;
  border: none !important;
}

/* --- EJE CENTRO: Segmented Control Integrado (Cápsula de Vidrio Refinado) --- */
.dynamic-project-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: auto;
  margin: 0;
}

.dynamic-pill-inner {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.40) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  transition: all 0.25s ease;
}

.dynamic-pill-tab {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 9999px;
  text-decoration: none;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.60) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  line-height: 1;
}

.dynamic-pill-tab .pill-tab-title {
  position: relative;
  z-index: 2;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.dynamic-pill-tab:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
}

/* Proyecto Activo: Pastilla en blanco puro con micro-línea de progreso editorial */
.dynamic-pill-tab.active {
  background: #ffffff !important;
  color: #0e1217 !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
}

.dynamic-pill-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--proj-progress, 0%);
  background: linear-gradient(90deg, #82a0bc, #82a0bc);
  border-radius: 9999px;
  transition: width 0.1s linear;
  z-index: 3;
}

.dynamic-pill-tab.active .pill-tab-title {
  color: #0e1217 !important;
}

.dynamic-pill-tab.active:hover {
  background: #ffffff !important;
  color: #0e1217 !important;
}

/* --- EJE DERECHA: Selector de idioma discreto y Botón táctil blanco --- */
.site-header .header-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  z-index: 2;
}

/* Separador vertical dentro de la píldora central */
.dynamic-pill-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 4px;
  flex-shrink: 0;
}

/* Pestaña Guía & Blog dentro de la cápsula central */
.dynamic-pill-blog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #82a0bc !important;
  text-decoration: none !important;
}

.dynamic-pill-blog svg {
  color: #82a0bc;
  transition: transform 0.2s ease;
}

.dynamic-pill-blog:hover {
  color: #82a0bc !important;
  background: rgba(130, 160, 188, 0.12) !important;
}

.dynamic-pill-blog:hover svg {
  transform: translateY(-1px);
}

.dynamic-pill-blog.active {
  background: #82a0bc !important;
  color: #0e1217 !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(130, 160, 188, 0.35) !important;
}

.dynamic-pill-blog.active svg,
.dynamic-pill-blog.active .pill-tab-title {
  color: #0e1217 !important;
}

/* =============================================================
   SELECTOR DE IDIOMA DESKTOP (BOTÓN FLOTANTE & MENÚ DESPLEGABLE)
   ============================================================= */
.bv-desktop-lang-dropdown {
  position: relative;
  display: inline-block;
}

.bv-desktop-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(14, 18, 23, 0.85);
  border: 1px solid rgba(130, 160, 188, 0.35);
  border-radius: 9999px;
  padding: 6px 14px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.bv-desktop-lang-btn:hover,
.bv-desktop-lang-dropdown.is-open .bv-desktop-lang-btn {
  background: rgba(14, 18, 23, 0.95);
  border-color: rgba(130, 160, 188, 0.65);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(130, 160, 188, 0.20);
}

.bv-lang-globe-icon {
  color: #82a0bc;
  flex-shrink: 0;
}

.bv-desktop-lang-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bv-desktop-lang-label strong {
  font-weight: 600;
  color: #ffffff;
}

.bv-lang-bullet {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
}

.bv-lang-chevron {
  color: rgba(255, 255, 255, 0.62);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.bv-desktop-lang-dropdown.is-open .bv-lang-chevron {
  transform: rotate(180deg);
  color: #82a0bc;
}

/* Menú Desplegable Flotante de Lujo */
.bv-desktop-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  background: rgba(14, 18, 23, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(130, 160, 188, 0.30);
  border-radius: 18px;
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.8), 0 0 24px rgba(130, 160, 188, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 100;
}

.bv-desktop-lang-dropdown.is-open .bv-desktop-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.bv-desktop-lang-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.62);
}

.bv-desktop-lang-header svg {
  color: #82a0bc;
}

.bv-desktop-lang-options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bv-desktop-lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: all 0.15s ease;
}

.bv-desktop-lang-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bv-desktop-lang-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.15s ease;
}

.bv-desktop-lang-name {
  line-height: 1;
}

.bv-lang-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
}

.bv-lang-check {
  color: #82a0bc;
}

.bv-desktop-lang-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.bv-desktop-lang-item:hover .bv-desktop-lang-dot {
  background: rgba(130, 160, 188, 0.5);
}

.bv-desktop-lang-item.is-active {
  background: rgba(130, 160, 188, 0.12);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(130, 160, 188, 0.25);
}

.bv-desktop-lang-item.is-active .bv-desktop-lang-dot {
  background: #82a0bc;
  box-shadow: 0 0 8px #82a0bc;
}

@media (max-width: 768px) {
  .bv-desktop-lang-dropdown {
    display: none !important;
  }
}

/* Botón compacto de idioma para móvil en topbar */
.bv-mobile-lang-btn {
  display: none; /* Sólo visible en móviles via media-query */
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 5px 9px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
}

.bv-mobile-lang-btn svg {
  color: var(--utopia-accent);
}

.bv-mobile-lang-btn:active {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(0.96);
}

/* Botón de contacto en píldora táctil blanca */
.site-header .btn-call,
.site-header.theme-dark .btn-call,
body.has-fullscreen-hero .site-header .btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  padding: 8px 16px !important;
  border-radius: 9999px !important;
  background: #ffffff !important;
  color: #0e1217 !important;
  border: none !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-header .btn-call span,
.site-header.theme-dark .btn-call span,
body.has-fullscreen-hero .site-header .btn-call span {
  color: #0e1217 !important;
}

.site-header .btn-call:hover,
.site-header.theme-dark .btn-call:hover,
body.has-fullscreen-hero .site-header .btn-call:hover {
  background: #9da1aa !important;
  color: #0e1217 !important;
  transform: scale(1.02);
}

.site-header .mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.12s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-header .mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-header .mobile-toggle:active {
  transform: scale(0.94);
}

/* Fallback para navegadores sin soporte de backdrop-filter */
@supports not ((-webkit-backdrop-filter: blur(24px)) or (backdrop-filter: blur(24px))) {
  .site-header,
  .site-header.is-docked {
    background: rgba(14, 18, 23, 0.92) !important;
  }
  .dynamic-pill-inner {
    background: rgba(14, 18, 23, 0.90) !important;
  }
}

/* Ajustes Responsive */
@media (max-width: 960px) {
  .site-header .brand-sep,
  .site-header .brand-sub {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* Páginas internas (Le Ciel, The Winds, Punta Cana, etc): el header + pill ocupan ~120px en mobile.
     Aseguramos que el hero empiece debajo para que el eyebrow no se solape. */
  .property-hero,
  .hero {
    padding-top: 130px !important;
    padding-bottom: 60px !important;
  }
  .site-header {
    padding: 0 16px;
    height: 60px;
    /* Header oscuro de lujo en mobile */
    background: rgba(14, 18, 23, 0.94) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
  }
  .site-header.is-docked {
    background: rgba(14, 18, 23, 0.97) !important;
  }

  /* En móviles, la navegación de proyectos vive abajo en la zona de pulgar (.mobile-vip-proj-dock) */
  .dynamic-project-pill {
    display: none !important;
  }

  /* En móviles, ocultar el listado de 6 idiomas en topbar y mostrar el botón compacto */
  .site-header .bv-desktop-langs,
  .site-header .lang-switch {
    display: none !important;
  }
  .bv-mobile-lang-btn {
    display: inline-flex !important;
  }

  .site-header .header-actions {
    gap: 8px;
  }

  /* En móviles, la acción de contacto fija vive abajo en mobile-vip-bar o en el drawer */
  .site-header .btn-call {
    display: none !important;
  }

  /* ===== Side-vertical dock: navegación entre proyectos en mobile =====
     3 bolitas alineadas verticalmente al borde derecho. Aparecen al hacer scroll
     (>340px). La activa se expande y rellena de arena. Tooltip a la izquierda. */
  body:not(.menu-open) .stitch-floating-nav {
    top: 50% !important;
    right: 6px !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateX(16px) translateY(-50%) !important;
    width: 18px !important;
    max-width: none !important;
  }
  body:not(.menu-open) .stitch-floating-nav.visible {
    transform: translateX(0) translateY(-50%) !important;
  }
  body:not(.menu-open) .stitch-floating-nav-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 10px 0 !important;
    gap: 10px !important;
    border-radius: 14px !important;
    background: rgba(14, 18, 23, 0.72) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32) !important;
  }
  body:not(.menu-open) .stitch-floating-nav .stitch-pills-wrap {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
  }
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn {
    position: relative !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 16px !important;
    min-width: 16px !important;
    width: 16px !important;
    height: 16px !important;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
    font-size: 9px !important;
    line-height: 1 !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
  }
  /* Tooltip a la izquierda de cada bolita */
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    background: rgba(14, 18, 23, 0.94);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 11px;
    border-radius: 7px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    border: 1px solid rgba(130, 160, 188, 0.35);
    max-width: 220px;
  }
  /* Ocultar el contenido textual de las bolitas (sólo se ve la bolita + tooltip) */
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn .st-name,
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn .st-num,
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn .st-sep,
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn .st-tag,
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn .st-abbrev {
    display: none !important;
  }
  /* Tooltip on hover: muestra "Toca para ver X" */
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn:hover::after,
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn:focus::after,
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn:active::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  /* Bolita activa: expandida y rellena en acento Utopia */
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn.glass-pill-active,
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn.is-active {
    background: #82a0bc !important;
    border-color: #82a0bc !important;
    transform: scale(1.25) !important;
  }
  /* Tooltip flotante en el body — muestra "Estás viendo X" junto a la bolita activa */
  .dock-status-tip {
    display: none;
    position: fixed;
    z-index: 95;
    background: rgba(14, 18, 23, 0.96);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 6px 11px;
    border-radius: 7px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(130, 160, 188, 0.35);
    max-width: 200px;
    transform: translateY(-50%);
  }
  .dock-status-tip.is-visible {
    display: block;
  }
  /* Tap activo de la bolita (efecto pressed) */
  body:not(.menu-open) .stitch-floating-nav .stitch-tab-btn:active {
    transform: scale(0.88) !important;
  }
}

@media (max-width: 1024px) {
  .site-header .nav-links {
    display: none;
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    background: rgba(14, 18, 23, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(130, 160, 188, 0.25);
    border-radius: 24px;
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    z-index: 1000;
  }
  .site-header .nav-links.open {
    display: flex;
  }
  .site-header .nav-item-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .site-header .nav-link-dropdown {
    width: 100%;
    justify-content: space-between;
    padding: 6px 0;
  }
  .site-header .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 6px !important;
    box-shadow: none !important;
    background: rgba(14, 18, 23, 0.85) !important;
    border: 1px solid rgba(130, 160, 188, 0.15) !important;
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .site-header .nav-item-dropdown.is-open .nav-dropdown-menu,
  .site-header .nav-item-dropdown:focus-within .nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .site-header .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    transition: background-color 0.2s ease;
  }
  .site-header .mobile-toggle:active {
    background: rgba(255, 255, 255, 0.10);
  }
}
@media (min-width: 640px) and (max-width: 1024px) {
  .site-header .btn-call span {
    display: inline;
  }
  .site-header .btn-call {
    padding: 7px 16px;
  }
}

/* Page spacing under floating header */
body.has-standard-page {
  padding-top: 60px; /* = alto real del header en movil (evita la banda de fondo) */
}
@media (min-width: 1024px) {
  body.has-standard-page {
    padding-top: 64px; /* = alto real del header en desktop */
  }
}

/* Header Projects Dropdown — Anchor, Vertical Layout & Monogram Badge System */
.nav-item-dropdown {
  position: relative !important;
  display: inline-flex;
  align-items: center;
}

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.nav-arrow {
  font-size: 8px;
  transition: transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
}

.nav-item-dropdown:hover .nav-arrow,
.nav-item-dropdown:focus-within .nav-arrow,
.nav-item-dropdown.is-open .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Container: anchored directly beneath "Proyectos", dark luxury #0e1217 card, no overflow */
.nav-dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 8px !important;
  width: 280px;
  min-width: 260px;
  max-width: calc(100vw - 32px);
  background: #0e1217 !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 16px !important;
  padding: 10px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden !important;
  transform: translateY(6px);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 1050;
  box-sizing: border-box;
}

/* Invisible bridge so mouse hover doesn't drop when transitioning to the menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Vertical Items Column */
.nav-dropdown-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Single project row with generous gap to avoid any overlap */
.nav-drop-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  color: #ffffff !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.site-header .nav-dropdown-menu a,
.site-header.theme-light .nav-dropdown-menu a,
body.has-standard-page .site-header:not(.theme-dark) .nav-dropdown-menu a,
.nav-drop-item {
  color: #ffffff !important;
}

.site-header .nav-dropdown-menu a::after,
.site-header.theme-light .nav-dropdown-menu a::after,
body.has-standard-page .site-header:not(.theme-dark) .nav-dropdown-menu a::after,
.nav-drop-item::after {
  display: none !important;
}

.nav-drop-item:hover,
.nav-drop-item:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.nav-drop-num {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-family: var(--font-sans), monospace !important;
  min-width: 18px;
  flex-shrink: 0;
  text-align: left;
}

.nav-drop-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2px 7px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: #ffffff !important;
  flex-shrink: 0 !important;
  min-width: 28px;
  text-align: center;
  transition: all 0.2s ease;
}

.nav-drop-item:hover .nav-drop-badge {
  background: rgba(130, 160, 188, 0.22) !important;
  border-color: rgba(130, 160, 188, 0.50) !important;
  color: #ffffff !important;
}

.nav-drop-info {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  flex: 1;
  text-align: left;
}

.nav-drop-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  white-space: nowrap;
}

.nav-drop-tag {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.60) !important;
  line-height: 1.25 !important;
  margin-top: 2px;
  white-space: nowrap;
}

/* Compatibility aliases for legacy or utility markup */
.nav-drop-btn {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100%;
  padding: 8px 10px !important;
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff !important;
  font-family: var(--font-sans);
}
.nav-drop-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateX(2px);
}
.nav-drop-btn .nd-num {
  font-family: var(--font-sans), monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
  min-width: 18px;
}
.nav-drop-btn .nd-info {
  display: flex;
  flex-direction: column;
}
.nav-drop-btn .nd-name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}
.nav-drop-btn .nd-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* Lang switch */
.lang-switch {
  display: inline-flex; padding: 3px; border-radius: 999px;
  border: 1px solid var(--sand-200); background: var(--sand-100);
  font-size: .72rem; font-weight: 600;
}
.lang-switch a {
  padding: 5px 13px; border-radius: 999px; color: var(--muted);
  transition: var(--transition);
}
.lang-switch a:hover { color: var(--emerald-850); }
.lang-switch a.active { background: var(--emerald-850); color: var(--sand-50); }

.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--emerald-950); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, var(--sand-50) 100%);
  padding: 124px 0 100px;
}
.hero .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -0.02em; }
.hero h1 .accent { font-style: italic; font-weight: 300; color: var(--emerald-850); }
.hero p.lead { margin-bottom: 34px; font-size: 1.15rem; line-height: 1.7; color: #6e737b; max-width: 58ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  background: rgba(14, 18, 23, 0.05); border: 1px solid rgba(14, 18, 23, 0.12);
  color: var(--emerald-950); font-size: 10.5px;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px;
}

.hero-img, .hero-frame {
  border-radius: 24px; box-shadow: 0 24px 64px -12px rgba(14, 18, 23,.22);
  overflow: hidden; position: relative; border: 1px solid rgba(255, 255, 255, 0.55);
  height: 530px; background: #0e1217;
}
.hero-slideshow-track {
  position: relative; width: 100%; height: 100%;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1; pointer-events: auto; z-index: 1;
}

/* Ken Burns slow cinematic movement */
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.0);
  transition: transform 7.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-slide.active img {
  transform: scale(1.09) translate(-1%, -0.5%);
}

.hero-overlay-gradient {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(to top, rgba(14, 18, 23, 0.82) 0%, rgba(14, 18, 23, 0.2) 42%, transparent 75%);
}

/* Minimalist luxury progress dashes */
.hero-indicators {
  position: absolute; top: 18px; right: 20px; z-index: 10;
  display: flex; gap: 6px; align-items: center;
  background: rgba(14, 18, 23, 0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-indicator-dash {
  width: 22px; height: 3px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.35); border: none; padding: 0;
  cursor: pointer; position: relative; overflow: hidden; transition: var(--transition);
}
.hero-indicator-dash .dash-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: #fff; border-radius: 999px;
}
.hero-indicator-dash.active {
  width: 32px; background: rgba(255, 255, 255, 0.45);
}
.hero-indicator-dash.active .dash-fill {
  width: 100%;
  animation: heroDashProgress 5.5s linear forwards;
}

@keyframes heroDashProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Hero Quote Card Transitions */
.hero-overlay, .hero-quote-card {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 18px;
  padding: 18px 22px; color: var(--emerald-950);
  box-shadow: 0 12px 36px rgba(14, 18, 23, 0.16);
  z-index: 5;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(14, 18, 23, 0.24);
}

.hero-overlay-tag, .hero-quote-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--emerald-900); margin-bottom: 8px;
}
.hero-quote-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-khaki-elegant, #82a0bc);
  box-shadow: 0 0 0 0 rgba(130, 160, 188, 0.7);
  animation: quoteDotPulse 2s infinite;
}

@keyframes quoteDotPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(130, 160, 188, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(130, 160, 188, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(130, 160, 188, 0); }
}

.hero-overlay p, .hero-quote-text {
  font-family: var(--font-serif); font-style: italic; font-size: 1.15rem;
  color: var(--emerald-950); line-height: 1.45; margin: 0;
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}
.hero-quote-text.fading {
  opacity: 0; transform: translateY(3px);
}

/* Hero Scroll Discovery Cue */
.hero-scroll-discovery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding-bottom: 8px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease, transform 0.3s ease;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  z-index: 5;
  position: relative;
}
.hero-scroll-discovery:hover {
  color: #ffffff;
  transform: translateY(2px);
}
.hero-scroll-cue {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.hero-scroll-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.hero-scroll-discovery:hover .hero-scroll-chevron {
  border-color: var(--color-khaki-elegant, #82a0bc);
  background: rgba(130, 160, 188, 0.18);
  color: var(--color-khaki-elegant, #82a0bc);
}

/* ===== Stats bar ===== */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 30px; margin-top: 36px; border-top: 1px solid var(--sand-200);
}
.stats .n { font-family: var(--font-serif); font-size: 2.2rem; color: var(--emerald-950); font-weight: 500; }
.stats .l { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ===== Sections ===== */
.section { padding: 108px 0; }
.section.alt { background: var(--sand-100); }
.section.white { background: #fff; }
.section-head { margin-bottom: 48px; max-width: 720px; }
.section-head h2 { margin: 6px 0 12px; }
.section-head p { color: var(--muted); font-weight: 300; }

/* ===== Cards grid ===== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius);
  padding: 30px; transition: var(--transition);
}
.card:hover { box-shadow: var(--card-shadow); border-color: rgba(14, 18, 23,.3); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.card p { font-size: .95rem; color: var(--muted); }
.card .tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--terracotta-600); margin-bottom: 14px;
}
.card .icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--sage-100);
  display: flex; align-items: center; justify-content: center; color: var(--emerald-850);
  margin-bottom: 18px; font-size: 1.3rem;
}
.card .icon svg {
  width: 24px; height: 24px; display: block;
}

/* ===== Top Projects Interactive Showcase & Carousels ===== */
/* ===== Top Projects Interactive Showcase & Carousels ===== */
.top-projects-section {
  padding: 108px 0 116px;
  background: #ffffff;
  border-bottom: 1px solid rgba(14, 18, 23, 0.08);
  position: relative;
}
.top-projects-head {
  text-align: center; max-width: 760px; margin: 0 auto 52px;
}
.top-projects-head h2 { margin: 8px 0 14px; font-size: clamp(2.2rem, 3.8vw, 3rem); font-weight: 400; }
.top-projects-discovery-bar {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.top-projects-discovery-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 18, 23, 0.04);
  border: 1px solid rgba(14, 18, 23, 0.12);
  color: var(--emerald-950);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.top-projects-discovery-tag svg {
  color: var(--color-khaki-elegant, #82a0bc);
  flex-shrink: 0;
}

/* Quick Project Selector Tabs */
.projects-quick-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px auto 0;
  max-width: 780px;
}
.proj-tab-btn {
  background: #ffffff;
  border: 1px solid rgba(14, 18, 23, 0.15);
  color: #6e737b;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(14, 18, 23, 0.02);
}
.proj-tab-btn:hover {
  background: rgba(14, 18, 23, 0.04);
  border-color: var(--emerald-850);
  color: var(--emerald-950);
}
.proj-tab-btn.active {
  background: var(--emerald-850);
  border-color: var(--emerald-850);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(14, 18, 23, 0.2);
}
.top-projects-grid.is-filtered {
  display: flex;
  justify-content: center;
}
.top-projects-grid.is-filtered .project-showcase-card {
  max-width: 480px;
  width: 100%;
}

.top-projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.project-showcase-card {
  background: #ffffff;
  border: 1px solid rgba(14, 18, 23, 0.09);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(14, 18, 23, 0.04), 0 1px 3px rgba(14, 18, 23, 0.02);
}
.project-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -10px rgba(14, 18, 23, 0.12);
  border-color: rgba(14, 18, 23, 0.22);
}

.project-carousel-container {
  position: relative; width: 100%; aspect-ratio: 16 / 10.5;
  overflow: hidden; background: #0e1217;
  border-radius: 20px 20px 0 0;
}
.carousel-track {
  position: relative; width: 100%; height: 100%;
}
.carousel-slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease-in-out, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform: scale(1.05);
}
.carousel-slide.active {
  opacity: 1; pointer-events: auto; transform: scale(1);
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
}

.carousel-gradient-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(14, 18, 23, 0.72) 0%, rgba(14, 18, 23, 0.1) 48%, transparent 100%);
}

.carousel-caption-pill {
  position: absolute; bottom: 12px; left: 14px; right: 14px; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: rgba(14, 18, 23, 0.68); backdrop-filter: blur(10px);
  padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.14);
}
.carousel-caption-text {
  font-size: 11px; color: #ffffff; font-weight: 400; letter-spacing: 0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.carousel-counter-tag {
  font-size: 10px; color: var(--color-khaki-elegant, #82a0bc); font-weight: 600;
  background: rgba(130, 160, 188, 0.2); padding: 2px 7px; border-radius: 999px;
  flex-shrink: 0; font-variant-numeric: tabular-nums;
}

.carousel-badge {
  position: absolute; top: 12px; left: 12px; z-index: 12;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; padding: 4px 10px; border-radius: 999px;
}

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 15;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(14, 18, 23, 0.6); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2); cursor: pointer;
  transition: var(--transition); opacity: 0; backdrop-filter: blur(4px);
}
.project-showcase-card:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover {
  background: var(--emerald-850); border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

.carousel-dots {
  position: absolute; top: 14px; right: 14px; z-index: 12;
  display: flex; gap: 5px; align-items: center;
}
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.5); cursor: pointer;
  transition: var(--transition); border: none; padding: 0;
}
.carousel-dot.active {
  background: #fff; width: 18px; border-radius: 999px;
}

.project-card-body {
  padding: 28px 26px 30px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1;
}
.project-card-body h3 {
  font-family: var(--font-serif); font-size: 1.85rem; color: var(--emerald-950);
  margin-bottom: 8px; font-weight: 400;
}
.project-card-desc {
  font-size: 13.5px; line-height: 1.65; color: #6e737b; font-weight: 300; margin-bottom: 20px;
}
.project-specs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 14px 0; border-top: 1px solid rgba(14, 18, 23, 0.08); border-bottom: 1px solid rgba(14, 18, 23, 0.08);
  margin-bottom: 22px;
}
.project-spec-item .spec-label {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: .1em;
  color: #6e737b; font-weight: 600; display: block;
}
.project-spec-item .spec-val {
  font-size: 12.5px; color: var(--emerald-950); font-weight: 600; display: block; margin-top: 3px;
}

.project-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-project {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--emerald-850);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(14, 18, 23, 0.16);
  text-decoration: none;
}
.btn-project:hover {
  background: var(--emerald-900);
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(14, 18, 23, 0.25);
}
.btn-project-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(14, 18, 23, 0.22);
  color: var(--emerald-850);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--transition);
  text-decoration: none;
}
.btn-project-wa:hover {
  background: rgba(14, 18, 23, 0.04);
  border-color: var(--emerald-850);
  color: var(--emerald-950);
  transform: translateY(-1px);
}
.btn-project-wa svg {
  color: var(--color-khaki-elegant, #82a0bc);
}

/* Ultra-Luxury Pricing Disclaimer */
.luxury-pricing-disclaimer {
  margin-top: 52px;
  padding: 26px 32px;
  background: #ffffff;
  border: 1px solid rgba(130, 160, 188, 0.35);
  border-left: 4px solid var(--color-khaki-elegant, #82a0bc);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(14, 18, 23, 0.03);
}
.luxury-disclaimer-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(130, 160, 188, 0.12);
  color: var(--color-khaki-elegant, #82a0bc);
  display: flex;
  align-items: center;
  justify-content: center;
}
.luxury-disclaimer-content h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--emerald-950);
  margin: 0 0 6px 0;
}
.luxury-disclaimer-content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #6e737b;
  font-weight: 300;
}
@media (max-width: 768px) {
  .luxury-pricing-disclaimer {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }
}

/* ===== Feature items (Cap Cana spotlight) ===== */
.spotlight-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; padding-bottom: 24px; border-bottom: 1px solid var(--sand-200);
  flex-wrap: wrap; gap: 20px;
}
.spotlight-head .head-left { max-width: 660px; }
.spotlight-head .head-right { max-width: 400px; font-size: 14px; color: #6e737b; font-weight: 300; line-height: 1.65; }

.spotlight-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.spotlight-card {
  padding: 34px 28px; border-radius: 20px; background: #ffffff;
  border: 1px solid rgba(14, 18, 23, 0.08); display: flex; flex-direction: column;
  justify-content: space-between; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(14, 18, 23, 0.03);
}
.spotlight-card:hover {
  border-color: rgba(130, 160, 188, 0.5); box-shadow: 0 14px 36px rgba(14, 18, 23, 0.08); transform: translateY(-3px);
}
.spotlight-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(14, 18, 23, 0.05);
  display: flex; align-items: center; justify-content: center; color: var(--color-khaki-elegant, #82a0bc);
  margin-bottom: 22px;
}
.spotlight-card h3 {
  font-family: var(--font-serif); font-size: 1.45rem; color: var(--emerald-950);
  font-weight: 500; margin-bottom: 12px;
}
.spotlight-card p {
  font-size: 0.88rem; color: #6e737b; font-weight: 400; line-height: 1.65;
}
.spotlight-action {
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; color: var(--emerald-850); margin-top: 26px; display: inline-flex;
  align-items: center; gap: 6px;
  transition: var(--transition);
}
.spotlight-action:hover { color: var(--emerald-700); transform: translateX(3px); }

/* Foreign Investor Reassurance Section */
.foreign-investor-section {
  padding: 108px 0;
  background: #ffffff;
  border-top: 1px solid rgba(14, 18, 23, 0.06);
  border-bottom: 1px solid rgba(14, 18, 23, 0.06);
}
.foreign-investor-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.foreign-investor-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  margin: 8px 0 14px;
}
.foreign-investor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.foreign-card {
  background: #ffffff;
  border: 1px solid rgba(14, 18, 23, 0.08);
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(14, 18, 23, 0.03);
}
.foreign-card:hover {
  transform: translateY(-3px);
  border-color: rgba(130, 160, 188, 0.5);
  box-shadow: 0 14px 36px rgba(14, 18, 23, 0.08);
}
.foreign-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 18, 23, 0.05);
  color: var(--color-khaki-elegant, #82a0bc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.foreign-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--emerald-950);
  margin-bottom: 12px;
}
.foreign-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #6e737b;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1024px) {
  .foreign-investor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .foreign-investor-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Connectivity & Master Plan Section (Apple / Steve Jobs Precision) ===== */
.connectivity-section {
  padding: 112px 0 64px; /* pt-28 pb-16 */
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--font-sans, "Figtree", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif);
  -webkit-font-smoothing: antialiased;
}

.connectivity-header {
  margin-bottom: 48px;
  max-width: 820px;
}

.connectivity-kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6e737b;
  margin-bottom: 12px;
}

.connectivity-title {
  font-family: var(--font-sans, "Figtree", -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif);
  font-size: 38px;
  font-weight: 600;
  color: #0e1217;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.connectivity-sub {
  font-size: 16px;
  color: #6e737b;
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
}

/* 50% / 50% Grid */
.connectivity-grid-apple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Columna Izquierda: Cartografía a Medida */
.conn-map-showcase {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.conn-map-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 2px 4px;
  flex-wrap: wrap;
}

.conn-map-zone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(14, 18, 23, 0.04);
  border: 1px solid rgba(14, 18, 23, 0.1);
  font-size: 11.5px;
  color: #0e1217;
}

.conn-map-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #82a0bc;
  box-shadow: 0 0 0 2px rgba(130, 160, 188, 0.25);
  animation: pulse 2s infinite;
}

.conn-map-zone-label {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0e1217;
}

.conn-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.conn-map-coord {
  font-size: 11px;
  font-family: var(--font-sans);
  color: #6e737b;
  letter-spacing: 0.04em;
}

/* View switcher in topbar */
.conn-map-views-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #ffffff;
  padding: 2px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.conn-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #6e737b;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.conn-view-btn.active {
  background: #ffffff;
  color: #0e1217;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Viewport & Layers */
.conn-map-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 440px;
  border-radius: 18px;
  overflow: hidden;
  background: #0e1217;
}

.conn-layer-google,
.conn-layer-masterplan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.conn-layer-google {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.conn-layer-google:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.conn-layer-masterplan {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.conn-layer-masterplan.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.conn-google-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #0e1217;
}

.conn-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.conn-map-pins-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

/* Pins */
.conn-apple-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0e1217;
  border: 1.5px solid #82a0bc;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  padding: 0;
  z-index: 5;
}

.conn-apple-pin-core {
  line-height: 1;
  font-family: var(--font-sans);
}

.conn-apple-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
}

.conn-apple-pin.active,
.conn-apple-pin:hover {
  transform: translate(-50%, -50%) scale(1.22);
  background: #82a0bc;
  border-color: #ffffff;
  color: #0e1217;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.conn-apple-pin.active::after,
.conn-apple-pin:hover::after {
  animation: pin-ripple 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes pin-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.conn-map-bottombar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px 2px;
  font-size: 11.5px;
  color: #6e737b;
  gap: 12px;
  flex-wrap: wrap;
}

.conn-map-status-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #6e737b;
  font-weight: 500;
}

.conn-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #82a0bc;
  box-shadow: 0 0 0 2px rgba(130, 160, 188, 0.2);
}

.conn-map-legend-items {
  display: flex;
  align-items: center;
  gap: 16px;
}

.conn-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.conn-legend-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.conn-legend-bullet.golf { background: #82a0bc; }
.conn-legend-bullet.beach { background: #82a0bc; }
.conn-legend-bullet.marina { background: #82a0bc; }

.conn-map-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6e737b;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: color 0.18s ease;
}
.conn-map-ext-link:hover {
  color: #0e1217;
}

/* Columna Derecha: Segmented Control & Lista de Destinos */
.conn-dest-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conn-mode-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.conn-segmented-control {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 9999px;
  gap: 2px;
}

.conn-seg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  color: #6e737b;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
}

.conn-seg-btn.active {
  background: #ffffff;
  color: #0e1217;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.conn-seg-btn svg {
  flex-shrink: 0;
}

/* Lista de Destinos */
.conn-dest-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conn-dest-row {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.conn-dest-row:hover,
.conn-dest-row.active {
  border-color: rgba(130, 160, 188, 0.6);
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.conn-dest-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.conn-dest-num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: #6e737b; /* Gris titanio mate */
  letter-spacing: 0.08em;
  margin-top: 2px;
  flex-shrink: 0;
}

.conn-dest-texts {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.conn-dest-title {
  font-size: 14.5px;
  font-weight: 600;
  color: #0e1217;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.conn-dest-desc {
  font-size: 12.5px;
  font-weight: 400;
  color: #6e737b;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conn-dest-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}

.conn-dest-time {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: #0e1217;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.conn-dest-sub {
  font-size: 11px;
  font-weight: 500;
  color: #6e737b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Mobility Note */
.conn-mobility-note {
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(130, 160, 188, 0.08);
  border: 1px solid rgba(130, 160, 188, 0.22);
}

.conn-mobility-note p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #6e737b;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .connectivity-grid-apple {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .connectivity-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .connectivity-section {
    padding: 72px 0 48px;
  }
  .connectivity-title {
    font-size: 26px;
  }
  .conn-dest-row {
    padding: 14px 16px;
  }
  .conn-dest-desc {
    white-space: normal;
  }
  .conn-mode-bar {
    justify-content: flex-start;
  }
}

/* ===== Comparison (zonas) cards ===== */
.compare-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; padding-top: 18px;
}
.compare-card {
  border-radius: 24px; padding: 36px 32px;
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              opacity 0.35s ease,
              background-color 0.35s ease,
              border-color 0.35s ease,
              filter 0.35s ease;
}

/* Cap Cana: Destacada, en primer plano y con máxima jerarquía editorial (Efecto Von Restorff) */
.compare-card.featured {
  z-index: 3;
  background: #ffffff;
  border: 2px solid var(--emerald-850);
  box-shadow: 0 16px 42px rgba(14, 18, 23, 0.12), 0 2px 8px rgba(14, 18, 23, 0.05);
  transform: translateY(-6px);
}
.compare-card.featured:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 50px rgba(14, 18, 23, 0.18);
}

/* Zonas secundarias (Punta Cana & Bávaro): secundarias pero 100% legibles con alto contraste (WCAG AAA) */
.compare-card:not(.featured) {
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(14, 18, 23, 0.09);
  box-shadow: 0 4px 18px rgba(14, 18, 23, 0.03);
  opacity: 1;
  transform: translateY(2px);
  filter: none;
}
.compare-card:not(.featured) h3 {
  color: var(--emerald-950);
}
.compare-card:not(.featured) .compare-desc {
  color: #6e737b;
}
.compare-card:not(.featured) .compare-cta .btn.secondary {
  border-color: rgba(14, 18, 23, 0.35);
  color: var(--emerald-950);
  background: #ffffff;
}

/* Interacción: al pasar el cursor, la zona secundaria se realza sutilmente sin movimientos bruscos */
.compare-card:not(.featured):hover {
  z-index: 2;
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(130, 160, 188, 0.5);
  box-shadow: 0 14px 36px rgba(14, 18, 23, 0.08);
}
.compare-card:not(.featured):hover .compare-cta .btn.secondary {
  border-color: var(--emerald-850);
  color: var(--emerald-850);
}

.compare-badge {
  position: absolute; top: -14px; left: 32px;
  background: var(--emerald-850); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(14, 18, 23, 0.25);
}
.compare-card h3 {
  font-size: 1.9rem; color: var(--emerald-950); margin: 6px 0 4px;
}
.compare-subtitle {
  font-size: 11.5px; text-transform: uppercase; font-weight: 600;
  letter-spacing: .08em; color: var(--emerald-700); margin-bottom: 16px;
}
.compare-card:nth-child(2) .compare-subtitle {
  color: var(--color-khaki-elegant, #82a0bc);
}
.compare-desc {
  font-size: 0.88rem; line-height: 1.65; color: #6e737b; font-weight: 400; margin-bottom: 24px;
}
.compare-features {
  list-style: none; border-top: 1px solid var(--sand-200); padding-top: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.compare-features li {
  display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: #6e737b;
}
.compare-features li span {
  line-height: 1.4;
}
.compare-features li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f3e38' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.compare-card:nth-child(2) .compare-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239c7a4b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.compare-cta {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--sand-100);
}
.btn.full-w {
  display: block; width: 100%; text-align: center;
}

/* ===== CTA / lead capture ===== */
.cta-section {
  background: var(--utopia-black); color: var(--sand-50);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section h2 { color: var(--sand-50); }
.cta-section .kicker { color: var(--utopia-accent); }
.cta-section p { color: rgba(255, 255, 255, 0.75); font-weight: 300; max-width: 640px; margin: 0 auto 30px; }

/* ===== Barra de Confidencialidad & Garantía de Desarrolladora (Lujo Silencioso) ===== */
.lead-consultation-guarantee-bar {
  max-width: 680px;
  margin: 0 auto 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 160, 188, 0.32);
  border-radius: 999px;
  padding: 11px 26px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6e737b;
}
.lead-guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.lead-guarantee-item svg {
  color: var(--utopia-accent);
  flex-shrink: 0;
}
.lead-guarantee-separator {
  width: 1px;
  height: 16px;
  background: rgba(130, 160, 188, 0.25);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .lead-consultation-guarantee-bar {
    flex-direction: column;
    gap: 10px;
    border-radius: 18px;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .lead-guarantee-separator {
    display: none;
  }
}

/* ===== Drawer Progress (VIP Modal) ===== */
.drawer-progress-card {
  margin-bottom: 22px;
  background: rgba(14, 18, 23, 0.85);
  border: 1px solid rgba(130, 160, 188, 0.25);
  border-radius: 16px;
  padding: 14px 18px;
}
.drawer-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.drawer-endowed-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(130, 160, 188, 0.12);
  border: 1px solid rgba(130, 160, 188, 0.32);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}
.drawer-endowed-pill svg { color: var(--utopia-accent); flex-shrink: 0; }
.drawer-progress-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(130, 160, 188, 0.2);
  border: 1px solid rgba(130, 160, 188, 0.4);
  padding: 2px 8px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.drawer-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.drawer-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #82a0bc, #82a0bc);
  border-radius: 99px;
  transition: width 0.35s ease;
  box-shadow: 0 0 10px rgba(130, 160, 188, 0.35);
}
.drawer-progress-sub {
  font-size: 0.74rem;
  color: #6e737b;
  font-weight: 400;
}

/* Lead Capture Form & Project Picker */
.lead-capture-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lead-project-picker {
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px 20px;
}
.lead-picker-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--utopia-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.lead-picker-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lead-picker-pill {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.lead-picker-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.lead-picker-pill span {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
  user-select: none;
}
.lead-picker-pill:hover span {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
}
.lead-picker-pill input:checked + span {
  background: var(--utopia-accent);
  color: var(--utopia-black);
  border-color: var(--utopia-accent);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(130, 160, 188, 0.35);
}

.lead-fields-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lead-field-item {
  flex: 1 1 200px;
}
.lead-field-item input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.lead-field-item input::placeholder {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}
.lead-field-item input:focus {
  border-color: var(--utopia-accent);
  background: rgba(255, 255, 255, 0.12);
}
.lead-submit-btn {
  padding: 14px 28px;
  background: var(--utopia-accent);
  color: var(--utopia-black);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(130, 160, 188, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.lead-submit-btn:hover {
  background: var(--utopia-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(130, 160, 188, 0.45);
}

/* Success Banner */
.lead-success-banner {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(14, 18, 23, 0.95);
  border: 1px solid rgba(130, 160, 188, 0.4);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.lead-success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(130, 160, 188, 0.16);
  color: var(--utopia-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lead-success-body h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 6px 0;
}
.lead-success-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--sand-100);
  margin: 0 0 16px 0;
}
.lead-success-instant-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.lead-success-instant-wa span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.lead-instant-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #82a0bc;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.lead-instant-wa-btn:hover {
  background: #82a0bc;
  transform: translateY(-1px);
}
.form-note { font-size: .74rem; color: rgba(14, 18, 23,.7); margin-top: 14px; }

/* ===== Footer: Apple / Jony Ive Quiet Luxury Architecture ===== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 80px 0 40px;
  color: #0e1217;
  font-family: var(--font-sans, "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  -webkit-font-smoothing: antialiased;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Col 1: Brand Lockup */
.footer-brand-lockup {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(14, 18, 23, 0.04);
  border: 1px solid rgba(14, 18, 23, 0.1);
  color: #0e1217;
  flex-shrink: 0;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #0e1217;
  letter-spacing: -0.01em;
}

.footer-brand-sub {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  color: #6e737b;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 2px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #6e737b;
  margin: 0;
  max-width: 320px;
  font-weight: 400;
}

/* Col 2, 3, 4: Section Titles (Strict Baseline Alignment) */
.footer-col-title {
  height: 36px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0e1217;
  margin: 0 0 20px 0;
  line-height: 1;
}

/* Navigation Lists (Col 2 & 3) */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list li {
  margin: 0;
  padding: 0;
}

.footer-nav-list a {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  color: #6e737b;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-nav-list a:hover {
  color: #0e1217;
}

/* Col 4: Direct Contact */
.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-address {
  font-size: 13px;
  line-height: 1.55;
  color: #6e737b;
  display: flex;
  flex-direction: column;
}

.footer-email {
  font-size: 13px;
  line-height: 1.4;
  color: #6e737b;
  text-decoration: none;
  transition: color 0.18s ease;
  display: inline-block;
  word-break: break-all;
}

.footer-email:hover {
  color: #0e1217;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #0e1217;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.18s ease;
  margin-top: 2px;
}

.footer-wa-link:hover {
  color: #0e1217;
  gap: 9px;
}

.footer-arrow {
  font-size: 13px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.footer-wa-link:hover .footer-arrow {
  transform: translateX(2px);
}

.footer-cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(130, 160, 188, 0.45);
  background: rgba(130, 160, 188, 0.08);
  color: #0e1217;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.footer-cert-icon {
  color: var(--utopia-accent);
  flex-shrink: 0;
}

/* Bottom Legal Bar */
.footer-bottom {
  max-width: 1180px;
  margin: 64px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: #6e737b;
  margin: 0;
  letter-spacing: 0.01em;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 11px;
  color: #6e737b;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-legal-links a:hover {
  color: #0e1217;
}

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

@media (max-width: 640px) {
  .site-footer {
    padding: 56px 0 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-legal-links {
    gap: 18px;
  }
}

/* ===== Pulse & Ping Keyframes ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.92); }
}
@keyframes ping {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}
.pulse-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #82a0bc; animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== Header call button & brand text (legacy fallback) ===== */
.brand .brand-accent { font-weight: 400; color: var(--emerald-700); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; background: var(--emerald-850); color: var(--sand-50);
  transition: var(--transition); box-shadow: 0 2px 8px rgba(14, 18, 23,0.18);
}
.btn-call:hover {
  background: var(--emerald-900); transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 18, 23,0.25); color: var(--sand-50);
}

/* ===== Article / blog (Apple-Like / Quiet Luxury) ===== */
.article { max-width: 780px; margin: 0 auto; padding: 64px 24px 100px; }
.article .meta { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: #82a0bc; margin-bottom: 20px; font-weight: 600; font-family: var(--font-sans); }
.article h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.15; color: #ffffff; margin-bottom: 24px; letter-spacing: -0.015em; font-weight: 400; }
.article h2 { margin: 48px 0 20px; font-size: clamp(1.6rem, 2.5vw, 2.1rem); color: #ffffff; font-family: var(--font-serif); font-weight: 400; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 12px; }
.article h3 { margin: 32px 0 16px; font-size: 1.35rem; color: #82a0bc; font-family: var(--font-sans); font-weight: 600; }
.article p { margin-bottom: 22px; color: rgba(255, 255, 255, 0.82); font-size: 1.1rem; line-height: 1.8; font-weight: 300; }
.article p.lead { font-size: 1.25rem; line-height: 1.75; color: #6e737b; font-weight: 400; }
.article ul, .article ol { margin: 0 0 28px 24px; color: rgba(255, 255, 255, 0.82); line-height: 1.8; font-size: 1.05rem; }
.article li { margin-bottom: 10px; }
.article strong { color: #ffffff; font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .top-projects-grid { grid-template-columns: 1fr; gap: 36px; }
  .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .connectivity-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 14px; }
  .compare-card.featured { transform: none; }
  .compare-card.featured:hover { transform: translateY(-4px); }
  .compare-card:not(.featured) { transform: none; opacity: 0.84; }
  .compare-card:not(.featured):hover { transform: translateY(-2px); opacity: 1; }
  .carousel-arrow { opacity: 0.9; }
}
@media (max-width: 900px) {
  .hero .container, .property-hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-toggle { display: block; }
  .btn-call { display: none; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; background: var(--sand-50);
    flex-direction: column; padding: 20px 24px; gap: 18px;
    border-bottom: 1px solid var(--sand-200); display: none;
  }
  .nav-links.open { display: flex; }
  .hero-img img { height: 300px; }
}
@media (max-width: 640px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .lead-form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   CINEMATIC VIDEO LANDING (/es/exclusivo, /en/exclusive)
   Lujo cinematográfico, video inmersivo, controles y captación VIP
   ============================================================= */
.cinematic-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--emerald-950);
  color: var(--sand-50);
}

.cinematic-video-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 1;
}

.cinematic-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(14, 18, 23, 0.78) 0%, rgba(14, 18, 23, 0.46) 40%, rgba(14, 18, 23, 0.88) 100%),
              radial-gradient(ellipse at 15% 40%, rgba(14, 18, 23, 0.5) 0%, transparent 65%);
}

.cinematic-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 130px 24px 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.cinematic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(157, 161, 170, 0.32);
  color: var(--sand-200);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.cinematic-h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--sand-50);
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.cinematic-h1 .gold-accent {
  color: var(--sand-200);
  font-style: italic;
  font-weight: 300;
}

.cinematic-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Video Control Pill */
.video-control-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(14, 18, 23, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.video-ctrl-btn {
  background: transparent;
  border: none;
  color: var(--sand-100);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-sans);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 999px;
  transition: var(--transition);
}

.video-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.video-ctrl-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* Stats in Hero */
.cinematic-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.cinematic-stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 14px;
}

.cinematic-stat-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--sand-200);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 2px;
}

.cinematic-stat-lbl {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
  font-weight: 400;
}

/* Floating VIP Card */
.floating-vip-card {
  background: rgba(14, 18, 23, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(157, 161, 170, 0.3);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.vip-card-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--terracotta-500);
  background: rgba(130, 160, 188, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.floating-vip-card h3 {
  font-size: 1.75rem;
  color: var(--sand-50);
  margin-bottom: 8px;
  line-height: 1.15;
}

.floating-vip-card .vip-card-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 22px;
}

/* WhatsApp Quick Button inside card */
.btn-vip-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: #82a0bc;
  color: #0e1217;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: .02em;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(130, 160, 188, 0.3);
  margin-bottom: 18px;
}

.btn-vip-whatsapp:hover {
  background: #82a0bc;
  color: #0e1217;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(130, 160, 188, 0.4);
}

.vip-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.vip-divider::before, .vip-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vip-divider span {
  padding: 0 10px;
}

/* VIP Form Fields */
.vip-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vip-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vip-input-group label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sand-200);
  font-weight: 500;
}

.vip-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(157, 161, 170, 0.25);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

.vip-input:focus {
  border-color: var(--sand-200);
  background: rgba(255, 255, 255, 0.12);
}

.vip-input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.vip-select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(14, 18, 23, 0.9);
  border: 1px solid rgba(157, 161, 170, 0.25);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}

.btn-vip-submit {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  background: var(--sand-200);
  color: var(--emerald-950);
  border: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}

.btn-vip-submit:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.vip-guarantee-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* Architecture Features Section */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.arch-card {
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.arch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 18, 23, 0.12);
  border-color: var(--sand-300);
}

.arch-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sand-100);
  color: var(--emerald-850);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.arch-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--emerald-950);
}

.arch-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Location Timeline Points */
.location-points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.loc-point-card {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
}

.loc-point-time {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--terracotta-500);
  font-weight: 500;
  margin-bottom: 4px;
}

.loc-point-title {
  font-weight: 600;
  color: var(--emerald-950);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.loc-point-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Advisor Banner */
/* ===== Private Advisor Section: Steve Jobs / Apple Quiet Luxury Architecture ===== */
.advisor-sj-section {
  background-color: #0e1217 !important;
  color: #ffffff;
  padding: 96px 48px; /* py-24 px-12 */
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans, "Figtree", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif);
  -webkit-font-smoothing: antialiased;
}

.advisor-sj-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Asymmetrical Golden Ratio Grid: 60% Left / 40% Right */
.advisor-sj-grid {
  display: grid;
  grid-template-columns: 1.48fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Columna Izquierda: El Mensaje */
.advisor-sj-narrative {
  display: flex;
  flex-direction: column;
}

.advisor-sj-kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--utopia-accent);
  margin-bottom: 20px;
  line-height: 1.2;
}

.advisor-sj-title {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

.advisor-sj-lead {
  font-size: 16px;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 36px 0;
}

/* Los 3 Pilares (01, 02, 03 - Titanio mate, sin viñetas genéricas) */
.advisor-sj-pillars {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.advisor-sj-pillar-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advisor-sj-pillar-num {
  font-family: var(--font-sans, "Figtree", -apple-system, sans-serif);
  font-size: 11px;
  font-weight: 600;
  color: var(--utopia-accent); /* Acento suave Utopia */
  letter-spacing: 0.12em;
  flex-shrink: 0;
  min-width: 26px;
  line-height: 1;
}

.advisor-sj-pillar-content {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.advisor-sj-pillar-title {
  color: #ffffff;
  font-weight: 500;
}

.advisor-sj-pillar-sep {
  color: rgba(255, 255, 255, 0.62);
  margin: 0 4px;
}

.advisor-sj-pillar-desc {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* Columna Derecha: Tarjeta de Identidad / Contacto (Dark Frosted Glass) */
.advisor-sj-card-col {
  display: flex;
  justify-content: center;
}

.advisor-sj-card {
  width: 100%;
  max-width: 340px;
  background: rgba(14, 18, 23, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(130, 160, 188, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advisor-sj-card:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 30px 60px -12px rgba(0, 0, 0, 0.75);
  border-color: rgba(130, 160, 188, 0.38);
}

/* Cabecera de Autoridad: Lockup austero BV | UTOPIA */
.advisor-card-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.advisor-card-bv {
  font-family: var(--font-sans, "Figtree", -apple-system, sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: #ffffff;
  line-height: 1;
}

.advisor-card-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.20);
}

.advisor-card-utopia-logo {
  height: 16px;
  width: auto;
  opacity: 0.60;
  display: block;
  transition: opacity 0.2s ease;
}

.advisor-sj-card:hover .advisor-card-utopia-logo {
  opacity: 0.80;
}

/* Identidad Personal (Centro) */
.advisor-card-name {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.advisor-card-role {
  font-family: var(--font-sans, "Figtree", -apple-system, sans-serif);
  font-size: 10px;
  font-weight: 500;
  color: var(--utopia-accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 28px 0;
  line-height: 1.3;
  white-space: nowrap;
}

/* Acciones de Contacto */
.advisor-card-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* Par Telegram + Llamada (mismo número de la página) */
.advisor-btn-pair {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.advisor-btn-pair > .advisor-btn-wa {
  flex: 1 1 0;
  min-width: 0;
  padding: 11px 10px;
  font-size: 11px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Botón Principal (WhatsApp): Píldora táctil en acabado obsidiana pulida con bisel fino */
.advisor-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff !important;
  font-family: var(--font-sans, "Figtree", -apple-system, sans-serif);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.advisor-btn-wa:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #ffffff !important;
}

.advisor-btn-wa svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #ffffff;
}

/* Acceso por Correo (Secundario / Editorial): Enlace sutil y minimalista */
.advisor-email-link,
.advisor-btn-email {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62) !important;
  font-family: var(--font-sans, "Figtree", monospace, sans-serif);
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.advisor-email-link:hover,
.advisor-btn-email:hover {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent !important;
  transform: none !important;
}

.advisor-email-arrow {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.advisor-email-link:hover .advisor-email-arrow,
.advisor-btn-email:hover .advisor-email-arrow {
  transform: translateX(2px);
}

/* Responsividad */
@media (max-width: 1024px) {
  .advisor-sj-section {
    padding: 72px 32px;
  }
  .advisor-sj-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .advisor-sj-card {
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .advisor-sj-section {
    padding: 56px 20px;
  }
  .advisor-sj-title {
    font-size: 28px;
  }
  .advisor-sj-card {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    padding: 28px 22px;
  }
  .advisor-sj-pillar-row {
    flex-direction: column;
    gap: 6px;
  }
  .advisor-sj-pillar-sep {
    display: none;
  }
}

/* Sticky Mobile Bottom Bar (Thumb-Zone Ergonomic Dock: Segmented Project Switcher + Direct Action CTA) */
.mobile-vip-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  background: rgba(14, 18, 23, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px 14px;
  padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  z-index: 9990;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.75);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Floating Segmented Project Switcher in Mobile Dock */
.mobile-vip-proj-dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px !important;
  border-radius: 9999px !important;
  background: rgba(14, 18, 23, 0.90) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.mobile-vip-proj-btn {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #6e737b;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  line-height: 1;
}

.mobile-vip-proj-btn:hover {
  color: #ffffff;
}

.mobile-vip-proj-btn.is-active,
.mobile-vip-proj-btn.active {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #9da1aa 100%);
  color: #0e1217 !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.mobile-vip-proj-btn.is-active::after,
.mobile-vip-proj-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--proj-progress, 0%);
  background: linear-gradient(90deg, #82a0bc, #82a0bc);
  border-radius: 9999px;
  transition: width 0.1s linear;
  z-index: 3;
}

.mobile-vip-proj-dot {
  display: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #82a0bc;
  flex-shrink: 0;
}

.mobile-vip-proj-btn.is-active .mobile-vip-proj-dot,
.mobile-vip-proj-btn.active .mobile-vip-proj-dot {
  display: inline-block;
  animation: pulseDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.2); }
}

/* 2-Column Action CTA Buttons */
.mobile-vip-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.mobile-vip-btn-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  min-height: 44px;
  padding: 0 12px;
  background: rgba(14, 18, 23, 0.82) !important;
  color: #6e737b;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11.5px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.mobile-vip-btn-form:active {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.12) !important;
}

.mobile-vip-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  min-height: 44px;
  padding: 0 12px;
  background: #82a0bc;
  color: #0e1217;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11.5px;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.2s ease;
  box-shadow: 0 3px 14px rgba(130, 160, 188, 0.35);
}

.mobile-vip-btn-wa:active {
  transform: scale(0.96);
  background: #82a0bc;
}

.mobile-vip-wa-live {
  position: relative;
  display: inline-flex;
  width: 7px;
  height: 7px;
  margin-right: 2px;
  flex-shrink: 0;
}

.mobile-vip-wa-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0e1217;
  opacity: 0.75;
  animation: pingLive 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.mobile-vip-wa-core {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background: #0e1217;
}

@keyframes pingLive {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .cinematic-content {
    grid-template-columns: 1fr;
    padding-top: 110px;
    gap: 36px;
  }
  .location-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advisor-cinematic-banner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .cinematic-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .arch-grid {
    grid-template-columns: 1fr;
  }
  .location-points-grid {
    grid-template-columns: 1fr;
  }
  .mobile-vip-bar {
    display: flex;
  }
  body.has-mobile-vip-bar {
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.drawer-open .mobile-vip-bar,
  body.lang-modal-open .mobile-vip-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }
}

/* =============================================================
   LE CIEL: MODERN NAVIGABLE CAROUSEL & SPECS TABS
   ============================================================= */
.leciel-carousel-section {
  padding: 76px 0 60px;
  background: #ffffff;
}

.leciel-gallery-container {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.leciel-carousel-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.6;
  border-radius: 22px;
  overflow: hidden;
  background: var(--emerald-950);
  box-shadow: 0 16px 44px rgba(14, 18, 23, 0.16);
  /* Safety: hard-cap to viewport width so .leciel-slide's
     transform: scale(1.02) cannot push the carousel past the
     viewport edge on narrow phones. */
  max-width: 100vw;
}

.leciel-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.leciel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.leciel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leciel-slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 18, 23, 0.78) 100%);
  pointer-events: none;
}

/* Floating Navigation Arrows */
.leciel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 18, 23, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--sand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.leciel-nav-btn:hover {
  background: var(--emerald-850);
  border-color: var(--sand-200);
  transform: translateY(-50%) scale(1.08);
  color: #fff;
}

.leciel-nav-btn.prev { left: 18px; }
.leciel-nav-btn.next { right: 18px; }

/* Badge & Counter Tags inside Carousel */
.leciel-stage-topbar {
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
  /* Safety: cap topbar to viewport width minus its side padding so
     the badge + counter always fit without overflowing horizontally
     on narrow phones (long project tag names like "Pérgola
     Escultórica" used to push past the right edge). */
  max-width: calc(100vw - 48px);
}

.leciel-stage-badge {
  background: rgba(14, 18, 23, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--sand-100);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  /* Safety: keep badge text inside its pill — long tags like
     "Pérgola Escultórica" otherwise overflow the topbar. */
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leciel-stage-counter {
  background: rgba(14, 18, 23, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--sand-200);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  /* Safety: counter pill must stay inside topbar (e.g. "18 / 18"). */
  flex: 0 0 auto;
  white-space: nowrap;
}

.leciel-caption-container {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  z-index: 10;
  pointer-events: none;
  /* Safety: caption must not exceed viewport width on mobile. */
  max-width: calc(100vw - 48px);
}

.leciel-caption-text {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  max-width: 780px;
  line-height: 1.4;
  /* Safety: long captions like "Acceso monumental, drop-off vehicular
     y lobby con arquitectura bioclimática." used to overflow the
     carousel container on narrow phones. Wrap aggressively so every
     word stays inside the carousel bounds. */
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* Interactive Thumbnails Grid (Airbnb photo-grid style) */
.leciel-thumbs-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 0;
  padding: 0;
  overflow: visible;
}

.leciel-thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              opacity 0.25s ease,
              box-shadow 0.25s ease;
  background: #0e1217;
  position: relative;
}

.leciel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leciel-thumb:hover {
  opacity: 0.85;
}

.leciel-thumb.active {
  opacity: 1;
  border-color: var(--emerald-850);
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(14, 18, 23, 0.28);
  z-index: 1;
}

@media (max-width: 900px) {
  .leciel-thumbs-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .leciel-thumbs-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}

/* =============================================================
   AIRBNB-STYLE THUMBNAIL STRIP WRAPPER
   Compact meta header + horizontal scroll thumbs.
   ============================================================= */
.leciel-thumbs-strip {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 18, 23, 0.08);
}

.leciel-thumbs-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 2px;
  gap: 12px;
}

.leciel-thumbs-count {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--emerald-850);
  text-transform: uppercase;
}

.leciel-thumbs-progress {
  display: inline-block;
  height: 3px;
  width: 64px;
  background: rgba(14, 18, 23, 0.12);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.leciel-thumbs-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress, 6%);
  background: var(--emerald-850);
  border-radius: 3px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================================
   LE CIEL: SPECS & PROJECT INFORMATION TABS
   ============================================================= */
.leciel-tabs-section {
  padding: 80px 0 90px;
  background: var(--sand-50);
  border-top: 1px solid var(--sand-200);
  border-bottom: 1px solid var(--sand-200);
}

.leciel-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.leciel-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--sand-200);
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.leciel-tab-btn:hover {
  border-color: var(--sand-300);
  transform: translateY(-1px);
}

.leciel-tab-btn.active {
  background: var(--emerald-850);
  color: var(--sand-50);
  border-color: var(--emerald-850);
  box-shadow: 0 4px 16px rgba(14, 18, 23, 0.2);
  font-weight: 600;
  outline: 2px solid var(--color-khaki-elegant, #82a0bc);
  outline-offset: 1px;
}

.leciel-tab-pane {
  display: none;
  animation: lecielFadeIn 0.35s ease forwards;
}

.leciel-tab-pane.active {
  display: block;
}

@keyframes lecielFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.leciel-tab-card {
  background: #ffffff;
  border: 1px solid var(--sand-200);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--card-shadow);
  max-width: 1040px;
  margin: 0 auto;
}

.leciel-tab-head {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--sand-100);
  padding-bottom: 20px;
}

.leciel-tab-head h3 {
  font-size: 1.85rem;
  color: var(--emerald-950);
  margin-bottom: 8px;
}

.leciel-tab-head p {
  color: var(--muted);
  font-size: 1rem;
}

.leciel-bullets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.leciel-bullet-box {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 14px;
  padding: 20px 22px;
  transition: var(--transition);
}

.leciel-bullet-box:hover {
  border-color: var(--sand-300);
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(14, 18, 23, 0.05);
}

.leciel-bullet-title {
  font-weight: 600;
  color: var(--emerald-950);
  font-size: 1.05rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.leciel-bullet-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.leciel-tab-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* =============================================================
   ULTRA-COMPACT ARCHITECTURAL VISION (MAX-HEIGHT 520PX)
   Quiet Luxury / Apple Precision Master-Detail Architecture
   ============================================================= */
.leciel-tabs-section {
  padding: 56px 0 64px;
  background: var(--sand-50, #ffffff);
}

.compact-arch-module {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  padding: 36px 40px;
  display: flex;
  gap: 40px;
  box-sizing: border-box;
  align-items: stretch;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .compact-arch-module {
    min-height: 620px;
    max-height: 650px;
    gap: 48px;
  }
}

/* Columna Izquierda: Autoridad & Navegación (38% de ancho) */
.compact-arch-left {
  flex: 0 0 38%;
  max-width: 38%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding-right: 36px;
}

.compact-arch-left-top {
  display: flex;
  flex-direction: column;
}

.compact-arch-kicker {
  font-family: 'Figtree', monospace, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #82a0bc;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.compact-arch-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #82a0bc;
  display: inline-block;
}

.compact-arch-headlines {
  position: relative;
  min-height: 95px;
  margin-bottom: 16px;
}

.compact-arch-headline-item {
  display: none;
}

.compact-arch-headline-item.active {
  display: block;
  animation: compactFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.compact-arch-headline-title {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-size: clamp(1.85rem, 2.2vw, 2.125rem);
  line-height: 1.15;
  color: #0e1217;
  margin: 0 0 8px 0;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.compact-arch-headline-desc {
  font-size: 13px;
  color: #6e737b;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 380px;
  margin: 0;
}

/* Selector de Pestañas Espaciado (space-y-2) */
.compact-arch-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compact-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  border-left: 2px solid transparent;
  background: transparent;
  color: #6e737b;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.compact-tab-btn-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compact-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #6e737b;
  transition: color 0.2s ease;
}

.compact-tab-arrow {
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  color: #82a0bc;
}

.compact-tab-btn:hover {
  color: #0e1217;
  background: rgba(0, 0, 0, 0.025);
}

.compact-tab-btn:hover .compact-tab-icon {
  color: #0e1217;
}

.compact-tab-btn.active {
  background: rgba(0, 0, 0, 0.05);
  border-left-color: #82a0bc;
  color: #0e1217;
  font-weight: 500;
  padding-left: 14px;
}

.compact-tab-btn.active .compact-tab-icon {
  color: #82a0bc;
}

.compact-tab-btn.active .compact-tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Botones de Conversión Pinned (h-12, rounded-full, pt-6) */
.compact-arch-pinned-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 24px;
}

.btn-compact-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  border-radius: 9999px;
  background: #0e1217;
  color: #ffffff !important;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(14, 18, 23, 0.18);
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-compact-primary:hover {
  background: #0e1217;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(14, 18, 23, 0.26);
}

.btn-compact-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0e1217;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-compact-secondary:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
  color: #0e1217;
}

/* Columna Derecha: Tarjetas de Alta Presencia 2x2 (flex: 1 1 0% con min-width: 0) */
.compact-arch-right {
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.compact-tab-pane {
  display: none;
  width: 100%;
  min-width: 0;
}

.compact-tab-pane.active {
  display: block;
  animation: compactFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.compact-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.compact-spec-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 155px;
  padding: 24px;
  background: rgba(227, 229, 232, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.compact-spec-card:hover {
  background: #ffffff;
  border-color: rgba(107, 142, 169, 0.4);
  box-shadow: 0 12px 28px rgba(14, 18, 23, 0.06);
  transform: translateY(-2px);
}

.compact-spec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.compact-spec-num {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #82a0bc;
  letter-spacing: -0.01em;
}

.compact-spec-icon {
  color: #6e737b;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.compact-spec-card:hover .compact-spec-icon {
  color: #0e1217;
}

.compact-spec-title {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0e1217;
  line-height: 1.3;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-spec-desc {
  font-size: 12px;
  color: rgba(14, 18, 23, 0.72);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

@keyframes compactFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsividad */
@media (max-width: 1023px) {
  .compact-arch-module {
    flex-direction: column;
    min-height: auto;
    max-height: none;
    padding: 24px 20px;
    gap: 24px;
    border-radius: 1.5rem;
  }
  .compact-arch-left {
    flex: 1 1 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .compact-arch-right {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .compact-arch-tabs {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    gap: 8px;
  }
  .compact-arch-tabs::-webkit-scrollbar {
    display: none;
  }
  .compact-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 13px;
  }
  .compact-specs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .compact-spec-card {
    min-height: 140px;
    padding: 18px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .compact-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .leciel-carousel-stage { aspect-ratio: 16 / 11; }
  .leciel-nav-btn { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
  .leciel-nav-btn.prev { left: 12px; }
  .leciel-nav-btn.next { right: 12px; }
  .leciel-bullets-grid { grid-template-columns: 1fr; }
  .leciel-tab-card { padding: 28px 20px; }
  .leciel-thumb { flex: 0 0 84px; height: 52px; }
  .leciel-caption-text { font-size: 0.92rem; }
}

/* =============================================================
   MULTI-PROJECT SWITCHER (HERO BAR)
   ============================================================= */
.project-switcher-container {
  margin-bottom: 28px;
}

.project-switcher-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--sand-200);
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-switcher-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.proj-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(14, 18, 23, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.proj-nav-arrow:hover {
  background: var(--emerald-850);
  border-color: var(--sand-200);
  color: #fff;
  transform: scale(1.08);
}

.project-pills-list {
  display: inline-flex;
  gap: 6px;
  background: rgba(14, 18, 23, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.proj-pill-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.proj-pill-btn .pill-num {
  font-family: var(--font-serif);
  color: var(--sand-200);
  font-weight: 600;
  font-size: 13px;
}

.proj-pill-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.proj-pill-btn.active {
  background: var(--sand-200);
  color: var(--emerald-950);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25);
}

.proj-pill-btn.active .pill-num {
  color: var(--emerald-900);
}

/* Auto-Advance Progress Pill */
.proj-auto-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 18, 23, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--sand-200);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.proj-auto-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.proj-auto-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2.5px;
  background: var(--sand-200);
  width: 0%;
  transition: width 0.15s linear;
}

/* Dynamic Fade Transition for Text / Details */
.dynamic-project-fade {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dynamic-project-fade.fading {
  opacity: 0;
  transform: translateY(6px);
}

.proj-hero-pane,
.proj-gallery-pane,
.proj-tabs-pane {
  display: none;
}

.proj-hero-pane.active,
.proj-gallery-pane.active,
.proj-tabs-pane.active {
  display: block;
  animation: projFadeIn 0.45s ease forwards;
}

@keyframes projFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cinematic-video {
  transition: opacity 0.4s ease;
}

/* =============================================================
   STITCH LUXURY HERO & LATERAL DRAWER SYSTEM
   ============================================================= */
.font-editorial-italic {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-style: italic;
  font-weight: 400;
}

.glass-pill {
  background: rgba(14, 18, 23, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-pill-active {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #0e1217 !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.glass-card {
  background: rgba(14, 18, 23, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-backdrop {
  background: rgba(14, 18, 23, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cinematic-hero-stitch {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: #0e1217;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 0;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .cinematic-hero-stitch {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 0;
    padding-bottom: 20px;
  }
}

.stitch-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #0e1217;
  /* Pin to viewport width on mobile to prevent 4px overflow caused by
     .stitch-video's transform: scale(1.02) — keeps the visual ken-burns
     effect while preventing horizontal scroll bleed. */
  max-width: 100vw;
  width: 100%;
}

@media (max-width: 640px) {
  /* Disable the ken-burns effect on mobile entirely. The 1.01 / 1.02
     scale caused a 2-8px horizontal overflow on 360-414px screens,
     pushing content past the right edge. The hero is dark by default,
     so a static video looks just as cinematic. Use !important to win
     over the base .stitch-video-outgoing rule declared later in the
     file with equal selector specificity. */
  .stitch-video,
  .stitch-video.stitch-video-active,
  .stitch-video.stitch-video-outgoing {
    transform: scale(1.0) !important;
  }
}

.stitch-video-backdrop {
  position: absolute;
  inset: 0;
  background-color: #0e1217;
  z-index: 0;
  pointer-events: none;
}

.stitch-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #0e1217;
  filter: contrast(1.06) saturate(1.12);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.75s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}

.stitch-video.stitch-video-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  transform: scale(1.00);
}

.stitch-video.stitch-video-outgoing {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.02);
}

.stitch-overlay-top {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to top, #0e1217 0%, rgba(14, 18, 23, 0.46) 34%, rgba(14, 18, 23, 0.22) 62%, rgba(14, 18, 23, 0.10) 100%);
}

.stitch-overlay-side {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to right, rgba(14, 18, 23, 0.78) 0%, rgba(14, 18, 23, 0.28) 46%, transparent 92%);
}

/* Top Visor Bar */
.stitch-top-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 16px 48px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 768px) {
  .stitch-top-bar {
    padding: 16px 20px 0;
    gap: 12px;
  }
}

.stitch-top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.stitch-collection-label {
  display: none;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #82a0bc;
  margin-right: 6px;
}

@media (min-width: 640px) {
  .stitch-collection-label {
    display: inline-flex;
  }
}

.stitch-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #82a0bc;
  margin-right: 8px;
  display: inline-block;
  box-shadow: 0 0 8px #82a0bc;
  animation: stitchPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes stitchPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.stitch-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.stitch-arrow-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  transform: scale(1.05);
}

.stitch-pills-wrap {
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 9999px;
  gap: 4px;
}

/* ===== Side-vertical project dock (mobile) =====
   Píldora flotante al borde derecho de la pantalla que aparece al hacer scroll
   y permite navegar entre los 3 proyectos. En desktop es horizontal (centrada). */
.stitch-floating-nav {
  position: fixed;
  top: 86px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.stitch-floating-nav.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.stitch-floating-nav.is-obscuring {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(-8px) !important;
}
.stitch-floating-nav-inner {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: rgba(14, 18, 23, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.stitch-tab-btn {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: 'Figtree', sans-serif;
}

.stitch-tab-btn:hover {
  color: #fff;
}

.stitch-tab-btn .st-num {
  font-size: 10px;
  opacity: 0.7;
  font-weight: 700;
  margin-right: 4px;
  letter-spacing: 0.04em;
}

.stitch-tab-btn .st-name {
  font-weight: 700;
}

.stitch-tab-btn .st-sep {
  opacity: 0.45;
  margin: 0 4px;
}

.stitch-tab-btn .st-tag {
  font-size: 11px;
  opacity: 0.85;
  font-weight: 500;
}

.stitch-tab-btn.glass-pill-active .st-num {
  opacity: 0.75;
  color: #0e1217;
}

.stitch-tab-btn.glass-pill-active .st-name {
  color: #0e1217;
}

.stitch-tab-btn.glass-pill-active .st-sep {
  opacity: 0.5;
  color: #0e1217;
}

.stitch-tab-btn.glass-pill-active .st-tag {
  opacity: 0.95;
  color: #0e1217;
  font-weight: 600;
}

/* ===== Hick's & Fitts's Law 3-Tier Hero Action Cluster ===== */
.hero-project-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* Primario: Píldora táctil en arena/crema mate con texto oscuro */
.btn-hero-explore {
  background: #ffffff !important;
  border: none !important;
  color: #0e1217 !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

.btn-hero-explore:hover {
  background: #ffffff !important;
  color: #0e1217 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
}

/* Secundario: Píldora traslúcida con borde de luz (border-white/15 bg-white/5) */
.btn-hero-dossier {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none !important;
}

.btn-hero-dossier:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Tercero: Botón directo a conversación privada: Hablar con Brauny */
.btn-hero-wa {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-hero-wa:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
  color: #ffffff;
  transform: translateY(-1px);
}

/* Suppression of duplicate floating pill and legacy visor elements */
.stitch-floating-nav,
.stitch-top-bar {
  display: none !important;
}

/* ============================================================
   CONTACT HUB (Apple Quiet Luxury - Bottom-Right Fixed Position)
   Compacto por defecto: una sola píldora. Al abrirse muestra los
   canales reales de contacto: WhatsApp, llamada y correo.
   Mismo lenguaje verde + dorado del sitio. Sin gradientes.
   ============================================================ */
.bv-contact-hub {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 96;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--font-sans);
}

/* ---- Tarjeta de canales (oculta hasta abrir) ---- */
.bv-contact-card {
  width: 300px;
  max-width: calc(100vw - 32px);
  padding: 4px;
  border-radius: 18px;
  background: rgba(14, 18, 23, 0.97);
  border: 1px solid rgba(130, 160, 188, 0.30);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.985);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.28s;
}

.bv-contact-hub.is-open .bv-contact-card {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

/* ---- Encabezado ---- */
.bv-contact-head {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px 9px;
}

.bv-contact-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #82a0bc;
}

.bv-contact-note {
  font-size: 11px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.62);
}

/* ---- Filas de canal ---- */
.bv-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.bv-contact-row:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(2px);
}

/* WhatsApp es el canal PRIMARIO: se destaca con tinte + borde, nunca con un
   bloque de relleno saturado (eso mataba el contraste del subtítulo). */
.bv-contact-row--wa {
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.34);
}
.bv-contact-row--wa:hover {
  background: rgba(37, 211, 102, 0.17);
  border-color: rgba(37, 211, 102, 0.55);
}

.bv-contact-row:focus-visible {
  outline: 2px solid rgba(130, 160, 188, 0.9);
  outline-offset: -2px;
}

.bv-contact-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #ffffff;
  transition: background 0.22s ease, border-color 0.22s ease;
}

/* Solo tamaño: NO poner fill:none aquí. Los iconos de línea (teléfono, sobre) ya
   traen fill="none" en su propio <svg>, y forzarlo desde el CSS dejaba invisibles
   a los de relleno (Telegram, y cualquier futuro icono tipo iMessage). */
.bv-contact-ico svg {
  width: 17px;
  height: 17px;
}

/* Un color por canal: se distinguen de un golpe de vista y siguen siendo
   coherentes con la paleta (tinte suave + icono + borde del mismo tono). */
.bv-contact-row--wa .bv-contact-ico {
  color: #25d366;
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.36);
}

.bv-contact-row--tg .bv-contact-ico {
  color: #4fb3e8;
  background: rgba(79, 179, 232, 0.16);
  border-color: rgba(79, 179, 232, 0.34);
}

.bv-contact-row[href^="tel:"] .bv-contact-ico {
  color: #82a0bc;
  background: rgba(130, 160, 188, 0.16);
  border-color: rgba(130, 160, 188, 0.34);
}

.bv-contact-row[href^="mailto:"] .bv-contact-ico {
  color: #b9bec6;
  background: rgba(157, 161, 170, 0.16);
  border-color: rgba(157, 161, 170, 0.30);
}

/* Refuerzo del tile del canal primario al pasar el ratón */
.bv-contact-row--wa:hover .bv-contact-ico {
  background: rgba(37, 211, 102, 0.24);
  border-color: rgba(37, 211, 102, 0.55);
}

/* La regla base pone fill:none porque el teléfono y el sobre son iconos de LÍNEA.
   Los de RELLENO (WhatsApp y Telegram) tienen que declararlo o quedan invisibles:
   sin fill y sin stroke no pintan nada. */
.bv-contact-row--wa .bv-contact-ico svg,
.bv-contact-row--tg .bv-contact-ico svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bv-contact-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bv-contact-txt b {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.bv-contact-txt i {
  font-size: 11.5px;
  font-style: normal;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
}

/* ---- La píldora (estado compacto) ---- */
.bv-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9999px;
  background: #0e1217;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(130, 160, 188, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bv-contact-btn:hover,
.bv-contact-hub.is-open .bv-contact-btn {
  background: #0e1217;
  border-color: rgba(130, 160, 188, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.bv-contact-btn:focus-visible {
  outline: 2px solid rgba(130, 160, 188, 0.9);
  outline-offset: 3px;
}

.bv-contact-btn-ico {
  display: inline-flex;
  color: #82a0bc;
  flex-shrink: 0;
}

.bv-contact-btn-ico svg {
  width: 17px;
  height: 17px;
}

.bv-contact-btn-chev {
  display: inline-flex;
  opacity: 0.75;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.bv-contact-hub.is-open .bv-contact-btn-chev {
  transform: rotate(180deg);
}

/* El aviso de "seguir explorando" comparte esquina: se aparta mientras
   el hub está abierto para que no se solapen. */
body.bv-hub-open .project-idle-nudge {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 640px) {
  .bv-contact-hub {
    bottom: 16px;
    right: 16px;
  }
  .bv-contact-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .bv-contact-card {
    width: 272px;
  }
}

/* Idle invitation to explore the collection */
.project-idle-nudge {
  position: fixed;
  right: 24px;
  /* Por encima de la píldora de contacto (bottom 24 + alto ~44), para que
     el aviso no tape el hub cuando aparece. */
  bottom: 84px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: min(430px, calc(100vw - 32px));
  padding: 14px 16px 14px 18px;
  color: #ffffff;
  background: rgba(14, 18, 23, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-idle-nudge.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.project-idle-nudge-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.project-idle-nudge-kicker {
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-idle-nudge-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.35;
}

.project-idle-nudge-btn {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: #0e1217;
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.project-idle-nudge-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.project-idle-nudge-close {
  align-self: flex-start;
  margin: -5px -5px 0 -8px;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.project-idle-nudge-close:hover {
  color: #fff;
}

/* Top Right Actions */
.stitch-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stitch-wa-quick {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  color: #82a0bc;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .stitch-wa-quick {
    display: inline-flex;
  }
}

.stitch-wa-quick:hover {
  color: #fff;
  background: rgba(14, 18, 23, 0.7);
}

.stitch-dossier-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0e1217;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-family: 'Figtree', sans-serif;
}

.stitch-dossier-btn:hover {
  background: #fff;
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

/* Bottom Project Editorial Content — Tercio Inferior Izquierdo */
.stitch-bottom-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px 56px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .stitch-bottom-content {
    padding: 0 64px 56px;
  }
}

.stitch-bottom-inner {
  max-width: 680px;
  transition: opacity 0.22s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.22s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}

.stitch-bottom-inner.editorial-changing {
  opacity: 0;
  transform: translateY(4px);
}

/* Editorial swap: the copy is replaced in the SAME frame as the image/video
   crossfade, then faded in. Guarantees the project title never lags behind
   the project image during the auto-rotate or a pill switch. */
.stitch-bottom-inner.editorial-swap {
  animation: bvEditorialIn 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
@keyframes bvEditorialIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .stitch-bottom-inner.editorial-swap { animation: none; }
}

/* Kicker / Overline: Punto de acento esmeralda + micro-sans-serif */
.stitch-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent !important;
  border: none !important;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

/* Titular Principal: The Winds, en tipografía serifa editorial de gran escala */
.stitch-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 4.8vw, 3.85rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #ffffff;
}

.stitch-h1-main {
  font-weight: 400;
  display: inline;
  margin-right: 8px;
}

.stitch-h1-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.90);
}

/* Párrafo descriptivo: Máximo 2 líneas depuradas en tipografía ligera */
.stitch-desc {
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  line-height: 1.62;
  max-width: 560px;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-weight: 300;
}

/* Micro-tarjetas de datos (4 métricas con bordes ultra-finos de cristal) */
.stitch-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 620px;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .stitch-metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stitch-metric-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 12px;
  padding: 10px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s ease;
}

.stitch-metric-card:hover {
  border-color: rgba(255, 255, 255, 0.62) !important;
}

.stitch-metric-sub {
  display: block;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  font-family: var(--font-sans);
}

.stitch-metric-val {
  display: block;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 3px;
}

/* Video Controls */
.stitch-video-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: #6e737b;
}

.stitch-ctrl-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 9999px;
}

.stitch-ctrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 14px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Figtree', sans-serif;
  border-radius: 9999px;
}

.stitch-ctrl-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.stitch-ctrl-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.stitch-progress-pill {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
}

@media (min-width: 640px) {
  .stitch-progress-pill {
    display: inline-flex;
  }
}

.stitch-progress-track {
  width: 90px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.stitch-progress-bar {
  height: 100%;
  width: 0%;
  background: #82a0bc;
  transition: width 0.15s linear;
}

.stitch-timer {
  font-family: monospace;
  font-size: 10px;
  color: #6e737b;
}

/* Mobile Responsiveness for Stitch Hero */
@media (max-width: 768px) {
  .stitch-dossier-btn {
    display: none !important;
  }

  .stitch-top-bar {
    padding: 12px 14px 0 !important;
    justify-content: center !important;
  }

  .stitch-top-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 4px !important;
  }

  .stitch-pills-wrap {
    overflow-x: auto !important;
    max-width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 2px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    gap: 4px !important;
  }

  .stitch-pills-wrap::-webkit-scrollbar {
    display: none !important;
  }

  .stitch-tab-btn {
    font-size: 11px !important;
    padding: 6px 12px !important;
    min-height: 38px !important;
  }

  .stitch-floating-nav {
    top: 70px !important;
    max-width: calc(100vw - 20px) !important;
  }

  .stitch-floating-nav-inner {
    padding: 3px 4px !important;
  }

  .project-idle-nudge {
    right: 12px;
    bottom: 92px;
    left: 12px;
    gap: 10px;
    max-width: none;
    padding: 12px 13px 12px 14px;
  }

  .project-idle-nudge-text {
    font-size: 12px;
  }

  .project-idle-nudge-btn {
    padding: 8px 10px;
    font-size: 10px;
  }

  .stitch-floating-nav .stitch-tab-btn {
    font-size: 11px !important;
    padding: 6px 12px !important;
    min-height: 38px !important;
  }

  .cinematic-hero-stitch {
    padding-bottom: 95px !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: auto !important;
  }

  .stitch-bottom-content {
    padding: 14px 16px 16px !important;
  }

  .stitch-tag-pill {
    padding: 4px 10px !important;
    font-size: 10px !important;
    margin-bottom: 8px !important;
  }

  .stitch-h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem) !important;
    margin-bottom: 6px !important;
    line-height: 1.12 !important;
  }

  .stitch-desc {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .stitch-metrics-grid {
    gap: 6px !important;
    margin-bottom: 14px !important;
  }

  .stitch-metric-card {
    padding: 8px 10px !important;
  }

  .stitch-metric-sub {
    font-size: 8.5px !important;
    letter-spacing: 0.02em !important;
    white-space: normal !important;
    line-height: 1.25 !important;
  }

  .stitch-metric-val {
    font-size: 0.98rem !important;
    margin-top: 1px !important;
  }

  .stitch-ctrl-btn {
    min-height: 44px !important;
    padding: 10px 16px !important;
    font-size: 11px !important;
    gap: 6px !important;
  }

  .stitch-drawer-panel {
    padding: 24px 20px !important;
  }

  .hero-project-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .btn-hero-action {
    width: 100% !important;
    min-height: 48px !important;
    padding: 12px 18px !important;
    font-size: 13px !important;
    justify-content: center !important;
  }
}

/* Lateral Slide-In Drawer Form (Fitts's Law Optimized) */
.stitch-drawer-container {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stitch-drawer-container.open {
  pointer-events: auto;
  opacity: 1;
}

.stitch-drawer-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.stitch-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 470px;
  background: #0e1217;
  border-left: 1px solid rgba(130, 160, 188, 0.25);
  box-shadow: -12px 0 50px rgba(0, 0, 0, 0.6);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stitch-drawer-container.open .stitch-drawer-panel {
  transform: translateX(0);
}

.stitch-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(130, 160, 188, 0.2);
}

.stitch-drawer-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #82a0bc;
  margin-bottom: 4px;
  font-family: 'Figtree', sans-serif;
}

.stitch-drawer-title {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-size: 1.65rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.15;
}

.stitch-drawer-close {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #6e737b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.stitch-drawer-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
  transform: scale(1.05);
}

.stitch-drawer-close:active {
  transform: scale(0.95);
}

.stitch-drawer-sub {
  font-size: 12.5px;
  color: rgba(207, 210, 214, 0.85);
  line-height: 1.5;
  margin-top: 12px;
  margin-bottom: 16px;
  font-family: 'Figtree', sans-serif;
}

/* ===== Drawer Mini-Quiz Selector Form ===== */
.drawer-quiz-container {
  display: flex;
  flex-direction: column;
}

/* ===== Hick's Law Drawer Project Switcher & Simplified Form ===== */
.drawer-project-switcher {
  margin-bottom: 14px;
}

.drawer-field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #82a0bc;
  margin-bottom: 8px;
  font-family: 'Figtree', sans-serif;
}

.drawer-project-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.drawer-proj-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-family: 'Figtree', sans-serif;
  width: 100%;
}

.drawer-proj-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(130, 160, 188, 0.4);
}

.drawer-proj-pill.is-selected {
  background: rgba(130, 160, 188, 0.16) !important;
  border: 1px solid #82a0bc !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.drawer-proj-pill .dp-name {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.drawer-proj-pill .dp-sub {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 3px;
  line-height: 1.2;
}

.drawer-proj-pill.is-selected .dp-sub {
  color: #82a0bc;
  font-weight: 500;
}

.drawer-quiz-group {
  margin-bottom: 15px;
}

.drawer-quiz-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.drawer-quiz-step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(130, 160, 188, 0.2);
  color: #82a0bc;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
}

.drawer-quiz-step-title {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Figtree', sans-serif;
}

.drawer-quiz-chips-grid {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.drawer-quiz-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #6e737b;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  user-select: none;
  font-family: 'Figtree', sans-serif;
  width: 100%;
}

.drawer-quiz-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(130, 160, 188, 0.45);
  transform: translateY(-1px);
}

.drawer-quiz-chip.is-selected {
  background: rgba(130, 160, 188, 0.15) !important;
  border-color: #82a0bc !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.drawer-quiz-chip-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.drawer-quiz-chip-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #82a0bc;
  transition: all 0.2s ease;
}

.drawer-quiz-chip.is-selected .drawer-quiz-chip-icon {
  background: rgba(130, 160, 188, 0.28);
  color: #fff;
  transform: scale(1.05);
}

.drawer-quiz-chip-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.drawer-quiz-chip-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
}

.drawer-quiz-chip-radio {
  width: 17px;
  height: 17px;
  min-width: 17px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.drawer-quiz-chip.is-selected .drawer-quiz-chip-radio {
  border-color: #82a0bc;
  background: #82a0bc;
}

.drawer-quiz-chip.is-selected .drawer-quiz-chip-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0e1217;
}

/* 3-column Purpose Grid */
/* Atmosphere 3-column Grid */
.drawer-quiz-atm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.drawer-quiz-atm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  font-family: 'Figtree', sans-serif;
}

.drawer-quiz-atm-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(130, 160, 188, 0.45);
  transform: translateY(-1px);
}

.drawer-quiz-atm-card.is-selected {
  background: rgba(130, 160, 188, 0.16) !important;
  border-color: #82a0bc !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.drawer-quiz-atm-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #82a0bc;
  margin-bottom: 7px;
  transition: all 0.2s ease;
}

.drawer-quiz-atm-card.is-selected .drawer-quiz-atm-icon {
  background: rgba(130, 160, 188, 0.3);
  color: #ffffff;
  transform: scale(1.08);
}

.drawer-quiz-atm-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.drawer-quiz-atm-label {
  font-size: 11px;
  font-weight: 600;
  color: #6e737b;
  line-height: 1.25;
}

/* Priority 2-column Grid */
.drawer-quiz-priorities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.drawer-quiz-priority-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  font-family: 'Figtree', sans-serif;
  text-align: left;
}

.drawer-quiz-priority-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(130, 160, 188, 0.45);
  transform: translateY(-1px);
}

.drawer-quiz-priority-card.is-selected {
  background: rgba(130, 160, 188, 0.16) !important;
  border-color: #82a0bc !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.drawer-quiz-priority-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #82a0bc;
}

.drawer-quiz-priority-card.is-selected .drawer-quiz-priority-icon {
  background: rgba(130, 160, 188, 0.3);
  color: #ffffff;
}

.drawer-quiz-priority-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.drawer-quiz-priority-label {
  font-size: 11px;
  font-weight: 600;
  color: #6e737b;
  line-height: 1.25;
}

/* 3-column Purpose Grid */
.drawer-quiz-purposes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.drawer-quiz-purpose-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 6px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  font-family: 'Figtree', sans-serif;
}

.drawer-quiz-purpose-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(130, 160, 188, 0.45);
  transform: translateY(-1px);
}

.drawer-quiz-purpose-card.is-selected {
  background: rgba(130, 160, 188, 0.15) !important;
  border-color: #82a0bc !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.drawer-quiz-purpose-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #82a0bc;
  margin-bottom: 6px;
  transition: all 0.2s ease;
}

.drawer-quiz-purpose-card.is-selected .drawer-quiz-purpose-icon {
  background: rgba(130, 160, 188, 0.28);
  color: #fff;
  transform: scale(1.06);
}

.drawer-quiz-purpose-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.drawer-quiz-purpose-label {
  font-size: 11px;
  font-weight: 600;
  color: #6e737b;
  line-height: 1.25;
}

/* Dynamic Live Summary Pill */
.drawer-quiz-summary-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(130, 160, 188, 0.12);
  border: 1px solid rgba(130, 160, 188, 0.3);
  font-size: 11.5px;
  color: #82a0bc;
  margin: 6px 0 14px;
  font-family: 'Figtree', sans-serif;
  line-height: 1.35;
}

.drawer-quiz-summary-pill svg {
  flex-shrink: 0;
  color: #82a0bc;
}

.stitch-fields-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {
  .stitch-fields-grid-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.drawer-resolve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #82a0bc !important;
  color: #0e1217 !important;
  font-weight: 700 !important;
  padding: 13px 18px !important;
  font-size: 12px !important;
  box-shadow: 0 4px 18px rgba(130, 160, 188, 0.3) !important;
}

.drawer-resolve-btn:hover {
  background: #82a0bc !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(130, 160, 188, 0.4) !important;
}

/* Instant Resolution Card (Success View) */
.drawer-success-card {
  padding: 16px 6px 0;
  text-align: center;
  animation: drawerFadeIn 0.3s ease;
}

@keyframes drawerFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.drawer-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(130, 160, 188, 0.15);
  border: 1px solid rgba(130, 160, 188, 0.35);
  color: #82a0bc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 14px;
}

.drawer-success-title {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-size: 1.65rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.drawer-success-sub {
  font-size: 13px;
  color: rgba(207, 210, 214, 0.85);
  line-height: 1.5;
  margin-bottom: 18px;
  font-family: 'Figtree', sans-serif;
}

.drawer-success-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: left;
  margin-bottom: 20px;
  font-family: 'Figtree', sans-serif;
}

.drawer-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-summary-item:last-child {
  border-bottom: none;
}

.drawer-summary-item .ds-lbl {
  color: #6e737b;
  font-weight: 500;
}

.drawer-summary-item .ds-val {
  color: #ffffff;
  font-weight: 600;
}

.drawer-success-wa {
  margin-top: 0;
  margin-bottom: 14px;
}

.drawer-success-reset-btn {
  background: transparent;
  border: none;
  color: #82a0bc;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  text-decoration: underline;
  transition: color 0.2s;
  font-family: 'Figtree', sans-serif;
}

.drawer-success-reset-btn:hover {
  color: #fff;
}

.stitch-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stitch-field label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6e737b;
  margin-bottom: 4px;
  font-family: 'Figtree', sans-serif;
}

.stitch-field input,
.stitch-field select {
  width: 100%;
  min-height: 48px;
  background: #0e1217;
  border: 1px solid rgba(130, 160, 188, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Figtree', sans-serif;
  box-sizing: border-box;
}

.stitch-field input:focus,
.stitch-field select:focus {
  border-color: #82a0bc;
  box-shadow: 0 0 0 2px rgba(130, 160, 188, 0.25);
}

.stitch-drawer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(130, 160, 188, 0.12);
  border: 1px solid rgba(130, 160, 188, 0.35);
  color: #82a0bc;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'Figtree', sans-serif;
  box-sizing: border-box;
}

.stitch-drawer-wa:hover {
  background: rgba(130, 160, 188, 0.22);
  border-color: #82a0bc;
  color: #ffffff;
}

.stitch-drawer-wa:active {
  transform: scale(0.98);
}

.stitch-submit-btn {
  width: 100%;
  margin-top: 10px;
  min-height: 52px;
  background: #ffffff;
  color: #0e1217;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  font-family: 'Figtree', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
}

.stitch-submit-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.stitch-submit-btn:active {
  transform: scale(0.99);
}

.stitch-drawer-footer {
  padding-top: 16px;
  margin-top: 14px;
  border-top: 1px solid rgba(130, 160, 188, 0.2);
  text-align: center;
}

.stitch-drawer-footer p {
  font-size: 11px;
  color: #6e737b;
  font-family: 'Figtree', sans-serif;
  line-height: 1.4;
}

/* =============================================================
   QUIZ DE RECOMENDACIÓN DE PROYECTOS — SISTEMA STITCH LUXURY
   ============================================================= */
.bv-quiz-section {
  position: relative;
  padding: 100px 0 110px;
  background: #0e1217;
  background: radial-gradient(ellipse at 50% 20%, #0e1217 0%, #0e1217 65%, #0e1217 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bv-quiz-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(130, 160, 188, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bv-quiz-card {
  position: relative;
  z-index: 1;
  background: rgba(14, 18, 23, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 52px 48px;
  max-width: 920px;
  margin: 0 auto;
}

.bv-quiz-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 36px;
}

.bv-quiz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #82a0bc;
  background: rgba(14, 18, 23, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(130, 160, 188, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.bv-quiz-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #82a0bc;
  box-shadow: 0 0 10px #82a0bc;
  animation: bvPulseDot 2s infinite;
}

@keyframes bvPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.bv-quiz-header h2 {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.bv-quiz-header h2 .highlight-gold {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-style: italic;
  color: #ffffff;
}

.bv-quiz-header p.lead {
  font-size: 1.02rem;
  color: #6e737b;
  line-height: 1.6;
  font-weight: 300;
}

/* Progress bar in dark luxury */
/* Progress bar in dark luxury with Endowed Progress & Goal Gradient */
.bv-quiz-progress-wrap {
  margin-bottom: 34px;
  background: rgba(14, 18, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.bv-quiz-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}

.bv-quiz-endowed-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(130, 160, 188, 0.15);
  border: 1px solid rgba(130, 160, 188, 0.35);
  color: #82a0bc;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.bv-quiz-endowed-pill svg {
  color: #82a0bc;
  flex-shrink: 0;
}

.bv-quiz-pct-badge {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(130, 160, 188, 0.22);
  border: 1px solid rgba(130, 160, 188, 0.45);
  padding: 3px 12px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 0 12px rgba(130, 160, 188, 0.18);
}

.bv-quiz-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.bv-quiz-milestone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.bv-quiz-milestone.is-done {
  color: #82a0bc;
  background: rgba(130, 160, 188, 0.12);
  border-color: rgba(130, 160, 188, 0.35);
  font-weight: 600;
}

.bv-quiz-milestone.is-done svg {
  color: #82a0bc;
}

.bv-quiz-milestone.is-active {
  color: #ffffff;
  background: rgba(130, 160, 188, 0.18);
  border-color: rgba(130, 160, 188, 0.5);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(130, 160, 188, 0.2);
}

.bv-quiz-milestone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.bv-quiz-milestone.is-active .bv-quiz-milestone-dot {
  background: #82a0bc;
  box-shadow: 0 0 6px #82a0bc;
}

.bv-quiz-progress-track {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 12px;
}

.bv-quiz-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #82a0bc, #82a0bc);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(130, 160, 188, 0.5);
}

.bv-quiz-progress-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bv-quiz-gradient-hint {
  color: #82a0bc;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}

.bv-quiz-gradient-hint svg {
  color: #82a0bc;
  flex-shrink: 0;
}

.bv-quiz-progress-step-txt {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Step content */
.bv-quiz-step {
  display: none;
  animation: bvFadeIn 0.3s ease forwards;
}

.bv-quiz-step.is-active {
  display: block;
}

@keyframes bvFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.bv-quiz-step-head {
  margin-bottom: 24px;
}

.bv-quiz-step-title {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-size: 1.95rem;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.25;
}

.bv-quiz-step-sub {
  font-size: 0.95rem;
  color: #6e737b;
  font-weight: 300;
}

/* Chips list */
.bv-quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.bv-quiz-chip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: rgba(14, 18, 23, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.2, 0, 0, 1);
  text-align: left;
  user-select: none;
  width: 100%;
  color: #ffffff;
  font-family: 'Figtree', sans-serif;
}

.bv-quiz-chip:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(14, 18, 23, 0.6);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bv-quiz-chip.is-selected {
  background: rgba(255, 255, 255, 0.96) !important;
  color: #0e1217 !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}

.bv-quiz-chip-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  color: #82a0bc;
}

.bv-quiz-chip-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.bv-quiz-chip:hover .bv-quiz-chip-icon {
  transform: scale(1.08);
  border-color: rgba(130, 160, 188, 0.4);
  color: #82a0bc;
}

.bv-quiz-chip.is-selected .bv-quiz-chip-icon {
  background: rgba(14, 18, 23, 0.1);
  border-color: rgba(14, 18, 23, 0.2);
  color: #0e1217;
}

.bv-quiz-chip-text {
  flex: 1;
}

.bv-quiz-chip-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.bv-quiz-chip.is-selected .bv-quiz-chip-label {
  color: #0e1217 !important;
}

.bv-quiz-chip-desc {
  font-size: 0.88rem;
  color: #6e737b;
  line-height: 1.45;
  font-weight: 300;
}

.bv-quiz-chip.is-selected .bv-quiz-chip-desc {
  color: #0e1217 !important;
  font-weight: 500;
}

.bv-quiz-chip-radio {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: rgba(0, 0, 0, 0.2);
}

.bv-quiz-chip.is-selected .bv-quiz-chip-radio {
  border-color: #0e1217;
  background: #0e1217;
}

.bv-quiz-chip.is-selected .bv-quiz-chip-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

/* Step Footer Nav */
.bv-quiz-step-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-quiz-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-size: 0.85rem;
  color: #6e737b;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.2s;
  font-family: 'Figtree', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bv-quiz-btn-back:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.bv-quiz-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0e1217;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Figtree', sans-serif;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.bv-quiz-btn-next:hover:not(:disabled) {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.bv-quiz-btn-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Calculating loader state */
.bv-quiz-calculating {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.bv-quiz-calculating.is-active {
  display: block;
}

.bv-quiz-spinner {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #82a0bc;
  border-radius: 50%;
  margin: 0 auto 22px;
  animation: bvSpin 0.7s linear infinite;
}

@keyframes bvSpin {
  to { transform: rotate(360deg); }
}

.bv-quiz-calculating h3 {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 400;
}

.bv-quiz-calculating p {
  color: #6e737b;
  font-size: 0.95rem;
}

/* Result Card */
.bv-quiz-result {
  display: none;
  animation: bvFadeIn 0.4s ease forwards;
}

.bv-quiz-result.is-active {
  display: block;
}

.bv-quiz-result-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #82a0bc;
  background: rgba(14, 18, 23, 0.7);
  border: 1px solid rgba(130, 160, 188, 0.3);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.bv-quiz-result-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: start;
}

.bv-quiz-result-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bv-quiz-result-image-box img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.bv-quiz-result-image-box:hover img {
  transform: scale(1.05);
}

.bv-quiz-result-floating-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 18, 23, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bv-quiz-result-info {
  margin-top: 20px;
}

.bv-quiz-result-title {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-size: 2.3rem;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.15;
  font-weight: 400;
}

.bv-quiz-result-tagline {
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
  font-style: italic;
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 14px;
  display: block;
}

.bv-quiz-result-reason {
  font-size: 0.95rem;
  color: #6e737b;
  background: rgba(14, 18, 23, 0.55);
  border-left: 3px solid #82a0bc;
  padding: 14px 18px;
  border-radius: 0 14px 14px 0;
  margin-bottom: 24px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bv-quiz-result-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bv-quiz-result-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #6e737b;
  line-height: 1.5;
}

.bv-quiz-result-bullet svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #82a0bc;
}

.bv-quiz-result-typologies {
  margin-bottom: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-quiz-result-typologies-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6e737b;
  margin-bottom: 12px;
}

.bv-quiz-result-typologies-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bv-quiz-typo-pill {
  font-size: 0.82rem;
  background: rgba(14, 18, 23, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 500;
}

/* Result CTA */
.bv-quiz-result-cta-box {
  background: rgba(14, 18, 23, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  margin-top: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bv-quiz-cta-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: 'Mark Pro', 'Inter', 'Figtree', sans-serif;
}

.bv-quiz-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #82a0bc;
  color: #0e1217 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: all 0.22s ease;
  box-shadow: 0 6px 20px rgba(130, 160, 188, 0.3);
  width: 100%;
  max-width: 320px;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.bv-quiz-btn-whatsapp:hover {
  background: #82a0bc;
  color: #0e1217 !important;
  transform: translateY(-1.5px);
  box-shadow: 0 10px 28px rgba(130, 160, 188, 0.45);
}

.bv-quiz-btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.bv-quiz-result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.bv-quiz-btn-restart {
  background: transparent;
  border: none;
  color: #6e737b;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
  font-family: 'Figtree', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bv-quiz-btn-restart:hover {
  color: #ffffff;
}

.bv-quiz-btn-explore {
  font-size: 0.85rem;
  color: #82a0bc;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bv-quiz-btn-explore:hover {
  color: #ffffff;
}

.bv-quiz-trust-note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.82rem;
  color: #6e737b;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .bv-quiz-section {
    padding: 70px 0 80px;
  }
  .bv-quiz-card {
    padding: 30px 20px;
    border-radius: 22px;
  }
  .bv-quiz-result-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bv-quiz-chip {
    padding: 16px 18px;
    gap: 14px;
  }
  .bv-quiz-chip-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.35rem;
  }
  .bv-quiz-chip-label {
    font-size: 1rem;
  }
  .bv-quiz-chip-desc {
    font-size: 0.82rem;
  }
  .bv-quiz-step-title {
    font-size: 1.6rem;
  }
  .bv-quiz-result-title {
    font-size: 1.9rem;
  }
  .bv-quiz-milestones {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* =============================================================
   ACCESSIBILITY: KEYBOARD FOCUS VISIBILITY (WCAG 2.4.7)
   Indicador de foco de alto contraste sin depender exclusivamente de color
   ============================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-khaki-elegant, #82a0bc) !important;
  outline-offset: 3px !important;
}

/* =============================================================
   ACCESSIBILITY: PREFERS-REDUCED-MOTION (WCAG 2.3.3)
   Sensibilidad al movimiento, prevención de mareo y sobrecarga vestibular
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  /* Desactivar pulsos continuos y auras repetitivas */
  .pulse-dot,
  .pin-ping,
  .bv-pulse-dot,
  .lm-pulse-dot,
  .steve-pulse-dot,
  .stitch-pulse-dot,
  .quote-dot-pulse,
  .hero-progress-dash-fill {
    animation: none !important;
    opacity: 0.9 !important;
  }

  .map-pin .pin-ping {
    display: none !important;
  }

  /* Eliminar desplazamientos y transformaciones de escala bruscas en hover */
  .compare-card.featured,
  .compare-card:not(.featured),
  .compare-card:hover,
  .compare-card.featured:hover,
  .tile:hover,
  .card:hover,
  .project-card:hover,
  .btn:hover,
  .site-header .btn-call:hover,
  .destination-card:hover,
  .map-quick-pill:hover,
  .steve-unit-card:hover,
  .leciel-render-card:hover {
    transform: none !important;
  }

  .fade-in,
  .leciel-fade-in,
  .proj-fade-in,
  .bv-fade-in {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ==========================================================================
   STEVE JOBS APPLE-INSPIRED ULTRA-PREMIUM OBSIDIAN LANDING & CTA
   Fondo obsidiana profundo Utopia, superficies carbón, acentos azul cerúleo
   ========================================================================== */
.steve-landing-section,
.cta-section.steve-version {
  position: relative;
  background: radial-gradient(ellipse at 50% 12%, rgba(130, 160, 188, 0.20) 0%, rgba(14, 18, 23, 0.98) 60%, #0e1217 100%), #0e1217;
  padding: 140px 20px 110px;
  scroll-margin-top: 140px;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.steve-landing-fullscreen {
  min-height: 100vh;
  justify-content: center;
  padding-top: 150px;
}

.steve-ambient-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 520px;
  background: radial-gradient(circle, rgba(130, 160, 188, 0.22) 0%, rgba(14, 18, 23, 0.35) 50%, transparent 75%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

.steve-texture-layer {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.steve-brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 36px; /* Separación amplia (mt-8/pt-12) para que el imagotipo respire sin colisión */
  padding-top: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.steve-brand-logo-img {
  width: auto;
  max-width: 230px;
  height: 46px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
  transition: opacity 0.25s ease;
}

.steve-brand-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--utopia-accent);
}

.steve-hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  margin: 0 0 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.steve-headline-line {
  display: block;
}

.steve-hero-subtext {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.02em;
  margin: 0 auto 34px;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.steve-pillars-row {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 160, 188, 0.25);
  border-radius: 9999px;
  margin-bottom: 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.steve-pillar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.steve-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--utopia-accent);
}

.steve-pillar-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--utopia-accent);
  text-transform: uppercase;
}

.steve-pillar-divider {
  width: 1px;
  height: 14px;
  background: rgba(130, 160, 188, 0.25);
}

/* Glassmorphism obsidian panel */
.steve-obsidian-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  background: rgba(14, 18, 23, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(130, 160, 188, 0.26);
  border-radius: 28px;
  padding: 38px 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 50px rgba(130, 160, 188, 0.15);
  box-sizing: border-box;
}

/* 4 polished black project buttons */
.steve-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.steve-proj-card {
  cursor: pointer;
  position: relative;
}

.steve-proj-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.steve-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 8px;
  background: #0e1217;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 84px;
  text-align: center;
  box-sizing: border-box;
}

.steve-proj-name {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.steve-proj-tag {
  font-size: 10.5px;
  color: var(--utopia-accent);
  opacity: 0.9;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.steve-proj-card:hover .steve-card-inner {
  background: #0e1217;
  border-color: rgba(130, 160, 188, 0.40);
  transform: translateY(-2px);
}

.steve-proj-card input:checked + .steve-card-inner {
  background: #0e1217;
  border-color: var(--utopia-accent);
  box-shadow: 0 0 24px rgba(130, 160, 188, 0.35), inset 0 0 0 1px var(--utopia-accent);
}

.steve-proj-card input:checked + .steve-card-inner .steve-proj-name {
  color: #ffffff;
}

.steve-proj-card input:checked + .steve-card-inner .steve-proj-tag {
  color: #82a0bc;
  opacity: 1;
}

/* Calificación de venta: filas de chips (1 toque) */
.steve-qual-row {
  margin: 0 0 20px;
  text-align: left;
}

.steve-qual-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--utopia-accent);
  margin-bottom: 9px;
  padding-left: 2px;
}

.steve-qual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.steve-chip {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.steve-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.steve-chip span {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(14, 18, 23, 0.6);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1;
  transition: border-color .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
}

.steve-chip:hover span {
  border-color: rgba(130, 160, 188, 0.55);
  color: #ffffff;
}

.steve-chip input:checked + span {
  border-color: rgba(130, 160, 188, 0.85);
  background: rgba(130, 160, 188, 0.16);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(130, 160, 188, 0.35) inset, 0 0 18px rgba(130, 160, 188, 0.18);
}

.steve-chip input:focus-visible + span {
  outline: 2px solid rgba(130, 160, 188, 0.8);
  outline-offset: 2px;
}

/* Grupo obligatorio sin completar */
.steve-missing {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-radius: 14px;
}

.steve-qual-row.steve-missing {
  padding: 10px 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42), 0 0 22px rgba(255, 255, 255, 0.10);
}

/* Embudo progresivo: los pasos se desbloquean al ir seleccionando */
.steve-steps-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0 2px;
}

.steve-steps-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--utopia-accent);
  white-space: nowrap;
}

.steve-steps-track {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.steve-steps-fill {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(130, 160, 188, 0.75), rgba(130, 160, 188, 0.9));
  transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

.steve-locked {
  display: none !important;
}

.steve-qual-row[data-step],
.steve-inputs-row[data-step],
.steve-cta-wrap[data-step] {
  animation: steveStepIn .42s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes steveStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* Mini-quiz inline (Aún no me decido) */
.steve-quiz-flow {
  margin: 4px 0 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(130, 160, 188, 0.30);
  border-radius: 16px;
  background: rgba(14, 18, 23, 0.55);
  animation: steveStepIn .42s cubic-bezier(.22, 1, .36, 1) both;
}

.steve-quiz-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--utopia-accent);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.steve-quiz-qtitle {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.45;
}

.steve-quiz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.steve-quiz-rec {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(130, 160, 188, 0.28);
  text-align: center;
  animation: steveStepIn .4s ease both;
}

.steve-quiz-rec-eyebrow {
  display: block;
  color: #82a0bc;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steve-quiz-rec-name {
  display: block;
  margin: 6px 0 4px;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.steve-quiz-rec-tag {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12.5px;
  font-style: italic;
}

.steve-quiz-rec-link {
  color: #82a0bc;
  font-size: 12.5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(130, 160, 188, 0.4);
}

.steve-quiz-rec-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Guia sutil: brillo suave en lo proximo que hay que elegir (invita, no regaña) */
.steve-nudge {
  position: relative;
}

.steve-nudge::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(130, 160, 188, 0.32), 0 0 22px 3px rgba(130, 160, 188, 0.09);
  animation: steveNudgePulse 3s ease-in-out infinite;
}

@keyframes steveNudgePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Punto que invita a elegir (espacio reservado: sin saltos de layout) */
.steve-qual-label::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: transparent;
  vertical-align: middle;
  transition: background .4s ease;
}

.steve-qual-row.steve-nudge .steve-qual-label::before {
  background: #82a0bc;
  animation: steveNudgeDot 1.9s ease-in-out infinite;
}

@keyframes steveNudgeDot {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .steve-nudge::after,
  .steve-qual-row.steve-nudge .steve-qual-label::before {
    animation: none;
  }
}

/* Canal de contacto (WhatsApp · Telegram · iMessage · Email) */
.steve-channel-row {
  margin-bottom: 16px;
}

.steve-success-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
  letter-spacing: 0.01em;
}

.steve-form-error {
  display: none;
  margin-top: 16px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #82a0bc;
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 640px) {
  .steve-chip span { padding: 8px 12px; font-size: 12px; }
  .steve-qual-chips { gap: 7px; }
  .steve-qual-row { margin-bottom: 16px; }
}

/* Two input fields with subtle dark border and gold accents */
.steve-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.steve-input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.steve-input-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--utopia-accent);
  margin-bottom: 6px;
  padding-left: 2px;
}

.steve-input-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(14, 18, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13.5px;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.steve-input-group input:focus {
  outline: none;
  border-color: var(--utopia-accent);
  box-shadow: 0 0 0 3px rgba(130, 160, 188, 0.20);
  background: rgba(14, 18, 23, 0.95);
}

.steve-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.steve-obsidian-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 28px;
  background: #0e1217;
  border: 1.5px solid var(--utopia-accent);
  border-radius: 14px;
  color: var(--utopia-accent);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 24px rgba(130, 160, 188, 0.20);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.steve-obsidian-btn:hover {
  background: var(--utopia-accent);
  color: var(--utopia-black);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(130, 160, 188, 0.45);
}

.steve-fine-print {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

.steve-success-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px;
}

.steve-success-banner h4 {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.steve-success-banner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 480px;
}

.steve-success-wa.steve-success-tg {
  background: #82a0bc;
}

.steve-success-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 9999px;
  background: var(--color-khaki-elegant, #82a0bc);
  color: #0e1217;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: all 0.2s ease;
}

.steve-success-wa:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 680px) {
  .steve-projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steve-inputs-row {
    grid-template-columns: 1fr;
  }
  .steve-pillars-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 20px;
  }
  .steve-pillar-divider {
    display: none;
  }
  .steve-brand-logo-img {
    height: 38px;
    max-width: 190px;
  }
  .steve-obsidian-card {
    padding: 26px 20px;
    border-radius: 22px;
  }
}


/* =============================================================
   MOBILE IMPROVEMENTS — Brauny Veloz v3
   Responsive polish for phone viewports (≤768px, ≤640px, ≤480px, ≤390px)
   Organized in 8 groups. Additive overrides only.
   ============================================================= */

/* ---------------------------------------------------------------
   GRUPO 1: Padding vertical de secciones generales
   .section tiene 108px en desktop — demasiado en móvil
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .top-projects-section {
    padding: 72px 0 80px;
  }
  .foreign-investor-section {
    padding: 72px 0;
  }
  .foreign-investor-head {
    margin: 0 auto 36px;
  }
  .spotlight-card {
    padding: 26px 22px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .top-projects-section {
    padding: 56px 0 64px;
  }
  .foreign-investor-section {
    padding: 56px 0;
  }
  .top-projects-head {
    margin-bottom: 36px;
  }
  .top-projects-head h2 {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
  }
}

/* ---------------------------------------------------------------
   GRUPO 2: Hero Stitch — contenido inferior, tipografía y botones
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Más espacio vertical para el contenido del hero */
  .stitch-bottom-content {
    padding: 0 20px 20px !important;
  }

  /* El hero tiene espacio suficiente con la barra VIP */
  .cinematic-hero-stitch {
    padding-bottom: 88px !important;
  }

  /* Tag kicker más compacto */
  .stitch-tag-pill {
    letter-spacing: 0.14em !important;
    margin-bottom: 10px !important;
  }

  /* Título principal con mejor clamp para 375-768px */
  .stitch-h1 {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
    margin-bottom: 8px !important;
    line-height: 1.1 !important;
  }

  /* Descripción más legible */
  .stitch-desc {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
    color: rgba(255, 255, 255, 0.78) !important;
  }

  /* Grid de métricas: más espacio y legible */
  .stitch-metrics-grid {
    gap: 8px !important;
    margin-bottom: 18px !important;
  }

  .stitch-metric-card {
    padding: 10px 12px !important;
    border-radius: 10px;
  }

  .stitch-metric-sub {
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
    line-height: 1.3 !important;
    white-space: normal !important;
  }

  .stitch-metric-val {
    font-size: 1rem !important;
    margin-top: 2px !important;
  }

  /* Botones de acción: más espacio entre ellos y mejor height */
  .hero-project-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 16px !important;
    width: 100% !important;
  }

  .btn-hero-action {
    width: 100% !important;
    min-height: 50px !important;
    padding: 13px 20px !important;
    font-size: 13px !important;
    justify-content: center !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 480px) {
  .stitch-h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.2rem) !important;
  }
  .stitch-desc {
    font-size: 0.84rem !important;
    max-width: 100% !important;
  }
  /* En pantallas muy pequeñas, mostrar solo 2 métricas en fila */
  .stitch-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ---------------------------------------------------------------
   GRUPO 3: Project Cards — specs grid y carousel arrows
   --------------------------------------------------------------- */

/* .project-specs-grid: 3 columnas sin responsive — puede aplastar texto */
@media (max-width: 768px) {
  .project-specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .project-spec-item .spec-label {
    font-size: 8.5px;
    letter-spacing: 0.06em;
  }
  .project-spec-item .spec-val {
    font-size: 11.5px;
  }
  /* Carousel: aspect ratio más cuadrado en móvil para imagen más alta */
  .project-carousel-container {
    aspect-ratio: 16 / 12;
  }
  /* Flechas de carousel: tamaño táctil correcto (44x44px mínimo) */
  .carousel-arrow {
    width: 44px !important;
    height: 44px !important;
    opacity: 1 !important;
  }
  .carousel-arrow.prev { left: 8px !important; }
  .carousel-arrow.next { right: 8px !important; }

  /* Project card body: menos padding en móvil */
  .project-card-body {
    padding: 22px 20px 24px;
  }
  .project-card-body h3 {
    font-size: 1.65rem;
  }
}

@media (max-width: 480px) {
  /* En pantallas muy pequeñas, 3 specs en 1 fila + stacked */
  .project-specs-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(14, 18, 23, 0.08);
    border-bottom: 1px solid rgba(14, 18, 23, 0.08);
  }
  .project-spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(14, 18, 23, 0.05);
  }
  .project-spec-item:last-child {
    border-bottom: none;
  }
  .project-spec-item .spec-label {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .project-spec-item .spec-val {
    font-size: 12px;
    text-align: right;
  }
}

/* Leciel carousel en móvil */
@media (max-width: 640px) {
  .leciel-carousel-section {
    padding: 48px 0 40px;
  }
  .leciel-gallery-container {
    padding: 0 12px;
  }
  /* Disable the leciel-slide ken-burns scale on mobile to prevent
     horizontal overflow (same fix as .stitch-video). The active
     slide fades anyway so the scale doesn't affect the look. */
  .leciel-slide,
  .leciel-slide.active {
    transform: scale(1.0) !important;
  }
  /* Flechas de navegación del carrusel Le Ciel: táctil correcto */
  .leciel-nav-btn {
    width: 44px !important;
    height: 44px !important;
  }
  .leciel-nav-btn.prev { left: 8px !important; }
  .leciel-nav-btn.next { right: 8px !important; }
  /* Miniaturas más pequeñas en móvil */
  .leciel-thumb {
    flex: 0 0 72px !important;
    height: 46px !important;
  }
}

/* ---------------------------------------------------------------
   GRUPO 4: Connectivity Map — min-height y elementos ocultos
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Grid del mapa + destinos pasa a 1 columna en mobile para que no se salga */
  .connectivity-grid-apple {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
  }
  /* Forzar que el showcase del mapa NO se salga del viewport */
  .conn-map-showcase {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  /* El iframe necesita min-width:0 para que la columna 1fr lo respete */
  .conn-map-showcase > * {
    min-width: 0;
  }
  /* La columna de destinos también ocupa el 100% */
  .conn-dest-col {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  /* Reducir altura del mapa en móvil */
  .conn-map-viewport {
    min-height: 280px !important;
    aspect-ratio: 16 / 11;
    max-width: 100% !important;
  }
  /* El iframe no debe exceder el contenedor */
  .conn-google-iframe,
  .conn-map-img,
  .conn-map-pins-layer,
  .conn-layer-google,
  .conn-layer-masterplan {
    max-width: 100% !important;
  }
  /* Ocultar coordenadas — no aportan valor en móvil */
  .conn-map-coord {
    display: none !important;
  }
  /* El topbar del mapa: solo mostrar lo esencial */
  .conn-topbar-right {
    gap: 8px;
  }
  /* Leyenda inferior: simplificar */
  .conn-map-legend-items {
    gap: 10px;
  }
  .conn-map-legend-item {
    font-size: 10px;
  }
  /* Destination rows: más compactas */
  .conn-dest-row {
    padding: 12px 14px;
  }
  .conn-dest-title {
    font-size: 13.5px;
  }
  .conn-dest-time {
    font-size: 16px;
  }
  .conn-dest-sub {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  .connectivity-section {
    padding: 60px 0 40px;
  }
  /* El mapa aún más compacto */
  .conn-map-viewport {
    min-height: 240px !important;
    aspect-ratio: 16 / 9;
  }
  /* Topbar del mapa: apilar en columna */
  .conn-map-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  /* Ocultar el switcher de vista en pantallas muy pequeñas */
  .conn-map-views-toggle {
    align-self: flex-end;
  }
  /* Link externo del mapa: ocultar en móvil */
  .conn-map-ext-link {
    display: none !important;
  }
}

/* ---------------------------------------------------------------
   GRUPO 5: Compare Cards — padding lateral y badge posición
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .compare-grid {
    padding-top: 20px;
    gap: 20px;
  }
  .compare-card {
    padding: 30px 22px;
  }
  .compare-card h3 {
    font-size: 1.65rem;
  }
  .compare-badge {
    left: 22px;
  }
  .compare-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .compare-card {
    padding: 26px 18px;
  }
  .compare-badge {
    left: 18px;
    font-size: 10px;
    padding: 3px 12px;
  }
}

/* ---------------------------------------------------------------
   GRUPO 6: CTA / Lead Capture — submit button y campos
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .lead-fields-row {
    flex-direction: column;
    gap: 10px;
  }
  .lead-field-item {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }
  .lead-submit-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    min-height: 50px;
  }
  .lead-capture-form {
    gap: 16px;
  }
  /* Success banner: más compacto */
  .lead-success-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 20px;
    border-radius: 16px;
  }
  .cta-section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .cta-section {
    padding: 60px 0;
  }
  .cta-section h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
  .cta-section p {
    font-size: 0.92rem;
  }
  /* Formulario principal: padding lateral */
  .lead-capture-form {
    padding: 0 4px;
  }
  .lead-project-picker {
    padding: 14px 16px;
  }
  .lead-picker-pills {
    gap: 6px;
  }
  .lead-picker-pill span {
    padding: 6px 12px;
    font-size: 0.76rem;
  }
}

/* ---------------------------------------------------------------
   GRUPO 7: Contact hub — ocultar cuando hay barra VIP
   El .bv-contact-hub compite visualmente con el .mobile-vip-bar
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  /* El botón flotante se retira donde hay barra VIP (esa franja la ocupa el
     aviso de "seguir explorando"), pero la TARJETA sigue viva: los botones
     "Hablar con Brauny" la abren como hoja inferior con todos los canales. */
  body.has-mobile-vip-bar .bv-contact-hub .bv-contact-btn {
    display: none !important;
  }

  /* Base en móvil: el wrapper sigue anclado abajo-derecha y no intercepta toques
     (la tarjeta cerrada es visibility:hidden, pero eso NO libera el área táctil). */
  .bv-contact-hub { pointer-events: none; }
  .bv-contact-hub .bv-contact-btn { pointer-events: auto; }

  /* Hoja inferior: SOLO con el panel abierto se estira a lo ancho y se pega abajo.
     Si el wrapper se estirara siempre, la píldora de las páginas sin barra VIP
     quedaría a ancho completo pegada al borde. */
  .bv-contact-hub.is-open {
    left: 0;
    right: 0;
    bottom: 0;
    align-items: stretch;
    gap: 0;
    pointer-events: auto;
    z-index: 10000;
  }
  /* La píldora se aparta: la hoja la reemplaza */
  .bv-contact-hub.is-open .bv-contact-btn { display: none !important; }
  .bv-contact-hub.is-open .bv-contact-card {
    width: 100%;
    max-width: 100%;
    border-radius: 22px 22px 0 0;
    padding: 6px 6px calc(8px + env(safe-area-inset-bottom, 0px));
    transform: none;
    transform-origin: bottom center;
  }
  /* Con la hoja abierta la barra VIP estorba: se aparta */
  body.bv-hub-open .mobile-vip-bar { display: none !important; }

  /* También ocultar el project-idle-nudge del home en móvil cuando hay VIP bar */
  body.has-mobile-vip-bar .project-idle-nudge {
    bottom: calc(var(--vip-bar-h, 104px) + 14px) !important;
  }

  /* Mobile VIP bar: mejorar los botones */
  .mobile-vip-btn-wa,
  .mobile-vip-btn-form {
    font-size: 12.5px;
    letter-spacing: 0.01em;
  }
  .mobile-vip-btn-wa svg,
  .mobile-vip-btn-form svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
  }
}

@media (max-width: 390px) {
  /* Pantallas muy pequeñas: texto más corto en VIP bar */
  .mobile-vip-btn-wa,
  .mobile-vip-btn-form {
    font-size: 11.5px;
    padding: 10px 8px;
    gap: 6px;
  }
}

/* ---------------------------------------------------------------
   GRUPO 8: Compact Arch Module (Le Ciel / The Winds specs tabs)
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  /* Padding del módulo principal */
  .compact-arch-module {
    padding: 20px 16px !important;
    border-radius: 1.25rem !important;
    gap: 20px !important;
  }
  /* Título del módulo más pequeño */
  .compact-arch-headline-title {
    font-size: 1.6rem !important;
  }
  /* Cards de specs: altura más compacta */
  .compact-spec-card {
    min-height: 120px !important;
    padding: 16px !important;
  }
  .compact-spec-title {
    font-size: 14px !important;
  }
  .compact-spec-desc {
    font-size: 11px !important;
  }
  /* Tabs de navegación: más pequeñas */
  .compact-tab-btn {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
  /* Acciones pinned: más compactas */
  .compact-arch-pinned-actions {
    padding-top: 18px;
    margin-top: 18px;
    gap: 8px;
  }
  .btn-compact-primary,
  .btn-compact-secondary {
    height: 46px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .compact-arch-module {
    padding: 18px 14px !important;
  }
  .compact-specs-grid {
    gap: 10px !important;
  }
  .compact-spec-card {
    min-height: 110px !important;
    padding: 14px !important;
  }
  .compact-arch-headline-title {
    font-size: 1.45rem !important;
  }
}

/* ---------------------------------------------------------------
   GRUPO 9: Tipografía general en móvil
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  /* h1 global: reducir mínimo para pantallas de 360px */
  h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }
  h2 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
  }
  h3 {
    font-size: 1.3rem;
  }
  /* Section head: más ajustado */
  .section-head h2 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
  }
  /* Lead text: mejor tamaño en móvil */
  .lead {
    font-size: 0.98rem;
    max-width: 100%;
  }
  /* Advisor section title */
  .advisor-sj-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }
  .advisor-sj-lead {
    font-size: 0.92rem;
  }
  /* Connectivity title */
  .connectivity-title {
    font-size: 24px !important;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  /* Contenedor con menos padding lateral en pantallas muy pequeñas */
  .container {
    padding: 0 16px;
  }
  /* Card padding reducido */
  .card {
    padding: 22px 18px;
  }
}

/* ---------------------------------------------------------------
   GRUPO 10: Spotlight y Foreign Investor cards en móvil
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  .spotlight-head {
    margin-bottom: 36px;
    padding-bottom: 18px;
  }
  .spotlight-head .head-right {
    font-size: 0.88rem;
    max-width: 100%;
  }
  .spotlight-card {
    padding: 24px 20px;
  }
  .spotlight-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }
  .spotlight-card h3 {
    font-size: 1.3rem;
  }
  /* Foreign investor cards */
  .foreign-card {
    padding: 26px 22px;
  }
  .foreign-card h3 {
    font-size: 1.3rem;
  }
}

/* ---------------------------------------------------------------
   GRUPO 11: Stats bar del Hero clásico
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    margin-top: 24px;
  }
  .stats .n {
    font-size: 1.75rem;
  }
  .stats .l {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 400px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stats > div {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .stats .n {
    font-size: 1.85rem;
    line-height: 1;
  }
}

/* ---------------------------------------------------------------
   GRUPO 12: Quiz de proyectos — chips y card padding
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  .bv-quiz-section {
    padding: 60px 0 70px;
  }
  .bv-quiz-card {
    padding: 26px 18px !important;
    border-radius: 18px !important;
  }
  .bv-quiz-chip {
    padding: 14px 16px !important;
    gap: 12px !important;
  }
  .bv-quiz-chip-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 11px !important;
  }
  .bv-quiz-chip-label {
    font-size: 0.95rem !important;
  }
  .bv-quiz-chip-desc {
    font-size: 0.8rem !important;
  }
  .bv-quiz-step-title {
    font-size: 1.5rem !important;
  }
  .bv-quiz-step-sub {
    font-size: 0.88rem !important;
  }
  /* Reducir padding del progress wrap */
  .bv-quiz-progress-wrap {
    padding: 14px 16px;
    margin-bottom: 24px;
  }
  .bv-quiz-header {
    margin: 0 auto 28px;
  }
  .bv-quiz-header h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem) !important;
  }
  /* Botones de navegación del quiz */
  .bv-quiz-btn-next {
    padding: 10px 22px;
    font-size: 0.84rem;
  }
  /* Footer del quiz */
  .bv-quiz-trust-note {
    font-size: 0.78rem;
    margin-top: 18px;
  }
}

/* ---------------------------------------------------------------
   GRUPO 13: Cinematic Hero (páginas de proyectos individuales)
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .cinematic-content {
    padding: 100px 20px 60px !important;
    gap: 30px !important;
  }
  .cinematic-h1 {
    font-size: clamp(2.2rem, 7vw, 3rem) !important;
  }
  .cinematic-lead {
    font-size: 0.95rem !important;
    margin-bottom: 22px !important;
  }
  /* Stats del hero cinematográfico: 2x2 en móvil */
  .cinematic-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .cinematic-stat-val {
    font-size: 1.25rem;
  }
  .cinematic-stat-lbl {
    font-size: 10px;
  }
  /* VIP card flotante: full width en móvil */
  .floating-vip-card {
    padding: 26px 22px;
    border-radius: 18px;
  }
  .floating-vip-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .cinematic-content {
    padding: 90px 16px 50px !important;
  }
  .cinematic-h1 {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
    line-height: 1.1 !important;
  }
  /* Pill de control de video */
  .video-control-pill {
    padding: 4px 10px;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .video-ctrl-btn {
    font-size: 10px;
    padding: 3px 7px;
  }
}

/* ---------------------------------------------------------------
   GRUPO 14: Scrollbar personalizada en móvil (thumbs track)
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .leciel-thumbs-track {
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
    gap: 8px;
    margin-top: 12px;
  }
  .leciel-thumbs-track::-webkit-scrollbar {
    display: none;
  }
}

/* ---------------------------------------------------------------
   GRUPO 15: Drawer panel en móvil — ocupar pantalla completa
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  .stitch-drawer-panel {
    max-width: 100% !important;
    border-left: none !important;
    border-top: 1px solid rgba(130, 160, 188, 0.25) !important;
    border-radius: 24px 24px 0 0 !important;
    top: auto !important;
    height: 92vh !important;
    padding: 22px 18px !important;
  }
  .stitch-drawer-container.open .stitch-drawer-panel {
    transform: translateY(0) !important;
  }
  /* Drawer cerrado: baja por abajo en móvil */
  .stitch-drawer-panel {
    transform: translateY(100%) !important;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .stitch-drawer-title {
    font-size: 1.45rem;
  }
}

/* ---------------------------------------------------------------
   EXTRA: Mejoras de accesibilidad táctil general
   Todos los elementos interactivos clave deben ser ≥44px
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Botones de idioma en el navbar */
  .site-header .lang-switch a {
    padding: 5px 7px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
  /* Mobile toggle: zona táctil generosa */
  .site-header .mobile-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  /* Tabs del quiz de proyectos: más altas y táctiles */
  .proj-tab-btn {
    padding: 10px 16px;
    font-size: 11.5px;
  }
  /* Tab buttons del compact arch */
  .leciel-tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  /* Indicadores del hero slideshow */
  .hero-indicator-dash {
    min-height: 20px;
    display: flex;
    align-items: center;
  }
}

/* =============================================================
   INDEX HOMEPAGE — MOBILE PRECISION LAYER
   Mejoras específicas para la página de inicio en teléfonos.
   Viewport: ≤768px, ≤640px, ≤480px, ≤390px
   ============================================================= */

/* ---------------------------------------------------------------
   1. NAVBAR: Píldora de proyectos en móvil
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .dynamic-project-pill {
    max-width: calc(100vw - 24px);
  }
  .dynamic-pill-tab {
    min-height: 38px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 6px 8px;
  }
  .dynamic-pill-tab.active {
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .dynamic-pill-tab {
    font-size: 10.5px;
    padding: 5px 7px;
  }
  .dynamic-pill-tab .pill-tab-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 72px;
  }
}

/* ---------------------------------------------------------------
   2. HERO STITCH: Overlay — más contraste en móvil
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .stitch-overlay-top {
    background: linear-gradient(
      to top,
      rgba(14, 18, 23, 0.98) 0%,
      rgba(14, 18, 23, 0.70) 35%,
      rgba(0, 0, 0, 0.30) 65%,
      rgba(0, 0, 0, 0.15) 100%
    ) !important;
  }
  .stitch-overlay-side {
    background: linear-gradient(
      to right,
      rgba(14, 18, 23, 0.55) 0%,
      rgba(14, 18, 23, 0.15) 40%,
      transparent 100%
    ) !important;
  }
}

/* ---------------------------------------------------------------
   3. HERO STITCH: Contenido editorial inferior
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .stitch-bottom-content {
    padding: 0 18px 18px !important;
    max-width: 100% !important;
  }
  .stitch-bottom-inner {
    max-width: 100% !important;
  }
  .stitch-tag-pill {
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    margin-bottom: 10px !important;
    padding: 0 !important;
    gap: 7px !important;
  }
  .stitch-pulse-dot {
    width: 5px;
    height: 5px;
  }
  .stitch-h1 {
    font-size: clamp(1.9rem, 7.8vw, 2.5rem) !important;
    line-height: 1.09 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 8px !important;
  }
  .stitch-h1-main {
    margin-right: 6px !important;
  }
  .stitch-desc {
    font-size: 0.875rem !important;
    line-height: 1.58 !important;
    color: rgba(255, 255, 255, 0.80) !important;
    margin-bottom: 14px !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .stitch-bottom-content {
    padding: 0 16px 16px !important;
  }
  .stitch-h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
  }
  .stitch-desc {
    font-size: 0.84rem !important;
    line-height: 1.52 !important;
  }
}

@media (max-width: 390px) {
  .stitch-bottom-content {
    padding: 0 14px 14px !important;
  }
  .stitch-h1 {
    font-size: clamp(1.6rem, 8.5vw, 2rem) !important;
  }
}

/* ---------------------------------------------------------------
   4. METRIC CARDS: Grid 2×2 en móvil
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .stitch-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
  }
  .stitch-metric-card {
    padding: 10px 12px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
  .stitch-metric-sub {
    font-size: 8.5px !important;
    letter-spacing: 0.10em !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    color: rgba(255, 255, 255, 0.62) !important;
  }
  .stitch-metric-val {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-top: 3px !important;
    letter-spacing: -0.01em !important;
  }
}

/* ---------------------------------------------------------------
   5. BOTONES DE ACCIÓN DEL HERO
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-project-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    margin-top: 14px !important;
    width: 100% !important;
  }
  .btn-hero-explore {
    min-height: 48px !important;
    padding: 12px 20px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    border-radius: 9999px !important;
    justify-content: center !important;
    width: 100% !important;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #9da1aa 100%) !important;
    color: #0e1217 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
  }
  .btn-hero-explore svg {
    color: #0e1217 !important;
  }
  .btn-hero-dossier {
    min-height: 44px !important;
    padding: 11px 20px !important;
    font-size: 12px !important;
    border-radius: 9999px !important;
    justify-content: center !important;
    width: 100% !important;
    background: rgba(14, 18, 23, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
  }
  .btn-hero-dossier svg {
    color: #82a0bc !important;
  }
  /* Ocultar el 3er botón WA del hero si ya hay VIP bar */
  .btn-hero-wa {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .btn-hero-explore {
    min-height: 46px !important;
    font-size: 12px !important;
  }
  .btn-hero-dossier {
    min-height: 44px !important;
    font-size: 11.5px !important;
  }
}

/* ---------------------------------------------------------------
   6. MOBILE VIP BAR: Barra de contacto inferior (Dock de pulgar)
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .mobile-vip-bar {
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
    padding: 8px 14px !important;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 12px)) !important;
    flex-direction: column !important;
    gap: 8px !important;
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.75),
                0 -1px 0 rgba(255, 255, 255, 0.10) !important;
    background: rgba(14, 18, 23, 0.95) !important;
  }
  .mobile-vip-btn-wa {
    min-height: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    gap: 6px !important;
    box-shadow: 0 4px 16px rgba(130, 160, 188, 0.35) !important;
  }
  .mobile-vip-btn-form {
    min-height: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    gap: 6px !important;
  }
}

@media (max-width: 390px) {
  .mobile-vip-bar {
    padding: 7px 10px !important;
    padding-bottom: max(10px, env(safe-area-inset-bottom, 10px)) !important;
  }
  .mobile-vip-proj-btn {
    font-size: 10px !important;
    padding: 5px 6px !important;
  }
  .mobile-vip-btn-wa,
  .mobile-vip-btn-form {
    min-height: 42px !important;
    height: 42px !important;
    font-size: 11px !important;
  }
}

/* ---------------------------------------------------------------
   7. BODY PADDING con VIP bar activa
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  body.has-mobile-vip-bar {
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.has-mobile-vip-bar .cinematic-hero-stitch {
    padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ---------------------------------------------------------------
   8. DRAWER — Bottom sheet en móvil
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  .stitch-drawer-panel {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 90vh !important;
    border-left: none !important;
    border-top: 1px solid rgba(130, 160, 188, 0.2) !important;
    border-radius: 24px 24px 0 0 !important;
    transform: translateY(100%) !important;
    padding: 20px 18px !important;
    overflow-y: auto !important;
    padding-bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
  }
  .stitch-drawer-container.open .stitch-drawer-panel {
    transform: translateY(0) !important;
  }
  .stitch-drawer-panel::before {
    content: '';
    display: block;
    width: 38px;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    margin: 0 auto 18px;
  }
  .stitch-drawer-header {
    padding-bottom: 12px;
  }
  .stitch-drawer-title {
    font-size: 1.45rem !important;
  }
}

/* ---------------------------------------------------------------
   9. IDLE NUDGE — por encima de la VIP bar
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .project-idle-nudge {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px)) !important;
    right: 12px !important;
    left: 12px !important;
    max-width: none !important;
    gap: 10px !important;
    padding: 12px 14px 12px 16px !important;
    border-radius: 14px !important;
  }
  .project-idle-nudge-text {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }
  .project-idle-nudge-btn {
    padding: 9px 12px !important;
    font-size: 11px !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ---------------------------------------------------------------
   10. CARDS DE PROYECTO (The Winds, Le Ciel, Puerto Marina)
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .project-carousel-container {
    aspect-ratio: 16 / 11 !important;
  }
  .carousel-arrow {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: rgba(14, 18, 23, 0.70) !important;
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
  }
  .carousel-arrow.prev { left: 10px !important; }
  .carousel-arrow.next { right: 10px !important; }
  .project-card-body {
    padding: 20px 18px 22px !important;
  }
  .project-card-body h3 {
    font-size: 1.7rem !important;
    margin-bottom: 6px !important;
  }
  .project-specs-grid {
    gap: 8px !important;
  }
}

@media (max-width: 640px) {
  .project-carousel-container {
    aspect-ratio: 16 / 12 !important;
  }
}

/* ---------------------------------------------------------------
   11. FOOTER — espacio inferior con VIP bar
   --------------------------------------------------------------- */
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  body.has-mobile-vip-bar .site-footer {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   SEO/GEO: FAQ sections for zone pages + language switcher
   ============================================================ */
.bv-faq-section { padding: 64px 0 !important; }
.bv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}
details.bv-faq-item {
  background: #fff;
  border: 1px solid rgba(14, 18, 23, 0.08);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
details.bv-faq-item[open] {
  box-shadow: 0 4px 20px rgba(14, 18, 23, 0.06);
}
details.bv-faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--emerald-950);
  line-height: 1.35;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
details.bv-faq-item summary::-webkit-details-marker { display: none; }
details.bv-faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--emerald-850);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
details.bv-faq-item[open] summary::after {
  content: "−";
}
.bv-faq-answer {
  padding: 0 20px 20px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #6e737b;
  font-weight: 400;
}
.bv-faq-answer p { margin: 0; }

/* Language switcher in footer */
.footer-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.footer-lang-switcher .lang-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  margin-right: 6px;
}
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.lang-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}
.lang-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 768px) {
  .bv-faq-section { padding: 48px 0 !important; }
  details.bv-faq-item summary { font-size: 0.96rem; padding: 15px 16px; }
  .bv-faq-answer { padding: 0 16px 16px; font-size: 0.86rem; line-height: 1.55; }
  .footer-lang-switcher { margin-top: 8px; }
}

/* ============================================================
   Mobile menu drawer (hamburger) — slides from right
   ============================================================ */
.mobile-toggle {
  display: none; /* hidden by default; mobile-only via media query */
}
@media (max-width: 768px) {
  .site-header .mobile-toggle,
  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.12s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 5;
  }
  .site-header .mobile-toggle:hover,
  .mobile-toggle:hover { background: rgba(255, 255, 255, 0.12); }
  .site-header .mobile-toggle:active,
  .mobile-toggle:active { transform: scale(0.94); }
}

.bv-mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 23, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.32s;
  z-index: 1001; /* Asegurar que esté sobre el topbar fijo (1000) */
}

.bv-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 380px);
  background: rgba(14, 18, 23, 0.98);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-left: 1px solid rgba(130, 160, 188, 0.22);
  z-index: 1002; /* Drawer siempre encima del topbar y del backdrop */
  transform: translateX(110%);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  padding: 60px 24px 36px;
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.65);
}

body.menu-open .bv-mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}
body.menu-open .bv-mobile-menu {
  transform: translateX(0%);
}

.bv-mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(130, 160, 188, 0.25);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.bv-mobile-menu-close:hover { background: rgba(255, 255, 255, 0.12); }
.bv-mobile-menu-close:active { transform: scale(0.92); }

.bv-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Tarjeta Destacada de Blog / Guía Local */
.bv-mobile-blog-highlight {
  margin-top: 4px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bv-mobile-blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--utopia-accent);
  text-transform: uppercase;
}
.bv-mobile-blog-badge svg {
  color: var(--utopia-accent);
}

.bv-mobile-blog-card {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(14, 18, 23, 0.90);
  border: 1px solid rgba(130, 160, 188, 0.35);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
}
.bv-mobile-blog-card:hover,
.bv-mobile-blog-card:active {
  background: #0e1217;
  border-color: var(--utopia-accent);
  transform: translateY(-1px);
}

.bv-mobile-blog-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 6px 0;
}

.bv-mobile-blog-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 0 10px 0;
}

.bv-mobile-blog-link {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--utopia-accent);
  letter-spacing: 0.02em;
}

.bv-mobile-menu-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 8px 0 10px;
}

.bv-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.bv-mobile-menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bv-mobile-menu-list li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.bv-mobile-menu-list a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.bv-mobile-menu-list a:active,
.bv-mobile-menu-list a:hover {
  padding-left: 6px;
  color: var(--utopia-accent);
}

/* Selector de Idiomas en Celular (Parrilla elegante) */
.bv-mobile-menu-languages {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bv-drawer-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.bv-drawer-lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
  font-size: 12px;
  transition: all 0.2s ease;
}
.bv-drawer-lang-btn.is-active {
  background: rgba(130, 160, 188, 0.15);
  border-color: var(--utopia-accent);
  color: #ffffff;
  font-weight: 600;
}
.bv-drawer-lang-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--utopia-accent);
}
.bv-drawer-lang-btn.is-active .bv-drawer-lang-badge {
  background: var(--utopia-accent);
  color: #0e1217;
}

.bv-mobile-menu-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bv-mobile-menu-projects {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bv-mobile-menu-section {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.bv-mobile-proj-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bv-mobile-proj-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
}
.bv-mobile-proj-item:hover,
.bv-mobile-proj-item:active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(130, 160, 188, 0.35);
  transform: translateX(2px);
}
.bv-mobile-proj-pill {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(130, 160, 188, 0.18);
  color: var(--utopia-accent);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bv-mobile-proj-info {
  display: flex;
  flex-direction: column;
}
.bv-mobile-proj-info strong {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
.bv-mobile-proj-info small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
}

.bv-mobile-menu-cta {
  display: block;
  text-align: center;
  padding: 14px 18px;
  background: var(--utopia-accent);
  color: var(--utopia-black);
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(130, 160, 188, 0.35);
  transition: transform 0.12s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.2s ease;
}
.bv-mobile-menu-cta:active { transform: scale(0.96); }

/* Con el menú abierto, las barras flotantes del fondo estorban: la barra VIP (z 9990)
   tapaba la parte de abajo del drawer y el menú parecía no llegar hasta abajo. */
body.menu-open .mobile-vip-bar,
body.menu-open .bv-contact-hub,
body.menu-open .mobile-dock,
body.menu-open .project-idle-nudge {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* When menu is open, lock background scroll */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* =============================================================
   APPLE-LIKE & PRIVATE EQUITY ULTRA-PREMIUM BLOG SYSTEM
   Design language: Deep Obsidian (#0e1217, #0e1217), subtle gold accent (#82a0bc),
   refined editorial serif, interactive category filters, instant search,
   VIP quarterly dossier box and architectural imagery.
   ============================================================= */

/* Blog Index / Hub Hero */
.bv-blog-hub-hero {
  position: relative;
  padding: 140px 0 64px;
  background: radial-gradient(circle at 50% 0%, rgba(130, 160, 188, 0.14) 0%, rgba(14, 18, 23, 0.95) 45%, rgba(14, 18, 23, 1) 100%);
  border-bottom: 1px solid rgba(14, 18, 23, 0.6);
  overflow: hidden;
  text-align: center;
}

.bv-blog-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(#82a0bc 1px, transparent 1px);
  background-size: 24px 24px;
}

.bv-blog-hero-container {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.bv-blog-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(14, 18, 23, 0.88);
  border: 1px solid rgba(130, 160, 188, 0.38);
  color: #82a0bc;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bv-blog-pill-badge svg {
  color: #82a0bc;
}

.bv-blog-hub-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #82a0bc 50%, #82a0bc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 400;
}

.bv-blog-hub-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
  max-width: 720px;
  margin: 0 auto 36px;
}

.bv-blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 46px;
}

.bv-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 9999px;
  background: #82a0bc;
  color: #0e1217 !important;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 32px -4px rgba(130, 160, 188, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bv-btn-gold:hover {
  background: #82a0bc;
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(130, 160, 188, 0.45);
}

.bv-btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 160, 188, 0.35);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.bv-btn-glass:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: #82a0bc;
  transform: translateY(-2px);
}

.bv-btn-glass svg {
  color: #82a0bc;
}

/* Hero 3-Pillar Cards */
.bv-blog-hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

@media (max-width: 860px) {
  .bv-blog-hero-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.bv-pillar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(14, 18, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bv-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(130, 160, 188, 0.12);
  color: #82a0bc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bv-pillar-info h4 {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0 0 2px 0;
}

.bv-pillar-info p {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* =============================================================
   FILTER & SEARCH BAR (INTERACTIVE & SOPHISTICATED)
   ============================================================= */
.bv-blog-filter-bar {
  padding: 18px 0;
  background: rgba(14, 18, 23, 0.88);
  border-bottom: 1px solid rgba(14, 18, 23, 0.7);
  position: sticky;
  top: 64px;
  z-index: 30;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.bv-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bv-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.bv-filter-pills::-webkit-scrollbar { display: none; }

.bv-filter-btn {
  white-space: nowrap;
  padding: 9px 18px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bv-filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(130, 160, 188, 0.4);
}

.bv-filter-btn.active {
  background: #82a0bc;
  color: #0e1217;
  font-weight: 600;
  border-color: #82a0bc;
  box-shadow: 0 4px 16px rgba(130, 160, 188, 0.25);
}

.bv-blog-search-box {
  position: relative;
  min-width: 280px;
  flex: 1 1 320px;
  max-width: 420px;
}

.bv-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.bv-blog-search-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 12.5px;
  outline: none;
  transition: all 0.25s ease;
}

.bv-blog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.bv-blog-search-input:focus {
  border-color: #82a0bc;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 20px rgba(130, 160, 188, 0.2);
}

/* =============================================================
   BLOG MAIN GRID (PRIVATE EQUITY LUXURY CARDS)
   ============================================================= */
.bv-blog-main-wrap {
  padding: 60px 0 90px;
  background: #0e1217;
}

.bv-blog-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}

.bv-blog-header-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #82a0bc;
  display: block;
  margin-bottom: 4px;
}

.bv-blog-header-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.bv-blog-counter {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.bv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1040px) {
  .bv-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .bv-blog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.bv-blog-card {
  display: flex;
  flex-direction: column;
  background: #0e1217;
  border: 1px solid #0e1217;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  position: relative;
}

.bv-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(130, 160, 188, 0.55);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.7), 0 0 30px rgba(130, 160, 188, 0.16);
}

.bv-blog-card-media {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #0e1217;
}

.bv-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92);
}

.bv-blog-card:hover .bv-blog-card-img {
  transform: scale(1.06);
  filter: brightness(1);
}

.bv-blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(14, 18, 23, 0.85) 100%);
  pointer-events: none;
}

.bv-blog-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(14, 18, 23, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(130, 160, 188, 0.35);
  color: #82a0bc;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bv-blog-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bv-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
  margin-bottom: 12px;
}

.bv-blog-card-meta svg {
  color: #82a0bc;
}

.bv-blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bv-blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.32;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.bv-blog-card:hover .bv-blog-card-title {
  color: #82a0bc;
}

.bv-blog-card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 24px;
  font-weight: 300;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bv-blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
}

.bv-blog-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #82a0bc;
  transition: gap 0.2s ease, color 0.2s ease;
}

.bv-blog-card:hover .bv-blog-card-action {
  gap: 10px;
  color: #82a0bc;
}

.bv-blog-card-bookmark {
  color: rgba(255, 255, 255, 0.62);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.bv-blog-card-bookmark:hover {
  color: #82a0bc;
}

/* =============================================================
   DOSSIER / QUARTERLY REPORT VIP SECTION
   ============================================================= */
.bv-dossier-section {
  padding: 0 0 100px;
  background: #0e1217;
}

.bv-dossier-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #0e1217 0%, #0e1217 50%, #0e1217 100%);
  border: 1px solid rgba(130, 160, 188, 0.38);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 35px rgba(130, 160, 188, 0.12);
  padding: 48px 44px;
}

@media (max-width: 768px) {
  .bv-dossier-box {
    padding: 32px 24px;
  }
}

.bv-dossier-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(130, 160, 188, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

.bv-dossier-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 960px) {
  .bv-dossier-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.bv-dossier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(130, 160, 188, 0.14);
  border: 1px solid rgba(130, 160, 188, 0.32);
  color: #82a0bc;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.bv-dossier-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.bv-dossier-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
}

.bv-dossier-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.bv-dossier-check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bv-dossier-check-item svg {
  color: #82a0bc;
}

.bv-dossier-action-card {
  background: rgba(14, 18, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bv-dossier-action-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.62);
  display: block;
  margin-bottom: 16px;
}

.bv-dossier-subtext {
  font-family: var(--font-sans);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.62);
  display: block;
  margin-top: 12px;
}

/* =============================================================
   ARTICLE DETAIL PAGE (EDITORIAL APPLE / QUIET LUXURY)
   ============================================================= */
.bv-article-hero {
  padding: 140px 0 44px;
  background: radial-gradient(circle at 50% 0%, rgba(130, 160, 188, 0.12) 0%, rgba(14, 18, 23, 0.95) 55%, rgba(14, 18, 23, 1) 100%);
  position: relative;
  text-align: center;
}

.bv-article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.bv-article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.bv-article-breadcrumb a {
  color: #82a0bc;
  text-decoration: none;
}

.bv-article-breadcrumb a:hover {
  color: #ffffff;
}

.bv-article-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin-bottom: 24px;
}

.bv-article-author-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 36px;
}

.bv-article-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #82a0bc;
  color: #0e1217;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-article-author-info {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  gap: 10px;
  align-items: center;
}

.bv-article-author-info strong {
  color: #ffffff;
}

.bv-article-featured-media {
  max-width: 980px;
  margin: 0 auto 50px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.bv-article-featured-media img {
  width: 100%;
  height: clamp(300px, 45vw, 480px);
  object-fit: cover;
  display: block;
}

.bv-article-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 18, 23, 0.88) 100%);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
  font-size: 11.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Callout Box inside article */
.bv-article-callout {
  background: #0e1217;
  border-left: 3px solid #82a0bc;
  border-radius: 0 16px 16px 0;
  padding: 24px 28px;
  margin: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bv-article-callout h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #82a0bc;
  margin-bottom: 8px;
  font-weight: 600;
}

.bv-article-callout p {
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.05rem !important;
}

/* Article CTA Card - Steve Jobs Approved */
.bv-article-cta-box {
  margin-top: 60px;
  padding: 40px 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(14, 18, 23, 0.95) 0%, rgba(14, 18, 23, 0.95) 100%);
  border: 1px solid rgba(130, 160, 188, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (max-width: 768px) {
  .bv-article-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
}

.bv-article-cta-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 400;
}

.bv-article-cta-content p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  line-height: 1.6;
}

.bv-article-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  background: #ffffff;
  color: #0e1217 !important;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.18);
  transition: all 0.22s ease;
  flex-shrink: 0;
}

.bv-article-cta-btn:hover {
  background: #82a0bc;
  color: #0e1217 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(130, 160, 188, 0.35);
}



/* ══════════════════════════════════════════════════════════════
   PROJECT PAGES — Premium editorial layout (Le Ciel / The Winds /
   Puerto Marina). Scope: .proj-page
   ══════════════════════════════════════════════════════════════ */

.proj-page { background: #ffffff; }

/* ── HERO full-bleed ────────────────────────────────────────── */
.proj-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: #0e1217;
  overflow: hidden;
}
.proj-hero-bg { position: absolute; inset: 0; }
.proj-hero-bg img,
.proj-hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.12);
  animation: projSlowZoom 22s ease-out both;
}
@keyframes projSlowZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.proj-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,18,23,.70) 0%, rgba(14,18,23,.16) 28%, rgba(14,18,23,.56) 62%, rgba(14,18,23,.96) 100%),
    linear-gradient(90deg, rgba(14,18,23,.62) 0%, rgba(14,18,23,.12) 55%, rgba(14,18,23,0) 78%);
}
.proj-hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 190px 0 84px;
}
.proj-hero-inner::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 85% at 12% 78%, rgba(14, 18, 23,.62) 0%, rgba(14, 18, 23,.28) 42%, rgba(14, 18, 23,0) 72%);
}
.proj-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 22px;
}
.proj-kicker::before {
  content: ""; width: 26px; height: 1px; background: var(--utopia-accent);
}
.proj-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 6.4vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -.022em;
  color: #fff;
  max-width: 17ch;
  margin: 0 0 22px;
  text-shadow: 0 2px 34px rgba(0,0,0,.62), 0 1px 3px rgba(0,0,0,.45);
}
.proj-hero h1 .accent {
  color: #82a0bc;
  font-style: italic;
  text-shadow: 0 3px 26px rgba(14, 18, 23,.92), 0 1px 2px rgba(14, 18, 23,.7), 0 0 46px rgba(14, 18, 23,.6);
}
.proj-hero-lead {
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 300;
  line-height: 1.72;
  max-width: 62ch;
  margin: 0 0 30px;
}
.proj-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.proj-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .04em;
}
.proj-chip.is-price { border-color: rgba(130,160,188,.55); background: rgba(130,160,188,.16); }
.proj-hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }
.proj-btn-solid, .proj-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.proj-btn-solid { background: var(--utopia-accent); color: var(--utopia-black); }
.proj-btn-solid:hover { background: var(--utopia-accent-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(130,160,188,.35); }
.proj-btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.proj-btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ── STATS BAR (overlaps hero) ─────────────────────────────── */
.proj-stats-wrap { position: relative; z-index: 5; margin-top: -58px; }
.proj-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid rgba(14,18,23,.07);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(14,18,23,.13);
  overflow: hidden;
}
.proj-stat { padding: 26px 22px; text-align: center; border-right: 1px solid rgba(14,18,23,.06); }
.proj-stat:last-child { border-right: none; }
.proj-stat .n { font-family: var(--font-serif); font-size: clamp(1.25rem,2vw,1.6rem); color: var(--emerald-950); line-height: 1.15; }
.proj-stat .l { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 7px; font-weight: 600; }

/* ── NARRATIVE ─────────────────────────────────────────────── */
.proj-narrative { padding: 96px 0 30px; }
.proj-narrow { max-width: 860px; margin: 0 auto; text-align: center; }
.proj-lead-big {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.34;
  color: var(--emerald-950);
  font-weight: 400;
  letter-spacing: -.01em;
  margin: 0 0 18px;
}
.proj-tagline { color: var(--muted); font-size: 1.02rem; font-weight: 300; line-height: 1.7; max-width: 62ch; margin: 0 auto; }

.proj-features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  max-width: 900px; margin: 46px auto 0;
  list-style: none; padding: 0; text-align: left;
}
.proj-features li {
  position: relative;
  padding-left: 30px;
  font-size: .97rem; line-height: 1.6; color: #6e737b;
}
.proj-features li::before {
  content: "";
  position: absolute; left: 4px; top: .55em;
  width: 9px; height: 9px;
  border: 1.5px solid var(--utopia-accent);
  border-radius: 50%;
}

/* ── TABS ──────────────────────────────────────────────────── */
.proj-tabs-section { padding: 40px 0 100px; }
.proj-tabnav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  border-bottom: 1px solid rgba(14,18,23,.09);
  margin-bottom: 46px;
}
.proj-tabbtn {
  appearance: none; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  padding: 15px 20px 17px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.proj-tabbtn:hover { color: var(--emerald-950); }
.proj-tabbtn.is-active { color: var(--emerald-950); border-bottom-color: var(--utopia-accent); }
.proj-panel { display: none; }
.proj-panel.is-active { display: block; animation: projFade .5s ease both; }
@keyframes projFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.proj-panel-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.proj-panel-head h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.4rem,2.6vw,2rem); color: var(--emerald-950); margin: 0 0 12px; letter-spacing: -.01em; }
.proj-panel-head p { color: var(--muted); font-weight: 300; line-height: 1.7; margin: 0; }
.proj-bullets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 960px; margin: 0 auto; }
.proj-bullet {
  background: #ffffff;
  border: 1px solid rgba(14,18,23,.06);
  border-radius: 16px;
  padding: 22px 24px;
  transition: var(--transition);
}
.proj-bullet:hover { border-color: rgba(130,160,188,.5); box-shadow: 0 14px 36px rgba(14,18,23,.08); transform: translateY(-3px); }
.proj-bullet h4 { font-family: var(--font-sans); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--emerald-950); margin: 0 0 7px; }
.proj-bullet p { font-size: .93rem; line-height: 1.6; color: #6e737b; margin: 0; font-weight: 300; }

/* ── GALLERY ───────────────────────────────────────────────── */
.proj-gallery-section { padding: 100px 0; background: #0e1217; }
.proj-gallery-section .section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.proj-gallery-section .eyebrow { color: var(--utopia-accent); }
.proj-gallery-section h2 { font-family: var(--font-serif); font-weight: 400; color: #fff; font-size: clamp(1.7rem,3.6vw,2.7rem); margin: 0 0 14px; letter-spacing: -.015em; }
.proj-gallery-section .lead { color: rgba(255,255,255,.62); margin: 0 auto; }
.proj-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.proj-gal-item {
  position: relative; overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: #0e1217;
}
.proj-gal-item.is-feature { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.proj-gal-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .65s cubic-bezier(.22,.61,.36,1);
}
.proj-gal-item:hover img { transform: scale(1.06); }
.proj-gal-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 42px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(14,18,23,.9));
  color: #fff; font-size: .84rem; line-height: 1.45; font-weight: 300;
  opacity: 0; transform: translateY(8px);
  transition: var(--transition);
}
.proj-gal-item:hover .proj-gal-cap { opacity: 1; transform: none; }
.proj-gal-tag {
  position: absolute; top: 13px; left: 13px;
  background: rgba(14,18,23,.72);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff; font-size: 10.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}

/* ── INVEST / PRICE ────────────────────────────────────────── */
.proj-invest { padding: 100px 0; background: #ffffff; }
.proj-invest-card {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 48px; align-items: center;
  background: #fff;
  border: 1px solid rgba(14,18,23,.07);
  border-radius: 24px;
  padding: 52px;
  box-shadow: 0 20px 60px rgba(14,18,23,.07);
}
.proj-invest-card h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.5rem,2.6vw,2.1rem); color: var(--emerald-950); margin: 0 0 14px; letter-spacing: -.01em; }
.proj-invest-card .proj-price {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem,3vw,2.2rem);
  color: var(--emerald-850);
  margin: 0 0 10px;
}
.proj-invest-card .proj-price-note { font-size: .88rem; color: var(--muted); line-height: 1.6; font-weight: 300; margin: 0; }
.proj-invest-actions { display: flex; flex-direction: column; gap: 12px; }
.proj-invest-actions .proj-btn-solid { justify-content: center; }

/* ── RELATED ───────────────────────────────────────────────── */
.proj-related { padding: 96px 0; }
.proj-related h2 { font-family: var(--font-serif); font-weight: 400; text-align: center; font-size: clamp(1.5rem,3vw,2.2rem); color: var(--emerald-950); margin: 0 0 44px; }
.proj-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.proj-rel-card {
  position: relative; display: block; text-decoration: none;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 16/10;
  background: #0e1217;
  box-shadow: 0 18px 44px rgba(14, 18, 23, 0.16);
  isolation: isolate;
}
.proj-rel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.proj-rel-card:hover img { transform: scale(1.05); }

/* Scrim: garantiza legibilidad del texto sobre CUALQUIER foto */
.proj-rel-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 18, 23, 0) 0%,
      rgba(14, 18, 23, 0.06) 24%,
      rgba(14, 18, 23, 0.38) 48%,
      rgba(14, 18, 23, 0.74) 70%,
      rgba(14, 18, 23, 0.93) 88%,
      rgba(14, 18, 23, 0.98) 100%),
    linear-gradient(90deg,
      rgba(14, 18, 23, 0.52) 0%,
      rgba(14, 18, 23, 0.12) 52%,
      rgba(14, 18, 23, 0) 100%);
  transition: opacity .45s ease;
}
.proj-rel-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 30px 28px; z-index: 2; }

/* Tag como pill de vidrio: se lee sobre cualquier imagen */
.proj-rel-body .tag {
  display: inline-flex; align-items: center;
  padding: 5px 11px;
  font-size: 10px; letter-spacing: .11em; text-transform: uppercase;
  font-weight: 600; color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.proj-rel-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 12px 0 8px;
  text-shadow: 0 2px 20px rgba(14, 18, 23, 0.55);
  transition: text-decoration-color .3s ease;
}
.proj-rel-card:hover .proj-rel-body h3 {
  text-decoration: underline;
  text-decoration-color: var(--utopia-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.proj-rel-body p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.55;
  max-width: 48ch;
  text-shadow: 0 1px 14px rgba(14, 18, 23, 0.5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 980px) {
  .proj-stats { grid-template-columns: repeat(2, 1fr); }
  .proj-stat:nth-child(2) { border-right: none; }
  .proj-stat:nth-child(1), .proj-stat:nth-child(2) { border-bottom: 1px solid rgba(14,18,23,.06); }
  .proj-gallery { grid-template-columns: repeat(2, 1fr); }
  .proj-gal-item.is-feature { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
  .proj-invest-card { grid-template-columns: 1fr; gap: 30px; padding: 34px 26px; }
  .proj-features, .proj-bullets, .proj-related-grid { grid-template-columns: 1fr; }
  .proj-hero-inner { padding: 150px 0 66px; }
  /* Related cards en móvil: más imagen, texto protegido */
  .proj-rel-card { aspect-ratio: 4/3; border-radius: 16px; }
  .proj-rel-body { padding: 22px 22px 20px; }
  .proj-rel-body h3 { margin: 10px 0 6px; }
  .proj-rel-body p { font-size: 0.88rem; -webkit-line-clamp: 3; line-clamp: 3; }
}
@media (max-width: 640px) {
  .proj-hero { min-height: 84vh; }
  .proj-hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .proj-stats-wrap { margin-top: -40px; }
  .proj-stat { padding: 20px 14px; }
  .proj-gallery { grid-template-columns: 1fr; }
  .proj-gal-item.is-feature { grid-column: span 1; }
  .proj-gallery-section, .proj-invest, .proj-related { padding: 64px 0; }
  .proj-tabs-section { padding: 26px 0 64px; }
  .proj-tabbtn { padding: 12px 12px 14px; font-size: 10px; white-space: nowrap; }
  .proj-tabnav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .proj-tabnav::-webkit-scrollbar { display: none; }
  .proj-narrative { padding: 64px 0 20px; }
}


/* ============================================================
   PROJECT GALLERY (project pages) — lightbox affordance.
   Items are <a href="..."> wrappers; img-zoom.js intercepts the
   click, so the cursor must signal "zoom", not "navigate".
   ============================================================ */
.proj-gal-item { cursor: zoom-in; }
.proj-gal-item img { -webkit-user-drag: none; }

/* ============================================================
   HOME · "FICHA COMPLETA DEL PROYECTO" link (inside the specs module)
   ============================================================ */
.btn-compact-tertiary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 44px;
  padding: 0 20px;
  border-radius: 9999px;
  background: transparent;
  border: 0;
  color: #0e1217;
  font-family: 'Figtree', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: color .2s ease, background .2s ease;
}
.btn-compact-tertiary:hover {
  background: rgba(14, 18, 23, 0.05);
  color: #0e1217;
}
.btn-compact-tertiary svg { transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.btn-compact-tertiary:hover svg { transform: translateX(4px); }

/* ============================================================
   HOME · SECCIÓN COLECCIÓN DE PROYECTOS (acceso a las fichas completas)
   Apple-quiet-luxury: light surface, tight tracking, soft shadows,
   no gradients, no neon, no glassmorphism.
   ============================================================ */
.pjc-section {
  padding: 104px 0 100px;
  background: var(--sand-100, #ffffff);
  border-top: 1px solid rgba(14, 18, 23, 0.05);
  border-bottom: 1px solid rgba(14, 18, 23, 0.05);
}
.pjc-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.pjc-head .eyebrow { color: #82a0bc; }
.pjc-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--utopia-black, #0e1217);
  margin: 8px 0 14px;
}
.pjc-head .lead { margin: 0 auto; color: #6e737b; }

.pjc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.pjc-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(14, 18, 23, 0.07);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(14, 18, 23, 0.04);
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              box-shadow .45s cubic-bezier(.22,.61,.36,1),
              border-color .3s ease;
}
.pjc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(14, 18, 23, 0.11);
  border-color: rgba(14, 18, 23, 0.12);
}
.pjc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #9da1aa; }
.pjc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.pjc-card:hover .pjc-media img { transform: scale(1.045); }
.pjc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--utopia-black, #0e1217);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pjc-body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 24px; }
.pjc-cat {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #82a0bc;
  margin-bottom: 10px;
}
.pjc-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.32rem;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--utopia-black, #0e1217);
  margin: 0 0 10px;
}
.pjc-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.008em;
  color: #6e737b;
  margin: 0 0 22px;
}
.pjc-stats {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}
.pjc-stats li { border-top: 1px solid rgba(14, 18, 23, 0.08); padding-top: 11px; min-width: 0; }
.pjc-stat-val {
  display: block;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--utopia-black, #0e1217);
  line-height: 1.25;
}
.pjc-stat-lbl {
  display: block;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e737b;
}
.pjc-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 18, 23, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pjc-price {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #0e1217;
}
.pjc-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--utopia-black, #0e1217);
}
.pjc-cta svg { transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.pjc-card:hover .pjc-cta svg { transform: translateX(4px); }

@media (max-width: 1024px) {
  .pjc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pjc-grid .pjc-card:last-child { grid-column: span 2; }
}
@media (max-width: 760px) {
  .pjc-section { padding: 68px 0 72px; }
  .pjc-head { margin-bottom: 36px; }
  .pjc-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .pjc-grid .pjc-card:last-child { grid-column: span 1; }
  .pjc-body { padding: 22px 20px 20px; }
}

/* ============================================================
   HOME GALLERY · COLLAPSIBLE THUMBNAIL FILMSTRIP
   Collapsed (default) = one compact, scrollable row of thumbs.
   Expanded            = the full 6-column grid with every photo.
   Fixes: the thumbnail wall used to eat a full laptop screen
   (18-25 photos x 6 columns = 3-5 rows ≈ 570-950px tall).
   ============================================================ */

/* --- Collapsed: compact single-row filmstrip --- */
.leciel-thumbs-strip.is-collapsed .leciel-thumbs-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 26px), transparent 100%);
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 26px), transparent 100%);
}
.leciel-thumbs-strip.is-collapsed .leciel-thumbs-track::-webkit-scrollbar { display: none; }

.leciel-thumbs-strip.is-collapsed .leciel-thumb {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  aspect-ratio: auto;
  border-radius: 10px;
}

/* --- Toggle button ("Ver las N fotos" / "Mostrar menos") --- */
.leciel-thumbs-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.leciel-thumbs-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(130, 160, 188, 0.35);
  background: rgba(130, 160, 188, 0.06);
  color: #0e1217;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.leciel-thumbs-toggle:hover {
  background: rgba(130, 160, 188, 0.14);
  border-color: rgba(130, 160, 188, 0.6);
  box-shadow: 0 4px 14px rgba(14, 18, 23, 0.06);
}
.leciel-thumbs-toggle .ltt-grid { color: var(--emerald-850, #82a0bc); flex: 0 0 auto; }
.leciel-thumbs-toggle .ltt-chev {
  flex: 0 0 auto;
  opacity: 0.6;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.leciel-thumbs-strip.is-expanded .leciel-thumbs-toggle .ltt-chev { transform: rotate(180deg); }

/* --- Expanded: the full grid fades in --- */
.leciel-thumbs-strip.is-expanded .leciel-thumbs-track {
  animation: bvThumbsIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes bvThumbsIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .leciel-thumbs-strip.is-collapsed .leciel-thumb {
    width: 62px;
    height: 62px;
    border-radius: 9px;
  }
  .leciel-thumbs-toggle { padding: 9px 15px; font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
  .leciel-thumbs-strip.is-expanded .leciel-thumbs-track { animation: none; }
}


/* =============================================================
   ARTICLE v2 · FAQ + enlaces internos + byline con fechas
   (quiet luxury: bordes suaves, serif en titulos, sin gradientes)
   ============================================================= */
.bv-article-byline {
  color: rgba(255, 255, 255, 0.82);
}

.bv-article-dates {
  color: rgba(255, 255, 255, 0.62);
  font-variant-numeric: tabular-nums;
}

.bv-article-faq {
  margin-top: 8px;
}

.bv-article-faq .bv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 10px auto 0;
}

.bv-article-faq .bv-faq-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.bv-article-faq .bv-faq-item:first-child {
  border-top: 0;
}
.bv-article-faq .bv-faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.bv-article-faq .bv-faq-q {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  line-height: 1.38;
  text-wrap: balance;
}

.bv-article-faq .bv-faq-a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  max-width: 66ch;
}

.bv-article-related {
  margin-top: 12px;
}

.bv-article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.bv-article-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.bv-article-link-chip svg {
  color: #82a0bc;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.bv-article-link-chip:hover {
  background: rgba(130, 160, 188, 0.10);
  border-color: rgba(130, 160, 188, 0.45);
  color: #ffffff;
  transform: translateY(-1px);
}

.bv-article-link-chip:hover svg {
  transform: translateX(2px);
}

@media (max-width: 680px) {
  .bv-article-author-row {
    flex-wrap: wrap;
    row-gap: 6px;
    justify-content: center;
    border-radius: 18px;
  }
  .bv-article-faq .bv-faq-q { font-size: 1.04rem; line-height: 1.42; }
  .bv-article-link-chip { font-size: 0.84rem; padding: 10px 15px; }
}

/* ═══════════════════════════════════════════════════════════════
   GUÍAS EDITORIALES — utopia-development · costo-de-vida-cap-cana · golf-cap-cana
   Rediseño premium 11-sep-2026.
   OJO: las secciones de estas páginas usan .section white / .section alt.
   NUNCA .section a secas: el body es oscuro (#0e1217), .section es transparente
   y el texto claro-sobre-oscuro del sitio queda invisible (h2 #0e1217 sobre
   #0e1217). Ese era el bug que dejaba títulos y etiquetas sin leerse.
   ═══════════════════════════════════════════════════════════════ */

/* ── Banda de datos ───────────────────────────────────────────── */
.bv-stats-band {
  background: var(--utopia-black);
  padding: clamp(58px, 7vw, 86px) 0;
  border-top: 1px solid rgba(130, 160, 188, .16);
  border-bottom: 1px solid rgba(130, 160, 188, .16);
}
.bv-stats { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; }
.bv-stat { position: relative; text-align: center; padding: 0 clamp(10px, 1.5vw, 24px); }
.bv-stat + .bv-stat::before {
  content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 1px;
  background: linear-gradient(180deg, rgba(130,160,188,0), rgba(130,160,188,.42), rgba(130,160,188,0));
}
.bv-stat-n {
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 2.35em; text-wrap: balance;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem); line-height: 1.12; letter-spacing: -.01em;
  color: var(--sand-50);
}
.bv-stat-l {
  margin-top: 17px; font-size: .63rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--utopia-accent);
}

/* ── Lista editorial (reemplaza .features huérfana) ───────────── */
.features { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 46px 66px; }
.features li { position: relative; padding-top: 21px; color: var(--muted); font-weight: 300; font-size: 1.02rem; line-height: 1.75; }
.features li::before { content: ""; position: absolute; left: 0; top: 0; width: 30px; height: 1px; background: var(--emerald-850); }
.features li strong {
  display: block; margin-bottom: 7px;
  font-family: var(--font-serif); font-size: 1.26rem; font-weight: 600;
  line-height: 1.32; letter-spacing: -.01em; color: var(--emerald-900);
}

/* ── Tablas editoriales (filetes, sin caja) ───────────────────── */
.bv-table-wrap { overflow-x: auto; }
.bv-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.bv-table th, .bv-table td { text-align: left; padding: 19px 30px 19px 0; vertical-align: top; }
.bv-table thead th {
  padding-bottom: 13px; font-size: .65rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--emerald-700); border-bottom: 1px solid var(--emerald-900);
}
.bv-table tbody td { border-bottom: 1px solid rgba(14, 18, 23, .09); font-size: 1rem; font-weight: 300; color: var(--text); }
.bv-table tbody tr:last-child td { border-bottom: none; }
.bv-table tbody tr.bv-row-total td {
  border-bottom: none; border-top: 1px solid var(--emerald-900);
  font-weight: 600; color: var(--emerald-900); background: transparent;
}
.bv-table-note { margin-top: 22px; font-size: .85rem; font-weight: 300; color: var(--muted); max-width: 78ch; line-height: 1.7; }

/* ── Tarjetas de proyecto enlazadas ───────────────────────────── */
.bv-card-link { display: block; text-decoration: none; color: inherit; transition: var(--transition); }
.bv-card-link:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(14, 18, 23, .13); }
.bv-card-cta {
  display: inline-block; margin-top: 18px; font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--emerald-700);
}

/* ── Bloque editorial "sobre la firma" ────────────────────────── */
.bv-about { max-width: 760px; padding-left: 30px; border-left: 1px solid var(--emerald-850); }
.bv-about .eyebrow { display: block; margin-bottom: 14px; }
.bv-about h2 { margin: 0 0 18px; }
.bv-about p { margin: 0; color: var(--muted); font-weight: 300; font-size: 1.09rem; line-height: 1.82; }

/* ── Enlazado interno ─────────────────────────────────────────── */
.bv-related p { margin: 0; font-size: .93rem; font-weight: 300; color: var(--muted); }
.bv-related a { color: var(--emerald-700); text-decoration: none; border-bottom: 1px solid rgba(130, 160, 188,.35); padding-bottom: 1px; }
.bv-related a:hover { color: var(--emerald-900); border-bottom-color: var(--emerald-900); }

/* ── Aviso legal ──────────────────────────────────────────────── */
.bv-disclaimer { background: var(--sand-100); padding: 30px 0; }
.bv-disclaimer p { margin: 0; font-size: .81rem; font-weight: 300; color: var(--muted); max-width: 92ch; line-height: 1.7; }

/* ── Panel de contacto (recupera .cta huérfana) ───────────────── */
.cta { background: var(--utopia-black); color: var(--sand-50); border-radius: var(--radius); padding: clamp(52px, 6vw, 78px) clamp(24px, 5vw, 60px); text-align: center; }
.cta h2 { color: var(--sand-50); margin: 0 0 14px; }
.cta p { color: rgba(255, 255, 255, .76); font-weight: 300; max-width: 640px; margin: 0 auto 30px; line-height: 1.75; }
.cta p a { color: var(--utopia-accent); text-decoration: none; }

.muted { color: var(--muted); }

@media (max-width: 900px) {
  .bv-stats { grid-template-columns: repeat(2, 1fr); gap: 40px 18px; }
  .bv-stat:nth-child(3)::before { display: none; }
  .bv-stat-l { letter-spacing: .14em; }
  .bv-table th, .bv-table td { padding: 15px 18px 15px 0; font-size: .93rem; }
  .features { grid-template-columns: 1fr; gap: 38px; }
  .bv-about { padding-left: 20px; }
}

/* ══════════════════════════════════════════════════════════════════
   Indicador de lectura del artículo — barra de progreso + minutos restantes
   ══════════════════════════════════════════════════════════════════ */
.bv-read-progress{
  position:fixed; top:0; left:0; right:0; height:3px;
  z-index:9999; pointer-events:none;
  background:rgba(255,255,255,.08);
}
.bv-read-progress-bar{
  display:block; height:100%; width:100%;
  transform:scaleX(0); transform-origin:0 50%;
  background:var(--utopia-accent);
  transition:transform .12s linear;
}

.bv-read-pill{
  position:fixed; left:24px;
  bottom:max(24px, env(safe-area-inset-bottom, 24px));
  z-index:9998;
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 15px 9px 13px;
  background:rgba(14, 18, 23,.94);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  box-shadow:0 8px 32px rgba(0,0,0,.45);
  font-family:var(--font-sans);
  font-size:12.5px; font-weight:600; letter-spacing:-.01em;
  color:rgba(255,255,255,.72); white-space:nowrap;
  opacity:0; transform:translateY(8px); pointer-events:none;
  transition:opacity .28s ease, transform .28s ease;
}
.bv-read-pill.is-visible{ opacity:1; transform:translateY(0); }
.bv-read-pill.is-done{ color:var(--utopia-accent); }
.bv-read-pill-dot{
  width:6px; height:6px; border-radius:50%; flex:0 0 auto;
  background:var(--utopia-accent);
  animation:bvReadPulse 2.4s ease-in-out infinite;
}
@keyframes bvReadPulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.45; transform:scale(.78); }
}

/* ── Siguiente lectura ─────────────────────────────────────────────
   La página del artículo es OSCURA (body #0e1217). Los bloques de esta
   página usan blanco al 4% con borde al 10% — la tarjeta sigue ese patrón,
   no un fondo blanco. */
.bv-next-read{ margin-top:76px; padding-bottom:92px; }
.bv-next-kicker{
  display:block; margin-bottom:16px;
  font-family:var(--font-sans); font-size:11px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--utopia-accent);
}
.bv-next-card{
  display:grid; grid-template-columns:300px 1fr;
  text-decoration:none; color:inherit;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius); overflow:hidden;
  transition:var(--transition);
}
.bv-next-card:hover{
  background:rgba(255,255,255,.055);
  border-color:rgba(130,160,188,.45);
  transform:translateY(-3px);
  box-shadow:0 20px 52px rgba(0,0,0,.45);
}
.bv-next-media{ position:relative; min-height:200px; background:#0e1217; }
.bv-next-media img{ display:block; width:100%; height:100%; object-fit:cover; }
.bv-next-body{
  padding:28px 32px;
  display:flex; flex-direction:column; justify-content:center; gap:10px;
}
.bv-next-tag{
  font-family:var(--font-sans); font-size:10.5px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase; color:var(--utopia-accent);
}
.bv-next-h{
  margin:0; font-family:var(--font-serif); font-weight:500;
  font-size:26px; line-height:1.18; letter-spacing:-.01em;
  color:rgba(255,255,255,.95);
}
.bv-next-desc{
  margin:0; font-family:var(--font-sans);
  font-size:14px; line-height:1.6; color:rgba(255,255,255,.60);
}
.bv-next-cta{
  margin-top:6px; display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-sans); font-size:13px; font-weight:700;
  color:var(--utopia-accent);
}
.bv-next-cta svg{ transition:transform .25s ease; }
.bv-next-card:hover .bv-next-cta svg{ transform:translateX(4px); }


@media (max-width: 900px){
  .bv-read-pill{
    left:16px; font-size:12px; padding:8px 13px 8px 11px;
    bottom:calc(84px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 760px){
  .bv-next-read{ margin-top:52px; padding-bottom:76px; }
  .bv-next-card{ grid-template-columns:1fr; }
  .bv-next-media{ min-height:190px; }
  .bv-next-body{ padding:22px 22px 26px; }
  .bv-next-h{ font-size:22px; }
}
@media (prefers-reduced-motion: reduce){
  .bv-read-pill-dot{ animation:none; }
  .bv-read-progress-bar{ transition:none; }
}

/* ══════════════════════════════════════════════════════════════════
   Páginas de zona (/cap-cana, /punta-cana, /bavaro)
   Antes: hero crema + body oscuro + FAQ blanca + CTA claro. Un parcheo.
   Ahora: todo oscuro, como la home y los artículos. Los overrides van
   TODOS bajo .zone-dark para no tocar el tema claro de otras páginas.
   ══════════════════════════════════════════════════════════════════ */
.zone-dark{ background:#0e1217; color:rgba(255,255,255,.82); }

/* OJO: el hero tiene que ser flex en COLUMNA, no en fila.
   En fila, el .container se vuelve un flex-item que se encoge a su contenido
   y sus margin:auto lo centran -> el texto caía a x=372 en vez de x=130.
   En columna, el container estira al ancho completo y margin:auto lo centra
   a la misma retícula que las secciones de abajo. */
.zone-hero{
  position:relative; display:flex; flex-direction:column; justify-content:flex-end;
  min-height:clamp(540px, 76vh, 780px);
  padding:160px 0 84px;
  background-color:#0e1217;
  background-position:center; background-size:cover; background-repeat:no-repeat;
  overflow:hidden;
}
.zone-hero::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg,
    rgba(14, 18, 23,.62) 0%, rgba(14, 18, 23,.38) 30%,
    rgba(14, 18, 23,.80) 72%, #0e1217 100%);
}
/* Alineación: la home arranca su hero a x=124 (inner de 680px). El hero de
   zona tiene que caer en la MISMA vertical, o el texto del hero no cuadra
   con el de las secciones de abajo. Por eso display:block + text-align:left:
   el .container hereda un centrado que aquí descentraba todo ~300px. */
.zone-hero .container{
  position:relative; z-index:2;
  display:block; width:100%; text-align:left;
}
.zone-hero-inner{ max-width:680px; margin:0; text-align:left; }
.zone-hero .stitch-tag-pill,
.zone-hero .stitch-h1,
.zone-hero .stitch-desc,
.zone-hero .hero-project-actions{ text-align:left; justify-content:flex-start; }
.zone-hero .stitch-h1{ margin:14px 0 16px; }
.zone-hero .stitch-desc{ max-width:560px; margin-left:0; margin-right:0; }

/* Secciones dentro de una zona: fondo oscuro, sin bloques blancos */
.zone-dark .section{ background:transparent !important; padding:96px 0; }
.zone-dark h2{ color:rgba(255,255,255,.95); }
.zone-dark h3{ color:rgba(255,255,255,.92); }
.zone-dark .lead{ color:rgba(255,255,255,.70); }
.zone-dark .muted{ color:rgba(255,255,255,.62); }
.zone-dark .features li{ color:rgba(255,255,255,.72); }
.zone-dark .features li::before{ background:var(--utopia-accent); }
.zone-dark .card{
  background:rgba(255,255,255,.035) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:none !important;
}
.zone-dark .card h3{ color:rgba(255,255,255,.95); }
.zone-dark .card p{ color:rgba(255,255,255,.62); }
.zone-dark .bv-faq-item{
  background:transparent !important; border:0 !important;
  border-top:1px solid rgba(255,255,255,.10) !important;
  border-radius:0 !important; box-shadow:none !important;
}
.zone-dark .bv-faq-item summary{ color:rgba(255,255,255,.92); }
.zone-dark .bv-faq-answer,
.zone-dark .bv-faq-answer p{ color:rgba(255,255,255,.62) !important; }
.zone-dark .bv-projects-note{
  background:rgba(130,160,188,.08) !important;
  border-left-color:var(--utopia-accent) !important;
  color:rgba(255,255,255,.75) !important;
}

.zone-cta{
  text-align:center; max-width:760px; margin:0 auto;
  padding:52px 40px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(130,160,188,.28);
  border-radius:var(--radius);
}
.zone-cta h2{ margin:0 0 12px; }
.zone-cta p{
  margin:0 0 26px; color:rgba(255,255,255,.68);
  font-family:var(--font-sans); font-size:15px; line-height:1.6;
}
.zone-cta .btn-hero-action{ display:inline-flex; }

@media (max-width:760px){
  .zone-hero{ min-height:500px; padding:130px 0 60px; }
  .zone-dark .section{ padding:68px 0; }
  .zone-cta{ padding:38px 22px; }
}


/* ═══════════════════════════════════════════════════════════════
   TESTIMONIOS — reseñas reales del perfil de Google Business
   (Utopia Development, SRL · 4.9★). Textos sin traducir: son citas.
   ═══════════════════════════════════════════════════════════════ */
.bv-testi{
  position:relative;background:#0e1217;padding:92px 0;overflow:hidden;
  scroll-margin-top:96px;
}
.bv-testi::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(900px 420px at 12% -10%,rgba(130,160,188,.12),transparent 62%),
             radial-gradient(700px 380px at 92% 108%,rgba(37,211,102,.06),transparent 60%);
}
.bv-testi > .container{position:relative;z-index:1}
.bv-testi-head{max-width:780px;margin-bottom:46px}
.bv-testi-head .eyebrow{color:#82a0bc}
.bv-testi-head h2{color:#fff;margin:10px 0 14px;letter-spacing:-.02em}
.bv-testi-head .lead{color:rgba(255,255,255,.72);margin:0;font-size:15.5px;line-height:1.66}

/* Resumen de nota (rating de Google) */
.bv-testi-score{
  display:inline-flex;align-items:center;gap:13px;margin-top:22px;
  padding:11px 18px;border-radius:999px;
  background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.11);
}
.bv-testi-big{font-size:23px;font-weight:700;color:#fff;letter-spacing:-.03em;line-height:1}
.bv-testi-stars{color:#f5b942;letter-spacing:.15em;font-size:14px;line-height:1}
.bv-testi-count{font-size:12.5px;color:rgba(255,255,255,.66);letter-spacing:.01em}

/* Rejilla de reseñas */
.bv-testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.bv-testi-card{
  margin:0;padding:23px 22px 19px;border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  display:flex;flex-direction:column;gap:14px;
  transition:transform .26s ease,border-color .26s ease,background .26s ease;
}
.bv-testi-card:hover{
  transform:translateY(-3px);
  border-color:rgba(130,160,188,.42);
  background:rgba(255,255,255,.068);
}
.bv-testi-rating{color:#f5b942;letter-spacing:.17em;font-size:13px;line-height:1}
.bv-testi-card blockquote{
  margin:0;color:rgba(255,255,255,.90);font-size:14.5px;line-height:1.64;
  letter-spacing:.002em;
}
.bv-testi-card figcaption{
  display:flex;align-items:center;gap:11px;margin-top:auto;
  padding-top:15px;border-top:1px solid rgba(255,255,255,.08);
}
.bv-testi-av{
  width:34px;height:34px;flex:0 0 34px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:600;color:#0e1217;
  background:linear-gradient(160deg,#a9c2d8,#82a0bc);
}
.bv-testi-who{display:flex;flex-direction:column;gap:2px;min-width:0}
.bv-testi-who b{color:#fff;font-size:13px;font-weight:600;letter-spacing:.005em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bv-testi-who i{font-style:normal;font-size:11.5px;color:rgba(255,255,255,.55)}
.bv-testi-g{margin-left:auto;width:16px;height:16px;flex:0 0 16px;opacity:.8}

/* Pie: enlace a la ficha + aviso de autenticidad */
.bv-testi-foot{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:36px}
.bv-testi-cta{
  display:inline-flex;align-items:center;gap:9px;
  padding:12px 20px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;text-decoration:none;font-size:13.5px;font-weight:600;
  transition:background .22s ease,border-color .22s ease,transform .22s ease;
}
.bv-testi-cta:hover{
  background:rgba(255,255,255,.115);
  border-color:rgba(130,160,188,.55);
  transform:translateY(-1px);
}
.bv-testi-note{font-size:12px;line-height:1.55;color:rgba(255,255,255,.5);max-width:540px}

@media (max-width:960px){
  .bv-testi-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .bv-testi{padding:66px 0}
  .bv-testi-head{margin-bottom:32px}
  .bv-testi-grid{grid-template-columns:1fr;gap:14px}
  .bv-testi-card{padding:20px 18px 17px}
  .bv-testi-foot{gap:14px}
}


/* ═══════════════════════════════════════════════════════════════
   /sobre-brauny — HUB DE ENTIDAD PERSONAL
   Objetivo: consolidar "Brauny Veloz" como entidad en Google.
   ═══════════════════════════════════════════════════════════════ */
.bv-about-hero{
  position:relative;padding:132px 0 56px;overflow:hidden;
  background:radial-gradient(900px 460px at 18% -10%,rgba(130,160,188,.13),transparent 62%);
}
.bv-about-hero .eyebrow{color:#82a0bc}
.bv-about-hero h1{
  color:#fff;margin:12px 0 0;letter-spacing:-.035em;
  font-size:clamp(2.6rem,7vw,4.4rem);line-height:1.02;
}
.bv-about-role{
  color:#82a0bc;font-size:14.5px;font-weight:600;letter-spacing:.06em;
  text-transform:uppercase;margin:14px 0 0;
}
.bv-about-hero .lead{
  color:rgba(255,255,255,.76);max-width:700px;margin:22px 0 0;
  font-size:17px;line-height:1.7;
}

.bv-about-body{padding:56px 0 8px}
.bv-about-body .container{max-width:900px}

/* Ficha de datos */
.bv-about-facts{
  list-style:none;margin:0 0 52px;padding:26px 28px;border-radius:18px;
  background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.09);
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px 32px;
}
.bv-about-facts-title{
  grid-column:1/-1;font-size:11.5px;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:#82a0bc;margin-bottom:-6px;
}
.bv-about-facts li:not(.bv-about-facts-title){display:flex;flex-direction:column;gap:3px}
.bv-about-k{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.44)}
.bv-about-v{font-size:14.5px;color:#fff;line-height:1.45}

/* Secciones de bio */
.bv-about-secs{display:flex;flex-direction:column;gap:38px;margin-bottom:52px}
.bv-about-sec h2{
  color:#fff;font-size:22px;letter-spacing:-.02em;margin:0 0 12px;
  padding-left:15px;border-left:2px solid #82a0bc;line-height:1.25;
}
.bv-about-sec p{color:rgba(255,255,255,.74);font-size:15.5px;line-height:1.78;margin:0}

.bv-about-h2{color:#fff;font-size:24px;letter-spacing:-.02em;margin:0 0 20px}

/* Proyectos */
.bv-about-projs{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:52px}
.bv-about-proj{
  display:flex;flex-direction:column;gap:6px;padding:20px 18px;border-radius:14px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.09);
  text-decoration:none;transition:border-color .24s ease,background .24s ease,transform .24s ease;
}
.bv-about-proj:hover{background:rgba(255,255,255,.07);border-color:rgba(130,160,188,.5);transform:translateY(-2px)}
.bv-about-proj b{color:#fff;font-size:15px;font-weight:600}
.bv-about-proj span{color:#82a0bc;font-size:12.5px}

/* CTA final */
.bv-about-cta{
  position:relative;padding:70px 0 84px;margin-top:44px;
  background:radial-gradient(800px 400px at 80% 110%,rgba(37,211,102,.07),transparent 60%);
  border-top:1px solid rgba(255,255,255,.07);
}
.bv-about-cta .container{max-width:760px}
.bv-about-cta h2{color:#fff;font-size:clamp(1.7rem,4vw,2.4rem);letter-spacing:-.025em;margin:0 0 14px}
.bv-about-cta .lead{color:rgba(255,255,255,.74);font-size:16px;line-height:1.7;margin:0 0 28px}
.bv-about-btns{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:20px}
.bv-about-btn{
  display:inline-flex;align-items:center;gap:8px;padding:14px 24px;border-radius:999px;
  font-size:14px;font-weight:600;text-decoration:none;letter-spacing:.01em;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.17);color:#fff;
  transition:background .22s ease,border-color .22s ease,transform .22s ease;
}
.bv-about-btn:hover{background:rgba(255,255,255,.12);border-color:rgba(130,160,188,.55);transform:translateY(-1px)}
.bv-about-btn.primary{background:#25d366;border-color:#25d366;color:#0e1217}
.bv-about-btn.primary:hover{background:#1fbe5a;border-color:#1fbe5a}
.bv-about-btn.ghost{background:transparent}
.bv-about-contact{font-size:12.5px;color:rgba(255,255,255,.5);margin:0}

@media (max-width:820px){
  .bv-about-facts{grid-template-columns:1fr;gap:16px;padding:22px}
  .bv-about-projs{grid-template-columns:1fr}
  .bv-about-hero{padding:104px 0 40px}
  .bv-about-sec h2{font-size:19.5px}
  .bv-about-btns{flex-direction:column;align-items:stretch}
  .bv-about-btn{justify-content:center}
}

.bv-about-social{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  margin-top:22px;padding-top:20px;border-top:1px solid rgba(255,255,255,.08);
}
.bv-about-soc-l{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:rgba(255,255,255,.42);margin-right:4px;
}
.bv-about-soc{
  display:inline-flex;align-items:center;padding:7px 15px;border-radius:999px;
  font-size:12.5px;font-weight:600;text-decoration:none;color:#fff;
  background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.13);
  transition:background .22s ease,border-color .22s ease,color .22s ease;
}
.bv-about-soc:hover{
  background:rgba(255,255,255,.11);border-color:rgba(130,160,188,.5);color:#fff;
}
@media (max-width:640px){
  .bv-about-social{gap:8px}
  .bv-about-soc{padding:6px 13px;font-size:12px}
}


/* ═══════════════════════════════════════════════════════════════
   HERO VIDEOS — Poster fallback + fundido suave
   ───────────────────────────────────────────────────────────────
   El poster es una CAPA PROPIA debajo del video (no el atributo
   poster del <video>, que hace un cambio brusco al primer frame).
   · Se ve al instante, aunque el video no haya bajado.
   · Se desvanece cuando el video ya tiene frames.
   ═══════════════════════════════════════════════════════════════ */
.stitch-poster{
  position:absolute;
  inset:0;
  z-index:0;
  background-color:#0e1217;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:1;
  transition:opacity .85s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events:none;
  will-change:opacity;
}
.stitch-poster.is-ready{opacity:0}

/* El video activo NO aparece hasta tener frames reales.
   Sin esto el fundido es poster -> negro -> video (se ve el salto). */
.stitch-video.stitch-video-active:not(.is-ready){opacity:0}

@media (prefers-reduced-motion: reduce){
  .stitch-poster{transition-duration:.18s}
}
