/* ═══════════════════════════════════════════════════════════
   SAPAMINA — Haute Couture Made in Sénégal
   V2: Spectacular Animations · Luxury · Immersive
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d0d0d0;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #333333;
  --whatsapp: #25D366;
  --gold: #c9a96e;

  --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-body: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;

  --header-h: 70px;
  --mobile-nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); font-size: 16px; }
::selection { background: var(--black); color: var(--white); }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Custom Cursor Dot (desktop) ────────────────────────── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease-out), opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--white);
}

/* ── Loader ─────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: clip-path 1.2s var(--ease-in-out);
  clip-path: inset(0 0 0 0);
}
.loader.hidden {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-logo {
  width: 100px;
  margin: 0 auto 30px;
  filter: brightness(0) invert(1);
  animation: loaderPulse 1.5s var(--ease-in-out) infinite;
}
.loader-bar {
  width: 140px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1px;
}
.loader-progress {
  width: 0%;
  height: 100%;
  background: var(--white);
  animation: loaderBar 1.8s var(--ease-out) forwards;
}
.loader-text {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: loaderTextFade 1.8s var(--ease-in-out) infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.96); }
}
@keyframes loaderBar {
  0% { width: 0%; }
  60% { width: 80%; }
  100% { width: 100%; }
}
@keyframes loaderTextFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.5s var(--ease-out), background 0.4s;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
}
.header.hidden-up {
  transform: translateY(-100%);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
}
.header-logo { position: absolute; left: 50%; transform: translateX(-50%); }
.logo-img { height: 36px; width: auto; transition: transform 0.3s var(--ease-out); filter: brightness(0); }
.header-logo:hover .logo-img { transform: scale(1.05); }

.desktop-nav {
  display: flex;
  gap: 40px;
  position: absolute;
}
.desktop-nav-left { left: 40px; }
.desktop-nav-right { right: 40px; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out), left 0.5s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
  left: 0;
}

/* ── Mobile Bottom Nav ──────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--mobile-nav-h);
  padding-bottom: var(--safe-bottom);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: var(--gray-400);
  transition: color 0.3s, transform 0.3s var(--ease-elastic);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-item svg {
  width: 22px;
  height: 22px;
  transition: transform 0.4s var(--ease-elastic);
}
.mobile-nav-item span {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mobile-nav-item.active { color: var(--gold); }
.mobile-nav-item.active svg { transform: scale(1.15) translateY(-2px); }

/* ── App Content ────────────────────────────────────────── */
.app-content {
  min-height: 100vh;
  padding-top: var(--header-h);
}

/* ── Page Transitions ───────────────────────────────────── */
.page-enter {
  animation: pageEnter 0.7s var(--ease-out) forwards;
}
.page-exit {
  animation: pageExit 0.35s var(--ease-out) forwards;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(30px) scale(0.99); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes pageExit {
  from { opacity: 1; filter: blur(0); }
  to { opacity: 0; filter: blur(6px); }
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

/* Fade up (default) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Clip reveal (wipe from left) */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-in-out);
}
.reveal-clip.visible {
  clip-path: inset(0 0 0 0);
}

/* Clip reveal from bottom */
.reveal-clip-up {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s var(--ease-in-out);
}
.reveal-clip-up.visible {
  clip-path: inset(0 0 0 0);
}

/* Rotate in */
.reveal-rotate {
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-rotate.visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* Delay variants */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── Text Split Animation ───────────────────────────────── */
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(8deg);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.split-text.visible .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ── Shimmer Text ───────────────────────────────────────── */
.shimmer-text {
  background: linear-gradient(
    120deg,
    var(--black) 0%,
    var(--black) 40%,
    var(--gold) 50%,
    var(--black) 60%,
    var(--black) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s var(--ease-in-out) infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Other Collections (under featured) ────────────────── */
.other-collections {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.other-collections-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  margin-bottom: 30px;
}
.other-collections-scroll {
  gap: 20px;
  padding: 0 40px 16px;
}
.other-col-card {
  flex: 0 0 260px;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}
.other-col-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 14px;
}
.other-col-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.other-col-card:hover .other-col-img-wrap img {
  transform: scale(1.08);
}
.other-col-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.other-col-count {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ── Marquee ────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 4px;
  color: var(--gray-400);
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-item .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 20px;
  vertical-align: middle;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Floating Decoration ────────────────────────────────── */
.float-element {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ── Parallax Section ───────────────────────────────────── */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════
   HERO / BANNER
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: var(--black);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 10s ease-out;
}
.hero-slide.active img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.02) 40%,
    rgba(0,0,0,0.5) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 100px;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: 16px;
  color: var(--white);
  text-transform: uppercase;
  overflow: hidden;
}
.hero-brand .char {
  display: inline-block;
  animation: heroCharIn 0.8s var(--ease-out) both;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(9px, 1.2vw, 12px);
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--gold);
  margin-top: 16px;
  text-transform: uppercase;
  animation: heroFadeUp 1s var(--ease-out) 1.2s both;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: heroFadeUp 1s var(--ease-out) 1.6s both;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--white));
  animation: scrollLine 2.5s var(--ease-in-out) infinite;
}

/* Hero slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 8px;
  animation: heroFadeUp 1s var(--ease-out) 1.4s both;
}
.hero-indicator {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.4s, width 0.4s var(--ease-out);
}
.hero-indicator.active {
  width: 40px;
  background: var(--white);
}

@keyframes heroCharIn {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0% { top: -60%; }
  100% { top: 100%; }
}

/* ── Section Layout ─────────────────────────────────────── */
.section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.15;
}
.section-divider {
  width: 40px;
  height: 1px;
  background: var(--black);
  margin: 28px auto;
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.section-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── Featured Collection (Home) ─────────────────────────── */
.featured-section {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.featured-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-300), transparent);
}
.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.featured-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
  white-space: pre-line;
}
.featured-triangle {
  display: block;
  text-align: center;
  font-size: 20px;
  letter-spacing: 20px;
  margin: 24px 0;
  color: var(--gold);
}

/* ── Horizontal Scroll Container ────────────────────────── */
.hscroll-container { position: relative; }
.hscroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 40px 30px;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* ── Collection Cards ───────────────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--gray-100);
}
.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.collection-card:hover .collection-card-img,
.collection-card:active .collection-card-img {
  transform: scale(1.08);
}
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background 0.5s;
}
.collection-card:hover .collection-card-overlay,
.collection-card:active .collection-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%);
}
.collection-card-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.5s var(--ease-out);
}
.collection-card:hover .collection-card-name,
.collection-card:active .collection-card-name {
  transform: translateY(0);
}
.collection-card-count {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 10px;
  text-transform: uppercase;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out) 0.05s, opacity 0.5s var(--ease-out) 0.05s;
}
.collection-card:hover .collection-card-count,
.collection-card:active .collection-card-count {
  transform: translateY(0);
  opacity: 1;
}
.collection-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px) rotate(-45deg);
  transition: opacity 0.5s, transform 0.5s var(--ease-out);
}
.collection-card:hover .collection-card-arrow {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

/* ── Model Cards ────────────────────────────────────────── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.model-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.model-card:hover,
.model-card:active {
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
  transform: translateY(-4px);
}
.model-card-img-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.model-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.model-card:hover .model-card-img,
.model-card:active .model-card-img {
  transform: scale(1.06);
}
.model-card-info { padding: 18px 4px; }
.model-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}
.model-card-cta {
  position: absolute;
  bottom: 76px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  opacity: 0;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  padding: 14px 32px;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  white-space: nowrap;
}
.model-card:hover .model-card-cta {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Horizontal model card (mobile) */
.model-card-h {
  flex: 0 0 200px;
  scroll-snap-align: start;
  cursor: pointer;
}
.model-card-h .model-card-img-wrapper {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
}
.model-card-h .model-card-img {
  transition: transform 0.7s var(--ease-out);
}
.model-card-h:hover .model-card-img {
  transform: scale(1.05);
}
.model-card-h .model-card-name {
  font-size: 13px;
  margin-top: 10px;
}

/* ── 3D Tilt on Cards ───────────────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.4s var(--ease-out);
}

/* ── Model Detail Page ──────────────────────────────────── */
.model-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
}
.model-gallery {
  position: relative;
  background: var(--gray-100);
  overflow: hidden;
}
.model-gallery-main {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: opacity 0.6s var(--ease-out);
}
.model-gallery-thumbs {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
}
.model-gallery-thumb {
  width: 50px;
  height: 65px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.model-gallery-thumb.active { opacity: 1; border-color: var(--white); }
.model-gallery-thumb:hover { transform: scale(1.05); }

.model-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.model-info-collection {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.model-info-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.model-info-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 40px;
}
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 20px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.btn-order:hover {
  border-color: var(--gold);
}
.btn-order::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}
.btn-order:hover::before { transform: translateX(0); }
.btn-order:hover { transform: translateY(-2px); }
.btn-order span, .btn-order svg { position: relative; z-index: 1; }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 40px;
  transition: color 0.3s, gap 0.3s;
  cursor: pointer;
  background: none;
  border: none;
}
.btn-back:hover { color: var(--black); gap: 12px; }

/* ── Order Modal ────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal.open { pointer-events: auto; opacity: 1; visibility: visible; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}
.modal-content {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
}
.modal.open .modal-content { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--gray-400);
  transition: color 0.3s, transform 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-close:hover { color: var(--black); transform: rotate(90deg); }
.modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.order-model-info {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

/* ── Form ───────────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
  transition: border-color 0.4s, box-shadow 0.4s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

.btn-whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--whatsapp);
  padding: 18px;
  margin-top: 8px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}
.btn-whatsapp:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

/* ── Home Stats Bar ─────────────────────────────────────── */
.home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.home-stat {
  padding: 50px 20px;
  position: relative;
}
.home-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.home-stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.home-stat-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── Home CTA Banner ───────────────────────────────────── */
.home-cta {
  position: relative;
  padding: 120px 40px;
  background: var(--off-white);
  text-align: center;
  overflow: hidden;
}
.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/assets/motif/motif.svg) center/150px repeat;
  opacity: 0.03;
}
.home-cta-subtitle {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.home-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 30px;
}
.home-cta-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ── Collections Preview (Home) ────────────────────────── */
.home-collections-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.home-preview-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.home-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.home-preview-card:hover img,
.home-preview-card:active img { transform: scale(1.1); }
.home-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s;
}
.home-preview-card:hover .home-preview-overlay,
.home-preview-card:active .home-preview-overlay { opacity: 1; }
.home-preview-name {
  transform: translateY(10px);
  transition: transform 0.5s var(--ease-out);
}
.home-preview-card:hover .home-preview-name,
.home-preview-card:active .home-preview-name { transform: translateY(0); }
.home-preview-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 6px;
}
.home-preview-count {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
}

/* ── Reels Section ──────────────────────────────────────── */
.reels-section {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.reels-section .section-label { color: rgba(255,255,255,0.35); }
.reels-section .section-title { color: var(--white); }
.reels-section .section-divider { background: rgba(255,255,255,0.2); }
.reels-section .section-divider::after { background: var(--gold); }

.videos-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 40px 20px;
}
.videos-grid::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) {
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    gap: 20px;
    padding: 0 40px;
  }
}

.video-card {
  flex: 0 0 75vw;
  max-width: 320px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  aspect-ratio: 9/16;
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
@media (min-width: 1024px) {
  .video-card {
    flex: none;
    max-width: none;
  }
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 1;
  transition: opacity 0.4s;
  pointer-events: none;
}
.video-card.playing .video-card-play {
  opacity: 0;
}
.video-card-play svg {
  width: 50px;
  height: 50px;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* ── Music Player ───────────────────────────────────────── */
.music-toggle {
  position: fixed;
  bottom: 100px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.music-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.music-toggle svg { width: 18px; height: 18px; display: none; }
.music-play-icon { display: none !important; }
.music-pause-icon { display: none !important; }
.music-toggle.paused .music-bars { display: none; }
.music-toggle.paused .music-play-icon { display: block !important; }
.music-toggle:not(.paused) .music-bars { display: flex; }
.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}
.music-bars span {
  display: block;
  width: 2px;
  background: var(--white);
  border-radius: 1px;
  animation: musicBar 0.8s ease-in-out infinite alternate;
}
.music-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.music-bars span:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.music-bars span:nth-child(4) { height: 90%; animation-delay: 0.1s; }
.music-toggle.paused .music-bars span {
  animation: none;
  height: 3px;
}
@keyframes musicBar {
  from { height: 20%; }
  to { height: 100%; }
}

/* ── Music Popup ───────────────────────────────────────── */
.music-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s;
  opacity: 0;
  pointer-events: none;
}
.music-popup.visible {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}
.music-popup.hiding {
  opacity: 0;
  pointer-events: none;
}
.music-popup-inner {
  background: var(--black);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 50px 40px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s var(--ease-out);
}
.music-popup.visible .music-popup-inner {
  transform: translateY(0) scale(1);
}
.music-popup-icon {
  margin: 0 auto 20px;
  width: 48px;
  height: 48px;
  color: var(--gold);
}
.music-popup-icon svg {
  width: 100%;
  height: 100%;
}
.music-popup-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.music-popup-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
}
.music-popup-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.music-popup-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.music-popup-yes {
  background: var(--gold);
  color: var(--black);
}
.music-popup-yes:hover {
  background: #b8953e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.music-popup-no {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.music-popup-no:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ── About Page ─────────────────────────────────────────── */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
}
.about-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 50px;
}
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 10px;
  color: var(--white);
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 40px;
}
.about-text {
  font-size: 19px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--gray-600);
}
.about-text strong {
  font-weight: 600;
  color: var(--black);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  text-align: center;
}
.about-value-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.about-value-icon svg { width: 24px; height: 24px; }
.about-value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: var(--gold);
}
.about-value-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-500);
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-hero {
  background: var(--black);
  color: var(--white);
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/assets/motif/motif.svg) center/120px repeat;
  opacity: 0.04;
}
.contact-hero .section-label { color: rgba(255,255,255,0.35); }
.contact-hero .section-title { color: var(--white); }
.contact-hero .section-divider { background: rgba(255,255,255,0.2); }
.contact-hero .section-divider::after { background: var(--gold); }
.contact-hero-tagline {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: -50px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.contact-card {
  background: var(--white);
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.contact-card-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}
.contact-card-value a { transition: color 0.3s; }
.contact-card-value a:hover { color: var(--gold); }

.contact-social-section {
  text-align: center;
  padding: 80px 40px;
}
.contact-social-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 30px;
}
.contact-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.social-link {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, border-color 0.4s, color 0.4s, transform 0.3s var(--ease-out);
}
.social-link:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}
.social-link svg { width: 20px; height: 20px; }

.contact-map-section {
  padding: 0 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-map-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 24px;
}
.contact-map {
  background: var(--off-white);
  height: 400px;
  position: relative;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.3);
  transition: filter 0.5s;
}
.contact-map:hover iframe {
  filter: grayscale(0);
}

/* Legacy contact grid - kept for backwards compatibility */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-item { margin-bottom: 40px; }
.contact-item-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.contact-item-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
}
.contact-item-value a { transition: color 0.3s; }
.contact-item-value a:hover { color: var(--gray-500); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 40px 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-logo-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
  display: inline-block;
}
.footer-logo-img:hover { opacity: 1; }
.footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.2);
}

/* ── Collection Detail Header ───────────────────────────── */
.collection-hero {
  text-align: center;
  padding: 70px 40px 50px;
  max-width: 800px;
  margin: 0 auto;
}
.collection-hero-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.collection-hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--gray-500);
  white-space: pre-line;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 24px 40px 0;
  max-width: 1400px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { margin: 0 8px; }

/* ── Empty State ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 40px;
  color: var(--gray-400);
}
.empty-state p { font-size: 17px; font-weight: 300; }

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  z-index: 900;
  transition: transform 0.3s var(--ease-elastic), box-shadow 0.3s;
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  animation: none;
}
.whatsapp-float svg { width: 24px; height: 24px; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.5); }
}

/* ── Image lazy load ────────────────────────────────────── */
.lazy-img {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.lazy-img.loaded {
  opacity: 1;
  transform: scale(1);
}

/* ── Stagger animations ─────────────────────────────────── */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  animation: staggerIn 0.6s var(--ease-out) forwards;
}
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.12s; }
.stagger > *:nth-child(3) { animation-delay: 0.19s; }
.stagger > *:nth-child(4) { animation-delay: 0.26s; }
.stagger > *:nth-child(5) { animation-delay: 0.33s; }
.stagger > *:nth-child(6) { animation-delay: 0.4s; }
.stagger > *:nth-child(7) { animation-delay: 0.47s; }
.stagger > *:nth-child(8) { animation-delay: 0.54s; }
.stagger > *:nth-child(9) { animation-delay: 0.61s; }
.stagger > *:nth-child(10) { animation-delay: 0.68s; }
.stagger > *:nth-child(n+11) { animation-delay: 0.75s; }

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .model-detail { grid-template-columns: 1fr; }
  .model-gallery { height: 55vh; }
  .model-info { padding: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .desktop-nav { display: none; }
  .mobile-nav { display: flex; }
  .app-content { padding-bottom: var(--mobile-nav-h); }
  .header-inner { padding: 0 20px; }
  .logo-img { height: 28px; }
  .cursor-dot, .cursor-ring { display: none !important; }

  .section { padding: 60px 20px; }
  .section-header { margin-bottom: 40px; }

  .hero { height: calc(100vh - var(--header-h)); }
  .hero-overlay { padding-bottom: 70px; }
  .hero-brand { letter-spacing: 10px; }
  .hero-indicators { right: 20px; bottom: 24px; }

  .collections-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 0 20px 16px;
    grid-template-columns: unset;
  }
  .collections-grid::-webkit-scrollbar { display: none; }
  .collection-card {
    flex: 0 0 78vw;
    max-width: 310px;
    scroll-snap-align: start;
  }
  .collection-card-count { opacity: 1; transform: none; }

  .models-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 0 20px 16px;
    grid-template-columns: unset;
  }
  .models-grid::-webkit-scrollbar { display: none; }
  .model-card {
    flex: 0 0 58vw;
    max-width: 230px;
    scroll-snap-align: start;
  }
  .model-card-cta { display: none; }

  .model-detail { grid-template-columns: 1fr; }
  .model-gallery { height: 50vh; }
  .model-info { padding: 30px 20px 40px; }
  .btn-order { width: 100%; justify-content: center; }

  .featured-section { padding: 80px 0; }
  .featured-inner { padding: 0 20px; }
  .featured-text { font-size: 14px; }
  .other-collections { margin-top: 40px; padding-top: 30px; }
  .other-collections-scroll { padding: 0 20px 16px; gap: 14px; }
  .other-col-card { flex: 0 0 55vw; max-width: 220px; }

  .hscroll { padding: 10px 20px 20px; gap: 14px; }
  .hscroll-item { flex: 0 0 55vw; max-width: 220px; }

  .about-hero { height: 50vh; min-height: 300px; }
  .about-hero img { object-position: center 15%; }
  .about-content { padding: 60px 20px; }
  .about-text { font-size: 16px; }
  .about-values { grid-template-columns: 1fr; gap: 30px; padding: 50px 20px; }

  .contact-hero { padding: 100px 20px 70px; }
  .contact-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 20px;
    margin-top: -40px;
  }
  .contact-cards::-webkit-scrollbar { display: none; }
  .contact-card {
    flex: 0 0 44%;
    min-width: 150px;
    padding: 30px 16px;
    scroll-snap-align: start;
  }
  .contact-social-section { padding: 50px 20px; }
  .contact-map-section { padding: 0 20px 50px; }
  .contact-map { height: 200px; }
  .contact-grid { grid-template-columns: 1fr; gap: 0; }

  .reservation-section { padding: 70px 20px; }
  .reservation-event-types { grid-template-columns: 1fr; gap: 8px; }
  .custom-measures-grid { grid-template-columns: 1fr; }
  .size-options { flex-wrap: wrap; }
  .home-stats { grid-template-columns: repeat(2, 1fr); }
  .home-stat { padding: 30px 16px; }
  .home-stat:nth-child(2)::after { display: none; }
  .home-collections-preview { grid-template-columns: 1fr; }
  .home-preview-overlay { opacity: 1; }
  .home-cta { padding: 70px 20px; }

  .footer { padding: 40px 20px 24px; }
  .footer-logo-wrap { margin-bottom: 30px; }
  .footer-logo-img { height: 30px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .footer-col-title { margin-bottom: 12px; font-size: 8px; letter-spacing: 3px; }
  .footer-col p, .footer-col a { font-size: 12px; line-height: 1.8; }
  .footer-bottom { margin-top: 24px; padding-top: 16px; font-size: 7px; letter-spacing: 2px; }

  .modal-content {
    padding: 30px 20px calc(30px + var(--safe-bottom));
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }

  .whatsapp-float {
    bottom: calc(var(--mobile-nav-h) + 16px);
    right: 16px;
    width: 46px;
    height: 46px;
  }
  .music-toggle {
    bottom: calc(var(--mobile-nav-h) + 16px);
    left: 16px;
    width: 40px;
    height: 40px;
  }

  .collection-hero { padding: 40px 20px 30px; }
  .collection-hero-name { letter-spacing: 5px; }
  .collection-hero-desc { font-size: 14px; }
  .breadcrumb { padding: 16px 20px 0; }

  .reels-section { padding: 70px 0; }
  .videos-grid { padding: 0 20px 16px; gap: 14px; }
  .video-card { flex: 0 0 70vw; max-width: 280px; }

  .marquee-item { padding: 0 24px; }
}

@media (max-width: 380px) {
  .collection-card { flex: 0 0 82vw; }
  .model-card { flex: 0 0 65vw; }
  .hscroll-item { flex: 0 0 65vw; }
  .video-card { flex: 0 0 65vw; }
}

/* ═══════════════════════════════════════════════════════════
   COUTURE / SEWING THREAD ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Gold Thread Stitch Divider ────────────────────────── */
.stitch-divider {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.stitch-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 12px,
    transparent 12px, transparent 20px
  );
  opacity: 0.4;
}
.stitch-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 0%;
  height: 1px;
  background: var(--gold);
  animation: stitchDraw 3s var(--ease-out) forwards;
  opacity: 0.6;
}
.stitch-divider.visible::after {
  width: 80%;
}

@keyframes stitchDraw {
  from { width: 0%; }
  to { width: 80%; }
}

/* ── Needle & Thread Animation ─────────────────────────── */
.needle-thread {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}
.needle-thread::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent 100%
  );
  opacity: 0.2;
  transform: translateY(-50%);
}
.needle-thread::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  opacity: 0;
}
.needle-thread.visible::after {
  animation: needleMove 2.5s var(--ease-in-out) forwards;
}

@keyframes needleMove {
  0% { left: -30px; opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { left: calc(100% + 30px); opacity: 0; }
}

/* ── Flowing Thread Trail ──────────────────────────────── */
.thread-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.thread-trail::before,
.thread-trail::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.08;
}
.thread-trail::before {
  top: 30%;
  left: -50%;
  transform: rotate(-2deg);
  animation: threadFlow 20s linear infinite;
}
.thread-trail::after {
  bottom: 25%;
  right: -50%;
  transform: rotate(1.5deg);
  animation: threadFlow 25s linear infinite reverse;
}

@keyframes threadFlow {
  from { transform: translateX(-25%) rotate(-2deg); }
  to { transform: translateX(25%) rotate(-2deg); }
}

/* ── Bobbin Spin (decorative element) ──────────────────── */
.couture-bobbin {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  animation: bobbinSpin 4s linear infinite;
}
.couture-bobbin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes bobbinSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Motif Divider Band ────────────────────────────────── */
.motif-band {
  width: 100%;
  height: 80px;
  background: url(/assets/motif/motif.svg) center/80px repeat;
  opacity: 0.04;
  position: relative;
}
.motif-band-gold {
  width: 100%;
  height: 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.motif-band-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/assets/motif/motif.svg) center/60px repeat;
  opacity: 0.08;
  filter: sepia(1) hue-rotate(10deg) brightness(1.5);
}

/* ── Fabric Texture Shimmer ────────────────────────────── */
.fabric-shimmer {
  position: relative;
  overflow: hidden;
}
.fabric-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(201, 169, 110, 0.03) 45%,
    rgba(201, 169, 110, 0.06) 50%,
    rgba(201, 169, 110, 0.03) 55%,
    transparent 70%
  );
  animation: fabricShimmer 8s var(--ease-in-out) infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes fabricShimmer {
  0% { transform: translateX(-30%) translateY(-30%) rotate(45deg); }
  100% { transform: translateX(30%) translateY(30%) rotate(45deg); }
}

/* ── Couture Section Separator (cross-stitch pattern) ─── */
.couture-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
}
.couture-separator-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.couture-separator-diamond {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.5;
  animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) scale(1); }
  50% { opacity: 0.7; transform: rotate(45deg) scale(1.2); }
}

/* ── Thread Wave (horizontal decorative) ───────────────── */
.thread-wave {
  position: relative;
  height: 30px;
  overflow: hidden;
}
.thread-wave svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 20px;
  transform: translateY(-50%);
  animation: threadWaveScroll 12s linear infinite;
}
.thread-wave svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.5;
  opacity: 0.25;
}

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

/* ── Homepage process section ──────────────────────────── */
.home-process {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 70px;
  position: relative;
}
.process-steps::before {
  display: none;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  background: var(--white);
  transition: background 0.4s, color 0.4s;
}
.process-step:hover .process-step-num {
  background: var(--black);
  color: var(--gold);
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.process-step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── Réservation Privée ────────────────────────────────── */
.reservation-section {
  padding: 120px 40px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.reservation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/assets/motif/motif.svg) center/100px repeat;
  opacity: 0.03;
  filter: brightness(0) invert(1);
}
.reservation-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.reservation-section .section-label { color: rgba(255,255,255,0.35); }
.reservation-section .section-title { color: var(--white); }
.reservation-section .section-divider { background: rgba(255,255,255,0.2); }
.reservation-section .section-divider::after { background: var(--gold); }

.reservation-event-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.reservation-event-btn {
  padding: 16px 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
}
.reservation-event-btn.active,
.reservation-event-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.reservation-form .form-group label {
  color: rgba(255,255,255,0.4);
}
.reservation-form .form-group input,
.reservation-form .form-group textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.reservation-form .form-group input:focus,
.reservation-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201, 169, 110, 0.1);
}
.reservation-form .form-group input::placeholder {
  color: rgba(255,255,255,0.2);
}

.measure-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}
.measure-tab {
  flex: 1;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.measure-tab:first-child { border-right: none; }
.measure-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.size-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.size-opt {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.size-opt.active,
.size-opt:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.custom-measures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-reservation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 20px;
  margin-top: 8px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}
.btn-reservation svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn-reservation:hover {
  background: #b8953e;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.3);
}

/* ── Guide des Tailles ─────────────────────────────────── */
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.size-guide-table th {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.size-guide-table td {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.size-guide-table tr:hover td {
  color: var(--white);
  background: rgba(255,255,255,0.03);
}

/* ── Motif overlay for sections ────────────────────────── */
.has-motif-bg {
  position: relative;
}
.has-motif-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/assets/motif/motif.svg) center/120px repeat;
  opacity: 0.025;
  pointer-events: none;
}

/* ── Footer motif ──────────────────────────────────────── */
.footer.has-motif-bg::before {
  opacity: 0.04;
  filter: brightness(0) invert(1);
}

/* ── Responsive for new elements ───────────────────────── */
@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-steps::before { display: none; }
  .process-step-num { width: 60px; height: 60px; font-size: 22px; }
  .home-process { padding: 70px 20px; }
  .needle-thread { height: 40px; }
  .contact-map { height: 280px; }
  .motif-band-gold { height: 40px; }
}

@media (max-width: 380px) {
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .header, .mobile-nav, .whatsapp-float, .modal, .music-toggle, .cursor-dot, .cursor-ring { display: none !important; }
  .app-content { padding-top: 0; }
}

/* ── Hover media query ──────────────────────────────────── */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
  .collection-card-count { opacity: 1; transform: none; }
  .model-card-cta { display: none; }
}
