/* =====================================================
   LES SECRETS DE LÉA — style.css
   Boudoir glam : Prune / Bordeaux / Or / Pêche — 2026
   ===================================================== */

/* ==========================================================================
   Polices auto-hébergées — remplacent fonts.googleapis.com / fonts.gstatic.com
   Deux domaines tiers et deux poignées de main TLS en moins avant le premier
   pixel. Sous-ensemble LATIN uniquement : le site est en français.
   Les deux familles sont servies en version VARIABLE : un seul fichier couvre
   toutes les graisses employées, là où Google en déclarait huit.
   `font-display: swap` conserve le comportement d'avant.
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/montserrat-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/playfair-display-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Variables ---- */
:root {
  --mauve:        #AD729F;
  --mauve-dark:   #8E5A82;
  --rose-poudre:  #E6D8DF;
  --peche:        #F5A27C;
  --prune:        #3B2440;
  --prune-deep:   #24111F;
  --wine:         #7A1638;
  --wine-light:   #9C2A4D;
  --gold:         #C9A15A;
  --gold-light:   #E8CB94;
  /* Or lisible : --gold tombe a 2,41 de contraste sur blanc, sous le seuil AA
     de 4,5. Cette variante donne 4,92. Reservee au TEXTE ; le decoratif
     continue d'utiliser --gold. */
  --gold-text:  #8F6A2E;
  --bg:           #FFFFFF;
  --bg-soft:      #FBF6F3;
  --card:         #FFFFFF;
  --border:       rgba(59,36,64,0.10);
  --text:         #2B1A2E;
  --text-muted:   #7A6B78;
  --gradient:         linear-gradient(135deg, var(--wine) 0%, var(--mauve) 55%, var(--peche) 100%);
  --gradient-dark:    linear-gradient(135deg, var(--prune-deep) 0%, var(--wine) 100%);
  --gradient-gold:    linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  --shadow:      0 24px 70px rgba(36,17,31,0.22);
  --shadow-card: 0 10px 36px rgba(36,17,31,0.10);
  --radius:    16px;
  --radius-lg: 28px;
  --transition: 0.4s cubic-bezier(.22,1,.36,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--prune);
}
.accent-italic { font-style: italic; font-weight: 500; color: var(--wine); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--text-muted); margin-bottom: 0; }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1220px; }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-text);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .08s; }
.reveal-2 { transition-delay: .16s; }
.reveal-3 { transition-delay: .24s; }
.reveal-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- Topbar ---- */
.topbar {
  background: var(--prune-deep);
  padding: 9px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.03em;
}
.topbar a { color: rgba(255,255,255,0.82); }
.topbar a:hover { color: var(--gold-light); }
.topbar i { color: var(--gold-text); margin-right: 6px; }

/* ---- Navbar ---- */
.navbar-custom {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar-custom.scrolled { background: #FFFFFF; box-shadow: 0 4px 28px rgba(36,17,31,0.12); }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand img { height: 38px; width: auto; }
.navbar-nav .nav-link {
  position: relative;
  color: var(--prune) !important;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 8px 16px !important; border-radius: 8px;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--wine) !important; }
.navbar-toggler { border: 1px solid var(--border); padding: 6px 10px; }

.navbar-nav .nav-link.btn-nav-cta {
  background: var(--gradient-dark) !important;
  color: #fff !important; border-radius: 30px !important;
  padding: 9px 24px !important; font-weight: 600 !important; font-size: 0.84rem !important;
}
.navbar-nav .nav-link.btn-nav-cta::after { display: none; }
.btn-nav-cta:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(122,22,56,0.4); }

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-dark); color: #fff;
  padding: 15px 34px; border-radius: 30px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.03em; border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.btn-primary-custom:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 14px 36px rgba(122,22,56,0.45); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-gold); color: var(--prune-deep);
  padding: 15px 34px; border-radius: 30px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.03em; border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
}
.btn-gold:hover { transform: translateY(-3px); color: var(--prune-deep); box-shadow: 0 14px 36px rgba(201,161,90,0.5); }

.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--prune);
  padding: 14px 32px; border-radius: 30px; border: 1.5px solid var(--prune);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover { background: var(--prune); color: #fff; transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--prune-deep); }

/* ---- Hero plein écran (image opulente) ---- */
.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--prune-deep);
}
.hero-full-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,17,31,0.55) 0%, rgba(36,17,31,0.35) 40%, rgba(36,17,31,0.82) 100%);
}
.hero-full-content { position: relative; z-index: 2; color: #fff; text-align: center; width: 100%; }
.hero-full-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 26px;
}
.hero-full-eyebrow::before, .hero-full-eyebrow::after { content: ''; width: 30px; height: 1.5px; background: var(--gold-light); }
.hero-full-title {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  color: #fff;
  margin-bottom: 26px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.hero-full-title .line-grad {
  font-style: italic; font-weight: 600;
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-full-sub {
  font-size: 1.12rem; color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 40px;
}
.hero-full-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
.hero-scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 1.4rem;
  animation: bounceCue 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounceCue { 0%,100% { transform: translate(-50%,0); opacity:.6; } 50% { transform: translate(-50%,10px); opacity:1; } }

/* ---- Marquee ---- */
.marquee-wrap {
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
  position: relative;
}
.marquee-track { display: inline-flex; animation: marqueeScroll 32s linear infinite; }
.marquee-track span {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
  font-size: 1.15rem; color: var(--gold-light); padding: 0 28px;
  display: inline-flex; align-items: center; gap: 28px;
}
.marquee-track span::after { content: '✦'; font-style: normal; color: rgba(255,255,255,0.4); font-size: .8rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Hero stats (page intérieure) ---- */
.hero {
  position: relative;
  padding: 90px 0 100px;
  background: linear-gradient(180deg, var(--rose-poudre) 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -180px; right: -180px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(245,162,124,0.35) 0%, transparent 70%);
  border-radius: 50%; filter: blur(20px); pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 22px;
}
.hero-title { font-size: clamp(2.4rem, 4.2vw, 3.6rem); margin-bottom: 24px; }
.hero-title .line-grad {
  font-style: italic; font-weight: 600;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.06rem; color: var(--text-muted); max-width: 480px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.hero-media:hover img { transform: scale(1.05); }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--wine); }
.hero-stat-label { display: block; font-size: 0.76rem; color: var(--text-muted); letter-spacing: 0.03em; margin-top: 2px; }

/* ---- Sections communes ---- */
.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--gradient-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .eyebrow::before { background: var(--gold-light); }
.section-title { margin-bottom: 20px; }
.section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; }

.quote-block {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--wine); line-height: 1.4;
  border-left: 3px solid var(--gold); padding-left: 28px; margin: 32px 0;
}
.section-dark .quote-block { color: #fff; border-left-color: var(--gold); }

/* ---- Full-bleed scene (bandeau image immersif) ---- */
.scene-band {
  position: relative; min-height: 62vh; display: flex; align-items: center;
  overflow: hidden; background: var(--prune-deep);
}
.scene-band img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.22,1,.36,1);
}
.scene-band:hover img { transform: scale(1.04); }
.scene-band-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(36,17,31,0.82) 0%, rgba(36,17,31,0.35) 55%, rgba(36,17,31,0.1) 100%); }
.scene-band-content { position: relative; z-index: 2; color: #fff; max-width: 520px; }

/* ---- Cards / Bento ---- */
.brand-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; height: 100%; transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.brand-card i { font-size: 1.7rem; color: var(--wine); margin-bottom: 16px; display: block; }
.brand-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.brand-card p { font-size: 0.92rem; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 18px; }
.bento-grid .brand-card:nth-child(1) { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.bento-grid .brand-card:nth-child(1) i { font-size: 2.4rem; }
.bento-grid .brand-card:nth-child(1) h3 { font-size: 1.5rem; }
@media (max-width: 991px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-grid .brand-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

/* ---- Créatrices teaser grid ---- */
.creatrice-tile {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
}
.creatrice-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.22,1,.36,1); }
.creatrice-tile:hover img { transform: scale(1.08); }
.creatrice-tile-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(36,17,31,0.92) 0%, transparent 100%);
  color: #fff; padding: 26px 18px 16px; font-weight: 600; font-size: 0.92rem;
}

/* ---- Collection / Produits ---- */
.product-card {
  display: block; border-radius: var(--radius); overflow: hidden; background: var(--card);
  box-shadow: var(--shadow-card); transition: var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-card-img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--rose-poudre); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
  position: absolute; top: 14px; left: 14px; background: var(--gradient-gold); color: var(--prune-deep);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.product-card-body { padding: 18px 20px 22px; }
.product-card-title { font-size: 0.98rem; font-weight: 700; color: var(--prune); margin-bottom: 6px; }
.product-card-price { font-size: 0.92rem; font-weight: 700; color: var(--wine); }
.product-card-cta { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-text); margin-top: 8px; display: flex; align-items: center; gap: 6px; }

/* ---- CTA band ---- */
.cta-band { background: var(--gradient-dark); border-radius: var(--radius-lg); padding: 60px 50px; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(201,161,90,0.25) 0%, transparent 70%); }
.cta-band h2 { color: #fff; margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; position: relative; }
.cta-band .btn-gold { position: relative; }

/* ---- Footer ---- */
.footer { background: var(--prune-deep); color: rgba(255,255,255,0.78); padding: 68px 0 24px; }
.footer h2 { color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer a { color: rgba(255,255,255,0.72); font-size: 0.88rem; }
.footer a:hover { color: var(--gold-light); }
.footer .footer-logo { height: 34px; margin-bottom: 16px; }
.footer p.desc { font-size: 0.86rem; color: rgba(255,255,255,0.65); max-width: 320px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); margin-right: 8px; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--prune-deep); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 22px; font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: -200px; z-index: 3000;
  max-width: 640px; margin: 0 auto;
  background: var(--prune-deep); color: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px 24px; transition: bottom .5s cubic-bezier(.22,1,.36,1);
  border: 1px solid rgba(201,161,90,0.25);
}
.cookie-banner.is-visible { bottom: 20px; }
.cookie-banner-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between; }
.cookie-banner-inner p { color: rgba(255,255,255,0.82); font-size: 0.85rem; margin: 0; flex: 1 1 260px; }
.cookie-banner-inner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
/* La banniere est sombre : le bouton contour doit passer en clair, sinon il
   reste en --prune sur --prune-deep (contraste 1,29). */
.cookie-banner .btn-outline-custom { border-color: rgba(255,255,255,0.55); color: #fff; }
.cookie-banner .btn-outline-custom:hover { background: #fff; color: var(--prune-deep); }
.cookie-banner-actions button { padding: 9px 20px; font-size: 0.82rem; }
@media (max-width: 575px) {
  .cookie-banner { left: 12px; right: 12px; padding: 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions button { flex: 1; }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero { padding: 60px 0 70px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-media { margin-top: 40px; }
  .section { padding: 64px 0; }
  .cta-band { padding: 40px 28px; text-align: center; }
  .hero-full { min-height: 78vh; }
  .scene-band { min-height: 50vh; text-align: center; }
  .scene-band-content { max-width: 100%; }
}

/* ==========================================================================
   Icônes SVG — remplacent Font Awesome
   Chaque page embarque un sprite de ses seules icônes : plus de CSS ni de
   woff2 tirés de cdnjs, et un domaine tiers en moins.
   `1em` + currentColor reproduisent le comportement d'un glyphe de police.
   ========================================================================== */
.ic {
  width: 1em; height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

/* ==========================================================================
   Accessibilité — mouvement réduit
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Les blocs révélés au défilement partent à opacity: 0 : ils doivent rester
     visibles, pas figés à leur état initial. */
  .animate-in, .reveal, .fade-in { opacity: 1 !important; transform: none !important; }
}
