/* ============================================================
   MEILLEURS PRODUITS BEAUTÉ 2027 — Feuille de style principale
   Direction : élégant, féminin, chic, luxe (Lancôme / Dior / La Mer)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Couleurs (pilotables par les Tweaks) */
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-deep:   #A6863A;
  --gold-pale:   #F1E7CC;
  --ink:         #1A1A1A;
  --ivory:       #FAF8F4;
  --cream:       #F4EEE3;
  --rose:        #E8C4C4;
  --rose-pale:   #F6E7E7;
  --dark:        #1C1410;
  --dark-2:      #231A14;
  --white:       #FFFFFF;

  /* Dérivés */
  --line-gold:   rgba(201,168,76,.35);
  --line-soft:   rgba(26,26,26,.10);
  --text-muted:  #6B6359;
  --text-on-dark:#EDE6D8;
  --muted-on-dark: rgba(237,230,216,.62);

  /* Gradient or "champagne foil" */
  --gold-foil: linear-gradient(135deg, #E8D5A3 0%, #C9A84C 38%, #A6863A 62%, #E0C97E 100%);
  --gold-sheen: linear-gradient(120deg, #B9963F 0%, #E8D5A3 45%, #F5ECD0 52%, #C9A84C 70%, #9E7E34 100%);

  /* Typographie (pilotable) */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  /* Mesures */
  --maxw: 1240px;
  --pad-x: clamp(22px, 5vw, 64px);
  --sec-y: clamp(72px, 11vw, 140px);
  --radius: 8px;
  --radius-lg: 16px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; margin: 0; line-height: 1.06; letter-spacing: -.01em; }
p { margin: 0; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--sec-y); position: relative; }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--dark); color: var(--text-on-dark); }
.section--dark-2{ background: linear-gradient(160deg, #221913 0%, #16100C 100%); color: var(--text-on-dark); }
.section--rose  { background: linear-gradient(170deg, var(--rose-pale) 0%, #F3DEDE 100%); }

/* Eyebrow / kicker */
.kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section--dark .kicker, .section--dark-2 .kicker { color: var(--gold-light); }
.kicker--center { justify-content: center; }
.kicker--center::after {
  content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block;
}

/* Section index numeral */
.sec-index {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 500;
  font-style: italic;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-gold);
  opacity: .8;
}

/* Headings scale */
.h-display { font-size: clamp(40px, 7vw, 92px); font-weight: 500; }
.h1 { font-size: clamp(34px, 5.2vw, 64px); }
.h2 { font-size: clamp(29px, 4vw, 48px); }
.h3 { font-size: clamp(22px, 2.4vw, 30px); }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-muted); max-width: 60ch; }
.section--dark .lead, .section--dark-2 .lead { color: var(--muted-on-dark); }

.gold-text {
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
em.serif-em { font-style: italic; color: var(--gold-deep); }
.section--dark em.serif-em { color: var(--gold-light); }

/* Thin divider */
.rule-gold { height: 1px; background: var(--line-gold); border: 0; margin: 0; }
.star-divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold); margin: 0 auto;
}
.star-divider::before, .star-divider::after {
  content: ""; height: 1px; width: min(120px, 22vw); background: var(--line-gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 30px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--gold {
  background: var(--gold-sheen);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: #221808;
  box-shadow: 0 10px 30px -12px rgba(166,134,58,.7);
}
.btn--gold:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(166,134,58,.85); }
.btn--outline {
  background: transparent; color: var(--ink);
  border-color: rgba(26,26,26,.28);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.section--dark .btn--outline, .section--dark-2 .btn--outline, .hero .btn--outline {
  color: var(--text-on-dark); border-color: rgba(237,230,216,.4);
}
.section--dark .btn--outline:hover, .hero .btn--outline:hover {
  border-color: var(--gold-light); color: var(--gold-light);
}
.btn--sm { padding: 12px 22px; font-size: 12.5px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px var(--pad-x);
  background: rgba(20,15,11,0);
  backdrop-filter: blur(0px);
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
  color: var(--text-on-dark);
}
.nav.is-scrolled {
  background: rgba(20,15,11,.82);
  backdrop-filter: blur(16px) saturate(1.2);
  padding-block: 11px;
  box-shadow: 0 1px 0 rgba(201,168,76,.18);
}
.nav__brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.nav__brand img { height: 44px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); transition: height .5s var(--ease); }
.nav.is-scrolled .nav__brand img { height: 38px; }
.nav__brand-txt { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-txt b {
  font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: .02em;
  color: var(--gold-light);
}
.nav__brand-txt span { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-on-dark); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__link {
  position: relative; font-size: 13.5px; letter-spacing: .04em; color: var(--text-on-dark);
  padding: 6px 0; opacity: .9; transition: opacity .3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-light); transition: width .35s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: 8px; }

.nav__burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  flex-direction: column; gap: 6px; align-items: center; justify-content: center;
}
.nav__burger span { width: 24px; height: 1.5px; background: var(--gold-light); transition: transform .35s var(--ease), opacity .25s; }
.nav__burger.is-open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2){ opacity: 0; }
.nav__burger.is-open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: 0; z-index: 79;
  background: linear-gradient(160deg, #1C1410 0%, #110C08 100%);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 90px var(--pad-x) 40px;
  transform: translateX(100%); transition: transform .5s var(--ease);
  visibility: hidden;
}
.nav__drawer.is-open { transform: translateX(0); visibility: visible; }
.nav__drawer a {
  font-family: var(--font-display); font-size: clamp(26px, 7vw, 38px); font-weight: 500;
  color: var(--text-on-dark); padding: 9px 0; border-bottom: 1px solid rgba(201,168,76,.14);
}
.nav__drawer a.is-cta { color: var(--gold-light); }
.nav__drawer-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--text-on-dark); overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media image-slot, .hero__media .hero-fallback { width: 100%; height: 100%; }
.hero-fallback {
  background:
    radial-gradient(120% 90% at 75% 15%, rgba(201,168,76,.30), transparent 55%),
    radial-gradient(90% 80% at 15% 90%, rgba(232,196,196,.18), transparent 60%),
    linear-gradient(155deg, #2A1F17 0%, #160F0B 60%, #0E0A07 100%);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,10,7,.55) 0%, rgba(15,10,7,.12) 32%, rgba(15,10,7,.30) 60%, rgba(12,8,5,.92) 100%),
    radial-gradient(80% 60% at 80% 12%, rgba(201,168,76,.16), transparent 60%);
}
.hero__inner { width: 100%; padding-bottom: clamp(56px, 9vh, 110px); padding-top: 140px; }
.hero__badge {
  position: absolute; top: clamp(96px, 14vh, 130px); right: var(--pad-x); z-index: 2;
  width: clamp(108px, 13vw, 168px); filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
  animation: floaty 6s var(--ease) infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }
@media (prefers-reduced-motion: reduce){ .hero__badge { animation: none; } }
.hero h1 { font-size: clamp(44px, 8.4vw, 116px); font-weight: 500; max-width: 16ch; }
.hero h1 .accent { font-style: italic; }
.hero__sub {
  margin-top: 26px; font-size: clamp(15px, 1.5vw, 19px); letter-spacing: .04em;
  color: var(--gold-light); max-width: 44ch;
}
.hero__sub b { font-weight: 500; color: var(--text-on-dark); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-on-dark);
}
.hero__scroll .line { width: 1px; height: 44px; background: linear-gradient(var(--gold-light), transparent); animation: scrolldash 2.2s var(--ease) infinite; }
@keyframes scrolldash { 0%{ transform: scaleY(0); transform-origin: top } 45%{ transform: scaleY(1); transform-origin: top } 55%{ transform: scaleY(1); transform-origin: bottom } 100%{ transform: scaleY(0); transform-origin: bottom } }

/* ---------- Floating CTAs ---------- */
.floaters {
  position: fixed; right: clamp(14px, 2.4vw, 28px); bottom: clamp(14px, 2.4vw, 28px);
  z-index: 70; display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  transition: transform .5s var(--ease), opacity .4s;
}
.floaters .btn { box-shadow: 0 14px 38px -14px rgba(0,0,0,.5); }
.floaters .btn--outline { background: rgba(20,15,11,.7); backdrop-filter: blur(10px); color: var(--gold-light); border-color: rgba(201,168,76,.5); }
.floaters .btn--outline:hover { background: rgba(20,15,11,.9); }
.floaters.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }

/* ---------- Chiffres clés ---------- */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.stat { padding: 8px clamp(16px, 2.4vw, 38px); text-align: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: var(--line-gold);
}
.stat__num {
  font-family: var(--font-display); font-weight: 500; line-height: 1;
  font-size: clamp(46px, 6vw, 78px);
  background: var(--gold-foil); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { margin-top: 14px; font-size: 14px; color: var(--text-muted); line-height: 1.45; letter-spacing: .01em; }

/* ---------- Generic two-column ---------- */
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.two-col--rev .col-media { order: -1; }
.col-text p + p { margin-top: 18px; }
.col-text .lead { margin-top: 22px; }
.col-text .btn { margin-top: 32px; }

.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(40,28,12,.5);
}
.media-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,.4);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(201,168,76,.08), transparent 40%);
}
.media-frame image-slot { width: 100%; height: 100%; display: block; }

/* placeholder visual fallback inside slots */
image-slot { --slot-grad: linear-gradient(155deg,#efe6d2,#e3d4ad); }

/* ---------- Feature grid (certification) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 56px); margin-top: 8px; }
.feat {
  position: relative; padding-bottom: 30px; border-bottom: 1px solid rgba(201,168,76,.28);
}
.feat__icon { width: 14px; height: 14px; color: var(--gold-light); margin-bottom: 20px; }
.feat__icon svg { width: 100%; height: 100%; }
.feat h3 { font-size: 24px; margin-bottom: 12px; color: var(--text-on-dark); }
.feat p { color: var(--muted-on-dark); font-size: 15.5px; }
.feat .pill-note { color: var(--gold-light); }

/* big floating 16/20 */
.score-emblem {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: clamp(150px, 17vw, 210px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #FBF4DD, #C9A84C 70%, #9E7E34);
  box-shadow: 0 30px 70px -24px rgba(166,134,58,.7), inset 0 2px 8px rgba(255,255,255,.5);
  color: #221808; position: relative;
}
.score-emblem::before {
  content: ""; position: absolute; inset: 9px; border-radius: 50%; border: 1px solid rgba(34,24,8,.35);
}
.score-emblem b { font-family: var(--font-display); font-size: clamp(40px, 5vw, 58px); font-weight: 600; line-height: 1; }
.score-emblem span { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin-top: 6px; }

/* ---------- Radar / critères ---------- */
.criteria-card {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 40px 90px -50px rgba(40,28,12,.45); border: 1px solid var(--line-soft);
}
.radar-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.radar-svg { width: 100%; height: auto; }
.crit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.crit-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 0; border-bottom: 1px solid var(--line-soft);
}
.crit-list li:last-child { border-bottom: 0; }
.crit-name { font-size: 16px; font-weight: 400; }
.crit-coef { display: inline-flex; align-items: center; gap: 10px; }
.crit-coef .bar { width: clamp(60px, 9vw, 130px); height: 5px; border-radius: 4px; background: var(--cream); overflow: hidden; }
.crit-coef .bar i { display: block; height: 100%; background: var(--gold-foil); border-radius: 4px; }
.crit-coef b { font-family: var(--font-display); font-size: 21px; color: var(--gold-deep); min-width: 26px; text-align: right; }

.note-bio {
  margin-top: 26px; display: flex; gap: 14px; align-items: flex-start;
  font-size: 14.5px; color: var(--text-muted); padding: 18px 22px;
  background: var(--rose-pale); border-radius: var(--radius); border: 1px solid var(--rose);
}
.note-bio svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold-deep); margin-top: 2px; }

/* ---------- Indicators row (test produit) ---------- */
.indi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.indi {
  padding: 26px 22px; border-radius: var(--radius); background: var(--ivory);
  border: 1px solid var(--line-soft); text-align: left;
}
.indi__icon { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: 16px; }
.indi h4 { font-family: var(--font-body); font-weight: 500; font-size: 14.5px; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.indi p { font-size: 14px; color: var(--text-muted); }

/* ---------- Timeline ---------- */
.timeline { margin-top: 60px; position: relative; }
.timeline__track {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; position: relative;
}
.timeline__line {
  position: absolute; top: 23px; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
}
.tl-step { position: relative; padding: 0 10px; text-align: center; }
.tl-step__dot {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 22px; position: relative; z-index: 2;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 20px;
  background: var(--dark); color: var(--gold-light); border: 1px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,168,76,.08);
}
.tl-step__date { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; min-height: 28px; }
.tl-step h4 { font-size: 19px; color: var(--text-on-dark); margin-bottom: 9px; }
.tl-step p { font-size: 13.5px; color: var(--muted-on-dark); line-height: 1.5; }

/* ---------- Benchmark bars ---------- */
.bench { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.bench__row { display: grid; grid-template-columns: 1fr; gap: 8px; }
.bench__top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.bench__name { font-size: 15px; }
.bench__name.is-us { font-weight: 500; color: var(--gold-deep); }
.bench__val { font-family: var(--font-display); font-size: 24px; color: var(--ink); }
.bench__val.is-us { color: var(--gold-deep); }
.bench__track { height: 12px; border-radius: 8px; background: var(--cream); overflow: hidden; }
.bench__fill { height: 100%; border-radius: 8px; width: 0; transition: width 1.3s var(--ease); background: linear-gradient(90deg, #D9C28A, #9E8B6B); }
.bench__fill.is-us { background: var(--gold-sheen); }

/* ---------- Logo wall ---------- */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 14px; }
.logo-slot {
  aspect-ratio: 16/9; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line-soft); display: grid; place-items: center; padding: 14px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s;
}
.logo-slot:hover { box-shadow: 0 18px 40px -24px rgba(40,28,12,.4); transform: translateY(-3px); border-color: var(--line-gold); }
.logo-slot image-slot { width: 100%; height: 100%; filter: grayscale(100%); transition: filter .45s var(--ease); }
.logo-slot:hover image-slot { filter: grayscale(0%); }
.logo-slot .ph { font-size: 13px; color: var(--text-muted); text-align: center; letter-spacing: .02em; }

/* badge duo (bio + pharma) */
.badge-duo { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.badge-duo img { height: clamp(120px, 16vw, 180px); width: auto; filter: drop-shadow(0 20px 40px rgba(40,28,12,.25)); }

/* ---------- Tabs (participer) ---------- */
.tabs { display: flex; gap: 0; justify-content: center; margin: 40px auto 48px; border: 1px solid var(--line-gold); border-radius: 999px; padding: 5px; width: max-content; max-width: 100%; }
.tab {
  border: 0; background: transparent; padding: 13px 34px; border-radius: 999px;
  font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--text-muted);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.tab.is-active { background: var(--gold-sheen); color: #221808; box-shadow: 0 8px 22px -12px rgba(166,134,58,.7); }
.tab-panels { position: relative; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp .6s var(--ease); }
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.icard {
  background: var(--white); border-radius: var(--radius-lg); padding: 38px 32px;
  border: 1px solid var(--line-soft); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.icard:hover { transform: translateY(-5px); box-shadow: 0 40px 80px -44px rgba(40,28,12,.4); }
.icard__n { font-family: var(--font-display); font-style: italic; font-size: 40px; color: var(--line-gold); -webkit-text-stroke: 1px var(--gold); -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 22px; }
.icard h3 { font-size: 23px; margin-bottom: 12px; }
.icard p { font-size: 15px; color: var(--text-muted); }

/* ---------- Rayonnement gold cards ---------- */
.gcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gcard {
  border-radius: var(--radius-lg); padding: 40px 34px; position: relative; overflow: hidden;
  background: linear-gradient(165deg, rgba(201,168,76,.14), rgba(201,168,76,.03));
  border: 1px solid rgba(201,168,76,.32);
  transition: transform .45s var(--ease), border-color .45s;
}
.gcard:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.6); }
.gcard__icon { width: 40px; height: 40px; color: var(--gold-light); margin-bottom: 24px; }
.gcard h3 { font-size: 25px; color: var(--gold-light); margin-bottom: 14px; }
.gcard p { color: var(--muted-on-dark); font-size: 15px; }

/* ---------- Usage grid (logo) ---------- */
.usage-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-gold); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); overflow: hidden; }
.usage {
  background: var(--ivory); padding: 44px 32px; display: flex; flex-direction: column; gap: 16px;
  transition: background .4s var(--ease);
}
.usage:hover { background: var(--white); }
.usage__icon { width: 40px; height: 40px; color: var(--gold-deep); }
.usage h4 { font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.usage p { font-size: 14px; color: var(--text-muted); }

/* ---------- Quote ---------- */
.quote-block { display: grid; grid-template-columns: 1.5fr .8fr; gap: clamp(36px,5vw,72px); align-items: center; }
.quote-mark { font-family: var(--font-display); font-size: 120px; line-height: .6; color: var(--gold); height: 60px; }
.quote-block blockquote { margin: 0; }
.quote-block q { quotes: none; }
.quote-block .qtext { font-family: var(--font-display); font-size: clamp(24px, 3.1vw, 40px); font-weight: 500; font-style: italic; line-height: 1.32; color: var(--text-on-dark); }
.quote-cite { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.quote-cite .nm { font-weight: 500; color: var(--text-on-dark); letter-spacing: .02em; }
.quote-cite .rl { font-size: 13px; color: var(--muted-on-dark); }
.quote-logo image-slot, .quote-logo .ph { width: 100%; }
.quote-logo .ph {
  aspect-ratio: 3/2; border: 1px solid rgba(201,168,76,.3); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--muted-on-dark); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
}

/* ---------- Pricing ---------- */
.price-switch-note { text-align: center; color: var(--text-muted); margin: 0 auto 8px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.price-col {
  border-radius: var(--radius-lg); padding: 36px clamp(24px,3vw,40px); border: 1px solid var(--line-soft); background: var(--white);
}
.price-col.is-featured {
  border-color: var(--gold); background: linear-gradient(170deg, #FFFDF8, #F7EFDD);
  box-shadow: 0 40px 90px -50px rgba(166,134,58,.5); position: relative;
}
.price-col__tag {
  position: absolute; top: -13px; left: 36px; background: var(--gold-sheen); color: #221808;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; padding: 6px 16px; border-radius: 999px;
}
.price-col__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 22px; border-bottom: 1px solid var(--line-gold); margin-bottom: 8px; }
.price-col__head h3 { font-size: 26px; }
.price-col__head .when { font-size: 12.5px; color: var(--text-muted); letter-spacing: .04em; text-align: right; }
.price-rows { list-style: none; margin: 0; padding: 0; }
.price-rows li { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.price-rows li:last-child { border-bottom: 0; }
.price-rows .pq { font-size: 15px; color: var(--ink); }
.price-rows .pp { font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.price-col.is-featured .pp { color: var(--gold-deep); }
.price-rows .pp small { font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--text-muted); letter-spacing: .04em; }

.price-extras { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 40px; }
.price-extra { padding: 24px; border-radius: var(--radius); background: var(--ivory); border: 1px solid var(--line-soft); }
.price-extra b { font-family: var(--font-display); font-size: 21px; color: var(--gold-deep); display: block; margin-bottom: 8px; }
.price-extra p { font-size: 13.5px; color: var(--text-muted); }
.price-foot { margin-top: 28px; font-size: 13.5px; color: var(--text-muted); text-align: center; }

/* ---------- Forms ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.is-full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-dark); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 16px; font-weight: 300; color: var(--text-on-dark);
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.28); border-radius: var(--radius);
  padding: 14px 16px; transition: border-color .3s, background .3s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-light); background: rgba(255,255,255,.07); }
.field input::placeholder, .field textarea::placeholder { color: rgba(237,230,216,.35); }
.field.has-error input, .field.has-error textarea { border-color: #D98A8A; }
.field__err { font-size: 12px; color: #E2A6A6; letter-spacing: .02em; text-transform: none; min-height: 0; display: none; }
.field.has-error .field__err { display: block; }
.form__submit { grid-column: 1/-1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-success {
  grid-column: 1/-1; display: none; align-items: center; gap: 14px; color: var(--gold-light);
  padding: 16px 20px; border: 1px solid rgba(201,168,76,.4); border-radius: var(--radius); background: rgba(201,168,76,.08);
}
.form-success.show { display: flex; }

/* contact split */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.contact-card { }
.contact-card .nm { font-family: var(--font-display); font-size: 30px; color: var(--text-on-dark); }
.contact-card .rl { color: var(--gold-light); letter-spacing: .04em; margin-top: 4px; }
.contact-lines { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-line { display: flex; align-items: center; gap: 14px; color: var(--text-on-dark); font-size: 15.5px; }
.contact-line svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; }
.contact-line a:hover { color: var(--gold-light); }

/* ---------- Testeur section ---------- */
.testeur-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px,6vw,80px); align-items: center; }
.testeur-badge { display: grid; place-items: center; }
.testeur-badge img { width: clamp(180px, 24vw, 300px); filter: drop-shadow(0 26px 50px rgba(120,60,60,.3)); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--text-on-dark); padding: clamp(56px,7vw,90px) 0 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px,4vw,56px); }
.footer__brand img { height: 78px; margin-bottom: 20px; }
.footer__brand p { color: var(--muted-on-dark); font-size: 14px; max-width: 30ch; }
.footer__col h4 { font-family: var(--font-body); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14.5px; color: var(--muted-on-dark); transition: color .3s; }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
  margin-top: clamp(40px,5vw,64px); border-top: 1px solid rgba(201,168,76,.16); padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted-on-dark);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
.reveal[data-d="5"]{ transition-delay: .40s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1 !important; transform: none !important; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* section header block */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h1, .sec-head .h2 { margin-bottom: 22px; }

/* ---------- Legal pages ---------- */
.legal-hero { padding: clamp(130px, 18vh, 200px) 0 clamp(40px,6vw,70px); background: linear-gradient(170deg,#221913,#16100C); color: var(--text-on-dark); }
.legal-hero h1 { font-size: clamp(36px, 6vw, 68px); }
.legal-hero p { color: var(--muted-on-dark); margin-top: 14px; }
.legal-body { padding-block: clamp(48px,7vw,88px); background: var(--ivory); }
.legal-wrap { max-width: 820px; margin-inline: auto; padding-inline: var(--pad-x); }
.legal-wrap h2 { font-size: clamp(24px,3vw,34px); margin: clamp(40px,5vw,64px) 0 16px; padding-top: clamp(28px,4vw,40px); border-top: 1px solid var(--line-gold); }
.legal-wrap h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-wrap h3 { font-family: var(--font-body); font-weight: 500; font-size: 17px; letter-spacing: .02em; margin: 26px 0 8px; }
.legal-wrap p { color: #3D3730; margin-bottom: 14px; }
.legal-wrap ul { margin: 0 0 16px; padding-left: 22px; color: #3D3730; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-gold); }
.legal-wrap a:hover { text-decoration-color: var(--gold); }
.legal-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(40px,5vw,56px); }
.legal-toc a { font-size: 12.5px; letter-spacing: .04em; padding: 8px 16px; border: 1px solid var(--line-gold); border-radius: 999px; color: var(--text-muted); text-decoration: none; transition: border-color .3s, color .3s; }
.legal-toc a:hover { border-color: var(--gold); color: var(--gold-deep); }
.legal-meta { font-size: 13px; color: var(--text-muted); margin-top: clamp(40px,5vw,56px); padding-top: 22px; border-top: 1px solid var(--line-soft); }
table.legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 14.5px; }
table.legal-table th, table.legal-table td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line-soft); vertical-align: top; color: #3D3730; }
table.legal-table th { font-family: var(--font-body); font-weight: 500; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
table.legal-table tr:first-child th { border-top: 1px solid var(--line-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__menu { gap: 18px; }
  .nav__link { font-size: 12.5px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav__menu, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .two-col, .radar-wrap, .quote-block, .contact-grid, .testeur-inner, .badge-duo { grid-template-columns: 1fr; }
  .two-col { gap: 40px; }
  .two-col--rev .col-media { order: 0; }
  .quote-block .quote-logo { max-width: 240px; }
  .feat-grid, .gcards, .cards-3, .usage-grid, .price-grid { grid-template-columns: 1fr; }
  .usage-grid { gap: 1px; }
  .indi-grid { grid-template-columns: 1fr 1fr; }
  .price-extras { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr 1fr; gap: 32px 0; }
  .stat::before { display: none; }
  .stat { border-top: 1px solid var(--line-gold); padding-top: 24px; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  /* timeline -> vertical */
  .timeline__track { grid-template-columns: 1fr; gap: 0; }
  .timeline__line { left: 22px; right: auto; top: 10px; bottom: 10px; width: 1px; height: auto; background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent); }
  .tl-step { display: grid; grid-template-columns: 46px 1fr; gap: 20px; text-align: left; padding: 0 0 38px; }
  .tl-step__dot { margin: 0; }
  .tl-step__content { padding-top: 4px; }
  .tl-step__date { min-height: 0; }
}
@media (max-width: 560px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat { border-top: 1px solid var(--line-gold); padding-block: 22px; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .indi-grid { grid-template-columns: 1fr; }
  .tabs { width: 100%; }
  .tab { flex: 1; padding: 12px 10px; font-size: 11.5px; }
  .floaters .btn span.lbl { display: none; }
}
