/* ================================================================
   LUMINA FIREFLY — Design System v3 · Pandora-Inspired
   Palette: cream #F9F6F0 · gold #C5A267 · black #1A1A1A
   Fonts: Playfair Display (display) · Inter (body)
   ================================================================ */

/* ----------------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  /* ── Palette ── */
  --bg:         #F9F6F0;
  --bg-alt:     #F4F0E8;
  --white:      #FFFFFF;
  --cream:      #F9F6F0;
  --gold:       #C5A267;
  --gold-light: #D4B87C;
  --gold-dark:  #A8873F;
  --black:      #1A1A1A;
  --dark:       #2B2B2B;
  --gray-900:   #333333;
  --gray-700:   #555555;
  --gray-500:   #888888;
  --gray-400:   #AAAAAA;
  --gray-300:   #CCCCCC;
  --gray-200:   #E6E0D8;
  --gray-100:   #F0ECE4;
  --error:      #C0392B;
  --success:    #27AE60;

  /* ── Type ── */
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;

  /* ── Spacing ── */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4rem;
  --section-pad: clamp(4rem, 10vw, 8rem);

  /* ── Sizing ── */
  --max-w: 1320px;
  --nav-h: 70px;
  --bar-h: 0px;

  /* ── Easing ── */
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.55, 0.085, 0.68, 0.53);

  /* ── Radius ── */
  --radius: 0px;
  --radius-sm: 2px;
}

/* ----------------------------------------------------------------
   2. RESET
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Custom cursor only for mouse users — keyboard and touch always see system cursor */
@media (pointer: fine) {
  body:not(.using-keyboard) { cursor: none; }
  body:not(.using-keyboard) button { cursor: none; }
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; }

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------------
   3. CUSTOM CURSOR
   ---------------------------------------------------------------- */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100001;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  will-change: transform;
}

.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  z-index: 100002;
  transition: width .25s var(--ease-out), height .25s var(--ease-out),
              background .25s;
}

.cursor-follower {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  opacity: .45;
  transition: width .4s var(--ease-out), height .4s var(--ease-out),
              border-color .25s, opacity .25s;
}

.cursor.is-hovering         { width: 14px; height: 14px; background: var(--gold-light); }
.cursor-follower.is-hovering { width: 56px; height: 56px; border-color: var(--gold-light); opacity: .25; }

/* ----------------------------------------------------------------
   4. ANNOUNCEMENT BAR (removed — bar-h set to 0)
   ---------------------------------------------------------------- */

/* ----------------------------------------------------------------
   5. NAVIGATION — Swarovski-style two-state
   Expanded (top): transparent, tall, centered text logo + links below
   Compact (scrolled): solid bg, single-row, image logo left
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  /* Expanded: ultra transparent glass (Vitrine style) */
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease),
              height 0.45s var(--ease), backdrop-filter 0.45s var(--ease),
              border-color 0.45s var(--ease);
  height: 130px;
}

/* ── Compact (scrolled) state ── */
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  height: var(--nav-h);
}

/* Container */
.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s4);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.45s var(--ease);
}

/* ── Expanded: center content in a flex-wrap column ── */
.nav:not(.is-scrolled) .nav__container {
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 0;
}

/* ════════════════════════════════════
   LOGOS: Two versions, swap on scroll
   ════════════════════════════════════ */

/* -- Compact logo: image, shown only when scrolled -- */
.nav__logo--compact {
  display: none;           /* hidden at top */
  align-items: center;
  font-family: var(--display);
  font-size: clamp(0.9rem, 3.5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: opacity 0.3s;
}
.nav.is-scrolled .nav__logo--compact {
  display: flex;
}

/* -- Expanded logo: large centered text, shown at top -- */
.nav__logo--expanded {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  order: -1;
  padding-top: 0.6rem;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav__logo-display {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: color 0.3s;
}
.nav.is-scrolled .nav__logo--expanded {
  display: none;
}

/* ── Links ── */
.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  transition: all 0.45s var(--ease);
}

/* Expanded: links centered below the text logo */
.nav:not(.is-scrolled) .nav__links {
  width: 100%;
  justify-content: center;
  order: 1;
  padding-bottom: 0.4rem;
}

.nav__link {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  position: relative;
  transition: color 0.2s ease;
}

/* When nav is at top (expanded), links are white on strong frosted glass */
.nav:not(.is-scrolled) .nav__link {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.nav:not(.is-scrolled) .nav__link:hover {
  color: var(--white);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav:not(.is-scrolled) .nav__link::after {
  background: var(--gold);
}
.nav__link:hover { color: var(--black); }
.nav__link:hover::after { width: 100%; }
.nav__link.is-active::after { width: 100%; }

/* ── Icon buttons ── */
.nav__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav__icon-btn:hover { color: var(--white); transform: scale(1.08); }

/* When nav is at top (frosted glass), icons stay white */
.nav:not(.is-scrolled) .nav__icon-btn {
  color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
.nav:not(.is-scrolled) .nav__icon-btn:hover {
  color: var(--white);
}

.nav__actions {
  display: flex;
  gap: 0.15rem;
  align-items: center;
  transition: all 0.45s var(--ease);
}

/* Expanded: actions float to top-right */
.nav:not(.is-scrolled) .nav__actions {
  position: absolute;
  top: 0.8rem;
  right: var(--s4);
}

/* ── Hamburger ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 26px;
  padding: 4px 0;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
}
/* White hamburger lines at top */
.nav:not(.is-scrolled) .nav__hamburger span {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.nav__hamburger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__hamburger.is-open span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

/* ── Cart count badge ── */

/* ----------------------------------------------------------------
   6. MOBILE MENU
   ---------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(105%);
  transition: transform 0.7s var(--ease-out);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gray-700);
  cursor: pointer;
  transition: color 0.2s, transform 0.3s var(--ease-out);
}
.mobile-menu__close:hover { color: var(--gold); transform: rotate(90deg); }

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.mobile-menu__link {
  font-family: var(--display);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
  display: inline-block;
}
.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__link:hover::after { width: 70%; }

/* ----------------------------------------------------------------
   7. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 40px;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Primary: solid black */
.btn--primary {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Ghost: transparent with border */
.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Outline: gold border */
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* Gold solid */
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* White solid */
.btn--white {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}

/* ----------------------------------------------------------------
   8. SCROLL-REVEAL SYSTEM
   ---------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--sd, 0ms);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   9. COMMON SECTION TOKENS
   ---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: var(--s4);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 560px;
}

/* ----------------------------------------------------------------
   10. PROMO SLIDER / HERO BANNER
   ---------------------------------------------------------------- */
.promo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex: 1;
}

.promo-slider__track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}

.promo-slider__slide {
  min-width: 100%;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.promo-slider__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s linear;
}
.promo-slider__slide.is-active .promo-slider__slide-bg {
  transform: scale(1.05);
}

.promo-slider__slide-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 100px) var(--s6) 0;
  width: 100%;
}
.promo-slider__slide-eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.promo-slider__slide-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 600px;
}
.promo-slider__slide-title em { font-style: italic; color: var(--gold-light); }
.promo-slider__slide-cta {
  display: inline-flex;
}

/* Slider arrows */
.promo-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.promo-slider__arrow:hover { background: rgba(255,255,255,.3); }
.promo-slider__arrow--prev { left: 1.5rem; }
.promo-slider__arrow--next { right: 1.5rem; }

/* Dots */
.promo-slider__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.promo-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.promo-slider__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ----------------------------------------------------------------
   11. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

/* Gradient backdrop */
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 30% 50%, rgba(197,162,103,.12) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 75% 25%, rgba(197,162,103,.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(230,224,216,.15) 0%, transparent 60%);
  animation: bgShift 20s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0%   { opacity: 1; }
  100% { opacity: .5; }
}

/* Canvas particles */
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 0 var(--s4);
}

.hero__eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: var(--s5);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  overflow: hidden;
}

.hero__title-line { display: block; overflow: hidden; }
.hero__title-line--italic { font-style: italic; color: var(--gold); }

.hero__subtitle {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: var(--s6);
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero reveal keyframes */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-reveal {
  opacity: 0;
  animation: revealUp 0.9s var(--ease-out) var(--d, 0s) forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: revealUp 0.8s var(--ease-out) 1.4s forwards;
  opacity: 0;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .35; }
  50%       { transform: scaleY(1.2); opacity: 1; }
}
.hero__scroll-label {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}

/* ----------------------------------------------------------------
   12. MARQUEE
   ---------------------------------------------------------------- */
.marquee-wrap {
  overflow: hidden;
  background: var(--black);
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(197,162,103,.7);
}
.marquee-track span { flex-shrink: 0; }
.marquee-dot { color: var(--gold); opacity: .5; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   13. COLLECTIONS
   ---------------------------------------------------------------- */
.collections {
  padding: var(--section-pad) var(--s4);
  max-width: var(--max-w);
  margin: 0 auto;
}

.collections__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Carousel */
.collections__carousel {
  position: relative;
  padding: 0 52px;
  max-width: 1100px;
  margin: 0 auto;
}
.collections__track-wrapper {
  overflow: hidden;
}
.collections__track {
  display: flex;
  position: relative;
  justify-content: center;
  min-height: 420px;
}

/* Collection arrows */
.collections__arrow {
  position: absolute;
  top: 40%;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  border-radius: 50%;
  transition: all 0.2s ease;
  cursor: pointer;
}
.collections__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.collections__arrow--prev { left: 0; }
.collections__arrow--next { right: 0; }

/* Collection dots */
.collections__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.collections__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.collections__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Coverflow cards ── */
.cflow__card {
  position: absolute;
  width: min(320px, 80vw);
  left: 50%;
  margin-left: calc(-1 * min(160px, 40vw));
  transition: transform 0.55s var(--ease-out), opacity 0.4s ease, filter 0.4s ease;
  will-change: transform, opacity;
}

.card__visual-link { display: block; text-decoration: none; }

.card__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-100);
}
.card__visual img,
.card__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.card__visual:hover img,
.card__visual:hover video {
  transform: scale(1.05);
}

/* Gold shimmer on card hover */
.card__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(197,162,103,.15) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.card__visual:hover .card__shimmer { opacity: 1; }

.card__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--display);
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.card__coming-soon {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__coming-soon-label {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255,255,255,.4);
}

.card__body {
  padding: 1.25rem 0.25rem 0;
}
.card__title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.card__desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.card__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}
.card__link:hover { gap: 0.7rem; }
.card__arrow { transition: transform 0.2s ease; }

.card__badge-coming {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1px solid var(--gray-300);
  padding: 0.3rem 0.8rem;
  display: inline-block;
}

/* ----------------------------------------------------------------
   14. ABOUT SECTION
   ---------------------------------------------------------------- */
.about {
  padding: var(--section-pad) var(--s4);
}

.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.about__text {
  max-width: 520px;
}

.about__body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: var(--radius);
}

/* Night sky / Nature scene in about visual */
.night-sky,
.nature-scene {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a1a 0%, #1a1030 40%, #2a1838 70%, #1a1020 100%);
}

.nature-scene {
  background: linear-gradient(180deg, #0f1a0f 0%, #1a2a1a 40%, #0a1a0a 100%);
}
.nature-scene__sky { position: absolute; inset: 0; }
.nature-scene__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(197,162,103,.15);
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.1em;
}
.nature-scene__text em { font-style: italic; }

/* Stars */
.stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.stars::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.5) 0%, transparent 100%),
                     radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,.4) 0%, transparent 100%),
                     radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,.6) 0%, transparent 100%),
                     radial-gradient(1px 1px at 70% 70%, rgba(255,255,255,.3) 0%, transparent 100%),
                     radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,.5) 0%, transparent 100%);
}
.stars--small::after { animation: twinkle 4s ease-in-out infinite; }
.stars--medium::after { animation: twinkle 6s ease-in-out infinite 1s; }
.stars--large::after { animation: twinkle 5s ease-in-out infinite 2s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* Shooting stars */
.shooting-star {
  position: absolute;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  opacity: 0;
}
.shooting-star--1 { top: 15%; left: 20%; animation: shoot 4s ease-out infinite 1s; }
.shooting-star--2 { top: 35%; left: 60%; animation: shoot 5s ease-out infinite 3s; }
.shooting-star--3 { top: 25%; left: 40%; animation: shoot 6s ease-out infinite 5s; }
@keyframes shoot {
  0%   { opacity: 0; transform: translateX(0) rotate(-30deg); }
  5%   { opacity: 1; }
  15%  { opacity: 0; transform: translateX(120px) rotate(-30deg); }
  100% { opacity: 0; }
}

/* Fireflies */
.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold-light), 0 0 16px rgba(197,162,103,.3);
  opacity: 0;
}
.firefly--1  { top: 30%; left: 20%; animation: fly 5s ease-in-out infinite 0s; }
.firefly--2  { top: 50%; left: 70%; animation: fly 6s ease-in-out infinite 0.8s; }
.firefly--3  { top: 20%; left: 50%; animation: fly 7s ease-in-out infinite 1.5s; }
.firefly--4  { top: 65%; left: 30%; animation: fly 5.5s ease-in-out infinite 2s; }
.firefly--5  { top: 40%; left: 80%; animation: fly 6.5s ease-in-out infinite 0.5s; }
.firefly--6  { top: 75%; left: 55%; animation: fly 5s ease-in-out infinite 3s; }
.firefly--7  { top: 15%; left: 85%; animation: fly 7s ease-in-out infinite 1s; }
.firefly--8  { top: 55%; left: 15%; animation: fly 6s ease-in-out infinite 2.5s; }
.firefly--9  { top: 80%; left: 40%; animation: fly 5.5s ease-in-out infinite 1.8s; }
.firefly--10 { top: 35%; left: 60%; animation: fly 6.5s ease-in-out infinite 3.2s; }
.firefly--11 { top: 25%; left: 35%; animation: fly 7s ease-in-out infinite 0.3s; }
.firefly--12 { top: 60%; left: 75%; animation: fly 5s ease-in-out infinite 2.8s; }
@keyframes fly {
  0%, 100% { opacity: 0; transform: translate(0, 0); }
  20%      { opacity: .8; transform: translate(10px, -15px); }
  50%      { opacity: .4; transform: translate(-5px, -25px); }
  80%      { opacity: .7; transform: translate(15px, -10px); }
}

/* Landscape silhouette */
.landscape,
.nature-landscape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top, #0a0a12 0%, transparent 100%);
}

/* Nature leaves */
.nature-leaf {
  position: absolute;
  width: 20px;
  height: 30px;
  border-radius: 50% 0;
  background: rgba(80,120,60,.3);
  opacity: 0.5;
}
.nature-leaf--1 { top: 10%; left: 10%; animation: sway 6s ease-in-out infinite; }
.nature-leaf--2 { top: 30%; right: 15%; animation: sway 7s ease-in-out infinite 1s; transform: rotate(45deg); }
.nature-leaf--3 { bottom: 35%; left: 25%; animation: sway 5s ease-in-out infinite 2s; transform: rotate(-30deg); }
.nature-leaf--4 { top: 50%; right: 30%; animation: sway 8s ease-in-out infinite 0.5s; }
.nature-leaf--5 { bottom: 20%; left: 60%; animation: sway 6s ease-in-out infinite 3s; transform: rotate(60deg); }
@keyframes sway {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateX(0); }
  50%      { transform: rotate(var(--r, 0deg)) translateX(8px); }
}

.about__brand-mark-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: auto;
  opacity: 0.7;
  filter: brightness(1.6) drop-shadow(0 0 12px rgba(197,162,103,.4));
  z-index: 5;
}

/* ----------------------------------------------------------------
   15. STATS
   ---------------------------------------------------------------- */
.stats {
  padding: var(--section-pad) var(--s4);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stats__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat__value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.6rem;
}

.stat__number {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}

.stat__suffix {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
}

.stat__label {
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat__icon--glow svg {
  filter: drop-shadow(0 0 6px rgba(197,162,103,.3));
}

/* ----------------------------------------------------------------
   16. ARTISAN PROCESS — EDITORIAL
   ---------------------------------------------------------------- */
.arte-ed {
  padding: var(--section-pad) var(--s4);
  background: var(--bg);
}

.arte-ed__inner {
  max-width: 900px;
  margin: 0 auto;
}

.arte-ed__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.arte-ed__lede {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray-700);
  margin-top: 0.75rem;
}

.arte-ed__body {
  position: relative;
  padding-left: 3rem;
}

/* Golden vertical line */
.arte-ed__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
}

.arte-ed__step {
  position: relative;
  padding: 2rem 0 2.5rem;
}
.arte-ed__step + .arte-ed__step {
  border-top: 1px solid var(--gray-200);
}

/* Dot on timeline */
.arte-ed__step::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 2.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-4px);
  box-shadow: 0 0 0 4px var(--bg);
}

.arte-ed__step-watermark {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(197,162,103,.1);
  line-height: 1;
  position: absolute;
  right: 0;
  top: 1.5rem;
  pointer-events: none;
  user-select: none;
}

.arte-ed__step-title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.arte-ed__step-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 500px;
}

/* ----------------------------------------------------------------
   17. QUOTE SECTION
   ---------------------------------------------------------------- */
.quote-section {
  padding: var(--section-pad) var(--s4);
  background: var(--black);
}

.quote-section__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote__text {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.01em;
}
.quote__text em {
  font-style: italic;
  color: var(--gold-light);
}

/* ----------------------------------------------------------------
   18. CONTACT / LUMINA CLUB
   ---------------------------------------------------------------- */
.contact {
  padding: var(--section-pad) var(--s4);
  background: var(--bg-alt);
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact__desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray-700);
}

/* ----------------------------------------------------------------
   19. PROMO CODE SECTION
   ---------------------------------------------------------------- */
.promo-min {
  padding: 4rem var(--s4);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.promo-min__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.promo-min__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.promo-min__title em { font-style: italic; color: var(--gold); }

.promo-min__desc {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.promo-min__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-min__field {
  display: flex;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.promo-min__field:focus-within { border-color: var(--gold); }

.promo-min__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
}
.promo-min__input::placeholder {
  text-transform: none;
  color: var(--gray-400);
  letter-spacing: 0.03em;
}

.promo-min__btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.promo-min__btn:hover { background: var(--gold); }

.promo-min__feedback {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  min-height: 1.2rem;
  text-align: center;
}

.promo-min__applied {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(197,162,103,.08);
  border: 1px solid rgba(197,162,103,.35);
  font-size: 0.78rem;
  color: var(--gold-dark);
}

.promo-min__remove {
  margin-left: 0.3rem;
  font-size: 1rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

/* ----------------------------------------------------------------
   20. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--black);
  color: var(--white);
}

.footer__main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) var(--s4) 3rem;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 3rem;
}

.footer__brand { }

.footer__logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--gray-500);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s;
}
.footer__social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}

.footer__col-title {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__col a,
.footer__col-meta {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-400);
  display: block;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--s4);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__legal a {
  color: var(--gray-500);
  font-size: 0.65rem;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--white); }

/* ----------------------------------------------------------------
   21. PROMO DATA MODAL
   ---------------------------------------------------------------- */
.promo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4);
}

.promo-modal {
  background: var(--cream);
  width: min(520px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
}

.promo-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.promo-modal__title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
}

.promo-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--gray-500);
  cursor: pointer;
  transition: color 0.2s, transform 0.3s;
}
.promo-modal__close:hover { color: var(--black); transform: rotate(90deg); }

.promo-modal__desc {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.promo-modal__form { }

.promo-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) { .promo-modal__row { grid-template-columns: 1fr; } }

.promo-modal__field {
  margin-bottom: 1rem;
}
.promo-modal__field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.promo-modal__field input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.promo-modal__field input:focus { border-color: var(--gold); }

.promo-modal__err {
  font-size: 0.82rem;
  color: var(--error);
  margin-bottom: 1rem;
}

.promo-modal__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.promo-modal__cancel {
  padding: 0.75rem 1.5rem;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.promo-modal__cancel:hover { border-color: var(--black); color: var(--black); }

/* ----------------------------------------------------------------
   22. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav__links { gap: 1.8rem; }
  .about__inner { gap: 3rem; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --bar-h: 32px;
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__text { max-width: 100%; margin: 0 auto; }
  .about__visual { max-width: 400px; margin: 0 auto; }

  .stats__grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__brand { margin: 0 auto; }
  .footer__social { justify-content: center; }
  .footer__nav { justify-items: center; }

  .hero__title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero__cta { flex-direction: column; align-items: center; }

  .promo-slider__slide-content { padding: 0 var(--s4); }
  .promo-slider__slide-title { font-size: clamp(2rem, 6vw, 3rem); }

  .arte-ed__step-watermark { display: none; }

  /* announcement-bar removed */
}

@media (max-width: 480px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__legal { justify-content: center; }

  .btn { padding: 12px 28px; font-size: 0.68rem; }
}

/* ----------------------------------------------------------------
   23. TOUCH DEVICE CURSOR FIX
   ---------------------------------------------------------------- */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
  .cursor, .cursor-follower { display: none !important; }
}

/* ----------------------------------------------------------------
   24. REDUCED MOTION
   ---------------------------------------------------------------- */
@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;
  }
  .scroll-reveal { opacity: 1; transform: none; }
  .anim-reveal { opacity: 1; }
  .fp-section__reveal { display: none; }
}

/* ================================================================
   24. FULL-PAGE SCROLL SECTIONS
   Scroll-driven: JS sets position:fixed + translateY per scrollY
   ================================================================ */

/* Base — JS overrides position to fixed */
.fp-section {
  height: 100svh;
  position: relative;   /* overridden to fixed by initFpScroll() */
  overflow: hidden;
}

/* ── Sheet reveal: hidden until section becomes active ── */
.fp-section__reveal { display: none; }  /* replaced by scroll-driven system */

/* Slider: flex column so slider fills height, marquee at bottom */
.fp-section--slider {
  display: flex;
  flex-direction: column;
}
.fp-section--slider .promo-slider__slide { height: 100%; }

/* ── HERO STATEMENT — "Tan única como tu luz" ── */
.fp-section--hero {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem clamp(1.5rem, 6vw, 5rem);
  height: 100%;
}
.fp-statement__eyebrow {
  font-family: var(--body);
  font-size: .68rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: clamp(2rem, 5vh, 4rem);
}
.fp-statement__title {
  font-family: var(--display);
  font-size: clamp(4rem, 13vw, 9.5rem);
  font-weight: 400;
  line-height: .98;
  color: var(--white);
  margin: 0 0 clamp(2.5rem, 5vh, 4rem);
  letter-spacing: -.01em;
}
.fp-statement__title em {
  font-style: italic;
  color: var(--gold);
}
.fp-statement__cta {
  font-size: .78rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.25);
  text-decoration: none;
  padding: .85rem 2.5rem;
  transition: color .25s, border-color .25s;
}
.fp-statement__cta:hover {
  color: var(--gold-light);
  border-color: rgba(197,162,103,.5);
}

/* ── CLUB + PROMO (fused) ── */
.fp-section--club-promo {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-club-promo__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 clamp(2.5rem, 7vw, 8rem);
  height: 100%;
}
.fp-club-promo__left,
.fp-club-promo__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.fp-club-promo__divider {
  width: 1px;
  height: clamp(120px, 30vh, 280px);
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--gray-200) 20%,
    var(--gold) 50%,
    var(--gray-200) 80%,
    transparent 100%);
  opacity: .6;
}
.fp-inner-center {
  max-width: 640px;
  width: 100%;
  padding: 2rem clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fp-club__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
  margin: 1rem 0 0;
}
.fp-club__title em { font-style: italic; color: var(--gold); }
.fp-club__sub {
  font-family: var(--body);
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--gray-500);
  margin-top: 1rem;
}

/* ── PROMO CODE (kept for legacy) ── */
.fp-section--promo {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SPLIT LAYOUT: Historia + Compromiso ── */
.fp-section--about { background: var(--bg); }
.fp-section--sustain { background: var(--black); color: var(--cream); }

.fp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 clamp(2.5rem, 7vw, 8rem);
}
.fp-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fp-split__title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  margin: .6rem 0 1.5rem;
}
.fp-split__title em { font-style: italic; color: var(--gold); }
.fp-split__body {
  font-family: var(--body);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: var(--gray-700);
  max-width: 380px;
}
.fp-section--sustain .fp-split__body { color: var(--gray-400); }
.fp-split__visual {
  height: clamp(280px, 52vh, 540px);
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 700px) {
  .fp-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
    height: auto;
    overflow-y: auto;
    align-content: center;
  }
  .fp-split__visual { height: 220px; }
  .fp-statement__title { font-size: clamp(3rem, 15vw, 5.5rem); }
}

/* ----------------------------------------------------------------
   HERO INTRO OVERLAY (transparent, fades with scroll)
   ---------------------------------------------------------------- */
.hero-intro {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: opacity .5s ease, visibility .5s;
  pointer-events: none;
}
.hero-intro.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-intro__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  pointer-events: auto;
}
.hero-intro__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.hero-intro__logo-img {
  height: clamp(70px, 13vw, 120px);
  width: auto;
  filter: drop-shadow(0 2px 24px rgba(197,162,103,.5));
  transition: filter .4s;
}
.hero-intro__logo-text {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  letter-spacing: .32em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  display: none;
}
/* Show text fallback if no logo image */
.hero-intro__logo-img[style*="display: none"] + .hero-intro__logo-text {
  display: block;
}
.hero-intro__nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.hero-intro__nav a {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  text-decoration: none;
  transition: color .2s;
  padding: .25rem 0;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
.hero-intro__nav a:hover {
  color: var(--gold-light);
  border-bottom-color: rgba(197,162,103,.5);
}
.hero-intro__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.45);
  font-family: var(--body);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.hero-intro__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
  animation: hero-scroll-line 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .3; transform: scaleY(.4); }
}

@media (max-width: 600px) {
  .hero-intro__nav { gap: 1rem; font-size: .7rem; }
  .hero-intro__logo-img { height: 64px; }
}

/* ----------------------------------------------------------------
   COLLECTION FULL-PAGE SECTIONS
   ---------------------------------------------------------------- */
.fp-section--collection {
  background: var(--black);
  color: var(--cream);
}
.fp-col {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-col__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 9s linear;
  will-change: transform;
}
.fp-section.fp-revealed .fp-col__bg {
  transform: scale(1.06);
}
.fp-col__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,26,.15) 0%,
    rgba(26,26,26,.65) 60%,
    rgba(26,26,26,.85) 100%
  );
}
.fp-col__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 6vw, 4rem);
  max-width: 640px;
  width: calc(100% - 3rem);

  /* ── Liquid glass card ── */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(28px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.06);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.30),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    inset 1px 0 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

/* Top edge shine line */
.fp-col__content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.9) 50%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Inner shimmer sweep — animated */
.fp-col__content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.10) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  pointer-events: none;
  z-index: 0;
  animation: fpGlareShift 10s ease-in-out infinite alternate;
}

@keyframes fpGlareShift {
  0%   { opacity: 1; }
  50%  { opacity: 0.25; }
  100% { opacity: 1; }
}

/* All inner children above the glass pseudo-layers */
.fp-col__number,
.fp-col__title,
.fp-col__desc,
.fp-col__price,
.fp-col__coming,
.fp-col__content .btn {
  position: relative;
  z-index: 1;
}

.fp-col__number {
  font-family: var(--body);
  font-size: .65rem;
  letter-spacing: .45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .9rem;
  display: block;
  text-shadow: 0 1px 8px rgba(197, 162, 103, 0.4);
}
.fp-col__title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.fp-col__title em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(212, 184, 124, 0.5);
}
.fp-col__desc {
  font-family: var(--body);
  font-size: .97rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}
.fp-col__price {
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.fp-col__coming {
  display: inline-block;
  padding: .5rem 1.5rem;
  border: 1px solid rgba(197, 162, 103, 0.35);
  color: var(--gold);
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* About/sustain: fp-split handles layout now */

@media (max-width: 768px) {
  .fp-section--about .about__inner,
  .fp-section--sustain .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fp-section--about .about__visual,
  .fp-section--sustain .about__visual {
    max-height: 240px;
  }

  /* Collection sections */
  .fp-col__title { font-size: clamp(1.75rem, 7vw, 3rem); }
  .fp-section--collection { padding-top: calc(var(--nav-h) + .5rem); }
  .fp-col__content {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    width: calc(100% - 2.5rem);
  }

  /* Club+Promo: stack vertically, allow scroll if needed */
  .fp-section--club-promo { overflow-y: auto; }
  .fp-club-promo__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    min-height: min-content;
  }
  .fp-club__title { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-top: 0.5rem; }
  .promo-min__title { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .fp-club-promo__divider {
    width: clamp(80px, 40vw, 200px);
    height: 1px;
    background: linear-gradient(to right,
      transparent 0%,
      var(--gray-200) 20%,
      var(--gold) 50%,
      var(--gray-200) 80%,
      transparent 100%);
    justify-self: center;
  }

  /* ── Swarovski-style nav: mobile adjustments ── */
  .nav {
    height: 100px;   /* shorter expanded on mobile */
  }
  .nav.is-scrolled {
    height: 60px;
  }
  .nav__logo--expanded { padding-top: 0.3rem; }
  .nav__logo-display { font-size: 1.35rem; letter-spacing: 0.2em; }

  /* Hide links in expanded state (hamburger menu handles them) */
  .nav__links { display: none; }

  .nav__hamburger { display: flex; }

  .nav:not(.is-scrolled) .nav__actions {
    top: 0.5rem;
    right: 1rem;
  }

  /* Promo slider must stretch to top of screen so the glass nav blurs the image */
  .fp-section--slider {
    padding-top: 0;
    margin-top: 0;
  }
}

/* ── Desktop: hide hamburger, ensure links visible ── */
@media (min-width: 769px) {
  .nav__hamburger { display: none !important; }
  .nav__links { display: flex !important; }

  .fp-section--slider {
    padding-top: 0;
    margin-top: 0;
  }
}
