/* ============================================
   VELORA PARFUMS — Luxury Design System
   Palette: Noir Editorial + Gold
   Typography: Cormorant Garamond + Montserrat
============================================ */

:root {
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --cream: #E8E4DF;
  --warm: #C8B8A0;
  --gold: #B8960C;
  --gold-light: #D4AF37;
  --gold-pale: #F0E0A0;
  --white: #FAFAF8;
  --text-muted: #888880;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* CURSOR */
.cursor {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--gold-light); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-follower {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-luxury), width 0.3s, height 0.3s, border-color 0.3s;
}

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

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

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-luxury);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-luxury);
}
.btn:hover::after { transform: translateX(0); }
.btn--gold { background: var(--gold); color: var(--black); border: 1px solid var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid rgba(232,228,223,0.3); }
.btn--ghost:hover { border-color: var(--cream); }
.btn--outline { background: transparent; color: var(--gold-light); border: 1px solid var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--black); }

/* LABELS */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.1; color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(184,150,12,0.15);
}
.nav__logo {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.35em; color: var(--cream);
  display: flex; align-items: baseline; gap: 2px;
}
.nav__logo-v { color: var(--gold-light); font-size: 1.3rem; }
.nav__logo-sub {
  font-size: 0.55rem; letter-spacing: 0.3em; color: var(--text-muted);
  margin-left: 6px; align-self: center;
}
.nav__links { display: flex; gap: 44px; }
.nav__links a {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--warm); position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold-light);
  transition: width 0.35s var(--ease-luxury);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 20px; }
.nav__search, .nav__bag { color: var(--warm); transition: color 0.3s; display: flex; align-items: center; }
.nav__search:hover, .nav__bag:hover { color: var(--gold-light); }
.nav__bag { position: relative; }
.nav__bag-count {
  position: absolute; top: -6px; right: -8px;
  width: 16px; height: 16px;
  background: var(--gold); color: var(--black);
  border-radius: 50%; font-size: 0.55rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.nav__hamburger { display: none; flex-direction: column; gap: 6px; width: 24px; padding: 2px 0; }
.nav__hamburger span { display: block; height: 1px; background: var(--cream); transition: all 0.35s var(--ease-luxury); }
.nav__hamburger.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-luxury);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 24px 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300; color: var(--cream); letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease-luxury) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.3) 100%);
}
.hero__content { position: relative; z-index: 3; padding: 0 60px; max-width: 760px; }
.hero__eyebrow {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300; line-height: 0.95; color: var(--cream); margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--gold-light); display: block; }
.hero__sub { font-size: 0.85rem; font-weight: 300; color: var(--warm); line-height: 1.8; margin-bottom: 44px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 48px; left: 60px; z-index: 3;
  display: flex; align-items: center; gap: 16px;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted);
}
.hero__scroll-line {
  width: 60px; height: 1px; background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; width: 40px; }
  50% { opacity: 1; width: 70px; }
}
.hero__marquee-wrap {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  overflow: hidden; border-top: 1px solid rgba(184,150,12,0.2);
  background: rgba(10,10,10,0.7); backdrop-filter: blur(10px); padding: 14px 0;
}
.hero__marquee { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.hero__marquee span { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* STATEMENT */
.statement {
  padding: 120px 60px;
  display: flex; justify-content: center;
  background: var(--dark); position: relative;
}
.statement::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.statement__inner { max-width: 900px; text-align: center; }
.statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.5; color: var(--cream);
}
.statement__text em { font-style: italic; color: var(--gold-light); }
.statement__line { width: 60px; height: 1px; background: var(--gold); margin: 48px auto 0; }

/* COLLECTIONS */
.collections { padding: 100px 60px; background: var(--black); }
.collections__header { margin-bottom: 64px; }
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}
.product-card--large { grid-column: 1 / 2; grid-row: 1 / 3; }
.product-card {
  background: var(--dark-2); overflow: hidden; position: relative;
  transition: transform 0.5s var(--ease-luxury);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-card--large .product-card__img-wrap { aspect-ratio: 3/5; }
.product-card__img-wrap img { transition: transform 0.8s var(--ease-luxury); }
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }
.product-card__hover {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 32px; opacity: 0;
  transition: opacity 0.4s var(--ease-luxury);
}
.product-card:hover .product-card__hover { opacity: 1; }
.product-card__quick {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: var(--gold-light); padding: 10px 28px;
  transition: background 0.3s;
}
.product-card__quick:hover { background: var(--cream); }
.product-card__info { padding: 24px 28px 28px; }
.product-card__maison {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 8px;
}
.product-card__name {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
  color: var(--cream); margin-bottom: 8px; line-height: 1.2;
}
.product-card__desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--cream); }
.product-card__add {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,12,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); transition: all 0.3s var(--ease-luxury);
}
.product-card__add:hover { background: var(--gold); border-color: var(--gold); color: var(--black); transform: rotate(90deg); }
.collections__cta { margin-top: 64px; text-align: center; }

/* MAISONS */
.maisons { padding: 100px 60px; background: var(--dark); position: relative; }
.maisons::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,12,0.4), transparent);
}
.maisons__header { margin-bottom: 64px; }
.maisons__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.maison-item {
  border: 1px solid rgba(184,150,12,0.12); padding: 40px 24px; text-align: center;
  transition: all 0.4s var(--ease-luxury); position: relative; overflow: hidden;
}
.maison-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,150,12,0.08), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.maison-item:hover::before { opacity: 1; }
.maison-item:hover { border-color: rgba(184,150,12,0.5); transform: translateY(-2px); }
.maison-item span {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 300;
  color: var(--warm); letter-spacing: 0.05em; transition: color 0.3s;
}
.maison-item:hover span { color: var(--gold-light); }

/* EDITORIAL */
.editorial { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.editorial__left { position: relative; overflow: hidden; }
.editorial__left img { height: 100%; transition: transform 0.8s var(--ease-luxury); }
.editorial:hover .editorial__left img { transform: scale(1.04); }
.editorial__left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--black) 100%);
}
.editorial__right { background: var(--black); padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.editorial__title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 300; line-height: 1.05; color: var(--cream); margin-bottom: 36px;
}
.editorial__title em { font-style: italic; color: var(--gold-light); display: block; }
.editorial__body { font-size: 0.82rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; max-width: 440px; }
.editorial__right .btn { margin-top: 20px; align-self: flex-start; }

/* FINDER */
.finder { padding: 120px 60px; background: var(--dark-2); position: relative; overflow: hidden; }
.finder::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,150,12,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.finder__inner { max-width: 800px; }
.finder__sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 56px; margin-top: 8px; }
.finder__filters { display: flex; flex-direction: column; gap: 40px; margin-bottom: 56px; }
.finder__group-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); margin-bottom: 16px; }
.finder__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 9px 22px; font-family: var(--font-body); font-size: 0.68rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid rgba(136,136,128,0.25);
  transition: all 0.3s var(--ease-luxury);
}
.tag:hover, .tag.active { color: var(--gold-light); border-color: var(--gold); background: rgba(184,150,12,0.08); }

/* TESTIMONIALS */
.testimonials { padding: 120px 60px; background: var(--black); position: relative; }
.testimonials::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,12,0.3), transparent);
}
.testimonials__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonials__track { position: relative; min-height: 180px; margin: 48px 0 40px; }
.testimonial {
  position: absolute; inset: 0; opacity: 0; transform: translateY(20px);
  transition: all 0.6s var(--ease-luxury); pointer-events: none;
}
.testimonial.active { opacity: 1; transform: translateY(0); pointer-events: all; }
.testimonial__quote {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.6; margin-bottom: 28px;
}
.testimonial__author { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
.testimonials__dots { display: flex; justify-content: center; gap: 12px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(184,150,12,0.3); transition: all 0.3s; }
.dot.active { background: var(--gold-light); transform: scale(1.4); }

/* NEWSLETTER */
.newsletter { padding: 120px 60px; background: var(--dark); position: relative; overflow: hidden; }
.newsletter::before {
  content: ''; position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184,150,12,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.newsletter__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.1; color: var(--cream); margin-bottom: 20px; }
.newsletter__title em { font-style: italic; color: var(--gold-light); }
.newsletter__sub { font-size: 0.8rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 48px; }
.newsletter__form {
  display: flex; gap: 0; border: 1px solid rgba(184,150,12,0.3);
  overflow: hidden; transition: border-color 0.3s;
}
.newsletter__form:focus-within { border-color: var(--gold); }
.newsletter__input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 16px 24px; font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 300; color: var(--cream); letter-spacing: 0.05em;
}
.newsletter__input::placeholder { color: var(--text-muted); }
.newsletter__form .btn { border: none; border-left: 1px solid rgba(184,150,12,0.3); padding: 16px 32px; }

/* FOOTER */
.footer { background: var(--dark-2); border-top: 1px solid rgba(184,150,12,0.15); }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; padding: 80px 60px 60px; }
.footer__logo {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.35em; color: var(--cream);
  display: flex; align-items: baseline; gap: 2px; margin-bottom: 20px;
}
.footer__tagline { font-size: 0.78rem; color: var(--text-muted); line-height: 1.8; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 24px; }
.footer__col li { margin-bottom: 12px; }
.footer__col a { font-size: 0.78rem; color: var(--text-muted); transition: color 0.3s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 60px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__bottom p { font-size: 0.68rem; color: rgba(136,136,128,0.6); letter-spacing: 0.05em; }
.footer__socials { display: flex; gap: 20px; }
.footer__socials a { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; color: var(--text-muted); transition: color 0.3s; }
.footer__socials a:hover { color: var(--gold-light); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--large { grid-column: 1 / 3; grid-row: auto; }
  .product-card--large .product-card__img-wrap { aspect-ratio: 16/9; }
  .maisons__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav { padding: 22px 32px; }
  .nav.scrolled { padding: 16px 32px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__content { padding: 0 32px; }
  .hero__scroll { left: 32px; }
  .statement, .collections, .maisons, .finder, .testimonials, .newsletter { padding: 80px 32px; }
  .maisons__grid { grid-template-columns: repeat(2, 1fr); }
  .editorial { grid-template-columns: 1fr; }
  .editorial__left { height: 50vw; }
  .editorial__left-overlay { background: linear-gradient(0deg, var(--black) 0%, transparent 60%); }
  .editorial__right { padding: 60px 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px 40px; }
  .footer__bottom { padding: 20px 32px; }
}
@media (max-width: 600px) {
  .collections__grid { grid-template-columns: 1fr; }
  .product-card--large { grid-column: auto; grid-row: auto; }
  .product-card--large .product-card__img-wrap { aspect-ratio: 3/4; }
  .maisons__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; justify-content: center; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { border-left: none; border-top: 1px solid rgba(184,150,12,0.3); }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}