/* ============================================================
   BADDIES HAIRSTYLE — Site réel (données réelles Yoann)
   Raw hair / wigs premium — vente & livraison France + international
   Catalogue, prix, délais, retours et paiement = données réelles Yoann
   Système : noir profond #080808 + rose #E84374 + ivoire
   Cormorant Garamond (display) + Jost (corps)
   ============================================================ */

:root {
  --bg:       #080808;
  --bg-2:     #0F0F0F;
  --bg-3:     #151515;
  --surface:  #111111;
  --surface-2:#1A1A1A;
  --ink:      #FFFFFF;
  --ink-2:    #E8E8EA;
  --ink-soft: #B4B4BA;
  --ink-faint:#6A6A70;
  --line:     rgba(255,255,255,.09);
  --line-2:   rgba(255,255,255,.16);
  --accent:   #F0287A;
  --accent-s: #F768A3;
  --accent-d: #C41E65;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
  --ease:     cubic-bezier(.22,1,.36,1);
  --r-sm:     10px;
  --r-md:     16px;
  --r-lg:     22px;
  --r-xl:     30px;
}

/* Thème unique : base noire, texte blanc, accents rose. Pas de mode clair. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
html, body {
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.65;
  font-weight: 300;
}
body { overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- ACCESSIBILITÉ ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- UTILITAIRES ---- */
.kicker {
  font-size: 10px;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.kicker::before { content: ''; width: 24px; height: 1px; background: var(--accent); flex-shrink: 0; }
.kicker.center::after { content: ''; width: 24px; height: 1px; background: var(--accent); flex-shrink: 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--ink-soft);
}
.tag.hot { border-color: rgba(232,67,116,.35); color: var(--accent); }
.tag.hot::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---- BOUTONS ---- */
.btn {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, filter .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1;
}
.btn-rose {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(232,67,116,.5);
}
.btn-rose:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(232,67,116,.65); filter: brightness(1.06); }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 9px; }
.logo-img { height: 72px; width: auto; display: block; }
.logo-fallback { display: flex; align-items: baseline; gap: 9px; }
.logo-wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1;
}
.logo-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; align-self: center; }
.logo-sub {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 38px;
}
@media (min-width: 860px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 10px 20px; font-size: 10.5px; }

/* ---- HERO — plein écran cinématographique (modèle Hairperience) ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* fond de secours tant que la vidéo n'est pas déposée */
.hero-media-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 34%, rgba(240,40,122,.24), transparent 62%),
    linear-gradient(160deg, #1E0E14 0%, #0C0709 60%, #050505 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(8,8,8,.55) 0%,
    rgba(8,8,8,.12) 28%,
    rgba(8,8,8,.22) 58%,
    rgba(8,8,8,.94) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  animation: heroRise 1.1s var(--ease) both;
}
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  font-weight: 400;
}
.hero-logo {
  width: min(560px, 82vw);
  height: auto;
  filter: drop-shadow(0 18px 55px rgba(240,40,122,.4));
}
/* secours texte si le logo n'est pas encore déposé */
.hero-title-text {
  font-family: var(--serif);
  font-size: clamp(56px,11vw,120px);
  line-height: .95;
  font-weight: 400;
  color: #fff;
}
.hero-title-text em { font-style: italic; color: var(--accent); }
.hero-underline { width: 54px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero-tagline {
  font-size: clamp(14px,1.7vw,17px);
  color: rgba(255,255,255,.88);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 6px; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.65), transparent); }

/* ---- SECTION BASE ---- */
.section { padding: clamp(72px,11vw,120px) 0; position: relative; }
.section.alt { background: var(--bg-2); }
.section.dark-tint { background: var(--bg-3); }

.shead { margin-bottom: clamp(44px,6vw,68px); }
.shead.center { text-align: center; }
.shead .kicker { margin-bottom: 20px; }
.shead h2 {
  font-size: clamp(34px,5.2vw,58px);
  line-height: 1.03;
  margin-bottom: 16px;
  font-weight: 400;
  text-wrap: balance;
}
.shead h2 em { font-style: italic; color: var(--accent); }
.shead p { font-size: 16px; color: var(--ink-soft); max-width: 500px; font-weight: 300; }
.shead.center p { margin-inline: auto; }

/* ---- COLLECTIONS ---- */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .collections-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .collections-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -24px rgba(0,0,0,.6); border-color: var(--line-2); }
.product-thumb {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb-placeholder {
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  color: var(--accent);
  opacity: .3;
}
.product-thumb-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(232,67,116,.12), transparent 70%);
  pointer-events: none;
}
.product-tag-float {
  position: absolute;
  top: 14px;
  left: 14px;
}
.product-body { padding: 22px 24px 26px; }
.product-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 400;
  line-height: 1.2;
}
.product-desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 300;
  line-height: 1.6;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}
.product-price sub { font-size: 12px; font-family: var(--sans); color: var(--ink-soft); font-weight: 300; }
.product-action {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.product-card:hover .product-action { gap: 12px; }
.product-action::after { content: '→'; }

/* ---- COMMANDER ---- */
.order-section { background: var(--bg); }
.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .order-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.order-steps { display: flex; flex-direction: column; gap: 0; }
.ostep {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.ostep:first-child { border-top: none; padding-top: 0; }
.ostep-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
  flex-shrink: 0;
  width: 38px;
  line-height: 1;
  margin-top: -4px;
  opacity: .7;
}
.ostep-body h4 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
  font-family: var(--serif);
  line-height: 1.2;
}
.ostep-body p { font-size: 13.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.65; }
.ostep-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  transition: border-color .2s, color .2s;
}
.channel-pill:hover { border-color: var(--accent); color: var(--accent); }
.channel-pill .ch-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ch-snap { background: #FFFC00; }
.ch-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ch-wa { background: #25D366; }

/* carte de commande illustrative */
.order-card-wrap {
  position: sticky;
  top: 90px;
}
.order-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.55);
}
.ocard-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ocard-head-title { font-family: var(--serif); font-size: 17px; color: var(--ink); font-weight: 500; }
.ocard-status {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ocard-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.ocard-body { padding: 22px; }
.ocard-product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.ocard-product-thumb {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--surface-2);
  flex-shrink: 0;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-s);
  opacity: .7;
}
.ocard-product-info strong { font-family: var(--serif); font-size: 17px; color: var(--ink); display: block; margin-bottom: 2px; }
.ocard-product-info span { font-size: 11.5px; color: var(--ink-faint); }

.ocard-steps { position: relative; padding-left: 28px; }
.ocard-steps-line {
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
}
.ocard-steps-fill {
  position: absolute;
  left: 8px; top: 6px;
  width: 2px;
  border-radius: 2px;
  background: var(--accent);
  height: 60%;
  transition: height 1s var(--ease);
}
.ocard-step { padding: 0 0 20px; position: relative; }
.ocard-step:last-child { padding-bottom: 0; }
.ocard-step::before {
  content: '';
  position: absolute;
  left: -24px; top: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  background: var(--surface);
  z-index: 1;
}
.ocard-step.done::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,67,116,.15);
}
.ocard-step.active::before {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(232,67,116,.12);
  animation: stepPulse 2s ease-in-out infinite;
}
@keyframes stepPulse { 0%,100%{box-shadow:0 0 0 4px rgba(232,67,116,.12)} 50%{box-shadow:0 0 0 7px rgba(232,67,116,.06)} }
.ocard-step-label { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 2px; }
.ocard-step-title { font-family: var(--serif); font-size: 16px; color: var(--ink); font-weight: 500; }
.ocard-step.dim .ocard-step-title { color: var(--ink-faint); font-weight: 400; }

.ocard-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ocard-foot-info { font-size: 11.5px; color: var(--ink-soft); }
.ocard-foot-info strong { color: var(--ink); font-weight: 500; display: block; }

/* ---- LIVRAISON ---- */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .delivery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .delivery-grid { grid-template-columns: repeat(4, 1fr); } }

.delivery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: border-color .3s, transform .3s var(--ease);
}
.delivery-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.delivery-icon {
  font-size: 28px;
  margin-bottom: 16px;
  opacity: .8;
  line-height: 1;
}
.delivery-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
}
.delivery-card p { font-size: 13px; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }
.delivery-card .delay {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  font-weight: 500;
}
.delivery-card .delay sub { font-size: 11px; font-family: var(--sans); color: var(--ink-faint); font-weight: 300; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: color .2s;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-size: 14px;
  transition: transform .3s var(--ease), border-color .2s, color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq-a {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), padding .3s;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-a strong { color: var(--ink); font-weight: 500; }

/* ---- CTA FINAL ---- */
.cta-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(48px,7vw,80px) clamp(28px,5vw,64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 100%, rgba(232,67,116,.12), transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  font-size: clamp(36px,5.5vw,62px);
  line-height: 1.03;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  text-wrap: balance;
}
.cta-block h2 em { font-style: italic; color: var(--accent); }
.cta-block p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 36px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-note {
  margin-top: 22px;
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: .06em;
  position: relative;
  z-index: 1;
}

/* ---- FOOTER ---- */
.footer {
  padding: clamp(48px,8vw,80px) 0 clamp(28px,4vw,40px);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: var(--ink-faint); font-weight: 300; max-width: 240px; line-height: 1.7; }
.footer-col h5 {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
  font-family: var(--sans);
  font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  transition: color .2s, border-color .2s, transform .2s;
}
.social-btn:hover { color: var(--ink); border-color: var(--accent); transform: translateY(-2px); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 11.5px; color: var(--ink-faint); }
.footer-by {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: .6;
}

/* ---- ANIMATIONS ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }
  .reveal-d4 { transition-delay: .32s; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--line); }
  .hero-stat:last-child { border-bottom: none; }
}

/* ---- BANDE PAIEMENT ---- */
.pay-strip { padding: 0 0 clamp(64px,9vw,100px); }
.pay-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 720px) { .pay-band { grid-template-columns: repeat(2,1fr); } }
.pay-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: var(--surface);
}
.pay-ico { font-size: 22px; line-height: 1; }
.pay-txt strong { display: block; font-family: var(--serif); font-size: 16.5px; color: var(--ink); margin-bottom: 2px; }
.pay-txt small { display: block; font-size: 12px; color: var(--ink-soft); }

/* ---- FIDÉLITÉ (Programme Lifetime) ---- */
.loyalty-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 820px) { .loyalty-grid { grid-template-columns: repeat(3,1fr); } }
.loyalty-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.loyalty-card.mid { border-color: rgba(240,40,122,.4); }
.loyalty-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.loyalty-card h4 { font-size: 20px; margin-bottom: 8px; }
.loyalty-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }
.loyalty-note { margin-top: 22px; font-size: 12px; color: var(--ink-faint); text-align: center; }

/* ---- ESPACE BEAUTÉ (module A7) ---- */
.space-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 920px) { .space-grid { grid-template-columns: 1.05fr .95fr; align-items: start; } }
.space-features { display: flex; flex-direction: column; gap: 18px; }
.space-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.space-feature-ico { font-size: 20px; line-height: 1.2; }
.space-feature strong { display: block; font-family: var(--serif); font-size: 17px; color: var(--ink); margin-bottom: 3px; }
.space-feature p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }
.space-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
}
.space-form h4 { font-size: 20px; margin-bottom: 6px; }
.space-form > p { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.space-form form { display: flex; flex-direction: column; gap: 12px; }
.space-form input, .space-form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 300;
}
.space-form textarea { min-height: 84px; resize: vertical; }
.space-form input:focus, .space-form textarea:focus { outline: none; border-color: var(--accent); }
.form-status { font-size: 12px; color: var(--ink-soft); min-height: 16px; }
.form-status.sent { color: var(--accent); }

/* ---- NEWSLETTER ---- */
.nl-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(36px,6vw,56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nl-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(240,40,122,.12), transparent 60%);
}
.nl-band h2 { font-size: clamp(28px,4.5vw,42px); margin-bottom: 10px; position: relative; }
.nl-band h2 em { font-style: italic; color: var(--accent); }
.nl-band > p { font-size: 14px; color: var(--ink-soft); max-width: 440px; margin: 0 auto 24px; position: relative; }
.nl-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}
.nl-form input {
  flex: 1;
  min-width: 220px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 14px 20px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 300;
}
.nl-form input:focus { outline: none; border-color: var(--accent); }
.nl-note { margin-top: 14px; font-size: 11px; color: var(--ink-faint); position: relative; }

/* ---- CHAT WIDGET (pont temporaire — sera remplacé par le widget ManyChat "Website") ---- */
.chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px -10px rgba(240,40,122,.6);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.chat-launcher:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 20px 44px -12px rgba(240,40,122,.7); }
.chat-launcher svg { width: 24px; height: 24px; }
.chat-launcher .chat-dot { position: absolute; top: 4px; right: 4px; width: 11px; height: 11px; border-radius: 50%; background: #33D17A; border: 2px solid var(--bg); }

.chat-panel {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 500;
  width: min(340px, calc(100vw - 40px));
  max-height: min(480px, calc(100vh - 130px));
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 90px -24px rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-panel-head {
  padding: 16px 18px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.chat-panel-head strong { font-family: var(--serif); font-size: 17px; font-weight: 500; display: block; }
.chat-panel-head span { font-size: 10.5px; opacity: .85; display: flex; align-items: center; gap: 5px; }
.chat-panel-head span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #33D17A; }
.chat-panel-close { background: rgba(255,255,255,.18); border: none; color: #fff; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 15px; line-height: 1; flex-shrink: 0; }
.chat-panel-body { padding: 16px 18px; overflow-y: auto; flex: 1; }
.chat-bubble { background: var(--bg-2); border-radius: 14px 14px 14px 4px; padding: 10px 14px; font-size: 13px; color: var(--ink-2); line-height: 1.55; margin-bottom: 14px; max-width: 90%; }
.chat-form { display: flex; flex-direction: column; gap: 9px; }
.chat-form input, .chat-form textarea {
  font-family: var(--sans);
  font-size: 13px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  resize: none;
}
.chat-form input:focus, .chat-form textarea:focus { outline: none; border-color: var(--accent); }
.chat-form textarea { min-height: 64px; }
.chat-form .btn { width: 100%; justify-content: center; }
.chat-status { font-size: 11.5px; color: var(--ink-faint); text-align: center; margin-top: 8px; }
.chat-status.sent { color: var(--accent); }
