/* =====================================================================
   ATELIER M — Design system
   Fabricant artisanal français de bougies & parfums d'ambiance · Sologne
   Charte : 60 noir/graphite · 30 ivoire · 10 rose-gold (accent)
   Typo   : Cormorant Garamond (titres) · Jost (corps)
   ===================================================================== */

/* ------------------------------ Tokens ------------------------------ */
:root {
  /* Palette charte 2026 */
  --noir-encre:  #111113;
  --graphite:    #3a3d42;
  --graphite-2:  #565a61;
  --rose-gold:   #c9948b;
  --rose-gold-d: #b07d74;      /* variante foncée pour contraste AA sur ivoire */
  --rose-poudre: #e9c4c8;
  --ivoire:      #faf8f5;
  --gris-lin:    #e9e7e4;
  --gris-lin-2:  #d8d5d0;

  /* Rôles */
  --bg:          var(--ivoire);
  --bg-alt:      #f4f1ec;
  --bg-dark:     var(--noir-encre);
  --ink:         #1b1c1e;
  --ink-soft:    #52555b;
  --line:        var(--gris-lin);
  --line-dark:   rgba(250,248,245,.14);
  --accent:      var(--rose-gold);
  --accent-ink:  var(--rose-gold-d);

  /* Typo */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rythme */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 3px;
  --radius-lg: 6px;

  --shadow-sm: 0 1px 2px rgba(17,17,19,.04), 0 8px 24px -12px rgba(17,17,19,.14);
  --shadow-md: 0 24px 60px -30px rgba(17,17,19,.32);

  --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; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 2px; }

/* ---------------------------- Utilities ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-dark  { background: var(--bg-dark); color: var(--ivoire); }
.bg-alt   { background: var(--bg-alt); }
.bg-lin   { background: var(--gris-lin); }
.bg-rose  { background: var(--rose-poudre); }
.center   { text-align: center; }
.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;
}

/* Overline / eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 1.1rem;
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.bg-dark .eyebrow { color: var(--rose-poudre); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }

/* Titres */
.display  { font-size: clamp(2.6rem, 1.7rem + 4.4vw, 5.2rem); line-height: 1.02; letter-spacing: -.02em; }
.h1       { font-size: clamp(2.3rem, 1.6rem + 3.2vw, 4rem); }
.h2       { font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem); }
.h3       { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.9rem); }
.lead     { font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); line-height: 1.62; color: var(--ink-soft); font-weight: 300; }
.bg-dark .lead { color: rgba(250,248,245,.78); }
.serif-accent { color: var(--accent-ink); font-style: italic; }
.bg-dark .serif-accent { color: var(--rose-poudre); }
.measure { max-width: 62ch; }
.measure--sm { max-width: 46ch; }

/* ---------------------------- Buttons ------------------------------- */
.btn {
  --btn-bg: var(--noir-encre); --btn-fg: var(--ivoire); --btn-bd: var(--noir-encre);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1.05em 2.1em;
  font-family: var(--sans); font-weight: 400; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid var(--btn-bd); border-radius: var(--radius);
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary:hover { --btn-bg: var(--graphite); --btn-bd: var(--graphite); }
.btn--accent { --btn-bg: var(--rose-gold); --btn-bd: var(--rose-gold); --btn-fg: var(--noir-encre); }
.btn--accent:hover { --btn-bg: var(--rose-gold-d); --btn-bd: var(--rose-gold-d); --btn-fg: var(--ivoire); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--gris-lin-2); }
.btn--ghost:hover { --btn-bd: var(--noir-encre); }
.btn--light { --btn-bg: var(--ivoire); --btn-fg: var(--noir-encre); --btn-bd: var(--ivoire); }
.btn--light:hover { --btn-bg: transparent; --btn-fg: var(--ivoire); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: var(--ivoire); --btn-bd: var(--line-dark); }
.btn--ghost-light:hover { --btn-bd: var(--rose-poudre); --btn-fg: var(--rose-poudre); }
.btn--sm { padding: .8em 1.5em; font-size: .74rem; }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 400; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-ink); padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.textlink:hover { gap: .9em; color: var(--noir-encre); }
.bg-dark .textlink { color: var(--rose-poudre); }
.bg-dark .textlink:hover { color: var(--ivoire); }

/* ---------------------------- Header -------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.1rem;
  background: transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid,
.site-header.is-open {
  background: rgba(250,248,245,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  padding-block: .7rem;
}
/* Header sur pages à hero sombre : texte clair jusqu'au scroll */
.site-header.on-dark:not(.is-solid):not(.is-open) { color: var(--ivoire); }
.site-header.on-dark:not(.is-solid):not(.is-open) .nav-link { color: rgba(250,248,245,.86); }
.site-header.on-dark:not(.is-solid):not(.is-open) .brand-name { color: var(--ivoire); }
.site-header.on-dark:not(.is-solid):not(.is-open) .brand-sub { color: rgba(250,248,245,.6); }
.site-header.on-dark:not(.is-solid):not(.is-open) .brand-mark { border-color: rgba(250,248,245,.5); color: var(--ivoire); }
.site-header.on-dark:not(.is-solid):not(.is-open) .btn--ghost { --btn-fg: var(--ivoire); --btn-bd: var(--line-dark); }
.site-header.on-dark:not(.is-solid):not(.is-open) .nav-toggle span { background: var(--ivoire); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--noir-encre);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 500; font-size: 1.45rem; line-height: 1;
  transition: color .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.brand-mark span { transform: translateY(-1px); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif); font-weight: 500; font-size: 1.32rem;
  letter-spacing: .18em; color: var(--noir-encre);
}
.brand-sub {
  font-family: var(--sans); font-weight: 400; font-size: .56rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--graphite-2);
  margin-top: 3px;
}

.primary-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.1rem); }
.nav-list { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 1.9rem); }
.nav-link {
  position: relative; font-size: .82rem; font-weight: 400; letter-spacing: .04em;
  color: var(--graphite); padding-block: .4rem;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--noir-encre); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .8rem; }

/* Dropdown segments */
.nav-item--has-menu { position: relative; }
.nav-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 260px; margin-top: .55rem; padding: .7rem; background: var(--ivoire);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
  transition-delay: .25s; /* laisse le menu ouvert le temps d'y amener la souris */
}
/* Pont invisible : comble l'espace entre le lien et le menu pour ne pas perdre le survol */
.nav-menu::before { content: ""; position: absolute; top: -.8rem; left: 0; right: 0; height: 1rem; }
.nav-item--has-menu:hover .nav-menu,
.nav-item--has-menu:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.nav-menu a { display: block; padding: .6rem .8rem; border-radius: var(--radius); color: var(--graphite); font-size: .9rem; transition: background .2s, color .2s; }
.nav-menu a small { display: block; font-size: .72rem; color: var(--graphite-2); letter-spacing: 0; text-transform: none; }
.nav-menu a:hover { background: var(--bg-alt); color: var(--noir-encre); }

/* Burger */
.nav-toggle {
  display: none; width: 40px; height: 40px; background: none; border: 0;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--noir-encre); margin-inline: auto; transition: transform .3s var(--ease), opacity .2s; }
.is-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-actions .btn--ghost { display: none; }
}
@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0;
    padding: 6rem var(--gutter) 2rem; background: var(--ivoire);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .45s var(--ease);
    overflow-y: auto;
  }
  .is-open .primary-nav { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-list > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-link { display: block; width: 100%; padding: 1rem 0; font-size: 1rem; }
  .nav-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; min-width: 0; padding: 0 0 .8rem .4rem; margin-top: 0;
  }
  .nav-menu::before { display: none; }
  .nav-actions { flex-direction: column; align-items: stretch; width: 100%; margin-top: 1.6rem; gap: 1rem; }
  .nav-actions .btn { width: 100%; }
  .nav-actions .btn--ghost { display: inline-flex; }
}

/* Backdrop for mobile nav */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 99; background: rgba(17,17,19,.4);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.is-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ------------------------------ Hero -------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--ivoire); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,19,.55) 0%, rgba(17,17,19,.15) 45%, rgba(17,17,19,0) 75%),
    linear-gradient(180deg, rgba(17,17,19,.45) 0%, rgba(17,17,19,.20) 28%, rgba(17,17,19,.52) 58%, rgba(17,17,19,.93) 100%);
}
.hero__inner .container { text-shadow: 0 1px 24px rgba(17,17,19,.35); }
.hero__inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(7rem, 14vh, 11rem) clamp(3.5rem, 8vh, 6rem); }
.hero__title { max-width: 16ch; margin-bottom: 1.6rem; }
.hero__lead { max-width: 52ch; color: rgba(250,248,245,.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%);
  z-index: 1; font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(250,248,245,.7);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero__scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--rose-poudre), transparent); animation: scrollpulse 2.4s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* Page hero (secondaire, plus court) */
.page-hero { position: relative; padding-top: clamp(9rem, 16vh, 13rem); padding-bottom: clamp(3.5rem, 8vw, 6rem); overflow: hidden; }
.page-hero.bg-dark { color: var(--ivoire); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; opacity: .3; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.bg-dark::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(17,17,19,.72) 0%, rgba(17,17,19,.35) 42%, rgba(17,17,19,0) 78%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero.bg-dark .container { text-shadow: 0 1px 18px rgba(17,17,19,.4); }
.page-hero__title { max-width: 20ch; margin-bottom: 1.3rem; }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--graphite-2); margin-bottom: 1.8rem; }
.bg-dark .crumbs { color: rgba(250,248,245,.55); }
.crumbs a:hover { color: var(--accent-ink); }
.bg-dark .crumbs a:hover { color: var(--rose-poudre); }
.crumbs li { display: inline-flex; gap: .5rem; align-items: center; }
.crumbs li:not(:last-child)::after { content: "·"; color: var(--accent); }

/* --------------------------- Answer block (GEO) --------------------- */
.answer {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.bg-dark .answer, .bg-alt .answer { background: #fff; }
.answer__label { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--accent-ink); font-weight: 500; margin-bottom: .9rem; display: block; }
.answer p:last-child { margin-bottom: 0; }
.answer .lead { color: var(--ink); }

/* ------------------------------ Grid -------------------------------- */
.grid { display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* Split (media + texte) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--wide-text { grid-template-columns: 1.1fr .9fr; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2.4rem; } .split--reverse .split__media { order: 0; } }

/* Media frame decorative */
.framed { position: relative; }
.framed::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--accent); border-radius: var(--radius-lg); z-index: -1; }
@media (max-width: 860px) { .framed::before { inset: 10px -10px -10px 10px; } }

/* ------------------------------ Cards ------------------------------- */
.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 2.6vw, 2.2rem);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gris-lin-2); }
.card, .bg-dark .card { color: var(--ink); }
.card__num { font-family: var(--serif); font-size: 1rem; color: var(--accent-ink); letter-spacing: .1em; margin-bottom: 1.2rem; }
.card__icon { width: 46px; height: 46px; margin-bottom: 1.2rem; color: var(--accent-ink); }
.card__icon svg { width: 100%; height: 100%; }
.card h3, .bg-dark .card h3 { margin-bottom: .7rem; color: var(--noir-encre); }
.card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1.2rem; }
.card .textlink { margin-top: auto; }

/* Segment card (avec image) */
.segment {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 380px; display: flex; align-items: flex-end; color: var(--ivoire);
  border: 1px solid var(--line);
}
.segment img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 1.1s var(--ease); }
.segment::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(17,17,19,.05) 30%, rgba(17,17,19,.86) 100%); }
.segment:hover img { transform: scale(1.06); }
.segment__body { position: relative; z-index: 2; padding: clamp(1.5rem, 3vw, 2.2rem); width: 100%; }
.segment__tag { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--rose-poudre); margin-bottom: .7rem; display: block; }
.segment h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 1.95rem); margin-bottom: .5rem; }
.segment p { font-size: .92rem; color: rgba(250,248,245,.82); margin-bottom: 1.1rem; }
.segment .textlink { color: var(--ivoire); border-color: rgba(250,248,245,.5); }
.segment .textlink:hover { color: var(--rose-poudre); border-color: var(--rose-poudre); }

/* Product card */
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease); height: 100%; }
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product__media { aspect-ratio: 4/5; overflow: hidden; background: var(--gris-lin); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.product:hover .product__media img { transform: scale(1.05); }
.product__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: .5rem; }
.product h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.product p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.product__moq { font-size: .78rem; color: var(--graphite-2); }
.product__moq strong { color: var(--ink); font-weight: 500; }

/* ------------------------- Proof / réassurance ---------------------- */
.proof { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; }
.proof__item { background: var(--noir-encre); padding: clamp(1.6rem, 3vw, 2.4rem) 1.4rem; text-align: center; }
.proof__ico { width: 34px; height: 34px; margin: 0 auto 1rem; color: var(--rose-poudre); }
.proof__ico svg { width: 100%; height: 100%; }
.proof__item h3 { font-size: 1.02rem; font-family: var(--sans); font-weight: 500; letter-spacing: .02em; margin-bottom: .35rem; color: var(--ivoire); }
.proof__item p { font-size: .8rem; color: rgba(250,248,245,.62); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .proof { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .proof { grid-template-columns: 1fr; } }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem,3vw,2.5rem); }
.stat { text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 2rem + 2.5vw, 4rem); line-height: 1; color: var(--noir-encre); }
.bg-dark .stat__num { color: var(--ivoire); }
.stat__num .unit { color: var(--accent-ink); }
.bg-dark .stat__num .unit { color: var(--rose-poudre); }
.stat__label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--graphite-2); margin-top: .8rem; }
.bg-dark .stat__label { color: rgba(250,248,245,.6); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; } }

/* ------------------------------ Steps ------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.steps--row { grid-template-columns: repeat(4, 1fr); }
.step { background: #fff; padding: clamp(1.8rem, 3vw, 2.6rem); position: relative; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 2.4rem; color: var(--rose-poudre); line-height: 1; display: block; margin-bottom: 1rem; }
.step h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .steps--row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps--row { grid-template-columns: 1fr; } }
/* Cellule média pour combler une grille d'étapes impaire (ex. 5 étapes) */
.step--media { position: relative; padding: 0; overflow: hidden; background: var(--gris-lin); min-height: 200px; }
.step--media::before { content: none; }
.step--media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.steps--with-media .step--media { grid-column: span 3; }
@media (max-width: 900px) {
  .steps--with-media { grid-template-columns: 1fr; }
  .steps--with-media .step--media { grid-column: auto; min-height: 220px; }
}

/* Feature list (checks) */
.checks { display: grid; gap: 1rem; }
.checks li { display: flex; gap: .9rem; align-items: flex-start; }
.checks li::before {
  content: ""; flex: 0 0 20px; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%;
  background: var(--rose-poudre) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111113' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checks strong { font-weight: 500; }
.checks span { color: var(--ink-soft); }

/* --------------------------- Price tiers ---------------------------- */
.tiers { width: 100%; border-collapse: collapse; font-size: .95rem; }
.tiers caption { text-align: left; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 1rem; }
.tiers th, .tiers td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.tiers thead th { font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--graphite-2); }
.tiers tbody tr:hover { background: var(--bg-alt); }
.tiers td:last-child, .tiers th:last-child { text-align: right; }
.tiers .price { font-family: var(--serif); font-size: 1.2rem; color: var(--noir-encre); }
.tiers .save { display: inline-block; margin-left: .5rem; font-size: .68rem; letter-spacing: .06em; color: var(--accent-ink); }
.tiers-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ------------------------------ FAQ --------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); color: var(--noir-encre);
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .2rem; top: 50%; width: 16px; height: 16px; margin-top: -8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b07d74' stroke-width='1.5'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent-ink); }
.faq__body { padding: 0 3rem 1.6rem 0; color: var(--ink-soft); }
.faq__body p:last-child { margin-bottom: 0; }

/* --------------------------- Testimonial ---------------------------- */
.quote { max-width: 24ch; }
/* Citation centrée autonome (ex. mission) : mesure confortable */
.quote.center { max-width: 46ch; margin-inline: auto; }
.quote.center blockquote { font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.4rem); }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 1.2rem + 2vw, 2.8rem); line-height: 1.28; margin: 0 0 1.6rem; font-weight: 500; }
.quote blockquote::before { content: "“"; color: var(--accent); font-size: 1.2em; line-height: 0; vertical-align: -.35em; margin-right: .05em; }
.quote cite { font-style: normal; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--graphite-2); }
.bg-dark .quote cite { color: rgba(250,248,245,.6); }
.quote cite strong { color: var(--noir-encre); font-weight: 500; display: block; margin-bottom: .2rem; letter-spacing: .04em; text-transform: none; font-size: 1rem; font-family: var(--serif); }
.bg-dark .quote cite strong { color: var(--ivoire); }

/* --------------------------- Avis / Reviews ------------------------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2rem,4vw,3rem); }
.google-badge { display: inline-flex; align-items: center; gap: .8rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.2rem; box-shadow: var(--shadow-sm); }
.google-badge__g { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; letter-spacing: .01em; }
.google-badge__g b:nth-child(1){color:#4285F4}.google-badge__g b:nth-child(2){color:#EA4335}.google-badge__g b:nth-child(3){color:#FBBC05}.google-badge__g b:nth-child(4){color:#4285F4}.google-badge__g b:nth-child(5){color:#34A853}.google-badge__g b:nth-child(6){color:#EA4335}
.google-badge__txt { font-size: .82rem; color: var(--graphite); line-height: 1.3; }
.google-badge__txt strong { display: block; font-size: 1rem; color: var(--noir-encre); font-family: var(--serif); }
.stars { display: inline-flex; gap: 2px; color: var(--rose-gold); font-size: 1rem; letter-spacing: 2px; line-height: 1; }
.stars svg { width: 16px; height: 16px; }
.stars--lg { font-size: 1.15rem; }
.stars--lg svg { width: 19px; height: 19px; }

/* Bandeau d'avis défilant (marquee) */
.marquee { position: relative; overflow: hidden; padding-block: .6rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; gap: clamp(1rem,2vw,1.5rem); width: max-content; animation: marquee 55s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee .review { width: 360px; flex: 0 0 360px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) { .marquee .review { width: 300px; flex-basis: 300px; } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; }
}

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,2.5vw,1.8rem); }
@media (max-width: 900px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews { grid-template-columns: 1fr; } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem,2.4vw,1.9rem); display: flex; flex-direction: column; gap: .9rem; height: 100%; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review__g { width: 22px; height: 22px; flex: 0 0 22px; }
.review p { margin: 0; color: var(--graphite); font-size: .96rem; line-height: 1.6; }
.review__author { display: flex; align-items: center; gap: .8rem; margin-top: auto; padding-top: .4rem; }
.review__avatar { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%; background: var(--rose-poudre); color: var(--noir-encre); display: grid; place-items: center; font-family: var(--serif); font-weight: 500; font-size: 1.1rem; }
.review__meta strong { display: block; font-size: .95rem; color: var(--noir-encre); font-family: var(--serif); font-weight: 500; }
.review__meta span { font-size: .78rem; color: var(--graphite-2); }

/* Logos band */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.6rem, 5vw, 4rem); }
.logos span { font-family: var(--serif); font-size: clamp(1.1rem, .9rem + .8vw, 1.6rem); color: var(--graphite-2); letter-spacing: .06em; opacity: .8; }

/* ------------------------------ CTA --------------------------------- */
.cta { position: relative; overflow: hidden; }
.cta__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin-inline: auto; }
.cta__deco { position: absolute; z-index: 0; inset: 0; opacity: .12; background: url("../img/bougie-bois-de-santal-artisan.jpg") center/cover; }

/* ------------------------------ Forms ------------------------------- */
.form { display: grid; gap: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--graphite); font-weight: 400; }
.field .req { color: var(--accent-ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink); background: #fff;
  border: 1px solid var(--gris-lin-2); border-radius: var(--radius); padding: .85rem 1rem;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,148,139,.15); }
.field__hint { font-size: .78rem; color: var(--graphite-2); }
.field--check { flex-direction: row; align-items: flex-start; gap: .7rem; }
.field--check input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; accent-color: var(--rose-gold-d); }
.field--check label { text-transform: none; letter-spacing: 0; font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }

/* Segmented choice (radios stylés) */
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: .8rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span {
  display: block; text-align: center; padding: 1rem .8rem; border: 1px solid var(--gris-lin-2);
  border-radius: var(--radius); font-size: .9rem; color: var(--graphite); background: #fff;
  transition: border-color .2s, background .2s, color .2s; cursor: pointer;
}
.choice input:checked + span { border-color: var(--rose-gold); background: #fff; color: var(--noir-encre); box-shadow: inset 0 0 0 1px var(--rose-gold); }
.choice input:focus-visible + span { outline: 2px solid var(--accent-ink); outline-offset: 2px; }

.form-note { font-size: .82rem; color: var(--graphite-2); }
.form-success { display: none; padding: 1.2rem 1.4rem; border-radius: var(--radius); background: var(--rose-poudre); color: var(--noir-encre); font-size: .95rem; }
.form-success.is-visible { display: block; }
.form-error { display: none; margin-top: 1rem; padding: 1.2rem 1.4rem; border-radius: var(--radius); background: #fbeaea; border: 1px solid #e4b7b7; color: #8a2b2b; font-size: .95rem; }
.form-error.is-visible { display: block; }

/* Steps indicator (devis) */
.stepper { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-bottom: 2.4rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.stepper li { display: flex; align-items: center; gap: .6rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--graphite-2); }
.stepper b { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gris-lin-2); display: grid; place-items: center; font-family: var(--serif); font-weight: 500; color: var(--graphite-2); }
.stepper li[aria-current] { color: var(--noir-encre); }
.stepper li[aria-current] b { background: var(--rose-gold); border-color: var(--rose-gold); color: var(--noir-encre); }

/* ---------------------------- Contact ------------------------------- */
.info-list { display: grid; gap: 1.6rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ico { flex: 0 0 22px; width: 22px; height: 22px; color: var(--accent-ink); margin-top: 3px; }
.info-list .ico svg { width: 100%; height: 100%; }
.info-list strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin-bottom: .2rem; }
.info-list a:hover { color: var(--accent-ink); }
.info-list p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.map-embed { border: 0; width: 100%; height: 100%; min-height: 340px; border-radius: var(--radius-lg); filter: grayscale(.3) contrast(.95); }

/* ------------------------------ Footer ------------------------------ */
.site-footer { background: var(--noir-encre); color: rgba(250,248,245,.72); padding-top: clamp(2.75rem, 4.5vw, 4rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.8rem, 3.5vw, 3rem); padding-bottom: 2.4rem; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: var(--ivoire); }
.footer-brand .brand-mark { border-color: var(--rose-poudre); color: var(--ivoire); }
.footer-brand .brand-sub { color: rgba(250,248,245,.5); }
.footer-brand p { margin: 1rem 0 1.2rem; font-size: .9rem; max-width: 34ch; color: rgba(250,248,245,.6); }
.footer-col h4 { font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-poudre); margin-bottom: 1.3rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { font-size: .92rem; color: rgba(250,248,245,.68); transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--ivoire); padding-left: 4px; }
.footer-contact li { display: flex; gap: .7rem; font-size: .92rem; margin-bottom: .9rem; color: rgba(250,248,245,.68); }
.footer-contact .ico { flex: 0 0 18px; width: 18px; color: var(--rose-poudre); }
.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; color: rgba(250,248,245,.75); transition: border-color .25s, color .25s, transform .25s; }
.socials a:hover { border-color: var(--rose-poudre); color: var(--rose-poudre); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.3rem; font-size: .8rem; color: rgba(250,248,245,.5); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--ivoire); }
.footer-badges { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.3rem; }
.footer-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,248,245,.6); }
.footer-badge svg { width: 16px; height: 16px; color: var(--rose-poudre); }

/* --------------------------- Reveal anim ---------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Section heading block */
.section-head { max-width: 640px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

/* Divider mark */
.mark-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--accent); margin: 0 auto; }
.mark-divider::before, .mark-divider::after { content: ""; height: 1px; width: clamp(40px, 10vw, 90px); background: currentColor; opacity: .5; }
.mark-divider span { font-family: var(--serif); font-size: 1.2rem; }

/* ------------------------------ Blog -------------------------------- */
.article-meta { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,248,245,.62); margin: 0; }
.article-meta span { color: var(--rose-poudre); }

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.4rem); }
@media (max-width: 900px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posts { grid-template-columns: 1fr; } }
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; height: 100%; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post__media { aspect-ratio: 16/10; overflow: hidden; background: var(--gris-lin); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--graphite-2); margin-bottom: .8rem; }
.post__meta .cat { color: var(--accent-ink); font-weight: 500; }
.post h3 { font-size: 1.32rem; line-height: 1.18; margin-bottom: .6rem; }
.post h3 a { transition: color .2s; }
.post h3 a:hover { color: var(--accent-ink); }
.post p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.post .textlink { margin-top: auto; }
.post--featured { grid-column: 1 / -1; }
@media (min-width: 901px) {
  .post--featured { flex-direction: row; }
  .post--featured .post__media { flex: 0 0 48%; aspect-ratio: auto; }
  .post--featured .post__body { justify-content: center; padding: clamp(2rem,3vw,3rem); }
  .post--featured h3 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem); }
  .post--featured p { font-size: 1rem; }
}

/* Filtres catégories blog */
.cat-filter { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: clamp(2rem,4vw,3rem); }
.cat-filter a { font-size: .8rem; letter-spacing: .06em; padding: .5rem 1.1rem; border: 1px solid var(--gris-lin-2); border-radius: 999px; color: var(--graphite); transition: border-color .2s, color .2s, background .2s; }
.cat-filter a:hover, .cat-filter a[aria-current] { border-color: var(--noir-encre); color: var(--noir-encre); background: #fff; }

/* Article body niceties */
.prose .answer { margin-bottom: 2.4rem; }
/* Espace entre le bloc "Réponse rapide" et le corps d'article (blocs frères) */
.answer + .prose { margin-top: 2.4rem; }
.answer + .section-head { margin-top: 2.4rem; }
.prose blockquote { border-left: 3px solid var(--accent); margin: 1.8rem 0; padding: .4rem 0 .4rem 1.4rem; font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; color: var(--noir-encre); }
.prose figure { margin: 2rem 0; }
.prose figure img { border-radius: var(--radius-lg); width: 100%; }
.prose figcaption { font-size: .82rem; color: var(--graphite-2); margin-top: .6rem; text-align: center; }
.article-cta { margin-top: 3rem; padding: clamp(1.8rem,3vw,2.6rem); background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.article-cta h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.article-cta p { color: var(--ink-soft); margin-bottom: 1.4rem; }
/* Les boutons dans .prose ne doivent pas hériter du style des liens (couleur + soulignement) */
.prose .btn, .prose .btn:hover, .prose .btn:visited { color: var(--btn-fg); border-bottom: 0; }
.prose .btn .arrow { color: inherit; }

/* Prose (mentions légales, etc.) */
.prose h2 { font-size: clamp(1.5rem,1.2rem+1.2vw,2rem); margin: 2.4rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 .8rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: .5rem; margin-bottom: 1.2rem; }
.prose a { color: var(--accent-ink); border-bottom: 1px solid var(--gris-lin-2); }
.prose a:hover { border-color: var(--accent-ink); }

/* ===================== Cookie banner (RGPD / CMP) ==================== */
.cookie {
  position: fixed; z-index: 130; left: 50%; bottom: clamp(.8rem, 2vw, 1.4rem);
  transform: translateX(-50%) translateY(140%);
  width: min(760px, calc(100vw - 2rem));
  background: var(--noir-encre); color: rgba(250,248,245,.82);
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(1.2rem, 2.4vw, 1.8rem);
  transition: transform .55s var(--ease), opacity .4s var(--ease);
  opacity: 0;
}
.cookie.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie__head { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }
.cookie__head .ico { width: 20px; height: 20px; color: var(--rose-poudre); flex: 0 0 20px; }
.cookie__head h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--ivoire); font-weight: 500; }
.cookie p { font-size: .88rem; line-height: 1.6; margin: 0 0 1.1rem; color: rgba(250,248,245,.72); }
.cookie p a { color: var(--rose-poudre); border-bottom: 1px solid rgba(233,196,200,.4); }
.cookie p a:hover { color: var(--ivoire); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.cookie__actions .btn { flex: 1 1 auto; min-width: 150px; }
.cookie__link { background: none; border: 0; color: rgba(250,248,245,.7); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: .6rem .2rem; cursor: pointer; transition: color .2s; }
.cookie__link:hover { color: var(--ivoire); }
.cookie__prefs { display: none; margin: .3rem 0 1.1rem; border-top: 1px solid var(--line-dark); padding-top: 1.1rem; }
.cookie__prefs.is-open { display: block; }
.cookie__pref { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: .6rem 0; }
.cookie__pref b { display: block; color: var(--ivoire); font-family: var(--sans); font-weight: 500; font-size: .92rem; margin-bottom: .15rem; }
.cookie__pref span { font-size: .8rem; color: rgba(250,248,245,.6); }
/* toggle */
.toggle { position: relative; flex: 0 0 auto; width: 44px; height: 24px; }
.toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.toggle span { position: absolute; inset: 0; border-radius: 999px; background: var(--graphite); transition: background .25s; }
.toggle span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--ivoire); transition: transform .25s var(--ease); }
.toggle input:checked + span { background: var(--rose-gold); }
.toggle input:checked + span::after { transform: translateX(20px); }
.toggle input:disabled + span { opacity: .5; }
.toggle input:focus-visible + span { outline: 2px solid var(--rose-poudre); outline-offset: 2px; }
@media (max-width: 560px) { .cookie__actions .btn { flex-basis: 100%; } }

/* ===================== Exit-intent modal ==================== */
.modal {
  position: fixed; inset: 0; z-index: 140; display: grid; place-items: center;
  padding: 1.2rem; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(17,17,19,.66); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal__card {
  position: relative; z-index: 1; width: min(920px, 100%); max-height: calc(100svh - 2.4rem); overflow: auto;
  background: var(--ivoire); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: .8fr 1fr; transform: translateY(18px) scale(.98);
  transition: transform .5s var(--ease);
}
.modal.is-open .modal__card { transform: none; }
.modal__media { position: relative; overflow: hidden; }
.modal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,17,19,.1), rgba(17,17,19,.5)); }
.modal__body { padding: clamp(1.6rem, 3vw, 2.6rem); }
.modal__close {
  position: absolute; top: .8rem; right: .8rem; z-index: 2; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(250,248,245,.9); border: 1px solid var(--line); color: var(--noir-encre);
  display: grid; place-items: center; font-size: 1.1rem; line-height: 1; transition: background .2s, transform .2s;
}
.modal__close:hover { background: #fff; transform: rotate(90deg); }
.modal__body .eyebrow { margin-bottom: .8rem; }
.modal__body h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem); margin-bottom: .7rem; }
.modal__body > p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1.4rem; }
.modal .form { gap: 1rem; }
.modal .field input, .modal .field select { padding: .72rem .9rem; }
@media (max-width: 680px) {
  .modal__card { grid-template-columns: 1fr; }
  .modal__media { display: none; }
}

/* Helpers spacing */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.2rem; }
