/* ================================================================
   SHENOVA — luxury.css  (UPGRADED v3)
   Ultra-premium editorial homepage styling
   Cinematic · Immersive · Refined · Aspirational · Emotional
   ================================================================ */

/* ──────────────────────────────────────────────
   DESIGN TOKENS
────────────────────────────────────────────── */
:root {
  --lux-bg:        #f6f3ee;
  --lux-ink:       #0d0c0b;
  --lux-muted:     #7a756e;
  --lux-beige:     #ece6dc;
  --lux-beige-mid: #d9d0c4;
  --lux-gold:      #b8956a;
  --lux-gold-lt:   #d4b896;
  --lux-cream:     #faf7f2;
  --lux-dark:      #131210;
  --lux-line:      rgba(13,12,11,.08);
  --lux-line-lt:   rgba(13,12,11,.05);

  /* Upgraded font stack — DM Sans replaces Inter for more editorial feel */
  --serif:   "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:    "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --ease-lux:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-cin:    cubic-bezier(0.77, 0, 0.175, 1);
}

/* ──────────────────────────────────────────────
   BASE
────────────────────────────────────────────── */
.lux-body {
  background: var(--lux-bg);
  color: var(--lux-ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ──────────────────────────────────────────────
   CUSTOM CURSOR (desktop only)
────────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  

.lux-cursor{
  position:fixed;
  width:34px;
  height:34px;
  border:1px solid rgba(13,12,11,0.55);
  border-radius:50%;
  pointer-events:none;
  z-index:99999;
  transform:translate(-50%,-50%);
  transition:
    width .5s,
    height .5s,
    opacity .3s;

  opacity:0;
}

  .lux-cursor.visible  { opacity: 1; }
  .lux-cursor.hovered  {
    width: 56px; height: 56px;
    background: rgba(184,149,106,0.08);
    border-color: rgba(184,149,106,0.6);
  }

  .lux-cursor-dot {
    position: fixed;
    width: 3px;
    height: 3px;
    background: var(--lux-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .lux-cursor-dot.visible { opacity: 1; }
}

/* ──────────────────────────────────────────────
   SCROLL PROGRESS
────────────────────────────────────────────── */
.lux-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-lt));
  z-index: 9000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ──────────────────────────────────────────────
   LOADER
────────────────────────────────────────────── */
.lux-loader {
  position: fixed;
  inset: 0;
  background: var(--lux-ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.1s var(--ease-lux), visibility 1.1s;
}

.lux-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lux-loader-inner { text-align: center; }

.lux-loader-word {
  display: flex;
  gap: 0;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 300;
  letter-spacing: 0.55em;
  color: var(--lux-cream);
}

.lux-loader-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: loaderLetter 0.9s var(--ease-out) forwards;
}

.lux-loader-word span:nth-child(1) { animation-delay: 0.05s; }
.lux-loader-word span:nth-child(2) { animation-delay: 0.13s; }
.lux-loader-word span:nth-child(3) { animation-delay: 0.21s; }
.lux-loader-word span:nth-child(4) { animation-delay: 0.29s; }
.lux-loader-word span:nth-child(5) { animation-delay: 0.37s; }
.lux-loader-word span:nth-child(6) { animation-delay: 0.45s; }
.lux-loader-word span:nth-child(7) { animation-delay: 0.53s; }

@keyframes loaderLetter {
  to { opacity: 1; transform: translateY(0); }
}

.lux-loader-line {
  width: 1px; height: 0;
  background: var(--lux-gold);
  margin: 22px auto;
  animation: loaderLineGrow 0.9s var(--ease-out) 0.7s forwards;
}

@keyframes loaderLineGrow { to { height: 48px; } }

.lux-loader-sub {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250,247,242,.3);
  opacity: 0;
  animation: loaderFade 0.7s ease 1.2s forwards;
}

@keyframes loaderFade { to { opacity: 1; } }

/* ──────────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────────── */
.lux-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 28px 0;
  transition: padding 0.5s var(--ease-lux),
              background 0.5s var(--ease-lux),
              border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.lux-nav.scrolled {
  padding: 14px 0;
  background: rgba(246,243,238,0.94);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom-color: var(--lux-line);
}

/* Nav over hero — white text */
.lux-nav:not(.scrolled) .nav-link-sm,
.lux-nav:not(.scrolled) .lux-logo,
.lux-nav:not(.scrolled) .lux-icon-btn {
  color: rgba(255,255,255,0.88);
}

.lux-nav:not(.scrolled) .lux-hamburger span {
  background: rgba(255,255,255,0.85);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lux-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  transition: color 0.4s, letter-spacing 0.5s var(--ease-lux);
}

.lux-logo:hover { letter-spacing: 0.68em; }

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link-sm {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  font-weight: 400;
}

.nav-link-sm::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease-lux);
}

.nav-link-sm:hover::after { width: 100%; }

.lux-icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
  position: relative;
  color: inherit;
}

.lux-icon-btn:hover { transform: scale(1.12); }

.lux-cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--lux-gold);
  color: #fff;
  font-size: 9px;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
  letter-spacing: 0;
}

/* Hamburger */
.lux-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 34px;
}

.lux-hamburger span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.45s var(--ease-cin), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.lux-hamburger span:first-child { width: 22px; }
.lux-hamburger span:last-child  { width: 14px; margin-left: auto; }

.lux-hamburger.active span:first-child {
  transform: translateY(3px) rotate(45deg);
  width: 20px; margin-left: 3px;
}

.lux-hamburger.active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
  width: 20px; margin-left: 3px;
}

/* ──────────────────────────────────────────────
   MOBILE MENU
────────────────────────────────────────────── */
.lux-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--lux-ink);
  z-index: 490;
  transform: translateX(100%);
  transition: transform 0.8s var(--ease-cin);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.lux-mobile-menu::before {
  content: 'SHENOVA';
  position: absolute;
  bottom: -30px;
  left: -10px;
  font-family: var(--serif);
  font-size: clamp(80px, 22vw, 160px);
  font-weight: 300;
  color: rgba(250,247,242,0.02);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.lux-mobile-menu.open { transform: translateX(0); }

.lux-mm-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 36px 44px;
  position: relative;
}

.lux-mm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.lux-mm-logo {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(250,247,242,.28);
}

.lux-mm-close-btn {
  display: flex !important;
  color: rgba(250,247,242,.55);
}

.lux-mm-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lux-mm-nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 9.5vw, 62px);
  font-weight: 300;
  color: var(--lux-cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(250,247,242,.06);
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s;
}

.lux-mobile-menu.open .lux-mm-nav a:nth-child(1) { opacity:1; transform:none; transition-delay:0.2s; }
.lux-mobile-menu.open .lux-mm-nav a:nth-child(2) { opacity:1; transform:none; transition-delay:0.28s; }
.lux-mobile-menu.open .lux-mm-nav a:nth-child(3) { opacity:1; transform:none; transition-delay:0.36s; }
.lux-mobile-menu.open .lux-mm-nav a:nth-child(4) { opacity:1; transform:none; transition-delay:0.44s; }
.lux-mobile-menu.open .lux-mm-nav a:nth-child(5) { opacity:1; transform:none; transition-delay:0.52s; }

.lux-mm-nav a:hover { color: var(--lux-gold-lt); }

.lux-mm-nav a span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(250,247,242,.2);
  font-style: normal;
}

.lux-mm-foot {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 40px;
}

.lux-mm-foot p {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,.18);
}

/* ──────────────────────────────────────────────
   HERO — CINEMATIC
────────────────────────────────────────────── */
.lux-hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0a0908;
}

.lux-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.08);
  transition: transform 10s var(--ease-lux);
  will-change: transform;
}

.lux-hero.loaded .lux-hero-bg { transform: scale(1); }

.mobile-hero { display: none; }

/* Layered gradient overlays */
.lux-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10,9,8,0.01) 0%,
    rgba(10,9,8,0.06) 20%,
    rgba(10,9,8,0.38) 58%,
    rgba(10,9,8,0.90) 100%
  );
}

.lux-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 68% 48%,
    transparent 32%,
    rgba(10,9,8,0.42) 100%
  );
}

/* Film grain */
.lux-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 4;
  animation: grainAnim 0.55s steps(2) infinite;
}

@keyframes grainAnim {
  0%  { background-position: 0 0; }
  25% { background-position: -12% 8%; }
  50% { background-position: 8% -6%; }
  75% { background-position: -4% 18%; }
  100%{ background-position: 0 0; }
}

/* Decorative filmstrip lines — left edge */
.lux-hero-filmstrip {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 28px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.lux-hero-filmstrip span {
  flex: 1;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: block;
}

/* Running tape */
.lux-hero-tape {
  position: absolute;
  bottom: 134px;
  left: 0; right: 0;
  overflow: hidden;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  pointer-events: none;
}

.lux-tape-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tapeScroll 22s linear infinite;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.lux-tape-dot { opacity: 0.2; }

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

/* Hero content */
.lux-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 52px 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.lux-hero-text { max-width: 720px; }

/* Eyebrow with gold line */
.lux-eyebrow-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 24px;
  font-weight: 300;
}

.lux-eyebrow-line {
  display: block;
  width: 32px; height: 1px;
  background: var(--lux-gold);
  flex-shrink: 0;
}

/* Hero headline */
.lux-hero-title {
  font-family: var(--serif);
  font-size: clamp(74px, 12.5vw, 162px);
  line-height: 0.89;
  font-weight: 300;
  color: var(--lux-cream);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.lux-hero-line  { display: block; }
.lux-hero-italic { font-style: italic; }

/* Subline */
.lux-hero-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.1em;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.7;
}

/* CTA row */
.lux-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Primary CTA pill */
.lux-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  background: var(--lux-cream);
  color: var(--lux-ink);
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.38s, color 0.38s, gap 0.38s var(--ease-spring), transform 0.32s var(--ease-spring), box-shadow 0.38s;
}

.lux-cta-primary:hover {
  background: var(--lux-gold);
  color: #fff;
  gap: 20px;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,149,106,0.28);
}

/* Dark variant for light backgrounds */
.lux-cta-dark {
  background: var(--lux-ink);
  color: var(--lux-cream);
}

.lux-cta-dark:hover {
  background: var(--lux-gold);
  color: #fff;
}

.lux-cta-arrow {
  display: flex; align-items: center;
  transition: transform 0.38s var(--ease-spring);
}

.lux-cta-primary:hover .lux-cta-arrow { transform: translateX(4px); }

/* Ghost CTA */
.lux-cta-ghost {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
  font-weight: 300;
}

.lux-cta-ghost::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,0.4);
  transition: width 0.42s var(--ease-lux);
}

.lux-cta-ghost:hover { color: rgba(255,255,255,0.95); }
.lux-cta-ghost:hover::after { width: 100%; }

/* Hero stats */
.lux-hero-meta {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding-bottom: 6px;
}

.lux-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.lux-stat-num {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 300;
  color: var(--lux-cream);
  line-height: 1;
}

.lux-stat-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  font-weight: 300;
}

.lux-hero-rule {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 2px;
}

/* Scroll cue */
.lux-scroll-cue {
  position: absolute;
  left: 52px; bottom: 36px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lux-scroll-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}

.lux-scroll-line::after {
  content: '';
  position: absolute;
  top: -48px; left: 0;
  width: 100%; height: 48px;
  background: var(--lux-gold);
  animation: scrollLineSlide 2s var(--ease-lux) infinite;
}

@keyframes scrollLineSlide {
  0%   { top: -48px; }
  60%  { top: 48px; }
  100% { top: 48px; }
}

.lux-scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
  font-weight: 300;
}

/* Edition tag */
.lux-hero-edition-tag {
  position: absolute;
  right: 48px;
  bottom: 52px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lux-hero-edition-tag span {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.3);
}

.lux-edition-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.12);
}

/* ──────────────────────────────────────────────
   HERO REVEAL ANIMATIONS
────────────────────────────────────────────── */
.lux-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.15s var(--ease-out), transform 1.15s var(--ease-out);
}

.lux-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.lux-reveal[data-delay="0"] { transition-delay: 0.08s; }
.lux-reveal[data-delay="1"] { transition-delay: 0.28s; }
.lux-reveal[data-delay="2"] { transition-delay: 0.50s; }
.lux-reveal[data-delay="3"] { transition-delay: 0.66s; }
.lux-reveal[data-delay="4"] { transition-delay: 0.82s; }
.lux-reveal[data-delay="5"] { transition-delay: 0.98s; }

/* ──────────────────────────────────────────────
   MARQUEE STRIP
────────────────────────────────────────────── */
.lux-marquee-strip {
  background: var(--lux-ink);
  overflow: hidden;
  padding: 14px 0;
  user-select: none;
}

.lux-marquee-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 34s linear infinite;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(250,247,242,.36);
  font-weight: 300;
}

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

.lux-dot {
  font-size: 6px;
  color: var(--lux-gold);
  opacity: 0.7;
  vertical-align: middle;
}

/* ──────────────────────────────────────────────
   PHILOSOPHY STRIP
────────────────────────────────────────────── */
.lux-philosophy-strip {
  background: var(--lux-cream);
  border-bottom: 1px solid var(--lux-line);
}

.lux-philosophy-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  min-height: 100px;
}

.lux-philo-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 30px 0;
  align-items: center;
  text-align: center;
}

.lux-philo-num {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 300;
  color: var(--lux-gold);
  letter-spacing: 0.18em;
}

.lux-philo-text {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-ink);
  font-weight: 400;
}

.lux-philo-sep {
  width: 1px;
  height: 40px;
  background: var(--lux-line);
}

/* ──────────────────────────────────────────────
   SECTION SHARED
────────────────────────────────────────────── */
.lux-section { padding: 116px 0; }

.lux-sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 68px;
  flex-wrap: wrap;
  gap: 16px;
}

.lux-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lux-muted);
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
}

.lux-sec-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.012em;
}

.lux-sec-title em { font-style: italic; color: var(--lux-gold); }

.lux-sec-link {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lux-muted);
  transition: color 0.3s;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--lux-beige-mid);
  font-weight: 400;
}

.lux-sec-link:hover { color: var(--lux-ink); border-color: var(--lux-ink); }

/* Scroll reveal */
.s-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.05s var(--ease-out), transform 1.05s var(--ease-out);
}

.s-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────
   PRODUCT GRID — EDITORIAL
────────────────────────────────────────────── */
.lux-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}

.lux-product-grid .product-card,
.lux-product-grid .card {
  position: relative;
  cursor: pointer;
}

.lux-product-grid .product-image,
.lux-product-grid .card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--lux-beige);
  border-radius: 2px;
}

.lux-product-grid .product-image img,
.lux-product-grid .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s;
}

.lux-product-grid .product-card:hover .product-image img:first-child,
.lux-product-grid .card:hover .card-img .main-img {
  transform: scale(1.07);
}

.lux-product-grid .hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s var(--ease-lux);
  object-fit: cover;
  width: 100%; height: 100%;
}

.lux-product-grid .product-card:hover .hover-img { opacity: 1; }

.lux-product-grid .quick-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(250,247,242,0.96);
  color: var(--lux-ink);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s, transform 0.4s var(--ease-spring), background 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 400;
}

.lux-product-grid .product-card:hover .quick-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lux-product-grid .quick-btn:hover {
  background: var(--lux-ink);
  color: #fff;
}

.lux-product-grid .product-info,
.lux-product-grid .card-info {
  padding: 16px 2px 4px;
}

.lux-product-grid .product-title,
.lux-product-grid .card-info h3 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--lux-ink);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-product-grid .product-price,
.lux-product-grid .card-info .price {
  font-size: 13px;
  color: var(--lux-muted);
  letter-spacing: 0.02em;
}

/* ──────────────────────────────────────────────
   EDITORIAL SPLIT
────────────────────────────────────────────── */
.lux-editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.lux-split-image {
  position: relative;
  overflow: hidden;
}

.lux-split-image img {
  width: 100%; height: 100%;
  object-fit: fill;
  display: block;
  transition: transform 10s var(--ease-lux);
}

.lux-split-image:hover img { transform: scale(1.045); }

.lux-split-badge {
  position: absolute;
  top: 28px; left: 28px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lux-cream);
  background: rgba(13,12,11,0.36);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 300;
}

.lux-split-text {
  background: var(--lux-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 8vw, 128px) clamp(44px, 6vw, 108px);
}

.lux-split-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 90px);
  font-weight: 300;
  line-height: 1.02;
  margin: 14px 0 30px;
  letter-spacing: -0.018em;
}

.lux-split-title em { font-style: italic; color: var(--lux-gold); }

.lux-split-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--lux-muted);
  max-width: 390px;
  margin-bottom: 40px;
  font-weight: 300;
}

.lux-link-underline {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lux-ink);
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  transition: color 0.3s, letter-spacing 0.42s var(--ease-lux);
  font-weight: 400;
}

.lux-link-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--lux-ink);
  transform-origin: right;
  transition: transform 0.52s var(--ease-lux);
}

.lux-link-underline:hover { letter-spacing: 0.38em; }
.lux-link-underline:hover::after { transform-origin: left; }

/* ──────────────────────────────────────────────
   CINEMATIC FULL-WIDTH BREAK
────────────────────────────────────────────── */
.lux-cinematic-break {
  position: relative;
  height: clamp(380px, 65vh, 700px);
  overflow: hidden;
}

.lux-cinematic-img {
  position: relative;
  width: 100%; height: 100%;
}

.lux-cinematic-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 12s var(--ease-lux);
}

.lux-cinematic-break.in .lux-cinematic-img img {
  transform: scale(1.07);
}

.lux-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,9,8,0.7) 0%,
    rgba(10,9,8,0.16) 55%,
    rgba(10,9,8,0.44) 100%
  );
}

.lux-cinematic-caption {
  position: absolute;
  bottom: 56px;
  left: clamp(36px, 5.5vw, 96px);
  z-index: 2;
  max-width: 660px;
}

.lux-cinematic-caption p {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  font-style: italic;
  color: var(--lux-cream);
  line-height: 1.28;
  margin-top: 10px;
}

.lux-cinematic-counter {
  position: absolute;
  right: 48px; bottom: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lux-cinematic-counter span {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.36);
}

.lux-counter-line {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.18);
}

/* ──────────────────────────────────────────────
   THREE-PANEL EDITORIAL (NEW)
────────────────────────────────────────────── */
.lux-three-panel {
  background: var(--lux-bg);
  padding: 100px 0;
  overflow: hidden;
}

.lux-three-panel-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 40px;
  align-items: center;
}

.lux-tp-col { display: flex; flex-direction: column; }

.lux-tp-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  background: var(--lux-beige);
}

.lux-tp-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.lux-tp-col:hover .lux-tp-img-wrap img { transform: scale(1.05); }

.lux-tp-img-offset {
  margin-top: 60px;
}

.lux-tp-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px 0;
}

.lux-tp-caption p {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-muted);
  font-weight: 400;
}

.lux-tp-caption--right {
  justify-content: flex-end;
  gap: 16px;
}

.lux-tp-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--lux-beige-mid);
  line-height: 1;
}

/* Center column text */
.lux-tp-center-text {
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.lux-tp-rule {
  display: block;
  width: 1px;
  height: 44px;
  background: var(--lux-gold);
  margin: 0 auto 28px;
}

.lux-tp-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 70px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 10px 0 22px;
}

.lux-tp-title em { font-style: italic; color: var(--lux-gold); }

.lux-tp-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--lux-muted);
  max-width: 280px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* ──────────────────────────────────────────────
   DUAL EDITORIAL PANEL
────────────────────────────────────────────── */
.lux-dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--lux-bg);
}

.lux-dual-left {
  position: relative;
  overflow: hidden;
}

.lux-dual-img-wrap {
  position: relative;
  width: 100%; height: 100%;
  min-height: 560px;
}

.lux-dual-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 11s var(--ease-lux);
}

.lux-dual-left:hover .lux-dual-img-wrap img { transform: scale(1.04); }

.lux-dual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10,9,8,0.42) 100%);
}

.lux-dual-caption-top {
  position: absolute;
  top: 28px; left: 28px;
}

.lux-dual-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.lux-dual-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 104px) clamp(40px, 5.5vw, 88px);
  background: var(--lux-cream);
}

.lux-dual-title {
  font-family: var(--serif);
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.04;
  margin: 12px 0 24px;
  letter-spacing: -0.016em;
}

.lux-dual-title em { font-style: italic; color: var(--lux-gold); }

.lux-dual-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--lux-muted);
  max-width: 360px;
  font-weight: 300;
}

.lux-dual-img2-wrap {
  position: relative;
  overflow: hidden;
}

.lux-dual-img2-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 11s var(--ease-lux);
}

.lux-dual-img2-wrap:hover img { transform: scale(1.04); }

/* ──────────────────────────────────────────────
   HORIZONTAL SCROLL GALLERY
────────────────────────────────────────────── */
.lux-hscroll-section { padding-bottom: 0; }

.lux-hscroll-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 52px 68px;
  cursor: grab;
}

.lux-hscroll-track-wrap::-webkit-scrollbar { display: none; }
.lux-hscroll-track-wrap:active { cursor: grabbing; }

.lux-hscroll-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.lux-hcard {
  width: clamp(220px, 27vw, 340px);
  flex-shrink: 0;
  cursor: pointer;
}

.lux-hcard-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--lux-beige);
  margin-bottom: 16px;
}

.lux-hcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.lux-hcard:hover .lux-hcard-img img { transform: scale(1.06); }

.lux-hcard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}

.lux-hcard-meta span:first-child {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--lux-beige-mid);
  line-height: 1;
}

.lux-hcard-meta span:last-child {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-muted);
  font-weight: 400;
}

/* ──────────────────────────────────────────────
   BRAND MANIFESTO
────────────────────────────────────────────── */
.lux-manifesto {
  background: var(--lux-ink);
  padding: clamp(96px, 14vw, 180px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lux-manifesto::before {
  content: '';
  position: absolute;
  top: -1px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

.lux-manifesto::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(184,149,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lux-manifesto-inner {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lux-manifesto-ornament {
  font-family: var(--serif);
  font-size: clamp(90px, 15vw, 170px);
  line-height: 0.65;
  color: var(--lux-gold);
  opacity: 0.18;
  margin-bottom: -24px;
  user-select: none;
  display: block;
}

.lux-manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.28;
  color: var(--lux-cream);
  letter-spacing: -0.01em;
  margin-bottom: 38px;
}

.lux-manifesto-rule {
  width: 36px; height: 1px;
  background: var(--lux-gold);
  margin: 0 auto 22px;
}

.lux-manifesto-credit {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.24);
  margin-bottom: 52px;
  font-weight: 300;
}

.lux-cta-manifesto {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 1px solid rgba(250,247,242,0.16);
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.65);
  transition: background 0.42s, color 0.42s, border-color 0.42s, transform 0.32s var(--ease-spring);
  font-weight: 300;
}

.lux-cta-manifesto:hover {
  background: var(--lux-gold);
  color: #fff;
  border-color: var(--lux-gold);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────
   CATEGORY SHOWCASE
────────────────────────────────────────────── */
.lux-category-section { background: var(--lux-cream); }

.lux-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.lux-cat-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.lux-cat-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--lux-beige);
  position: relative;
}

.lux-cat-card--tall .lux-cat-img { aspect-ratio: 2/3; }

.lux-cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.lux-cat-card:hover .lux-cat-img img { transform: scale(1.06); }

.lux-cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 52px 22px 24px;
  background: linear-gradient(0deg, rgba(10,9,8,0.72) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--lux-cream);
}

.lux-cat-label span {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
}

.lux-cat-label svg {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.35s, transform 0.42s var(--ease-spring);
}

.lux-cat-card:hover .lux-cat-label svg { opacity: 1; transform: translateX(0); }

/* ──────────────────────────────────────────────
   ATELIER PROMISE STRIP (NEW)
────────────────────────────────────────────── */
.lux-atelier-strip {
  background: var(--lux-bg);
  border-top: 1px solid var(--lux-line);
  border-bottom: 1px solid var(--lux-line);
}

.lux-atelier-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  min-height: 110px;
}

.lux-atelier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 40px 20px;
}

.lux-atelier-icon {
  color: var(--lux-gold);
  margin-bottom: 2px;
  opacity: 0.8;
}

.lux-atelier-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lux-ink);
  font-weight: 400;
}

.lux-atelier-item p {
  font-size: 12.5px;
  color: var(--lux-muted);
  line-height: 1.65;
  max-width: 220px;
  font-weight: 300;
}

.lux-atelier-rule {
  width: 1px;
  height: 44px;
  background: var(--lux-line);
}

/* ──────────────────────────────────────────────
   REVIEWS
────────────────────────────────────────────── */
.lux-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.lux-review {
  padding: 42px 36px;
  border: 1px solid var(--lux-line);
  border-radius: 2px;
  background: var(--lux-cream);
  transition: box-shadow 0.42s, transform 0.42s var(--ease-lux);
}

.lux-review:hover {
  box-shadow: 0 12px 52px rgba(13,12,11,0.07);
  transform: translateY(-5px);
}

.lux-review-featured {
  background: var(--lux-ink);
  border-color: transparent;
  transform: scale(1.025);
}

.lux-review-featured:hover {
  transform: scale(1.025) translateY(-5px);
}

.lux-review-stars {
  color: var(--lux-gold);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.lux-review p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.68;
  margin-bottom: 24px;
  color: var(--lux-ink);
}

.lux-review-featured p { color: rgba(250,247,242,0.88); }

.lux-review-who {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lux-muted);
  font-weight: 400;
}

.lux-review-featured .lux-review-who { color: rgba(250,247,242,0.28); }

/* ──────────────────────────────────────────────
   INSTAGRAM GRID
────────────────────────────────────────────── */
.lux-insta-section { overflow: hidden; }

.lux-insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.lux-insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lux-beige);
  cursor: pointer;
}

.lux-insta-item.lux-insta-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.lux-insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.15s var(--ease-lux), filter 0.42s;
}

.lux-insta-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.80);
}

.lux-insta-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}

.lux-insta-item:hover .lux-insta-hover { opacity: 1; }

.lux-insta-hover span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(13,12,11,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 9px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 300;
}

/* ──────────────────────────────────────────────
   NEWSLETTER
────────────────────────────────────────────── */
.lux-newsletter-section {
  background: var(--lux-ink);
  padding: clamp(96px, 13vw, 156px) 24px;
  position: relative;
  overflow: hidden;
}

.lux-newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, var(--lux-gold), transparent);
}

.lux-newsletter-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 450px;
  background: radial-gradient(ellipse, rgba(184,149,106,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.lux-newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lux-newsletter-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--lux-cream);
  line-height: 1.06;
  margin: 14px 0 18px;
}

.lux-newsletter-title em { font-style: italic; color: var(--lux-gold-lt); }

.lux-newsletter-inner > p {
  font-size: 14px;
  color: rgba(250,247,242,0.38);
  margin-bottom: 46px;
  line-height: 1.75;
  font-weight: 300;
}

.lux-newsletter-form {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(250,247,242,0.16);
  max-width: 480px;
  margin: 0 auto 16px;
  transition: border-color 0.3s;
}

.lux-newsletter-form:focus-within { border-color: var(--lux-gold); }

.lux-email-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--lux-cream);
  padding: 16px 0;
  font-size: 14px;
  outline: none;
  font-family: var(--sans);
  font-weight: 300;
}

.lux-email-input::placeholder { color: rgba(250,247,242,0.24); }

.lux-newsletter-btn {
  padding: 16px 22px;
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  font-family: var(--sans);
  transition: color 0.3s;
  background: none; border: none;
  font-weight: 400;
}

.lux-newsletter-btn:hover { color: var(--lux-gold-lt); }

.lux-newsletter-note {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.15);
  font-weight: 300;
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.lux-footer {
  background: #0a0908;
  color: rgba(250,247,242,0.4);
  padding: 88px 0 0;
}

.lux-footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 60px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 48px 64px;
  border-bottom: 1px solid rgba(250,247,242,0.05);
}

.lux-footer-logo {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.48em;
  color: var(--lux-cream);
  margin-bottom: 18px;
}

.lux-footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 26px;
  font-weight: 300;
}

.lux-social-pill {
  display: inline-flex;
  padding: 9px 22px;
  border: 1px solid rgba(250,247,242,0.09);
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  transition: border-color 0.3s, color 0.3s;
  font-weight: 300;
}

.lux-social-pill:hover { border-color: var(--lux-gold); color: var(--lux-gold); }

.lux-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lux-footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.24);
  margin-bottom: 20px;
  font-weight: 400;
}

.lux-footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(250,247,242,0.40);
  padding: 6px 0;
  transition: color 0.25s;
  font-weight: 300;
}

.lux-footer-col a:hover { color: rgba(250,247,242,0.88); }

.lux-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  font-size: 11px;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1420px;
  margin: 0 auto;
  font-weight: 300;
}

.lux-footer-legal { display: flex; gap: 24px; }

.lux-footer-legal a {
  color: rgba(250,247,242,0.24);
  font-size: 11px;
  transition: color 0.25s;
}

.lux-footer-legal a:hover { color: rgba(250,247,242,0.65); }

/* ──────────────────────────────────────────────
   TOAST NOTIFICATION
────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--lux-ink);
  color: var(--lux-cream);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0;
  pointer-events: none;
  z-index: 9000;
  transition: opacity 0.4s, transform 0.4s var(--ease-spring);
  white-space: nowrap;
  border: 1px solid rgba(250,247,242,0.09);
  font-weight: 300;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ──────────────────────────────────────────────
   PAGE TRANSITIONS
────────────────────────────────────────────── */
.page-out {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux);
}

.page-in {
  animation: pageEnter 0.65s var(--ease-out) forwards;
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

body.menu-open { overflow: hidden; }

/* ──────────────────────────────────────────────
   RESPONSIVE — TABLET (max 1100px)
────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lux-product-grid { grid-template-columns: repeat(3, 1fr); }

  .lux-dual-panel { grid-template-columns: 1fr; }
  .lux-dual-right { grid-template-rows: auto; }
  .lux-dual-img-wrap { min-height: 480px; }

  .lux-philosophy-inner {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }

  .lux-atelier-inner {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }

  .lux-three-panel-inner {
    grid-template-columns: 1fr 1fr;
  }

  .lux-tp-col--center {
    grid-column: 1 / -1;
    order: -1;
  }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — MOBILE (max 768px)
────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Show mobile hero, hide desktop */
  .desktop-hero { display: none; }
  .mobile-hero  { display: block; }

  .lux-hero-filmstrip { display: none; }

  /* Show hamburger */
  .lux-hamburger { display: flex; }

  /* Hide desktop nav links */
  .nav-left { display: none; }
  .nav-right .nav-link-sm { display: none; }
  .nav-right { gap: 10px; }

  /* Hero */
  .lux-hero-content { padding: 0 24px 68px; flex-direction: column; align-items: flex-start; gap: 28px; }
  .lux-hero-title { font-size: clamp(60px, 15vw, 90px); }
  .lux-hero-meta { display: none; }
  .lux-scroll-cue { display: none; }
  .lux-hero-edition-tag { display: none; }
  .lux-hero-tape { bottom: 106px; }

  /* Philosophy strip */
  .lux-philosophy-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 24px;
  }
  .lux-philo-sep { width: 40px; height: 1px; margin: 0; }
  .lux-philo-item { padding: 16px 0; flex-direction: row; gap: 14px; justify-content: flex-start; text-align: left; }

  /* Sections */
  .lux-section { padding: 72px 0; }
  .lux-sec-header { margin-bottom: 48px; }

  /* Products */
  .lux-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .lux-products-section .container { padding: 0 16px; }

  /* Editorial split */
  .lux-editorial-split { grid-template-columns: 1fr; }
  .lux-split-image { aspect-ratio: 4/3; }
  .lux-split-text { padding: 44px 24px 52px; }

  /* Cinematic break */
  .lux-cinematic-break { height: clamp(280px, 55vw, 440px); }
  .lux-cinematic-counter { display: none; }

  /* Three panel */
  .lux-three-panel { padding: 64px 0; }
  .lux-three-panel-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .lux-tp-img-offset { margin-top: 0; }
  .lux-tp-col--center { order: -1; }
  .lux-tp-center-text { padding: 0; }

  /* Dual panel */
  .lux-dual-panel { grid-template-columns: 1fr; min-height: auto; }
  .lux-dual-img-wrap { min-height: 400px; }
  .lux-dual-right { display: flex; flex-direction: column; }
  .lux-dual-text-block { padding: 44px 24px 48px; }
  .lux-dual-img2-wrap { aspect-ratio: 4/3; }

  /* Hscroll */
  .lux-hscroll-track-wrap { padding: 0 16px 52px; }

  /* Manifesto */
  .lux-manifesto { padding: 72px 24px; }

  /* Atelier strip */
  .lux-atelier-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .lux-atelier-rule { width: 40px; height: 1px; }
  .lux-atelier-item { padding: 20px 0; flex-direction: row; align-items: flex-start; gap: 16px; text-align: left; }
  .lux-atelier-item p { max-width: 100%; }

  /* Category */
  .lux-cat-grid { grid-template-columns: 1fr 1fr; }
  .lux-cat-card--tall { grid-column: span 2; }
  .lux-cat-card--tall .lux-cat-img { aspect-ratio: 16/9; }
  .lux-category-section .container { padding: 0 16px; }

  /* Reviews */
  .lux-reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .lux-review-featured { transform: none; }

  /* Instagram */
  .lux-insta-grid { grid-template-columns: repeat(3, 1fr); }
  .lux-insta-item.lux-insta-tall { grid-row: span 1; aspect-ratio: 1; }

  /* Newsletter */
  .lux-newsletter-section { padding: 72px 24px; }

  /* Footer */
  .lux-footer-top { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 48px; }
  .lux-footer-bottom { padding: 20px 24px; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (max 480px)
────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero */
  .lux-hero-title { font-size: clamp(50px, 13.5vw, 72px); }
  .lux-hero-sub { font-size: 12px; }
  .lux-hero-content { padding: 0 20px 56px; }
  .lux-hero-tape { bottom: 86px; }
  .lux-cta-primary { padding: 13px 22px; font-size: 9px; letter-spacing: 0.22em; }
  .lux-hero-actions { gap: 18px; }

  .lux-eyebrow-hero { font-size: 9px; }

  /* Sections */
  .lux-section { padding: 56px 0; }
  .lux-sec-header { margin-bottom: 36px; }
  .lux-sec-title { font-size: 32px; }

  /* Philosophy */
  .lux-philosophy-inner { padding: 0 20px; }

  /* Products */
  .lux-product-grid { gap: 14px 10px; }

  /* Split */
  .lux-split-title { font-size: 38px; }
  .lux-split-text { padding: 36px 20px 44px; }

  /* Three panel */
  .lux-three-panel-inner { padding: 0 20px; }
  .lux-tp-title { font-size: 36px; }

  /* Dual panel */
  .lux-dual-title { font-size: 36px; }
  .lux-dual-text-block { padding: 36px 20px 40px; }
  .lux-dual-body { max-width: 100%; }

  /* Manifesto */
  .lux-manifesto { padding: 64px 20px; }
  .lux-manifesto-quote { font-size: 24px; }

  /* Category */
  .lux-cat-grid { grid-template-columns: 1fr; }
  .lux-cat-card--tall { grid-column: auto; }
  .lux-cat-card--tall .lux-cat-img { aspect-ratio: 3/4; }

  /* Reviews */
  .lux-review { padding: 30px 24px; }

  /* Instagram */
  .lux-insta-grid { grid-template-columns: repeat(2, 1fr); }

  /* Newsletter */
  .lux-newsletter-title { font-size: 32px; }
  .lux-newsletter-form { flex-direction: column; border: none; gap: 0; }
  .lux-email-input { border-bottom: 1px solid rgba(250,247,242,.16); text-align: center; padding: 14px 0; }
  .lux-newsletter-btn { padding: 14px; }

  /* Footer */
  .lux-footer-top { padding: 0 20px 40px; }
  .lux-footer-bottom { padding: 18px 20px; flex-direction: column; text-align: center; }
  .lux-footer-nav { grid-template-columns: repeat(2, 1fr); }
  .lux-footer-legal { gap: 16px; }

  /* Atelier */
  .lux-atelier-inner { padding: 0 20px; }
}

/* ──────────────────────────────────────────────
   DESKTOP WIDE (min 1200px)
────────────────────────────────────────────── */
@media (min-width: 1200px) {
  .lux-product-grid { grid-template-columns: repeat(4, 1fr); }
  .lux-sec-title { font-size: 66px; }
}

/* ──────────────────────────────────────────────
   SPIN WHEEL / COUPON — from style.css
────────────────────────────────────────────── */

.lux-cursor,
.lux-cursor-dot{
  display:none !important;
}