/* =========================================================
   Aqualaf Theme — Compiled CSS
   Source: assets/scss/main.scss
   Build: sass assets/scss/main.scss assets/css/main.css
   ========================================================= */

/* ── 1. Design Tokens — Paleta Aqualaf ──────────────────── */
:root {
  --c-bg: #ffffff;
  --c-bg-dark: #0a0f14;
  --c-text: #0a0f14;
  --c-text-inv: #ffffff;
  --c-text-muted: #8fa3b0;
  --c-border: #d8e8f0;
  /* Paleta de marca */
  --c-accent:       #0991C9;   /* Azul principal */
  --c-accent-dark:  #096484;   /* Azul oscuro */
  --c-accent-light: #4fb8e8;   /* Hover / tinte */
  --c-surface:      #EEF8FE;   /* Fondo suave azulado */
  /* Aliases legacy — mantienen compatibilidad */
  --c-gold:         #0991C9;
  --c-gold-light:   #4fb8e8;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant', 'Georgia', serif;
  --text-xs: clamp(0.688rem, 0.6rem + 0.3vw, 0.75rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 0.938rem);
  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.063rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --text-5xl: clamp(3rem, 2.2rem + 4vw, 6rem);
  --text-display: clamp(4rem, 3rem + 6vw, 9rem);
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 10rem;
  --space-24: 12rem;
  --space-32: 16rem;
  --container-sm: 640px;
  --container-md: 960px;
  --container: 1280px;
  --container-wide: 1520px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl: 0 24px 80px rgba(0,0,0,.18);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
  --ease-out: cubic-bezier(0, 0.55, 0.45, 1);
  --dur-fast: 0.25s;
  --dur-base: 0.5s;
  --dur-slow: 0.8s;
  --dur-slower: 1.2s;
  --z-below: -1;
  --z-base: 0;
  --z-raised: 10;
  --z-floating: 100;
  --z-overlay: 500;
  --z-modal: 800;
  --z-loader: 900;
  --z-cursor: 1000;
}

/* ── 2. Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: auto; overflow-x: hidden; scrollbar-gutter: stable; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; background-color: var(--c-bg); color: var(--c-text); }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; }
img { height: auto; }
::selection { background: #0991C9; color: #ffffff; }

/* ── 3. Typography ─────────────────────────────────────── */
body { font-family: var(--font-sans); font-size: var(--text-base); font-weight: 300; line-height: 1.65; letter-spacing: 0.01em; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: var(--font-serif); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
h1, .h1 { font-size: var(--text-5xl); letter-spacing: -0.03em; }
h2, .h2 { font-size: var(--text-4xl); letter-spacing: -0.025em; }
h3, .h3 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
h4, .h4 { font-size: var(--text-2xl); }
h5, .h5 { font-size: var(--text-xl); font-weight: 400; }
h6, .h6 { font-size: var(--text-lg); font-weight: 400; }
.text-display { font-family: var(--font-display); font-size: var(--text-display); font-weight: 300; line-height: 0.95; letter-spacing: -0.04em; }
.text-hero { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; line-height: 1.05; letter-spacing: -0.03em; }
.label, .overline { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-text-muted); }
.label-gold { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.lead { font-size: var(--text-xl); font-weight: 300; line-height: 1.5; color: var(--c-text-muted); max-width: 52ch; }
.text-muted { color: var(--c-text-muted); }
.text-gold { color: var(--c-gold); }
.text-white { color: var(--c-text-inv); }
em { font-family: var(--font-serif); font-style: italic; font-weight: 300; }
p { max-width: 68ch; }
p + p { margin-top: var(--space-3); }
.split-word { overflow: hidden; display: inline-block; }
.split-char { display: inline-block; will-change: transform, opacity; }

/* ── 4. Layout ─────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--sm { max-width: var(--container-sm); }
.container--md { max-width: var(--container-md); }
.container--wide { max-width: var(--container-wide); }
.container--full { max-width: none; }
.section { padding-block: clamp(4rem, 10vw, 10rem); }
.section--sm { padding-block: clamp(3rem, 6vw, 6rem); }
.section--lg { padding-block: clamp(6rem, 14vw, 14rem); }
.section--hero { padding-block: 0; }
.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 767px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.ratio { position: relative; overflow: hidden; }
.ratio img, .ratio video, .ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ratio--square { aspect-ratio: 1/1; }
.ratio--landscape { aspect-ratio: 16/9; }
.ratio--cinematic { aspect-ratio: 21/9; }
.ratio--portrait { aspect-ratio: 3/4; }
.ratio--tall { aspect-ratio: 2/3; }
.ratio--hero { aspect-ratio: 16/7; }
.full-screen { width: 100%; height: 100dvh; min-height: 600px; position: relative; overflow: hidden; }
.clip { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.divider { width: 100%; height: 1px; background: var(--c-border); margin-block: var(--space-8); }
.divider--gold { background: var(--c-gold); width: 40px; }
#barba-wrapper { overflow-x: hidden; }
[data-barba="container"] { width: 100%; }

/* ── 5. Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 14px 32px; font-family: var(--font-sans); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  position: relative; overflow: hidden; cursor: none;
  transition: color var(--dur-base) var(--ease-smooth), background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth);
}
.btn::before { content: ''; position: absolute; inset: 0; transform: scaleY(0); transform-origin: bottom; transition: transform var(--dur-base) var(--ease-expo); z-index: 0; }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn svg { width: 16px; height: 16px; transition: transform var(--dur-base) var(--ease-expo); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover::before { transform: scaleY(1); }
.btn--primary { background: transparent; color: #ffffff; border: 1px solid rgba(255,255,255,0.4); }
.btn--primary::before { background: #ffffff; }
.btn--primary:hover { color: #0a0f14; border-color: #ffffff; }
.btn--dark { background: #0a0f14; color: #ffffff; border: 1px solid #0a0f14; }
.btn--dark::before { background: var(--c-gold); }
.btn--dark:hover { border-color: var(--c-gold); }
.btn--gold { background: var(--c-gold); color: #ffffff; border: 1px solid var(--c-gold); }
.btn--gold::before { background: #0a0f14; }
.btn--gold:hover { border-color: #0a0f14; }
.btn--ghost { background: transparent; color: var(--c-text); border: 1px solid var(--c-border); }
.btn--ghost::before { background: var(--c-text); }
.btn--ghost:hover { color: #ffffff; border-color: var(--c-text); }
.btn--icon { padding: 12px; border-radius: var(--radius-full); width: 48px; height: 48px; justify-content: center; }

/* ── 6. Custom Cursor ──────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
}
.cursor { position: fixed; z-index: var(--z-cursor); pointer-events: none; top: 0; left: 0; will-change: transform; }
.cursor__ring { position: absolute; top: -20px; left: -20px; width: 40px; height: 40px; border: 1px solid rgba(10,15,20,0.4); border-radius: var(--radius-full); transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), top 0.4s var(--ease-expo), left 0.4s var(--ease-expo), border-color 0.25s var(--ease-smooth), opacity 0.25s var(--ease-smooth), background 0.25s var(--ease-smooth); will-change: transform; }
.cursor__dot { position: absolute; top: -3px; left: -3px; width: 6px; height: 6px; background: #0a0f14; border-radius: var(--radius-full); transition: transform 0.15s var(--ease-smooth), background 0.15s var(--ease-smooth), opacity 0.15s var(--ease-smooth); }
.cursor__label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; white-space: nowrap; opacity: 0; transition: opacity 0.2s var(--ease-smooth); pointer-events: none; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; top: -32px; left: -32px; background: rgba(10,15,20,0.04); }
.cursor.is-hover .cursor__dot { transform: scale(0.5); }
.cursor.is-link .cursor__ring { width: 56px; height: 56px; top: -28px; left: -28px; background: #0a0f14; border-color: #0a0f14; }
.cursor.is-link .cursor__dot { opacity: 0; }
.cursor.is-link .cursor__label { opacity: 1; }
.cursor.is-media .cursor__ring { width: 80px; height: 80px; top: -40px; left: -40px; background: var(--c-gold); border-color: var(--c-gold); }
.cursor.is-media .cursor__dot { opacity: 0; }
.cursor.is-media .cursor__label { opacity: 1; }
.cursor.is-hidden .cursor__ring { opacity: 0; transform: scale(0.5); }
.cursor.is-hidden .cursor__dot { opacity: 0; }
.cursor.is-light .cursor__ring { border-color: rgba(255,255,255,0.4); }
.cursor.is-light .cursor__dot { background: #ffffff; }

/* ── 7. Loader ─────────────────────────────────────────── */
.loader { position: fixed; inset: 0; z-index: var(--z-loader); display: flex; align-items: center; justify-content: center; pointer-events: all; overflow: hidden; }
.loader__panel { position: absolute; top: 0; bottom: 0; width: 50%; background: #0a0f14; will-change: transform; }
.loader__panel--left { left: 0; }
.loader__panel--right { right: 0; }
.loader__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: var(--space-5); }
.loader__logo { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3.5rem); font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: #ffffff; opacity: 0; }
.loader__line { width: 80px; height: 1px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.loader__line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--c-gold); animation: loaderLine 1.2s var(--ease-expo) forwards; animation-delay: 0.3s; }
.loader__progress { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.25em; color: rgba(255,255,255,0.35); opacity: 0; min-width: 3ch; text-align: center; }
.loader.is-loaded { pointer-events: none; }
@keyframes loaderLine { to { left: 0; } }
.page-transition { position: fixed; inset: 0; z-index: var(--z-loader); pointer-events: none; overflow: hidden; display: none; }
.page-transition__bar { position: absolute; inset: 0; background: #0a0f14; transform: scaleY(0); transform-origin: bottom; will-change: transform; }

/* ── 8. Header ─────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-floating); padding-block: var(--space-3); transition: background var(--dur-slow) var(--ease-smooth), padding var(--dur-base) var(--ease-smooth), backdrop-filter var(--dur-slow) var(--ease-smooth); }
.site-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,15,20,0.5) 0%, rgba(10,15,20,0) 100%); opacity: 1; transition: opacity var(--dur-slow) var(--ease-smooth); pointer-events: none; }
.site-header.is-scrolled { padding-block: var(--space-2); background: rgba(255,255,255,0.92); border-bottom-color: #d8e8f0; backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); border-bottom: 1px solid var(--c-border); }
.site-header.is-scrolled::before { opacity: 0; }
.site-header.is-scrolled .site-header__logo { color: var(--c-text); }
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .primary-nav a { color: var(--c-text); }
.site-header.is-scrolled .nav-link::after,
.site-header.is-scrolled .primary-nav a::after { background: var(--c-text); }
.site-header.is-scrolled .header-actions__icon { color: var(--c-text); }
.site-header.is-dark { background: rgba(10,15,20,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.site-header.is-dark .site-header__logo,
.site-header.is-dark .nav-link,
.site-header.is-dark .primary-nav a,
.site-header.is-dark .header-actions__icon { color: #ffffff; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-inline: var(--gutter); max-width: var(--container-wide); margin-inline: auto; }
.site-header__logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; transition: color var(--dur-base) var(--ease-smooth), opacity var(--dur-base) var(--ease-smooth); flex-shrink: 0; }
.site-header__logo:hover { opacity: 0.7; }
.site-header__logo img { height: 36px; width: auto; }
.primary-nav { display: none; }
@media (min-width: 1024px) {
  .primary-nav { display: flex; align-items: center; }
}
/* WP outputs <ul><li><a> — make the ul itself flex */
.primary-nav ul { display: flex; align-items: center; gap: var(--space-6); list-style: none; }
.primary-nav li { position: relative; display: block; }
/* Apply nav-link styles to WP-generated <a> tags */
.primary-nav a,
.nav-link { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); transition: color var(--dur-base) var(--ease-smooth); position: relative; display: inline-block; }
.primary-nav a::after,
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 1px; background: #ffffff; transform: scaleX(0); transform-origin: right; transition: transform var(--dur-base) var(--ease-expo); }
.primary-nav a:hover,
.primary-nav li.current-menu-item > a,
.primary-nav li.current_page_item > a,
.nav-link:hover, .nav-link.current-menu-item, .nav-link.current_page_item { color: #ffffff; }
.primary-nav a:hover::after,
.primary-nav li.current-menu-item > a::after,
.primary-nav li.current_page_item > a::after,
.nav-link:hover::after, .nav-link.current-menu-item::after, .nav-link.current_page_item::after { transform: scaleX(1); transform-origin: left; }
.primary-nav li.current-menu-item > a::after,
.nav-link.current-menu-item::after, .nav-link.current_page_item::after { background: var(--c-gold); }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-actions__icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: rgba(255,255,255,0.85); transition: color var(--dur-base) var(--ease-smooth); position: relative; cursor: pointer; }
.header-actions__icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cart-count { position: absolute; top: 2px; right: 2px; width: 16px; height: 16px; background: var(--c-gold); color: #ffffff; font-size: 9px; font-weight: 600; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; }
.cart-count:empty { display: none; }
.menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; position: relative; z-index: var(--z-modal); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; height: 1px; background: currentColor; color: rgba(255,255,255,0.85); transition: transform var(--dur-base) var(--ease-expo), opacity var(--dur-fast) var(--ease-smooth), width var(--dur-base) var(--ease-expo); }
.menu-toggle span:nth-child(1) { width: 24px; }
.menu-toggle span:nth-child(2) { width: 16px; }
.menu-toggle span:nth-child(3) { width: 20px; }
.menu-toggle.is-open span:nth-child(1) { width: 24px; transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { width: 24px; transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 0; background: #0a0f14; z-index: var(--z-overlay); display: flex; flex-direction: column; justify-content: center; padding: var(--space-16) var(--gutter); clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem); transition: clip-path 0.8s var(--ease-expo); pointer-events: none; }
.mobile-nav.is-open { clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem); pointer-events: all; }
.mobile-nav__menu { display: flex; flex-direction: column; gap: var(--space-4); }
.mobile-nav__menu a { font-family: var(--font-serif); font-size: var(--text-4xl); font-weight: 300; color: #ffffff; line-height: 1; letter-spacing: -0.02em; opacity: 0; transform: translateY(20px); transition: opacity var(--dur-base) var(--ease-expo), transform var(--dur-base) var(--ease-expo), color var(--dur-fast) var(--ease-smooth); }
.mobile-nav__menu a:hover { color: var(--c-gold); }
.mobile-nav.is-open .mobile-nav__menu a { opacity: 1; transform: translateY(0); }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(1) { transition-delay: 0.15s; }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(3) { transition-delay: 0.25s; }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(4) { transition-delay: 0.3s; }
.mobile-nav.is-open .mobile-nav__menu a:nth-child(5) { transition-delay: 0.35s; }

/* ── 9. Hero ───────────────────────────────────────────── */
.hero { position: relative; width: 100%; height: 100dvh; min-height: 640px; overflow: hidden; display: flex; align-items: flex-end; background: #0a0f14; }
.hero__media { position: absolute; inset: 0; z-index: 1; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center; will-change: transform; transform: scale(1.08); }
.hero__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(160deg, rgba(10,15,20,0.2) 0%, rgba(10,15,20,0.4) 40%, rgba(10,15,20,0.75) 100%); }
.hero__content { position: relative; z-index: 3; width: 100%; padding: 0 var(--gutter) clamp(4rem,10vh,7rem); max-width: var(--container-wide); margin-inline: auto; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4); opacity: 0; transform: translateY(16px); }
.hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--c-gold); flex-shrink: 0; }
.hero__eyebrow span { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-gold); }
.hero__title { font-family: var(--font-serif); font-size: clamp(3.5rem,8vw,9rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.03em; color: #ffffff; max-width: 14ch; overflow: hidden; }
.hero__title .word { overflow: hidden; display: block; }
.hero__title em { font-style: italic; color: var(--c-gold-light); }
.hero__subtitle { margin-top: var(--space-5); font-family: var(--font-sans); font-size: var(--text-lg); font-weight: 300; color: rgba(255,255,255,0.65); max-width: 42ch; line-height: 1.6; opacity: 0; transform: translateY(16px); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); opacity: 0; transform: translateY(16px); }
.hero__scroll { position: absolute; bottom: clamp(2rem,4vh,3.5rem); right: var(--gutter); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: var(--space-2); color: rgba(255,255,255,0.5); opacity: 0; }
.hero__scroll span { font-size: 9px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--c-gold); animation: scrollLine 1.8s var(--ease-expo) infinite; animation-delay: 1.5s; }
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }
.hero__stats { position: absolute; bottom: clamp(2rem,4vh,3.5rem); left: var(--gutter); z-index: 3; display: flex; gap: var(--space-8); opacity: 0; transform: translateY(12px); }
@media (max-width: 767px) { .hero__stats { display: none; } }
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat strong { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300; color: #ffffff; letter-spacing: -0.02em; line-height: 1; }
.hero__stat span { font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ── 10. Featured Products ──────────────────────────────── */
.products-featured { background: var(--c-bg); position: relative; overflow: hidden; }
.products-featured__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-12); }
@media (max-width: 767px) { .products-featured__header { flex-direction: column; align-items: flex-start; } }
.products-featured__link { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text-muted); transition: color var(--dur-base) var(--ease-smooth), gap var(--dur-base) var(--ease-expo); white-space: nowrap; }
.products-featured__link svg { width: 18px; height: 18px; transition: transform var(--dur-base) var(--ease-expo); }
.products-featured__link:hover { color: var(--c-text); gap: var(--space-3); }
.products-featured__link:hover svg { transform: translateX(4px); }
.products-featured__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 640px) { .products-featured__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) {
  .products-featured__grid { grid-template-columns: repeat(4, 1fr); }
  .products-featured__grid .product-card:first-child { grid-column: span 2; }
  .products-featured__grid .product-card:first-child .product-card__image { aspect-ratio: 4/3; }
}
.product-card { position: relative; display: flex; flex-direction: column; cursor: none; }
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card:hover .product-card__action { opacity: 1; transform: translateY(0); }
.product-card:hover .product-card__title { color: var(--c-gold); }
.product-card__image { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--c-surface); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-smooth); will-change: transform; }
.product-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,20,0.5) 0%, rgba(10,15,20,0) 50%); opacity: 0; transition: opacity var(--dur-slow) var(--ease-smooth); }
.product-card__badge { position: absolute; top: var(--space-3); left: var(--space-3); background: var(--c-gold); color: #ffffff; font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-full); }
.product-card__action { position: absolute; bottom: var(--space-3); right: var(--space-3); opacity: 0; transform: translateY(8px); transition: opacity var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-expo); }
.product-card__info { padding: var(--space-3) 0; display: flex; flex-direction: column; gap: 6px; }
.product-card__category { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text-muted); }
.product-card__title { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 300; letter-spacing: -0.01em; line-height: 1.2; transition: color var(--dur-base) var(--ease-smooth); }

/* ── 11. Experience ─────────────────────────────────────── */
.experience { position: relative; background: #0a0f14; color: #ffffff; overflow: hidden; }
.experience__sticky { position: sticky; top: 0; height: 100dvh; overflow: hidden; display: flex; align-items: center; }
.experience__panel { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity var(--dur-slow) var(--ease-smooth), visibility 0s linear var(--dur-slow); }
.experience__panel.is-active { opacity: 1; visibility: visible; transition: opacity var(--dur-slow) var(--ease-smooth), visibility 0s; }
.experience__image { position: absolute; inset: 0; z-index: 1; }
.experience__image img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.experience__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,15,20,0.75) 0%, rgba(10,15,20,0.3) 60%, rgba(10,15,20,0) 100%); }
.experience__text { position: relative; z-index: 2; padding: var(--space-16) var(--gutter); max-width: var(--container-wide); margin-inline: auto; width: 100%; }
@media (min-width: 1024px) { .experience__text { max-width: 50%; } }
.experience__number { font-family: var(--font-display); font-size: clamp(5rem,12vw,14rem); font-weight: 300; line-height: 1; letter-spacing: -0.04em; color: rgba(255,255,255,0.06); position: absolute; top: 50%; left: var(--gutter); transform: translateY(-60%); user-select: none; pointer-events: none; }
.experience__eyebrow { display: inline-flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-5); }
.experience__eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--c-gold); flex-shrink: 0; }
.experience__eyebrow span { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.experience__heading { font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,5rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; color: #ffffff; margin-bottom: var(--space-5); max-width: 16ch; }
.experience__heading em { font-style: italic; color: var(--c-gold-light); }
.experience__body { font-size: var(--text-lg); font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 42ch; }
.experience__progress { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: var(--space-2); }
@media (max-width: 767px) { .experience__progress { display: none; } }
.experience__dot { width: 6px; height: 6px; border-radius: var(--radius-full); background: rgba(255,255,255,0.25); transition: background var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-expo); cursor: pointer; }
.experience__dot.is-active { background: var(--c-gold); transform: scale(1.5); }
.experience__bar { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--c-gold); transform-origin: left; transform: scaleX(0); z-index: 3; will-change: transform; }

/* ── 12. Catalog ────────────────────────────────────────── */
.catalog { background: var(--c-bg); overflow: hidden; }
.catalog__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: var(--space-6); margin-bottom: var(--space-10); padding-inline: var(--gutter); max-width: var(--container-wide); margin-inline: auto; }
.catalog__nav { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.catalog__nav-btn { width: 48px; height: 48px; border-radius: var(--radius-full); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text); transition: background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth), color var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-expo); cursor: pointer; }
.catalog__nav-btn svg { width: 18px; height: 18px; }
.catalog__nav-btn:hover { background: var(--c-text); border-color: var(--c-text); color: #ffffff; transform: scale(1.06); }
.catalog__nav-btn.swiper-button-disabled { opacity: 0.3; pointer-events: none; }
.catalog__swiper { overflow: visible; padding-inline: var(--gutter); }
.catalog__swiper .swiper-slide { height: auto; width: clamp(280px,35vw,440px); }
.catalog-card { position: relative; overflow: hidden; background: var(--c-surface); height: 100%; display: flex; flex-direction: column; cursor: none; }
.catalog-card:hover .catalog-card__image img { transform: scale(1.05); }
.catalog-card:hover .catalog-card__reveal { transform: translateY(0); opacity: 1; }
.catalog-card__image { overflow: hidden; aspect-ratio: 3/4; }
.catalog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-smooth); will-change: transform; }
.catalog-card__body { padding: var(--space-4); flex: 1; display: flex; flex-direction: column; gap: var(--space-2); }
.catalog-card__number { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.catalog-card__name { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300; line-height: 1.15; letter-spacing: -0.015em; }
.catalog-card__desc { font-size: var(--text-sm); color: var(--c-text-muted); line-height: 1.6; margin-top: auto; }
.catalog-card__reveal { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-4); background: var(--c-gold); transform: translateY(100%); opacity: 0; transition: transform var(--dur-base) var(--ease-expo), opacity var(--dur-base) var(--ease-smooth); }
.catalog-card__reveal a { display: flex; align-items: center; justify-content: space-between; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; }
.catalog__pagination { margin-top: var(--space-8); padding-inline: var(--gutter); display: flex; align-items: center; gap: var(--space-2); }
.catalog__pagination .swiper-pagination-bullet { width: 24px; height: 2px; border-radius: 1px; background: var(--c-border); opacity: 1; transition: width var(--dur-base) var(--ease-expo), background var(--dur-base) var(--ease-smooth); }
.catalog__pagination .swiper-pagination-bullet-active { width: 48px; background: var(--c-text); }

/* ── 13. Footer ─────────────────────────────────────────── */
.site-footer { background: #0a0f14; color: rgba(255,255,255,0.6); position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: rgba(255,255,255,0.08); }
.footer__cta { padding-block: clamp(5rem,12vw,10rem); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__cta-label { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-gold); margin-bottom: var(--space-4); }
.footer__cta-title { font-family: var(--font-serif); font-size: clamp(2.5rem,6vw,6rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1; color: #ffffff; margin-bottom: var(--space-8); max-width: 18ch; margin-inline: auto; }
.footer__form { display: flex; align-items: stretch; max-width: 500px; margin-inline: auto; }
@media (max-width: 639px) { .footer__form { flex-direction: column; gap: var(--space-3); } }
.footer__input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-right: none; padding: 14px var(--space-4); color: #ffffff; font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 300; outline: none; transition: border-color var(--dur-base) var(--ease-smooth); }
.footer__input::placeholder { color: rgba(255,255,255,0.3); }
.footer__input:focus { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.07); }
@media (max-width: 639px) { .footer__input { border-right: 1px solid rgba(255,255,255,0.12); } }
.footer__submit { background: var(--c-gold); color: #ffffff; border: 1px solid var(--c-gold); padding: 14px var(--space-5); font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; cursor: none; transition: background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth); }
.footer__submit:hover { background: #ffffff; border-color: #ffffff; color: #0a0f14; }
.footer__main { padding-block: clamp(4rem,8vw,7rem); display: grid; grid-template-columns: 1fr; gap: var(--space-10); }
@media (min-width: 768px) { .footer__main { grid-template-columns: 2fr 1fr 1fr; gap: var(--space-12); } }
@media (min-width: 1280px) { .footer__main { grid-template-columns: 2.5fr 1fr 1fr 1fr; } }
.footer__logo { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; margin-bottom: var(--space-4); display: inline-block; }
.footer__tagline { font-size: var(--text-sm); font-weight: 300; line-height: 1.7; max-width: 32ch; margin-bottom: var(--space-6); }
.footer__social { display: flex; gap: var(--space-3); }
.footer__social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-full); color: rgba(255,255,255,0.4); transition: color var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth); }
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover { color: #ffffff; border-color: rgba(255,255,255,0.4); }
.footer__col-title { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: var(--space-5); }
.footer__nav-list { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__nav-list a { font-size: var(--text-sm); font-weight: 300; color: rgba(255,255,255,0.5); transition: color var(--dur-base) var(--ease-smooth); display: inline-block; }
.footer__nav-list a:hover { color: #ffffff; }
.footer__bottom { padding-block: var(--space-5); border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); }
.footer__copy { font-size: var(--text-xs); color: rgba(255,255,255,0.25); letter-spacing: 0.08em; }
.footer__legal { display: flex; gap: var(--space-5); }
.footer__legal a { font-size: var(--text-xs); color: rgba(255,255,255,0.25); transition: color var(--dur-base) var(--ease-smooth); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── 14. Marquee ────────────────────────────────────────── */
.marquee { overflow: hidden; white-space: nowrap; display: flex; }
.marquee__inner { display: flex; animation: marqueeScroll 18s linear infinite; will-change: transform; }
.marquee--slow .marquee__inner { animation-duration: 30s; }
.marquee__item { display: inline-flex; align-items: center; gap: var(--space-6); padding-right: var(--space-6); flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 15. Parallax & Reveal ──────────────────────────────── */
[data-reveal] { will-change: transform, opacity; }
[data-reveal="fade"] { opacity: 0; }
[data-reveal="up"] { opacity: 0; transform: translateY(48px); }
[data-reveal="left"] { opacity: 0; transform: translateX(48px); }
[data-reveal="right"] { opacity: 0; transform: translateX(-48px); }
[data-reveal="scale"] { opacity: 0; transform: scale(0.94); }
[data-reveal="clip"] { clip-path: inset(0 0 100% 0); will-change: clip-path; }
.parallax-wrap { overflow: hidden; }
.parallax-inner { will-change: transform; transform: scale(1.1); }
.no-gsap [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
.no-gsap .h-hero__title-line,
.no-gsap .h-hero__float,
.no-gsap .h-hero__eyebrow,
.no-gsap .h-hero__cta,
.no-gsap .h-hero__scroll { opacity: 1 !important; transform: none !important; }

/* ── 16. Responsive ─────────────────────────────────────── */
@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
  * { cursor: auto !important; }
  .product-card, .catalog-card, .btn { cursor: pointer !important; }
}
@media (max-width: 767px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .experience__heading { font-size: clamp(2rem,8vw,3rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .parallax-inner { transform: none !important; }
  .marquee__inner { animation: none; }
}
@media print {
  .site-header, .site-footer, .cursor, .loader, .page-transition { display: none !important; }
}

/* ══════════════════════════════════════════════════════════
   HOME — secciones específicas (_home.scss compilado)
   ══════════════════════════════════════════════════════════ */

/* ── Hero flotante ── */
.h-hero { position: relative; width: 100%; height: 100dvh; min-height: 640px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #EEF8FE; }
.h-hero__bg { position: absolute; inset: 0; background: #EEF8FE; z-index: 0; }
/* Imágenes flotantes */
.h-hero__float { position: absolute; z-index: 1; overflow: hidden; border-radius: 3px; will-change: transform, opacity; opacity: 0; }
.h-hero__float img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h-hero__float--1 { left: -1.5%; top: 8%; width: clamp(180px, 21vw, 300px); aspect-ratio: 3/4; }
.h-hero__float--2 { left: 17%; bottom: 6%; width: clamp(140px, 16vw, 220px); aspect-ratio: 4/5; }
.h-hero__float--3 { right: 34%; top: 3%; width: clamp(120px, 13vw, 180px); aspect-ratio: 1/1; }
.h-hero__float--4 { right: 16%; top: 7%; width: clamp(130px, 15vw, 200px); aspect-ratio: 3/4; }
.h-hero__float--5 { right: -1%; top: 22%; width: clamp(160px, 19vw, 270px); aspect-ratio: 3/4; }
@media (max-width: 767px) { .h-hero__float--hide-mob { display: none; } }
.h-hero__float-placeholder--1 { width: 100%; height: 100%; background: #096484; }
.h-hero__float-placeholder--2 { width: 100%; height: 100%; background: rgba(9,100,132,0.7); }
.h-hero__float-placeholder--3 { width: 100%; height: 100%; background: #c8e9f8; }
.h-hero__float-placeholder--4 { width: 100%; height: 100%; background: rgba(9,145,201,0.5); }
.h-hero__float-placeholder--5 { width: 100%; height: 100%; background: rgba(9,100,132,0.8); }
/* Centro */
.h-hero__body { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-3); padding-inline: var(--gutter); will-change: opacity, transform; }
.h-hero__eyebrow { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: #0991C9; opacity: 0; transform: translateY(10px); margin-bottom: var(--space-2); }
.h-hero__title { font-family: var(--font-serif); font-size: clamp(4rem,10vw,10rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.025em; color: #096484; }
.h-hero__title-line { display: block; opacity: 0; transform: translateY(40px); will-change: transform, opacity; }
.h-hero__title-line--accent { font-style: italic; color: #0991C9; }
.h-hero__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--space-5); font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: #096484; opacity: 0; transform: translateY(8px); border-bottom: 1px solid rgba(9,100,132,0.3); padding-bottom: 2px; transition: color var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth); }
.h-hero__cta:hover { color: #0991C9; border-color: rgba(9,145,201,0.5); }
.h-hero__cta svg { transition: transform var(--dur-base) var(--ease-expo); }
.h-hero__cta:hover svg { transform: translateX(4px); }
.h-hero__scroll { position: absolute; bottom: clamp(2rem,4vh,3rem); left: 50%; transform: translateX(-50%); z-index: 3; opacity: 0; }
.h-hero__scroll-line { width: 1px; height: 56px; background: rgba(9,100,132,0.2); position: relative; overflow: hidden; }
.h-hero__scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: #0991C9; animation: heroScrollLine 2s var(--ease-expo) infinite; animation-delay: 1.8s; }
@keyframes heroScrollLine { 0% { top: -100%; } 100% { top: 100%; } }

/* ── Statement ── */
.h-statement { background: var(--c-bg); padding-block: clamp(8rem,18vw,16rem); overflow: hidden; }
.h-statement__inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.h-statement__text { font-family: var(--font-serif); font-size: clamp(2.8rem,7vw,8rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; color: var(--c-text); }
.h-statement__text .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.h-statement__text .word-inner { display: inline-block; will-change: opacity, transform; }

/* ── Productos ── */
.h-products { background: var(--c-bg); padding-block: 0 clamp(5rem,10vw,9rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
@media (max-width: 767px) { .h-products { grid-template-columns: 1fr; gap: 0; } }
@media (min-width: 768px) and (max-width: 1023px) { .h-products { grid-template-columns: repeat(2, 1fr); } }
.h-product { position: relative; display: block; overflow: hidden; cursor: none; }
.h-product:hover .h-product__image img { transform: scale(1.04); }
.h-product:hover .h-product__meta { opacity: 1; transform: translateY(0); }
.h-product__image { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--c-surface); clip-path: inset(0 0 100% 0); will-change: clip-path; }
.h-product__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-smooth); will-change: transform; }
.h-product__placeholder { width: 100%; height: 100%; background: var(--c-surface); }
.h-product__meta { padding: var(--space-4) var(--space-4) var(--space-5); opacity: 0; transform: translateY(12px); transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-expo); }
.h-product__cat { display: block; font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 6px; }
.h-product__name { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300; letter-spacing: -0.01em; line-height: 1.15; color: var(--c-text); }
.h-products__footer { grid-column: 1 / -1; display: flex; justify-content: center; padding-block: clamp(3rem,6vw,5rem) 0; }

/* ── Full-bleed ── */
.h-fullbleed { position: relative; height: clamp(480px,70vh,900px); overflow: hidden; }
.h-fullbleed__image { position: absolute; inset: 0; z-index: 1; }
.h-fullbleed__image .parallax-inner { width: 100%; height: 130%; top: -15%; position: absolute; left: 0; }
.h-fullbleed__image img { width: 100%; height: 100%; object-fit: cover; }
.h-fullbleed__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#0a0f14 0%,#0d1d2a 100%); }
.h-fullbleed__overlay { position: absolute; inset: 0; z-index: 2; background: rgba(10,15,20,0.38); }
.h-fullbleed__caption { position: absolute; z-index: 3; bottom: clamp(2rem,5vh,4rem); left: 50%; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.h-fullbleed__caption span { font-family: var(--font-serif); font-size: clamp(1.2rem,3vw,2.2rem); font-weight: 300; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); font-style: italic; }

/* ── Colecciones ── */
.h-collections { background: var(--c-bg); padding-block: clamp(5rem,10vw,9rem); overflow: hidden; }
.h-collections__head { display: flex; align-items: center; justify-content: space-between; padding-inline: var(--gutter); max-width: var(--container-wide); margin-inline: auto; margin-bottom: var(--space-8); }
.h-collections__title { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 300; letter-spacing: -0.02em; }
.h-collections__nav { display: flex; gap: var(--space-2); }
.h-collections__btn { width: 44px; height: 44px; border-radius: var(--radius-full); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text); transition: background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth), color var(--dur-base) var(--ease-smooth); cursor: pointer; }
.h-collections__btn:hover { background: var(--c-text); border-color: var(--c-text); color: #ffffff; }
.h-collections__btn.swiper-button-disabled { opacity: 0.25; pointer-events: none; }
.h-collections__swiper { overflow: visible; padding-inline: var(--gutter); }
.h-collections__swiper .swiper-slide { width: clamp(260px,28vw,380px); height: auto; }
.h-col-card { display: block; position: relative; cursor: none; }
.h-col-card:hover .h-col-card__img img { transform: scale(1.04); }
.h-col-card:hover .h-col-card__overlay { opacity: 1; }
.h-col-card__img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--c-surface); }
.h-col-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-smooth); will-change: transform; }
.h-col-card__placeholder { width: 100%; height: 100%; background: var(--c-surface); }
.h-col-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,15,20,0.5) 0%,transparent 50%); opacity: 0; transition: opacity var(--dur-base) var(--ease-smooth); }
.h-col-card__info { padding: var(--space-3) 0; display: flex; align-items: baseline; gap: var(--space-3); }
.h-col-card__num { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.15em; color: var(--c-gold); }
.h-col-card__name { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 300; letter-spacing: -0.01em; line-height: 1.2; }

/* ── Closing ── */
.h-closing { background: #0a0f14; padding-block: clamp(8rem,16vw,14rem); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; position: relative; }
.h-closing::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 80px; background: linear-gradient(to bottom,transparent,rgba(255,255,255,0.12)); }
.h-closing__inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-5); padding-inline: var(--gutter); }
.h-closing__eyebrow { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--c-gold); }
.h-closing__title { font-family: var(--font-serif); font-size: clamp(3rem,8vw,8rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1; color: #ffffff; max-width: 14ch; }
.h-closing__title .word { overflow: hidden; display: inline-block; }
.h-closing__btn { margin-top: var(--space-3); }

/* ── Link utilitario ── */
.h-link { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-muted); transition: color var(--dur-base) var(--ease-smooth), gap var(--dur-base) var(--ease-expo); }
.h-link svg { transition: transform var(--dur-base) var(--ease-expo); }
.h-link:hover { color: var(--c-text); gap: var(--space-3); }
.h-link:hover svg { transform: translateX(4px); }
