/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #F5D78E;
  --gold-dark:  #9a7a2e;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #1a1a1a;
  --white:      #FAFAFA;
  --grey:       #888888;
  --grey-light: #f0f0f0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== TYPOGRAPHY ===== */
.label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.label--light { color: var(--gold-light); }
.link-gold {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.link-gold:hover { opacity: .7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover { background: var(--gold-light); }

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

.btn--outline-light {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline-light:hover { background: var(--gold); color: var(--black); }

.btn--sm { padding: 10px 22px; font-size: 10px; }
.btn--wide { width: 100%; max-width: 340px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: padding .3s;
}
.nav.scrolled { padding: 14px 48px; }

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__logo-www {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 8px;
}
.nav__logo-sub {
  font-size: 7px;
  letter-spacing: 4px;
  color: rgba(201,168,76,0.6);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}
.nav__links a {
  color: var(--white);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px;
}
.nav__cta:hover { background: var(--gold-light) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Split panels (femme / homme) ── */
.hero__panel {
  position: absolute;
  top: 0; bottom: 0;
  width: 38%;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: width .7s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 1;
}
.hero__panel--femme { left: 0; }
.hero__panel--homme { right: 0; }
.hero:has(.hero__panel--femme:hover) .hero__panel--femme,
.hero:has(.hero__panel--homme:hover) .hero__panel--homme { width: 48%; }
.hero:has(.hero__panel--femme:hover) .hero__panel--homme,
.hero:has(.hero__panel--homme:hover) .hero__panel--femme { width: 28%; }

.hero__panel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: .28;
  transition: opacity .6s ease;
  display: block;
}
.hero__panel:hover .hero__panel-img { opacity: .52; }

.hero__panel-veil {
  position: absolute; inset: 0;
}
.hero__panel-veil--femme {
  background: linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 80%, transparent 100%);
}
.hero__panel-veil--homme {
  background: linear-gradient(to left, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 80%, transparent 100%);
}

.hero__panel-label {
  position: absolute; bottom: 120px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}
.hero__panel--femme .hero__panel-label { left: 48px; }
.hero__panel--homme .hero__panel-label { right: 48px; align-items: flex-end; text-align: right; }
.hero__panel:hover .hero__panel-label { opacity: 1; transform: none; }

.hero__panel-sub {
  font-size: 8px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(201,168,76,.65); font-family: var(--font-sans);
}
.hero__panel-name {
  font-family: var(--font-serif); font-size: clamp(22px,2.5vw,36px);
  font-weight: 700; color: var(--gold); line-height: 1.05; letter-spacing: 2px;
}
.hero__panel-cta {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-family: var(--font-sans);
  margin-top: 8px;
  border-bottom: 1px solid rgba(201,168,76,.3);
  padding-bottom: 4px;
  display: inline-block;
  transition: color .25s, border-color .25s;
}
.hero__panel:hover .hero__panel-cta { color: var(--gold); border-color: var(--gold); }

/* Divider central */
.hero__divider {
  position: absolute; top: 15%; bottom: 15%;
  left: 50%; transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.4) 30%, rgba(201,168,76,.4) 70%, transparent);
  z-index: 2; pointer-events: none;
}

/* Le titre reste centré, par-dessus tout */
.hero__content { z-index: 3; }
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
    linear-gradient(135deg, #0A0A0A 0%, #1a1212 50%, #0A0A0A 100%);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(201,168,76,0.07) 45%,
    rgba(245,215,142,0.12) 50%,
    rgba(201,168,76,0.07) 55%,
    transparent 80%
  );
  animation: heroShimmer 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.03) 40px,
      rgba(201,168,76,0.03) 41px
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.hero__title span {
  font-family: var(--font-serif);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  letter-spacing: 8px;
  opacity: 0;
  animation: fadeUp .8s forwards;
}
.hero__title span:nth-child(1) { animation-delay: .3s; }
.hero__title span:nth-child(2) {
  color: var(--gold);
  -webkit-text-stroke: none;
  animation-delay: .5s;
}
.hero__title span:nth-child(3) { animation-delay: .7s; }

.hero__tagline {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}
.hero__lines { display: none; } /* remplacé par les panneaux interactifs */

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
.hero__scroll p {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__inner {
  display: inline-flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
}
.ticker__inner span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--black);
  text-transform: uppercase;
}

/* ===== INTRO ===== */
.intro {
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.intro__body {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}
.intro__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.intro__card {
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  cursor: pointer;
  transition: transform .3s;
  position: relative;
  overflow: hidden;
}
.intro__card:hover { transform: translateY(-6px); }
.intro__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transition: opacity .3s;
}
.intro__card-inner {
  position: relative;
  z-index: 1;
}
.intro__card--belle {
  background: linear-gradient(135deg, #f5e6cc 0%, #e8d5a3 50%, #C9A84C 100%);
}
.intro__card--beau {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 50%, #2a1a0a 100%);
}
.intro__card--belle::after,
.intro__card--beau::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.15) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
  pointer-events: none;
}
.intro__card--belle:hover::after,
.intro__card--beau:hover::after {
  opacity: 1;
}
.intro__card-label {
  display: block;
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.intro__card--beau .intro__card-label { color: rgba(201,168,76,0.7); }
.intro__card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}
.intro__card--beau h3 { color: var(--gold); }
.intro__card h3 em { font-style: italic; font-weight: 400; }
.intro__card p { font-size: 11px; color: rgba(0,0,0,0.6); margin-top: 8px; }
.intro__card--beau p { color: rgba(201,168,76,0.7); }

/* ===== COLLECTIONS ===== */
.collection {
  padding: 100px 48px;
}
.collection--dark {
  background: var(--dark);
}
.collection__header {
  text-align: center;
  margin-bottom: 64px;
}
.collection__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  margin-bottom: 12px;
}
.collection__header--belle h2 { color: var(--black); }
.collection__header--beau h2 { color: var(--gold); }
.collection__sub {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--grey);
  text-transform: uppercase;
}
.collection--dark .collection__sub { color: rgba(255,255,255,0.4); }
.collection__tagline {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--gold);
  margin-top: 14px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.collection__tagline--light {
  color: var(--gold-light);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 48px;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border: 1px solid #eee;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(201,168,76,0.4); }
.product-card--dark {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
}
.product-card--dark:hover { box-shadow: 0 20px 60px rgba(201,168,76,0.1), 0 0 0 1px rgba(201,168,76,0.4); }

.product-card__img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--grey-light);
}
.product-card--dark .product-card__img { background: #222; }

/* Image réelle dans les cards produits */
.product-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card__photo { transform: scale(1.06); }

/* Fallback gradients si pas d'image */
.product-card__img--1 { background: linear-gradient(135deg, #f0e8d4 0%, #e0c87a 100%); }
.product-card__img--2 { background: linear-gradient(135deg, #f5f5f5 0%, #dcc97e 100%); }
.product-card__img--3 { background: linear-gradient(135deg, #fff9ee 0%, #f0d080 100%); }
.product-card__img--4 { background: linear-gradient(135deg, #f0e8d4 0%, #C9A84C 100%); }
.product-card__img--5 { background: linear-gradient(135deg, #111 0%, #2a2a2a 100%); }
.product-card__img--6 { background: linear-gradient(135deg, #3a0a1a 0%, #7a2040 100%); }
.product-card__img--7 { background: linear-gradient(135deg, #0a0a0a 0%, #2a2a3a 100%); }
.product-card__img--8 { background: linear-gradient(135deg, #1a1a1a 0%, #2a1800 100%); }
.product-card__img--couleurs { background: linear-gradient(135deg, #BFFF00 0%, #3EB489 100%); }
.product-card__img--tshirt-beau { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); }

/* Logo placeholder — masqué quand image présente */
.product-card__img:not(:has(.product-card__photo))::before {
  content: 'BBR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  letter-spacing: 4px;
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.product-card__badge--new { background: var(--black); color: var(--gold); }

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  z-index: 3;
}
.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__info { padding: 20px; }
.product-card__line {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.product-card__line--gold { color: var(--gold); }
.product-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}
.product-card--dark .product-card__name { color: var(--white); }
.product-card__desc {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card--dark .product-card__desc { color: rgba(255,255,255,0.5); }

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}
.product-card__colors { display: flex; gap: 6px; }
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s;
}
.color-dot:hover { transform: scale(1.3); }

.collection__cta { text-align: center; }

/* ===== SEPARATOR ===== */
.separator {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
}
.separator__line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.separator__diamond { color: var(--gold); font-size: 12px; }

/* ===== ABOUT ===== */
.about {
  padding: 120px 48px;
  background: var(--white);
}
.about__inner { max-width: 1100px; margin: 0 auto; }

.about__label-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.about__line { flex: 1; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }
.about__line:last-child { background: linear-gradient(to left, var(--gold), transparent); }

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.2;
}

.about__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}
.about__block h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.about__block p { font-size: 14px; line-height: 1.9; color: #555; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(201,168,76,0.3);
  padding-top: 48px;
  text-align: center;
}
.about__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.about__stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--dark);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter__inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.newsletter h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}
.newsletter__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 48px;
}
.newsletter__fields { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
  transition: border-color .3s;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__legal {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  line-height: 1.5;
}
.newsletter__success p {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 80px 48px 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 64px;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 10px;
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer__social { display: flex; gap: 16px; }
.footer__social-link {
  color: rgba(255,255,255,0.4);
  transition: color .2s;
}
.footer__social-link:hover { color: var(--gold); }

.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,0.25); transition: color .2s; }
.footer__bottom-links a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes heroShimmer {
  0%, 100% { opacity: 0.6; transform: translateX(-5%); }
  50% { opacity: 1; transform: translateX(5%); }
}
@keyframes shimmerSweep {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}

/* ================================================================
   CATEGORY NAVIGATION
   ================================================================ */
.cat-nav {
  display: flex; gap: 0; flex-wrap: wrap;
  margin: -24px auto 40px;
  max-width: 1600px;
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 0 0 0 0;
}
.cat-nav--dark { border-color: rgba(201,168,76,.2); }

.cat-nav__btn {
  background: none; border: none; outline: none;
  font-family: var(--font-sans); font-size: 9px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--grey); padding: 14px 28px;
  cursor: pointer; position: relative; transition: color .25s;
  white-space: nowrap;
}
.cat-nav--dark .cat-nav__btn { color: rgba(255,255,255,.35); }
.cat-nav__btn::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .3s ease;
}
.cat-nav__btn.active { color: var(--gold); }
.cat-nav--dark .cat-nav__btn.active { color: var(--gold-light); }
.cat-nav__btn.active::after, .cat-nav__btn:hover::after { transform: scaleX(1); }
.cat-nav__btn:hover { color: var(--gold); }
.cat-nav--dark .cat-nav__btn:hover { color: var(--gold-light); }

.cat-count {
  font-size: 7px; opacity: .5; margin-left: 4px;
  font-weight: 300; letter-spacing: 1px;
}

/* Hidden / shown by filter */
.product-card.cat-hidden { display: none !important; }
.product-card.cat-extra  { display: none !important; }
.product-card.cat-extra.cat-open { display: block !important; }

/* Show more button */
.show-more-wrap {
  text-align: center; padding: 24px 0 40px;
  max-width: 1600px; margin: 0 auto;
}
.show-more-btn {
  background: none; border: 1px solid var(--gold);
  font-family: var(--font-sans); font-size: 9px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); padding: 12px 36px; cursor: pointer;
  transition: all .3s;
}
.show-more-btn:hover { background: var(--gold); color: var(--black); }
.show-more-btn[hidden] { display: none; }

/* ================================================================
   EDITORIAL LUXE — Complete redesign
   Inspired by: Balenciaga, Off-White, Net-a-Porter
   ================================================================ */

/* — Film grain cinema overlay ----------------------------------- */
.grain-overlay {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain .45s steps(1) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  25%  { transform: translate(-3%,-3%) }
  50%  { transform: translate(3%,3%)  }
  75%  { transform: translate(-3%,3%) }
}

/* — Scroll progress gold bar ------------------------------------ */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 10px rgba(201,168,76,.5);
  z-index: 1002; transition: width .08s linear;
}

/* — Custom gold cursor (desktop only) --------------------------- */
.c-dot, .c-ring { display: none; position: fixed; pointer-events: none; border-radius: 50%; z-index: 9999; }
@media (pointer:fine) {
  body, a, button { cursor: none; }
  .c-dot { display: block; width: 5px; height: 5px; background: var(--gold); transform: translate(-50%,-50%); }
  .c-ring {
    display: block; width: 30px; height: 30px;
    border: 1px solid rgba(201,168,76,.4);
    transform: translate(-50%,-50%);
    transition: width .2s ease, height .2s ease, border-color .2s ease, border-width .2s ease;
  }
  .c-ring.hover { width: 52px; height: 52px; border-color: var(--gold); border-width: 1.5px; }
}

/* — Editorial product grid -------------------------------------- */
.products {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 3px !important;
  background: #d8d8d8;
  max-width: 1600px !important;
  padding: 0 !important;
  margin: 0 auto 80px !important;
}
.collection--dark .products { background: #2a2a2a; }

/* 4 per row (span 3/12) */
.product-card { grid-column: span 3 !important; }

/* Hero: same size as regular card — no giant image */
.product-card--hero { grid-column: span 3 !important; grid-row: span 1 !important; }
.product-card--hero .product-card__img { aspect-ratio: 3/4 !important; height: auto !important; min-height: unset !important; }
.product-card--hero .product-card__info {
  position: relative !important; inset: auto !important; opacity: 1 !important;
  transform: none !important; flex-direction: row !important; align-items: center !important;
  padding: 9px 14px 10px !important;
  background: #f4f4f4 !important;
}
.collection--dark .product-card--hero .product-card__info { background: #0f0f0f !important; }
.product-card--hero .product-card__name { font-size: 13px !important; color: var(--black) !important; }
.collection--dark .product-card--hero .product-card__name { color: var(--white) !important; }
.product-card--hero .product-card__footer { border-top: none !important; padding-top: 0 !important; margin-top: 0 !important; width: auto; }
.product-card--hero .product-card__overlay { display: flex !important; }

/* — Card redesign: image-first, frameless ----------------------- */
.product-card {
  position: relative !important; overflow: hidden;
  border: none !important; background: #f4f4f4 !important;
}
.product-card--dark, .collection--dark .product-card {
  background: #0f0f0f !important; border: none !important;
}
.product-card:hover, .product-card--dark:hover {
  transform: none !important; box-shadow: none !important;
}

/* Gold sweep line on hover */
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); z-index: 10;
  transition: width .55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-card:hover::after { width: 100%; }

/* Image ratio tightened */
.product-card__img { aspect-ratio: 4/5 !important; }
.product-card__photo {
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94) !important;
}
.product-card:hover .product-card__photo { transform: scale(1.06) !important; }

/* Overlay: semi-dark veil + button */
.product-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0) ;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: background .4s ease;
}
.product-card:hover .product-card__overlay { background: rgba(0,0,0,.22); opacity: 1; }

/* — Info bar: always visible, ultra-minimal --------------------- */
.product-card__info {
  padding: 9px 14px 10px !important;
  display: flex !important; align-items: center !important;
  justify-content: space-between !important; gap: 8px !important;
  background: #f4f4f4 !important;
}
.collection--dark .product-card__info,
.product-card--dark .product-card__info { background: #0f0f0f !important; }

.product-card__line {
  font-size: 7px !important; letter-spacing: 3px !important;
  color: var(--gold) !important; margin-bottom: 2px; display: block;
}
.product-card__line--gold { color: var(--gold) !important; }
.product-card__name {
  font-family: var(--font-serif) !important; font-size: 13px !important;
  font-weight: 500 !important; letter-spacing: .2px !important;
  color: var(--black) !important; margin-bottom: 0 !important;
}
.collection--dark .product-card__name,
.product-card--dark .product-card__name { color: var(--white) !important; }
.product-card__desc { display: none !important; }
.product-card__colors { display: none !important; }
.product-card__footer {
  display: flex !important; align-items: center !important;
  border-top: none !important; margin-top: 0 !important; padding-top: 0 !important;
  flex-shrink: 0;
}
.product-card__price {
  font-family: var(--font-serif) !important; font-size: 14px !important;
  font-weight: 400 !important; font-style: italic; color: var(--gold) !important;
}

/* Hero card: info overlaid (hidden until hover) */
.product-card--hero .product-card__info {
  position: absolute !important; inset: auto 0 0 0 !important;
  flex-direction: column !important; align-items: flex-start !important;
  padding: 60px 24px 20px !important;
  background: linear-gradient(transparent, rgba(0,0,0,.9)) !important;
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
  z-index: 2;
}
.product-card--hero:hover .product-card__info { opacity: 1; transform: none; }
.product-card--hero .product-card__name { font-size: 22px !important; color: #fff !important; }
.product-card--hero .product-card__footer {
  border-top: 1px solid rgba(201,168,76,.3) !important;
  padding-top: 8px !important; margin-top: 6px !important; width: 100%;
}
.product-card--hero .product-card__price { font-size: 18px !important; }
.product-card--hero .product-card__overlay { display: none; }

/* — Product counter number -------------------------------------- */
.product-card__num {
  position: absolute; top: 10px; right: 10px;
  font-size: 8px; letter-spacing: 2px; font-weight: 300;
  color: rgba(255,255,255,.45); z-index: 3;
  font-family: var(--font-sans);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

/* — Staggered scroll reveal ------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in  { opacity: 1; transform: none; }

/* — Collection header: giant watermark text --------------------- */
.collection__header { position: relative; overflow: visible; }
.collection__watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700; letter-spacing: 24px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.07);
  white-space: nowrap; pointer-events: none; user-select: none;
  z-index: 0;
}
.collection--dark .collection__watermark {
  -webkit-text-stroke: 1px rgba(201,168,76,.13);
}
.collection__header > * { position: relative; z-index: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products { grid-template-columns: repeat(8, 1fr) !important; gap: 3px !important; }
  .product-card { grid-column: span 4 !important; }
  .product-card--hero { grid-column: span 4 !important; grid-row: span 1 !important; }
  .product-card--hero .product-card__img { min-height: unset !important; }
  .intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__content { grid-template-columns: 1fr; gap: 32px; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .hero__panel { width: 50% !important; transition: none; }
  .hero__panel-label { opacity: 1 !important; transform: none !important; bottom: 80px; }
  .hero__panel--femme .hero__panel-label { left: 20px; }
  .hero__panel--homme .hero__panel-label { right: 20px; }
  .hero__panel-name { font-size: 18px; }
  .hero__panel-img { opacity: .4; }
  .hero__divider { display: none; }
  .hero__title span { font-size: clamp(48px,12vw,90px); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav__links { display: none; flex-direction: column; position: fixed; inset: 0; background: rgba(10,10,10,0.97); justify-content: center; align-items: center; gap: 32px; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 14px; letter-spacing: 3px; }
  .nav__burger { display: flex; }

  .hero__title span { font-size: clamp(52px, 16vw, 100px); }

  .intro, .collection, .about, .newsletter, .footer { padding: 64px 24px; }
  .intro__cards { grid-template-columns: 1fr 1fr; }
  .products {
    grid-template-columns: repeat(4, 1fr) !important; gap: 2px !important;
  }
  .product-card { grid-column: span 2 !important; }
  .product-card--hero { grid-column: span 2 !important; grid-row: span 1 !important; }

  .about__stats { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .separator { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero__lines { flex-direction: column; align-items: center; }
  .intro__cards { grid-template-columns: 1fr; }
  .newsletter__fields { flex-direction: column; }
  .newsletter__input { min-width: unset; }
}
