/* ================================================================
   INK & BEAUTY BCN — style.css
   Inspirado en tattoox.es · GSAP + CSS transitions · Editorial dark
   ================================================================ */

/* ── Variables ── */
:root {
  --bg:          #060606;
  --bg-2:        #0C0C0C;
  --bg-3:        #141414;
  --bg-4:        #1C1C1C;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.13);
  --border-3:    rgba(255,255,255,0.22);
  --accent:      #D4AF37;
  --accent-h:    #E4C547;
  --accent-dim:  rgba(212,175,55,0.1);
  --accent-ring: rgba(212,175,55,0.25);
  --green:       #4CAF76;
  --green-dim:   rgba(76,175,118,0.1);
  --text-1:      #EEE9E0;
  --text-2:      #7A776F;
  --text-3:      #4A4844;
  --font:        'Inter', system-ui, sans-serif;
  --serif:       'Playfair Display', Georgia, serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-tatoo:  cubic-bezier(0.23, 1, 0.32, 1);
  --max-w:       1360px;
  --section-py:  clamp(5rem, 9vw, 9rem);
  --r-xs: 5px; --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font); background: var(--bg); color: var(--text-1); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Custom cursor (desktop only) ── */
@media (pointer: fine) { * { cursor: none !important; } }
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
.cursor__dot {
  position: absolute; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor__ring {
  position: absolute; width: 30px; height: 30px;
  border: 1px solid rgba(212,175,55,0.45); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, border-color 0.2s;
}
body.cursor-hover .cursor__dot  { width: 10px; height: 10px; }
body.cursor-hover .cursor__ring { width: 44px; height: 44px; border-color: var(--accent); }
body.cursor-click .cursor__dot  { transform: translate(-50%,-50%) scale(0.7); }

/* ── Utility ── */
.label-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(212,175,55,0.18);
  border-radius: 99px; padding: 0.3rem 0.9rem; margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.07; color: var(--text-1);
}
.section-desc { font-size: 1.0625rem; color: var(--text-2); line-height: 1.75; max-width: 46ch; }
.reveal-y { opacity: 0; transform: translateY(28px); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font); font-size: 0.875rem; font-weight: 700;
  border-radius: var(--r-sm); padding: 0.875rem 1.75rem;
  transition: transform 0.35s var(--ease-tatoo), box-shadow 0.3s, background 0.25s, color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97) !important; }
.btn__pip {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: transform 0.25s var(--ease-out);
}
.btn:hover .btn__pip { transform: translateX(2px) translateY(-1px); }
.btn--primary { background: var(--accent); color: #080808; }
.btn--primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,175,55,0.28); }
.btn--ghost { background: transparent; color: var(--text-2); border: 1px solid var(--border-2); }
.btn--ghost:hover { border-color: var(--border-3); color: var(--text-1); background: rgba(255,255,255,0.03); }
.btn--hero-primary {
  background: var(--accent); color: #080808;
  font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.07em;
  padding: 0.9375rem 2.25rem; border-radius: var(--r-sm);
  transition: background 0.25s, transform 0.35s var(--ease-tatoo), box-shadow 0.3s;
}
.btn--hero-primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,175,55,0.3); }
.btn--hero-ghost {
  background: transparent; color: rgba(255,255,255,0.6);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.9375rem 2.25rem; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.18);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn--hero-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.04); }
.btn--card {
  display: inline-flex; align-items: center; padding: 0.6rem 1.25rem;
  border: 1px solid var(--border-2); border-radius: var(--r-xs);
  font-size: 0.8125rem; font-weight: 700; color: var(--text-2);
  transition: all 0.25s;
}
.btn--card:hover { border-color: var(--border-3); color: var(--text-1); }
.btn--card-accent { background: var(--accent-dim); color: var(--accent); border-color: rgba(212,175,55,0.3); }
.btn--card-accent:hover { background: rgba(212,175,55,0.18); color: var(--accent); border-color: rgba(212,175,55,0.5); }

/* =================================================================
   NAVIGATION — hide on scroll down, reveal on scroll up
   ================================================================= */
/* =================================================================
   LIQUID GLASS
   ================================================================= */
.liquid-glass {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* =================================================================
   NAV — expand-on-scroll (de pequeño a grande vía --nav-progress)
   ================================================================= */
:root { --nav-progress: 0; }

.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: calc(0.75rem + 0.75rem * var(--nav-progress)) 1.5rem 0;
  transition: padding 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-wrap.nav--hidden { /* desactivado: nav siempre visible */ }
@media (min-width: 768px) { .nav-wrap { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .nav-wrap { padding-left: 4rem; padding-right: 4rem; } }

.nav {
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  max-width: calc(320px + 1040px * var(--nav-progress));
  padding:
    calc(0.35rem + 0.3rem * var(--nav-progress))
    calc(0.7rem + 0.6rem * var(--nav-progress));
  border-radius: calc(0.55rem + 0.45rem * var(--nav-progress));
  transition:
    max-width 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    padding 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    border-radius 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav__logo {
  font-family: var(--serif);
  font-size: calc(0.95rem + 0.55rem * var(--nav-progress));
  font-weight: 800; letter-spacing: -0.02em;
  color: #fff; flex-shrink: 0;
  text-transform: uppercase;
  transition: font-size 0.55s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s;
}
.nav__logo span { color: var(--accent); margin: 0 0.15em; font-weight: 500; }
.nav__logo:hover { opacity: 0.85; }
.nav__links {
  display: none; align-items: center; gap: 2rem;
  position: absolute; left: 50%; transform: translateX(-50%);
  opacity: var(--nav-progress);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav__links[data-visible="1"] { pointer-events: auto; }
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a {
  font-size: 0.875rem; font-weight: 400; color: #fff;
  transition: color 0.2s;
}
.nav__links a:hover { color: #d1d5db; }
.nav__cta {
  display: inline-flex; align-items: center;
  padding:
    calc(0.35rem + 0.15rem * var(--nav-progress))
    calc(0.9rem + 0.6rem * var(--nav-progress));
  font-size: calc(0.75rem + 0.125rem * var(--nav-progress));
  font-weight: 500;
  background: #fff; color: #000;
  border-radius: calc(0.4rem + 0.1rem * var(--nav-progress));
  transition:
    background 0.2s,
    padding 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    font-size 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    border-radius 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
}
.nav__cta:hover { background: #f3f4f6; }
.nav__burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px; margin-left: auto; border-radius: var(--r-xs);
}
.nav__burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text-1); border-radius: 2px;
  transition: transform 0.35s var(--ease-spring); transform-origin: center;
}
.nav__burger.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__burger.open span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(4,4,4,0.97); backdrop-filter: blur(32px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-spring);
  pointer-events: none;
}
.nav-overlay.open { transform: translateX(0); pointer-events: all; }
.overlay-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-3); color: var(--text-2); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.overlay-close:hover { background: var(--bg-4); color: var(--text-1); }
.overlay-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.overlay-link {
  font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 900; font-family: var(--serif);
  letter-spacing: -0.03em; color: var(--text-3); padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, transform 0.4s var(--ease-out), opacity 0.3s;
  transform: translateX(30px); opacity: 0;
}
.nav-overlay.open .overlay-link { transform: translateX(0); opacity: 1; }
.nav-overlay.open .overlay-link:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.open .overlay-link:nth-child(2) { transition-delay: 0.10s; }
.nav-overlay.open .overlay-link:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.open .overlay-link:nth-child(4) { transition-delay: 0.20s; }
.nav-overlay.open .overlay-link:nth-child(5) { transition-delay: 0.25s; border-bottom: none; }
.overlay-link:hover { color: var(--text-1); }
.overlay-link--cta { color: var(--accent) !important; }
.overlay-footer {
  position: absolute; bottom: 2rem; left: 2rem;
  font-size: 0.75rem; letter-spacing: 0.08em; color: var(--text-3); text-transform: uppercase;
}

/* =================================================================
   HERO — vídeo de animación como fondo, entrada staggered
   Inspirado en tattoox.es
   ================================================================= */
/* =================================================================
   HERO — scroll-scrub studio video + editorial overlay
   ================================================================= */
.hero {
  position: relative; width: 100%;
  height: 280vh;
  background: #000;
}
.hero__pin {
  position: sticky; top: 0;
  width: 100%; height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  filter: contrast(1.05) brightness(1);
  will-change: transform;
  background: #000;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04; pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Hero layout */
.hero__top {
  position: relative; z-index: 3;
  padding: 7.5rem 1.5rem 0;
  display: flex; justify-content: center;
}
@media (min-width: 768px)  { .hero__top { padding: 8rem 3rem 0; } }
@media (min-width: 1024px) { .hero__top { padding: 9rem 4rem 0; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 99px;
  padding: 0.5rem 1.1rem; margin: 0;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow-sep { opacity: 0.3; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.hero__center {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px)  { .hero__center { padding: 2rem 3rem; } }
@media (min-width: 1024px) { .hero__center { padding: 2rem 4rem; } }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 8.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1.75rem;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 4px 60px rgba(0,0,0,0.75), 0 1px 2px rgba(0,0,0,0.5);
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 800;
  background: linear-gradient(180deg, #F4D06F 0%, #D4AF37 50%, #A68420 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 24px rgba(212,175,55,0.35));
}
.hero__title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.hero__title-line > span {
  display: inline-block;
  transform: translateY(115%);
  will-change: transform;
}
.hero__title-line.is-in > span { transform: translateY(0); }

.hero__desc {
  font-family: var(--font);
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  color: rgba(255,255,255,0.85);
  margin: 0 0 2.25rem;
  max-width: 38rem;
  line-height: 1.7;
  text-shadow: 0 2px 30px rgba(0,0,0,0.75), 0 1px 3px rgba(0,0,0,0.6);
}
.hero__desc .br { display: block; height: 0; }
@media (min-width: 600px) { .hero__desc .br { display: inline; }
  .hero__desc .br::after { content: "\00A0 · \00A0"; opacity: 0.4; } }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center; }

.hero__bottom {
  position: relative; z-index: 3;
  padding: 0 1.5rem 2.5rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px)  { .hero__bottom { padding: 0 3rem 2.75rem; } }
@media (min-width: 1024px) { .hero__bottom { padding: 0 4rem 3rem; } }

.hero__meta {
  display: flex; align-items: center;
  gap: 0; flex-wrap: wrap;
  padding: 0.9rem 1.3rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 0.1rem;
  padding: 0 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero__meta-item:first-child { padding-left: 0.25rem; }
.hero__meta-item:last-child { border-right: none; padding-right: 0.25rem; }
.meta-k { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.meta-v { font-family: var(--serif); font-size: 1.35rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }

.hero__scroll-hint {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hint-dot { animation: scrollDot 1.8s ease-in-out infinite; transform-origin: center; }
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.3; }
}

@media (max-width: 640px) {
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll-hint { display: none; }
}

[data-fade-in] { opacity: 0; transition: opacity 1000ms ease, transform 1000ms ease; transform: translateY(12px); }
[data-fade-in].is-in { opacity: 1; transform: none; }

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee {
  background: var(--bg-2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); overflow: hidden;
  padding: 0.875rem 0; white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; animation: marquee 40s linear infinite; }
.marquee__track span { font-size: 0.75rem; font-weight: 500; color: var(--text-2); letter-spacing: 0.04em; padding: 0 1rem; }
.marquee__track .sep { color: var(--accent); padding: 0 0.25rem; font-size: 0.875rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =================================================================
   SPACES — cards sin imagen de fondo, diseño tipográfico premium
   ================================================================= */
.spaces { padding-top: var(--section-py); }
.spaces__intro { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem 4.5rem; }
.spaces-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; padding: 0 2rem 5rem;
  max-width: var(--max-w); margin: 0 auto;
}

.space-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); padding: 2.5rem;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color 0.45s var(--ease-out), transform 0.45s var(--ease-tatoo), box-shadow 0.45s;
  min-height: 560px;
}
.space-card__photo {
  position: relative; margin: -2.5rem -2.5rem 0.5rem;
  aspect-ratio: 16 / 10; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.space-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.05) brightness(0.82);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease-out);
}
.space-card__photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(10,10,10,0.85) 100%);
}
.space-card:hover .space-card__photo img {
  transform: scale(1.07); filter: saturate(1) contrast(1.08) brightness(0.88);
}
.space-card--featured .space-card__photo::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(10,10,10,0.9) 100%), radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%);
}
.space-card:hover { border-color: var(--border-2); transform: translateY(-6px); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.space-card--featured {
  border-color: rgba(212,175,55,0.2);
  background: linear-gradient(160deg, rgba(212,175,55,0.04) 0%, var(--bg-2) 50%);
}
.space-card--featured:hover { border-color: rgba(212,175,55,0.45); box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(212,175,55,0.06); }

/* Número grande como watermark decorativo */
.space-card__number {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--serif); font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.03); letter-spacing: -0.05em; pointer-events: none;
  user-select: none;
}
.space-card--featured .space-card__number { color: rgba(212,175,55,0.05); }

.space-card__badge {
  display: inline-flex; align-self: flex-start;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.65rem; border-radius: 99px;
}
.badge--green  { background: var(--green-dim); color: var(--green); }
.badge--accent { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(212,175,55,0.2); }
.badge--gold   { background: rgba(212,175,55,0.12); color: var(--accent-h); }

.space-card__name {
  font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--text-1); margin-top: auto;
}
.space-card__desc {
  font-size: 0.9375rem; color: var(--text-2); line-height: 1.7; max-width: 38ch;
}
.space-card__feats {
  display: flex; flex-direction: column; gap: 0.55rem; flex: 1;
}
.space-card__feats li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem; color: rgba(238,233,224,0.7);
  padding: 0.475rem 0; border-bottom: 1px solid var(--border);
}
.space-card__feats li:last-child { border-bottom: none; }
.space-card__feats li::before {
  content: ''; flex-shrink: 0;
  width: 3px; height: 3px; border-radius: 50%; background: var(--accent);
}
.space-card__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 1.25rem; border-top: 1px solid var(--border); margin-top: 0.5rem;
}
.space-card__price { display: flex; flex-direction: column; }
.price-amount { font-size: 1.625rem; font-weight: 900; letter-spacing: -0.04em; }
.price-period { font-size: 0.75rem; color: var(--text-3); }

/* =================================================================
   COMUNIDAD DE ARTISTAS
   ================================================================= */
.comunidad-section { padding: 0 0 var(--section-py); }
.comunidad { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.comunidad-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  background: var(--bg-2);
  min-height: 480px;
  transition: border-color 0.45s, transform 0.45s var(--ease-tatoo), box-shadow 0.45s;
}
.comunidad-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); box-shadow: 0 32px 80px rgba(0,0,0,0.45); }
.comunidad-card__label { grid-column: 1 / -1; padding: 2rem 3rem 0; }
.comunidad-card__body {
  padding: 1.5rem 3rem 3rem; display: flex; flex-direction: column;
  gap: 1.25rem; justify-content: center;
}
.comunidad-card__title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.08;
}
.comunidad-card__title em { font-style: italic; color: var(--accent); }
.comunidad-card__desc { font-size: 1rem; color: var(--text-2); line-height: 1.75; max-width: 44ch; }
.comunidad-card__perks { display: flex; flex-direction: column; gap: 0.65rem; }
.comunidad-card__perks li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem; color: rgba(238,233,224,0.75);
}
.comunidad-card__perks li span {
  display: block; width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* Visual lado derecho */
.comunidad-card__visual {
  position: relative; background: #000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.comunidad-card__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.9) contrast(1.05) brightness(0.7);
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-out), filter 0.8s var(--ease-out);
  z-index: 0;
}
.comunidad-card:hover .comunidad-card__photo {
  transform: scale(1.08); filter: saturate(1) contrast(1.08) brightness(0.78);
}
.comunidad-card__visual::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
}
.comunidad-card__glow {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(212,175,55,0.18) 0%, transparent 65%);
  animation: comGlow 7s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes comGlow { 0%,100% { opacity: 0.45; } 50% { opacity: 0.9; } }
.comunidad-card__logo {
  width: clamp(100px, 42%, 170px); position: relative; z-index: 3;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,0.65)) brightness(1.15);
}
.comunidad-card__lines {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 3.5rem;
  pointer-events: none;
}
.comunidad-card__lines span {
  display: block; width: 1px; height: 55%;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.18), rgba(212,175,55,0.18), transparent);
}

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.hiw { padding: var(--section-py) 2rem; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hiw__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 8rem; align-items: start; }
.hiw__steps { display: flex; flex-direction: column; }
.hiw-step {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step:hover { transform: translateX(8px); }
.hiw-step__num {
  font-family: var(--serif); font-size: 2rem; font-weight: 900;
  color: transparent; letter-spacing: -0.04em; flex-shrink: 0;
  line-height: 1; min-width: 3rem;
  -webkit-text-stroke: 1px rgba(212,175,55,0.4);
}
.hiw-step__title { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.hiw-step__desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* =================================================================
   RESERVAR
   ================================================================= */
.booking { padding: var(--section-py) 2rem; }
.booking__shell { max-width: 920px; margin: 0 auto; }
.booking__header { margin-bottom: 3.5rem; }
.amelia-wrap { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; padding: 2.5rem; }
.booking__placeholder { text-align: center; padding: 5rem 2rem; }
.booking__placeholder-icon { color: var(--accent); opacity: 0.4; margin-bottom: 1.5rem; display: flex; justify-content: center; }
.booking__placeholder-title { font-size: 1rem; font-weight: 700; color: var(--text-2); margin-bottom: 0.5rem; }
.booking__placeholder-sub { font-size: 0.875rem; color: var(--text-3); }

/* Amelia overrides */
.amelia-wrap .amelia-booking, .amelia-wrap .amelia-container,
.amelia-wrap .amelia-booking-wrapper, .amelia-wrap .amelia-booking-app,
.amelia-wrap #amelia-booking { background: transparent !important; color: var(--text-1) !important; font-family: var(--font) !important; }
.amelia-wrap .am-service-card, .amelia-wrap .am-step-wrapper, .amelia-wrap .am-column,
.amelia-wrap .am-service-box, .amelia-wrap .amelia-service-item {
  background: var(--bg-3) !important; border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important; color: var(--text-1) !important;
}
.amelia-wrap h1, .amelia-wrap h2, .amelia-wrap h3, .amelia-wrap h4,
.amelia-wrap p, .amelia-wrap span, .amelia-wrap label, .amelia-wrap div { color: var(--text-1); }
.amelia-wrap input[type="text"], .amelia-wrap input[type="email"],
.amelia-wrap input[type="tel"], .amelia-wrap textarea, .amelia-wrap select,
.amelia-wrap .el-input__inner, .amelia-wrap .el-textarea__inner {
  background: var(--bg-3) !important; border: 1px solid var(--border-2) !important;
  border-radius: var(--r-sm) !important; color: var(--text-1) !important;
  font-family: var(--font) !important;
}
.amelia-wrap input:focus, .amelia-wrap .el-input__inner:focus {
  border-color: var(--accent) !important; box-shadow: 0 0 0 3px var(--accent-ring) !important; outline: none !important;
}
.amelia-wrap .el-date-table td.current .el-date-table-cell,
.amelia-wrap .el-date-table td.selected .el-date-table-cell { background: var(--accent) !important; border-radius: 8px; color: #0A0A0A !important; }
.amelia-wrap .el-button--primary, .amelia-wrap .am-button-primary, .amelia-wrap button.amelia-next {
  background: var(--accent) !important; border-color: var(--accent) !important;
  color: #0A0A0A !important; font-family: var(--font) !important;
  font-weight: 700 !important; border-radius: var(--r-sm) !important;
}
.amelia-wrap .el-button--primary:hover, .amelia-wrap button.amelia-next:hover {
  background: var(--accent-h) !important; transform: translateY(-1px) !important;
}

/* =================================================================
   FAQ
   ================================================================= */
.faq { padding: var(--section-py) 2rem; }
.faq__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 8rem; align-items: start; }
.faq__left { position: sticky; top: 7rem; }
.faq__list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; list-style: none; color: var(--text-2); transition: color 0.2s;
}
.faq-q:hover { color: var(--text-1); }
.faq-item[open] .faq-q { color: var(--text-1); }
.faq-icon { font-size: 1.25rem; font-weight: 300; color: var(--text-3); flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 0 1.25rem; font-size: 0.9375rem; color: var(--text-2); line-height: 1.72; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { border-top: 1px solid var(--border); padding: var(--section-py) 2rem 0; }
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem;
  padding-bottom: 4rem; border-bottom: 1px solid var(--border);
}
.footer__logo-img {
  height: 52px; width: auto; display: block; margin-bottom: 1.25rem;
  mix-blend-mode: screen; filter: brightness(1.05);
}
.footer__tagline { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.5rem; }
.footer__social { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text-3); transition: color 0.2s;
}
.footer__social-link:hover { color: var(--accent); }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.footer__col-title { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1.25rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col a { font-size: 0.9rem; color: var(--text-2); transition: color 0.2s; }
.footer__col a:hover { color: var(--text-1); }
.footer__bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0 2.5rem; gap: 1rem;
}
.footer__bottom span { font-size: 0.8125rem; color: var(--text-3); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.8125rem; color: var(--text-3); transition: color 0.2s; }
.footer__legal a:hover { color: var(--text-2); }

/* =================================================================
   AI CHAT WIDGET
   ================================================================= */
.ai-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 80; }
.ai-panel {
  position: absolute; bottom: calc(100% + 1rem); right: 0; width: 340px;
  background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  transform: translateY(12px) scale(0.96); opacity: 0;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s; pointer-events: none;
}
.ai-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.ai-panel__head { display: flex; align-items: center; gap: 0.875rem; padding: 1.125rem 1.25rem; border-bottom: 1px solid var(--border); background: var(--bg-3); }
.ai-panel__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-dim); border: 1px solid var(--accent-ring); display: flex; align-items: center; justify-content: center; color: var(--accent); position: relative; flex-shrink: 0; }
.ai-panel__status { position: absolute; bottom: 1px; right: 1px; width: 9px; height: 9px; border-radius: 50%; background: var(--green); border: 1.5px solid var(--bg-3); }
.ai-panel__name { font-size: 0.9rem; font-weight: 700; }
.ai-panel__status-text { font-size: 0.75rem; color: var(--text-3); }
.ai-panel__close { margin-left: auto; width: 28px; height: 28px; border-radius: var(--r-xs); background: var(--bg-4); color: var(--text-2); display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.ai-panel__close:hover { background: rgba(255,255,255,0.08); color: var(--text-1); }
.ai-panel__msgs { height: 260px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; scroll-behavior: smooth; }
.ai-panel__msgs::-webkit-scrollbar { width: 4px; }
.ai-panel__msgs::-webkit-scrollbar-track { background: transparent; }
.ai-panel__msgs::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }
.ai-msg { max-width: 88%; font-size: 0.875rem; line-height: 1.6; }
.ai-msg--bot { align-self: flex-start; background: var(--bg-3); border: 1px solid var(--border); padding: 0.625rem 0.875rem; border-radius: 4px 14px 14px 14px; color: var(--text-1); white-space: pre-wrap; }
.ai-msg--user { align-self: flex-end; background: var(--accent); color: #0A0A0A; padding: 0.625rem 0.875rem; border-radius: 14px 14px 4px 14px; font-weight: 500; }
.ai-panel__quick { display: flex; flex-wrap: wrap; gap: 0.375rem; padding: 0.75rem 1rem; border-top: 1px solid var(--border); }
.quick-chip { font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.75rem; border: 1px solid var(--border-2); border-radius: 99px; color: var(--text-2); transition: all 0.15s; }
.quick-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.ai-panel__input-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1rem; border-top: 1px solid var(--border); }
.ai-panel__input { flex: 1; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0.625rem 0.875rem; color: var(--text-1); font-size: 0.875rem; outline: none; transition: border-color 0.2s; }
.ai-panel__input:focus { border-color: var(--border-2); }
.ai-panel__send { width: 34px; height: 34px; border-radius: var(--r-xs); background: var(--accent); color: #080808; display: flex; align-items: center; justify-content: center; transition: filter 0.2s; flex-shrink: 0; }
.ai-panel__send:hover { filter: brightness(1.1); }
.ai-trigger { width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #080808; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px var(--accent-ring); transition: transform 0.35s var(--ease-spring), box-shadow 0.3s; position: relative; }
.ai-trigger:hover { transform: scale(1.08); box-shadow: 0 14px 40px var(--accent-ring); }
.ai-trigger:active { transform: scale(0.95); }
.ai-trigger__chat { transition: opacity 0.2s, transform 0.2s; }
.ai-trigger__close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.8); transition: opacity 0.2s, transform 0.2s; }
.ai-widget.chat-open .ai-trigger__chat { opacity: 0; transform: rotate(90deg) scale(0.8); }
.ai-widget.chat-open .ai-trigger__close { opacity: 1; transform: rotate(0) scale(1); }
.ai-badge { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; border-radius: 50%; background: #E05252; color: #fff; font-size: 0.625rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid var(--bg); transition: transform 0.25s var(--ease-spring); }
.ai-badge.hidden { transform: scale(0); }
.toast { position: fixed; bottom: 6.5rem; right: 2rem; z-index: 200; background: var(--bg-3); border: 1px solid var(--border-2); border-radius: var(--r-md); padding: 0.875rem 1.25rem; font-size: 0.875rem; color: var(--text-1); box-shadow: 0 8px 32px rgba(0,0,0,0.4); animation: toastIn 0.35s var(--ease-spring) both; max-width: 280px; }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.hidden { display: none !important; }
@keyframes dot { 0%,80%,100% { opacity:0.2; transform:scale(0.8); } 40% { opacity:1; transform:scale(1); } }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
  .hiw__inner { grid-template-columns: 1fr; gap: 3rem; }
  .faq__inner { grid-template-columns: 1fr; gap: 3rem; }
  .faq__left { position: static; }
  .footer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__cols { grid-template-columns: repeat(3,1fr); }
  .comunidad-card { grid-template-columns: 1fr; }
  .comunidad-card__label { padding: 2rem 2rem 0; }
  .comunidad-card__body { padding: 1.5rem 2rem 2.5rem; }
  .comunidad-card__visual { min-height: 260px; }
}
@media (max-width: 900px) {
  .spaces-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero__bottom { padding: 1rem 1.5rem; }
  .hero__stats { gap: 1.5rem; }
  .hero__scroll-hint { display: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .ai-panel { width: calc(100vw - 2rem); right: 0; }
  .amelia-wrap { padding: 1.25rem; }
  .space-card { min-height: auto; }
}
@media (max-width: 480px) {
  :root { --section-py: 4rem; }
  .footer__cols { grid-template-columns: 1fr; }
  .hero__bottom { display: none; }
}

/* =================================================================
   ENHANCED INTERACTIONS — split titles, tilt, magnetic, stats, line
   ================================================================= */

/* Split section titles (palabra a palabra) */
.section-title .word {
  display: inline-block; overflow: hidden;
  vertical-align: top; line-height: 1.05;
  padding-bottom: 0.05em;
}
.section-title .word-inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.section-title .word.is-in .word-inner { transform: translateY(0); }

/* 3D tilt cards */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s, box-shadow 0.5s;
  will-change: transform;
}
.tilt.is-hover { transition: transform 0.1s linear, border-color 0.4s, box-shadow 0.5s; }
.tilt > * { transform: translateZ(0); }
.space-card.tilt:hover,
.comunidad-card.tilt:hover { transform: none; } /* JS toma el control */

/* Magnetic buttons */
.magnetic {
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.magnetic .btn__label { display: inline-block; transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1); will-change: transform; }

/* Stats strip animado */
.stats-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.stat-item {
  position: relative;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: left;
  transition: background 0.4s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(212, 175, 55, 0.03); }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
@media (max-width: 900px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 1.25rem; }
}

/* HIW — línea vertical animada */
.hiw__steps { position: relative; }
.hiw__line {
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.06);
  z-index: 0;
  pointer-events: none;
}
.hiw__line span {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(212,175,55,0.3) 60%, transparent 100%);
  transform-origin: top center;
  transform: scaleY(0);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
.hiw-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0 1.75rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), padding-left 0.4s;
}
.hiw-step:hover { transform: translateX(0); padding-left: 0.5rem; }
.hiw-step__num {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hiw-step:hover .hiw-step__num {
  background: var(--accent);
  color: #080808;
  border-color: var(--accent);
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 32px rgba(212,175,55,0.35);
}

/* FAQ smooth */
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.faq-item:hover { background: rgba(255,255,255,0.015); }
.faq-a-wrap {
  overflow: hidden;
  height: 0;
  transition: height 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-item[open] .faq-a-wrap { /* JS controla la altura */ }

/* Marquee hover pause */
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track { transition: opacity 0.3s; }
.marquee:hover .marquee__track { opacity: 0.7; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .tilt, .magnetic, .magnetic .btn__label,
  .section-title .word-inner, .hiw__line span,
  .hiw-step, .hiw-step__num { transition: none !important; transform: none !important; }
}

/* ── Booking CTA section ── */
.booking-cta {
  max-width: 640px;
}
.booking-cta__meta {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  margin-top: 2rem;
  font-size: 0.8125rem; color: var(--text-2);
}
.booking-cta__meta span {
  display: flex; align-items: center; gap: 0.5rem;
}
.booking-cta__meta svg { color: var(--accent); flex-shrink: 0; }
