/* ============================================
   PRIVATE BAZAAR — style.css
   NOTA: Google Fonts se carga desde el HTML.
   No hay @import aquí (evita cadena bloqueante).
   ============================================ */

/* --- Fallback font stack mientras cargan las fuentes web --- */
:root {
  --black:      #0a0a0a;
  --deep:       #111111;
  --card:       #161616;
  --border:     #2a2a2a;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim:   #8a6e2f;
  --ivory:      #f5f0e8;
  --white:      #ffffff;
  --muted:      #888888;
  --accent:     #d4af6e;
  /* Stacks con fallback system-serif y system-sans para evitar FOUT */
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ============================================
   LOADER
   ============================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  /* El loader es visual: el contenido debajo se renderiza con normalidad para LCP */
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.loader-bar-wrap {
  width: 180px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.loader-bar {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: slideBar 0.8s ease forwards;
}
@keyframes slideBar { to { left: 100%; } }

/* ============================================
   NOISE OVERLAY
   ============================================ */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 0.6rem 1.5rem;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--ivory);
  transition: var(--transition);
}

/* ============================================
   HERO
   LCP: el H1 es visible por defecto.
   Las animaciones del resto se activan via JS
   añadiendo la clase .js-ready al body.
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #141410 50%, #0a0a0a 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* LCP element: siempre visible, z-index > loader (9999) para PageSpeed */
.hero-title {
  position: relative;
  z-index: 10000; /* Por encima del loader — LCP medible desde frame 0 */
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  /* SIN opacity:0 — visible desde el primer frame */
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title span {
  display: block;
  font-size: 0.5em;
  font-family: var(--font-sans);
  font-weight: 200;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* Elementos secundarios del hero — animados solo si JS está activo */
.hero-badge { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-badge-line { width: 30px; height: 1px; background: var(--gold); }
.hero-badge span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-actions { display: flex; gap: 1.5rem; align-items: center; }

/* Animaciones hero: solo si body.js-ready (JS cargado y activo) */
.js-ready .hero-anim-1 { animation: fadeUp 0.7s 0.2s both; }
.js-ready .hero-anim-2 { animation: fadeUp 0.7s 0.35s both; }
.js-ready .hero-anim-3 { animation: fadeUp 0.7s 0.5s both; }
.js-ready .hero-anim-4 { animation: fadeIn 0.9s 0.6s both; }

/* Reduced motion — respeta preferencias del usuario */
@media (prefers-reduced-motion: reduce) {
  .js-ready .hero-anim-1,
  .js-ready .hero-anim-2,
  .js-ready .hero-anim-3,
  .js-ready .hero-anim-4 { animation: none; }
  .marquee-inner { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-line { animation: none !important; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: color var(--transition);
  cursor: pointer;
}
.btn-secondary svg { transition: transform var(--transition); }
.btn-secondary:hover { color: var(--ivory); }
.btn-secondary:hover svg { transform: translateX(4px); }

/* ============================================
   HERO CARD
   ============================================ */
.hero-visual { position: relative; }

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 3rem; right: 3rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-card-label {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.hero-card-stat:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}
.stat-number sup { font-size: 1.2rem; color: var(--gold); }
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  max-width: 120px;
  line-height: 1.6;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
  will-change: transform;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   MARQUEE
   will-change en transform para no triggear layout
   ============================================ */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--deep);
}
.marquee-inner {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  will-change: transform; /* compositor-only: no layout thrashing */
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 3rem;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECCIONES — content-visibility para CLS/LCP
   ============================================ */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 4rem;
}

/* Below-fold: content-visibility ahorra tiempo de render */
#el-club,
#acceso,
.bridge-wrap,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 5rem;
  gap: 4rem;
}
.section-tag {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 360px;
  margin-top: 0.5rem;
  flex-shrink: 0;
  align-self: flex-end;
}

/* ============================================
   CONCEPT GRID
   ============================================ */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.concept-card {
  background: var(--card);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.concept-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.concept-card:hover { background: #1a1a18; }
.concept-card:hover::before { transform: scaleX(1); }

.concept-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.concept-card:hover .concept-num { color: rgba(201,168,76,0.15); }

.concept-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color var(--transition);
  stroke: var(--gold);
}
.concept-card:hover .concept-icon { border-color: var(--gold-dim); }
.concept-icon svg { stroke: var(--gold); fill: none; }

.concept-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.concept-text {
  font-size: 0.78rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ============================================
   SECCIÓN ACCESO
   ============================================ */
.invitation-wrap {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.invitation-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 100%;
  background: var(--border);
}

.acceso-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
}

.acceso-ornament {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
  opacity: 0.6;
}

.acceso-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 2rem;
}
.acceso-title em { font-style: italic; color: var(--gold-light); }

.acceso-text {
  font-size: 0.85rem;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 440px;
}

.acceso-divider {
  width: 60px; height: 1px;
  background: var(--gold-dim);
  margin: 2.5rem 0;
}

.acceso-subtext {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.7;
}

.acceso-rules { display: flex; flex-direction: column; gap: 2.5rem; }

.acceso-rule {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.acceso-rule:last-child { border-bottom: none; padding-bottom: 0; }

.acceso-rule-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: -0.1rem;
}
.acceso-rule strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.acceso-rule p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   WORLDMUJER BRIDGE
   ============================================ */
.bridge-wrap {
  position: relative;
  background: linear-gradient(135deg, #0e0e0b 0%, #111108 100%);
  border-top: 1px solid var(--border);
}
.bridge-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 4rem;
  text-align: center;
}

.bridge-logo {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.bridge-logo span { color: var(--ivory); }

.bridge-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 1rem;
}
.bridge-sub {
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 3rem;
}

.bridge-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bridge-stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ivory);
  display: block;
}
.bridge-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

.btn-bridge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1.1rem 3rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.btn-bridge:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--deep); border-top: 1px solid var(--border); }

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 4rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-brand-tag {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.footer-brand-desc {
  font-size: 0.75rem;
  line-height: 1.85;
  color: #555;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1.75rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-links a {
  font-size: 0.75rem;
  color: #555;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-copy { font-size: 0.65rem; color: #444; letter-spacing: 0.05em; }
.footer-copy a { color: var(--gold-dim); transition: color var(--transition); }
.footer-copy a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.62rem; color: #444; transition: color var(--transition); }
.footer-legal a:hover { color: var(--muted); }

/* ============================================
   PÁGINAS LEGALES (privacy-policy, terms...)
   ============================================ */
.policy-hero {
  padding: 10rem 4rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.policy-tag {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.policy-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.policy-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}
.policy-date { font-size: 0.72rem; color: var(--muted); margin-top: 1.5rem; }

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 4rem;
}
.policy-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.policy-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.policy-content p { font-size: 0.82rem; line-height: 1.95; color: #888; margin-bottom: 1rem; }
.policy-content a { color: var(--gold-dim); }
.policy-content a:hover { color: var(--gold); }
.policy-content ul { margin: 1rem 0 1rem 1rem; }
.policy-content ul li {
  font-size: 0.82rem;
  line-height: 1.85;
  color: #888;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.policy-content ul li::before { content: '—'; position: absolute; left: -0.5rem; color: var(--gold-dim); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   ANIMACIONES BASE
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .nav { padding: 1.5rem 2.5rem; }
  .nav.scrolled { padding: 1rem 2.5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 9rem 2.5rem 4rem; }
  .hero-visual { max-width: 480px; }
  .section { padding: 5rem 2.5rem; }
  .section-header { flex-direction: column; gap: 1.5rem; }
  .section-desc { max-width: 100%; }
  .concept-grid { grid-template-columns: 1fr 1fr; }
  .acceso-inner { grid-template-columns: 1fr; gap: 4rem; padding: 5rem 2.5rem; }
  .invitation-wrap::before { display: none; }
  .acceso-text { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 4rem 2.5rem; }
  .bridge-stats { gap: 3rem; }
  .bridge-inner { padding: 5rem 2.5rem; }
  .policy-hero { padding: 8rem 2.5rem 4rem; }
  .policy-content { padding: 4rem 2.5rem; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .concept-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .bridge-stats { flex-direction: column; gap: 2rem; padding: 2rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 600;
  }
  .nav-links.open a { font-size: 1.2rem; letter-spacing: 0.2em; color: var(--ivory); }
  .nav-links.open .nav-cta { border-color: var(--gold); color: var(--gold) !important; }
}

/* ============================================
   ENLACE CONTEXTUAL WORLDMUJER
   Aspecto editorial — no botón, no nav.
   Transmite juice contextual (Reasonable Surfer).
   ============================================ */
.bridge-contextual-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
  text-underline-offset: 3px;
  font-style: italic;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.bridge-contextual-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}
