.scroll-progress{
  position:fixed; top:0; left:0;
  width:0%; height:3px;
  background:linear-gradient(90deg, var(--violet), var(--teal), var(--aurum));
  z-index:1001;
  transition:width 0.15s linear;
}
.nav{
  position:fixed; top:var(--sp-3); left:50%; transform:translateX(-50%);
  z-index:1000;
  background:rgba(9,9,11,0.45);
  backdrop-filter:blur(32px) saturate(1.4);
  -webkit-backdrop-filter:blur(32px) saturate(1.4);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:100px;
  padding:14px var(--sp-5);
  display:flex; align-items:center; gap:var(--sp-5);
  opacity:0; transform:translateX(-50%) translateY(-20px);
  transition:opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.nav.visible{
  opacity:1; transform:translateX(-50%) translateY(0);
}
.nav.nav--settled{
  transition:background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav.nav--scrolled{
  background:rgba(9,9,11,0.72);
  border-color:rgba(212,168,75,0.08);
  box-shadow:0 4px 30px rgba(0,0,0,0.3);
}
.nav-wordmark{
  font-family:'DM Sans', sans-serif;
  font-size:14px; font-weight:600;
  letter-spacing:0.18em;
  display:flex; gap:5px;
  white-space:nowrap;
  text-decoration:none;
}
html[lang="es"] .nav-wordmark .w1{ color:var(--text-primary); }
html[lang="es"] .nav-wordmark .w2{ color:var(--aurum); }
html[lang="en"] .nav-wordmark .w1{ color:var(--aurum); }
html[lang="en"] .nav-wordmark .w2{ color:var(--text-primary); }

.nav-links{ display:flex; gap:var(--sp-4); align-items:center; }
.nav-links a{
  font-size:13px; font-weight:400;
  letter-spacing:0.06em; color:var(--text-secondary);
  text-decoration:none;
  transition:color 0.3s;
  white-space:nowrap;
  position:relative;
}
.nav-links a::after{
  content:'';
  position:absolute; bottom:-4px; left:0;
  width:0; height:1px;
  background:var(--aurum);
  transition:width 0.3s var(--ease-out-expo);
}
.nav-links a:hover{ color:var(--aurum); }
.nav-links a:hover::after{ width:100%; }
.nav-links a.active{ color:var(--aurum); }
.nav-links a.active::after{ width:100%; }

.nav-lang{
  font-family:'JetBrains Mono', monospace;
  font-size:12px; letter-spacing:0.1em;
  color:var(--text-tertiary);
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:100px;
  padding:6px 14px;
  cursor:pointer;
  transition:all 0.3s;
  white-space:nowrap;
}
.nav-lang:hover{ color:var(--aurum); border-color:rgba(212,168,75,0.2); }

.nav-cta{
  font-size:13px; font-weight:500;
  letter-spacing:0.04em;
  color:var(--void);
  background:var(--aurum);
  border-radius:100px;
  padding:10px 24px;
  text-decoration:none;
  transition:all 0.3s;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--aurum-bright); }
.nav-hamburger{
  display:none;
  width:28px; height:28px;
  background:none; border:none; cursor:pointer;
  position:relative; padding:0;
}
.nav-hamburger span{
  display:block; width:20px; height:2px;
  background:var(--text-primary);
  position:absolute; left:4px;
  transition:all 0.3s var(--ease-out-expo);
}
.nav-hamburger span:nth-child(1){ top:9px; }
.nav-hamburger span:nth-child(2){ top:14px; }
.nav-hamburger span:nth-child(3){ top:19px; }
.nav-hamburger.open span:nth-child(1){ top:14px; transform:rotate(45deg); }
.nav-hamburger.open span:nth-child(2){ opacity:0; }
.nav-hamburger.open span:nth-child(3){ top:14px; transform:rotate(-45deg); }
.mobile-menu{
  position:fixed; inset:0;
  background:#09090B;
  backdrop-filter:blur(40px);
  -webkit-backdrop-filter:blur(40px);
  z-index:999;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:var(--sp-5);
  opacity:0; visibility:hidden;
  transition:opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open{ opacity:1; visibility:visible; }
.mobile-menu a, .mobile-menu .mm-cta{
  opacity:0; transform:translateY(14px);
  transition:opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), color 0.3s;
}
.mobile-menu.open a, .mobile-menu.open .mm-cta{ opacity:1; transform:translateY(0); }
.mobile-menu.open > :nth-child(1){ transition-delay:0.04s; }
.mobile-menu.open > :nth-child(2){ transition-delay:0.08s; }
.mobile-menu.open > :nth-child(3){ transition-delay:0.12s; }
.mobile-menu.open > :nth-child(4){ transition-delay:0.16s; }
.mobile-menu.open > :nth-child(5){ transition-delay:0.20s; }
.mobile-menu.open > :nth-child(6){ transition-delay:0.24s; }
.mobile-menu.open > :nth-child(7){ transition-delay:0.28s; }
.mobile-menu.open > :nth-child(8){ transition-delay:0.32s; }
.mobile-menu a{
  font-family:'Cormorant Garamond', serif;
  font-size:24px; font-weight:400;
  color:var(--text-secondary);
  text-decoration:none;
}
.mobile-menu a:hover{ color:var(--aurum); }
.mobile-menu .mm-cta{
  font-family:'DM Sans', sans-serif;
  font-size:14px; font-weight:500;
  color:var(--void); background:var(--aurum);
  padding:14px 28px; border-radius:100px;
  margin-top:var(--sp-3);
}
.btn-primary{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'DM Sans', sans-serif;
  font-size:15px; font-weight:500; letter-spacing:0.03em;
  color:var(--void); background:var(--aurum);
  padding:18px 36px; border-radius:100px;
  text-decoration:none; border:none; cursor:pointer;
  transition:all 0.4s var(--ease-out-expo);
  box-shadow:0 0 20px rgba(212,168,75,0.1);
}
@media (hover: hover){
  .btn-primary:hover{
    background:var(--aurum-bright); transform:translateY(-2px);
    box-shadow:0 12px 36px rgba(212,168,75,0.25);
  }
}
.btn-primary:active{
  transform:scale(0.97);
  box-shadow:0 4px 12px rgba(212,168,75,0.15);
}
.btn-ghost{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'DM Sans', sans-serif;
  font-size:14px; font-weight:400; letter-spacing:0.03em;
  color:var(--text-secondary);
  padding:16px 28px; border-radius:100px;
  text-decoration:none; border:1px solid rgba(255,255,255,0.08);
  transition:all 0.3s;
}
.btn-ghost:hover{ color:var(--text-primary); border-color:rgba(255,255,255,0.15); }
.btn-ghost:active{ opacity:0.7; transform:scale(0.97); }
.btn-ghost--gold{
  color:rgba(212,168,75,0.85);
  border-color:rgba(212,168,75,0.28);
  background:rgba(212,168,75,0.04);
}
.btn-ghost--gold:hover{
  color:var(--aurum-bright);
  border-color:rgba(212,168,75,0.5);
  background:rgba(212,168,75,0.08);
}
.icon-arrow{ width:12px; height:12px; flex-shrink:0; }
.glass-card{
  position:relative;
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;
  padding:var(--sp-6) var(--sp-4);
  overflow:hidden;
  transition:border-color 0.5s, transform 0.5s, box-shadow 0.5s;
}
.glass-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}
.glass-card .card-glow{
  position:absolute;
  width:200px; height:200px;
  border-radius:50%;
  filter:blur(60px);
  opacity:0.3;
  pointer-events:none;
  transition:opacity 0.6s, transform 0.6s;
  top:-20%; right:-10%;
}
.glass-card:hover .card-glow{ opacity:0.45; transform:scale(1.15); }
.glass-card::before{
  content:'';
  position:absolute;
  width:120px; height:120px;
  border-radius:50%;
  filter:blur(50px);
  opacity:0.15;
  pointer-events:none;
  bottom:-15%; left:-5%;
  transition:opacity 0.5s;
}
.glass-card:hover::before{ opacity:0.3; }
.glass-card--violet{ border-color:rgba(139,92,246,0.15); }
.glass-card--violet::before{ background:var(--violet); }
.glass-card--violet:hover{ border-color:rgba(139,92,246,0.3); }

.glass-card--teal{ border-color:rgba(20,184,166,0.15); }
.glass-card--teal::before{ background:var(--teal); }
.glass-card--teal:hover{ border-color:rgba(20,184,166,0.3); }

.glass-card--gold{ border-color:rgba(212,168,75,0.15); }
.glass-card--gold::before{ background:var(--aurum); }
.glass-card--gold:hover{ border-color:rgba(212,168,75,0.3); }

.glass-card--rose{ border-color:rgba(244,114,182,0.15); }
.glass-card--rose::before{ background:var(--rose); }
.glass-card--rose:hover{ border-color:rgba(244,114,182,0.3); }

.glass-card--emerald{ border-color:rgba(52,211,153,0.15); }
.glass-card--emerald::before{ background:var(--emerald); }
.glass-card--emerald:hover{ border-color:rgba(52,211,153,0.3); }

.glass-card .card-overline{
  font-size:11px; font-weight:600; letter-spacing:0.15em;
  margin-bottom:var(--sp-2);
  position:relative; z-index:2;
}
.glass-card .card-title{
  font-size:18px; font-weight:500; color:var(--text-primary);
  margin-bottom:var(--sp-1);
  line-height:1.4;
  position:relative; z-index:2;
}
.glass-card .card-desc{
  font-size:14px; color:var(--text-secondary);
  line-height:1.7;
  position:relative; z-index:2;
}
.s-overline{
  font-family:'JetBrains Mono', monospace;
  font-size:10px; letter-spacing:0.2em;
  color:var(--text-tertiary);
  margin-bottom:var(--sp-2);
  text-transform:uppercase;
}
.stats-row{
  display:flex; justify-content:center; gap:var(--sp-8);
  margin-bottom:var(--sp-10);
  flex-wrap:wrap;
}
.stat-item{ text-align:center; }
.stat-num{
  font-family:'DM Sans', sans-serif;
  font-size:clamp(28px, 4vw, 40px);
  font-weight:600; color:var(--aurum);
  line-height:1;
}
.stat-label{
  font-size:11px; color:var(--text-tertiary);
  letter-spacing:0.06em; margin-top:6px;
}
.footer{
  padding:var(--sp-12) var(--sp-8) var(--sp-6);
  border-top:1px solid rgba(255,255,255,0.04);
}
.footer-top{
  max-width:960px; margin:0 auto var(--sp-8);
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:var(--sp-6);
}
.footer-brand .footer-wordmark{
  font-family:'DM Sans', sans-serif;
  font-size:12px; font-weight:600; letter-spacing:0.15em;
  margin-bottom:var(--sp-2);
  text-decoration:none; display:block;
}
.footer-brand .footer-wordmark .fw1{ color:var(--text-primary); }
.footer-brand .footer-wordmark .fw2{ color:var(--aurum); }
html[lang="en"] .footer-brand .footer-wordmark .fw1{ color:var(--aurum); }
html[lang="en"] .footer-brand .footer-wordmark .fw2{ color:var(--text-primary); }
.footer-brand .footer-tagline{
  font-family:'Cormorant Garamond', serif;
  font-size:13px; font-style:italic;
  color:var(--text-tertiary);
  line-height:1.5;
  max-width:240px;
}
.footer-col-title{
  font-family:'JetBrains Mono', monospace;
  font-size:9px; letter-spacing:0.2em;
  color:var(--text-tertiary);
  margin-bottom:var(--sp-2);
  text-transform:uppercase;
}
.footer-col a{
  display:block;
  font-size:12px; color:var(--text-secondary);
  text-decoration:none;
  padding:3px 0;
  transition:color 0.3s;
}
.footer-col a:hover{ color:var(--aurum); }
.footer-inner{
  max-width:960px; margin:0 auto;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:var(--sp-3);
  padding-top:var(--sp-4);
  border-top:1px solid rgba(255,255,255,0.04);
}
.footer-left{ display:flex; align-items:center; gap:var(--sp-2); }
.footer-spiral{ width:24px; height:24px; opacity:0.5; }
.footer-copy{ font-size:11px; color:var(--text-tertiary); }
.footer-links{ display:flex; gap:var(--sp-3); }
.footer-links a{
  font-size:11px; color:var(--text-tertiary);
  text-decoration:none; transition:color 0.3s;
}
.footer-links a:hover{ color:var(--text-secondary); }
.form-field{ position:relative; }
.form-label{
  font-family:'JetBrains Mono', monospace;
  font-size:9px; letter-spacing:0.15em;
  color:var(--text-tertiary);
  margin-bottom:6px;
  text-transform:uppercase;
  transition:color 0.3s;
}
.form-field:focus-within .form-label{ color:var(--aurum); }
.form-input{
  font-family:'DM Sans', sans-serif;
  font-size:16px; color:var(--text-primary);
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:14px 18px;
  width:100%;
  outline:none;
  transition:border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.form-input::placeholder{ color:var(--text-tertiary); }
.form-input:focus{
  border-color:rgba(212,168,75,0.35);
  box-shadow:0 0 0 3px rgba(212,168,75,0.08), 0 4px 16px rgba(212,168,75,0.06);
  background:rgba(255,255,255,0.04);
}
.form-input.error{
  border-color:rgba(244,114,182,0.5);
  box-shadow:0 0 0 3px rgba(244,114,182,0.08);
}
.form-error-msg{
  font-size:11px; color:var(--rose);
  margin-top:4px; display:none;
}
.form-input.error ~ .form-error-msg,
.form-select.error ~ .form-error-msg,
.time-row:has(.form-select.error) ~ .form-error-msg{ display:block; }
.form-error-banner{
  background:rgba(244,114,182,0.1);
  border:1px solid rgba(244,114,182,0.3);
  border-radius:12px;
  padding:12px 18px;
  margin-top:12px;
  font-size:13px;
  color:var(--rose);
  text-align:center;
  animation:fadeInUp 0.3s var(--ease-out-expo);
}
.lm-form-stepped.loading [data-submit="true"],
.discover-form.loading [data-submit="true"]{
  opacity:0.7;
  cursor:wait;
  pointer-events:none;
}
.lm-form-stepped.loading [data-submit="true"]::after,
.discover-form.loading [data-submit="true"]::after{
  content:'';
  display:inline-block;
  width:14px; height:14px;
  border:2px solid currentColor;
  border-top-color:transparent;
  border-radius:50%;
  animation:spin 0.6s linear infinite;
  margin-left:8px;
  vertical-align:middle;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.form-select{
  font-family:'DM Sans', sans-serif;
  font-size:16px; color:var(--text-primary);
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:14px 18px;
  width:100%;
  outline:none;
  appearance:none;
  cursor:pointer;
  transition:border-color 0.4s, box-shadow 0.4s;
}
@media (max-width: 430px){
  .time-row{ gap:8px; }
  .time-row .form-select{ padding:12px 10px; }
}
.form-select:focus{
  border-color:rgba(212,168,75,0.35);
  box-shadow:0 0 0 3px rgba(212,168,75,0.08);
}
.form-select option,
.form-select optgroup{
  background-color:#1a0a0a;
  color:var(--text-primary);
}
.hp-field{ position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden; }
.place-suggestions{
  position:absolute;
  top:100%; left:0; right:0;
  z-index:100;
  background:rgba(17,17,20,0.95);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  margin-top:4px;
  list-style:none;
  max-height:240px;
  overflow-y:auto;
}
.place-suggestions.hidden{ display:none; }
.place-suggestions li{
  padding:14px 18px;
  min-height:44px;
  font-size:15px;
  color:var(--text-primary);
  cursor:pointer;
  transition:background 0.2s;
  border-bottom:1px solid rgba(255,255,255,0.03);
}
.place-suggestions li:last-child{ border-bottom:none; }
.place-suggestions li:hover,
.place-suggestions li.is-highlighted{
  background:rgba(212,168,75,0.08);
}
.place-suggestions .place-secondary{
  display:block;
  font-size:12px;
  color:var(--text-tertiary);
  margin-top:2px;
}
.place-suggestions .place-attribution{
  padding:6px 18px;
  font-size:10px;
  color:var(--text-tertiary);
  cursor:default;
  border-bottom:none;
}
.place-suggestions .place-attribution:hover{ background:transparent; }
.place-suggestions .place-attribution a{ color:var(--text-tertiary); text-decoration:none; }
.discover-success{
  display:none;
  text-align:center;
  padding:var(--sp-6) 0;
}
.discover-success.active{
  display:block;
  animation:fadeInUp 0.6s var(--ease-out-expo);
}
@keyframes shake{
  0%, 100%{ transform:translateX(0); }
  20%{ transform:translateX(-6px); }
  40%{ transform:translateX(6px); }
  60%{ transform:translateX(-4px); }
  80%{ transform:translateX(4px); }
}
.page-hero{
  min-height:60vh;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:clip;
  padding:var(--sp-16) var(--sp-4) var(--sp-10);
  text-align:center;
}
.page-hero-content{
  position:relative; z-index:2;
  max-width:680px;
}
.page-hero h1{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(28px, 4vw, 48px);
  font-weight:400;
  color:var(--text-primary);
  line-height:1.3;
  margin-bottom:var(--sp-3);
}
.page-hero .hero-subtitle{
  font-size:16px;
  color:var(--text-secondary);
  line-height:1.7;
  max-width:540px;
  margin:0 auto;
}
.content-section{
  padding:var(--sp-16) var(--sp-8);
  position:relative;
}
.content-section::before{
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}
.content-section .section-inner{
  max-width:800px;
  margin:0 auto;
}
.aura-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
  opacity:0.08;
  pointer-events:none;
}
