/* ============================================================
   VITA ON — Design System v3 « Spa éditorial »
   ------------------------------------------------------------
   Direction volontairement ÉLOIGNÉE de NEMO (fond blanc + vagues +
   Anton majuscules + couleurs pop) et de la v2 (crème + rayures
   partout, qui restait cousine de NEMO).

   Ici : vert d'eau profond de sa salle de bain filmée, blanc cassé,
   filets fins, angles quasi droits, beaucoup de respiration, titres
   serif bas-de-casse. Les vidéos portent l'ambiance ; les rayures ne
   sont plus qu'un accent ponctuel.
   ============================================================ */

:root {
  --c-bg:        #f4f1ea;   /* blanc cassé chaud */
  --c-bg-soft:   #eae6dc;
  --c-deep:      #1f3d38;   /* vert d'eau profond (sections fortes) */
  --c-ink:       #16302c;
  --c-ink-soft:  #5c6b66;
  --c-line:      #d9d3c6;
  --c-blue:      #1a2f8f;   /* bleu encre, hérité de sa référence Maison Suzon */
  --c-gold:      #b08d57;   /* laiton de la robinetterie filmée */
  --c-white:     #ffffff;

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-script:  'Pacifico', cursive;
  --font-body:    'Jost', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(22, 48, 44, 0.04), 0 6px 18px rgba(22, 48, 44, 0.05);
  --shadow-md: 0 10px 34px rgba(22, 48, 44, 0.10);
  --shadow-lg: 0 30px 70px rgba(22, 48, 44, 0.16);

  --radius: 4px;
  --radius-lg: 10px;
  --radius-pill: 999px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.hero-grid > *, .feat > *, .pdp-grid > *, .products-grid > *, .pdp-details > * { min-width: 0; }

/* ---------- Typographie ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.022em;
  text-wrap: balance;
  font-variation-settings: 'SOFT' 20, 'WONK' 1;
}
h1.display { font-size: clamp(2.6rem, 6vw, 5rem); }
h2.display { font-size: clamp(1.9rem, 3.6vw, 3.1rem); }
h3.display { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; line-height: 1.25; }

/* Sur-titre : petite capitale espacée + filet */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent, var(--c-ink-soft));
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.55; }
.lead { font-size: 1.1rem; color: var(--c-ink-soft); max-width: 56ch; text-wrap: pretty; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--c-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.logo { display: flex; align-items: baseline; gap: 7px; line-height: 1; }
.logo .script { font-size: 1.85rem; color: var(--c-ink); }
.logo strong {
  font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--c-ink);
}
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  position: relative;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-ink-soft); padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.main-nav a:hover { color: var(--c-ink); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.active { color: var(--c-ink); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 11px 22px; border-radius: var(--radius-pill); border: 1px solid var(--c-ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.cart-btn:hover { background: var(--c-ink); color: var(--c-bg); }
.cart-count {
  position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px;
  display: none; align-items: center; justify-content: center;
  background: var(--c-gold); color: #fff; border-radius: var(--radius-pill); font-size: 0.68rem; font-weight: 600;
}
.cart-count.visible { display: inline-flex; }
.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.burger span { width: 22px; height: 1.5px; background: var(--c-ink); transition: transform 0.3s var(--ease), opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 38px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--c-ink); color: var(--c-bg); }
.btn-accent:hover { box-shadow: var(--shadow-md); background: var(--c-deep); }
.btn-ink { background: var(--c-ink); color: var(--c-bg); }
.btn-ghost { border: 1px solid currentColor; color: var(--c-ink); padding: 16px 34px; }
.btn-ghost:hover { background: var(--c-ink); color: var(--c-bg); }
.btn-light { background: var(--c-bg); color: var(--c-ink); }
.btn-light:hover { box-shadow: var(--shadow-md); }
.micro { display: block; margin-top: 14px; font-size: 0.78rem; color: var(--c-ink-soft); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section--tight { padding: 68px 0; }
.section--deep { background: var(--c-deep); color: var(--c-bg); }
.section--deep .display, .section--deep .eyebrow { color: var(--c-bg); }
.section--deep .lead, .section--deep p { color: rgba(244, 241, 234, 0.76); }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin: 16px auto 0; }

/* Rayures : accent ponctuel seulement */
.stripes { background-size: 160px 400px; background-repeat: repeat; }
.stripes--soft { position: relative; }
.stripes--soft::before { content: ""; position: absolute; inset: 0; background: rgba(244, 241, 234, 0.72); pointer-events: none; }
.stripes--soft > * { position: relative; }

/* ---------- HERO : vidéo plein écran ---------- */
.hero-video {
  position: relative; min-height: min(88vh, 780px);
  display: grid; align-items: end;
  overflow: hidden; background: var(--c-deep);
}
.hero-video__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(22,48,44,0.30) 0%, rgba(22,48,44,0.20) 42%, rgba(22,48,44,0.86) 100%);
}
.hero-video__inner { position: relative; z-index: 2; padding: 0 0 76px; color: var(--c-bg); }
.hero-video__inner .eyebrow { color: rgba(244,241,234,0.82); }
.hero-video__inner h1 { color: var(--c-bg); max-width: 16ch; margin-bottom: 22px; }
.hero-video__inner .lead { color: rgba(244,241,234,0.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }

/* Bandeau d'arguments sous le hero */
.hero-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--c-line); }
.hero-strip div {
  padding: 26px 24px; border-right: 1px solid var(--c-line);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-ink-soft);
}
.hero-strip div:last-child { border-right: 0; }
.hero-strip strong {
  display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -0.01em;
  text-transform: none; color: var(--c-ink); margin-bottom: 3px; font-weight: 500;
}

/* ---------- Blocs éditoriaux alternés ---------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding: 92px 0; }
.feat + .feat { border-top: 1px solid var(--c-line); }
.feat:nth-child(even) .feat-media { order: -1; }
.feat-copy .script { font-size: 2rem; color: var(--accent, var(--c-gold)); display: block; margin-bottom: 6px; }
.feat-copy h2 { margin-bottom: 16px; }
.feat-copy p { color: var(--c-ink-soft); margin-bottom: 30px; max-width: 46ch; }
.feat-media img, .feat-media video {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.media-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.media-frame video, .media-frame img { transition: transform 1.2s var(--ease); }
.media-frame:hover video, .media-frame:hover img { transform: scale(1.04); }

/* ---------- Grille produits ---------- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 34px 26px; }
.product-card { background: none; display: flex; flex-direction: column; }
.product-thumb { display: block; overflow: hidden; border-radius: var(--radius-lg); background: var(--tint, var(--c-bg-soft)); position: relative; }
.product-thumb img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 48%;
  transform: scale(1.22); transform-origin: 50% 56%;
  transition: transform 0.9s var(--ease);
}
.product-card:hover .product-thumb img { transform: scale(1.3); }
.product-body { padding: 18px 2px 0; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-gamme { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-ink-soft); }
.product-body .script { font-size: 1.5rem; color: var(--accent, var(--c-ink)); }
.product-note { font-size: 0.88rem; color: var(--c-ink-soft); }
.product-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; }
.price small { font-family: var(--font-body); font-weight: 400; color: var(--c-ink-soft); font-size: 0.75rem; }
.add-btn {
  width: 40px; height: 40px; border-radius: var(--radius-pill);
  border: 1px solid var(--c-line); color: var(--c-ink);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.3s;
}
.add-btn:hover { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); transform: scale(1.06); }
.add-btn svg { width: 16px; height: 16px; }

/* ---------- Atouts : filets fins, pas de cartes ---------- */
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.perk { padding: 34px 30px; border-left: 1px solid var(--c-line); background: none; border-radius: 0; }
.perk:first-child { border-left: 0; padding-left: 0; }
.perk .ico { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 20px; color: var(--accent, var(--c-gold)); background: none; }
.perk .ico svg { width: 26px; height: 26px; }
.perk h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.perk p { font-size: 0.9rem; color: var(--c-ink-soft); }

/* ---------- Bande typo (« l'écriture qui bouge ») ---------- */
.typo-band { overflow: hidden; padding: 0; background: var(--c-bg-soft); border-block: 1px solid var(--c-line); }
.typo-track { display: flex; gap: 0; width: max-content; animation: slide-left 60s linear infinite; }
.typo-band:hover .typo-track { animation-play-state: paused; }
.typo-track a { display: block; flex: none; }
.typo-track img {
  width: 230px; height: 300px; object-fit: cover;
  filter: saturate(0.92);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.typo-track a:hover img { filter: saturate(1.1); transform: scale(1.03); }
@keyframes slide-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Affiche typo en fiche produit */
.typo-poster { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3 / 4; position: relative; background: var(--tint); }
.typo-poster img { width: 100%; height: 112%; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .typo-poster img { animation: drift 16s ease-in-out infinite alternate; }
}
@keyframes drift { from { transform: translateY(0); } to { transform: translateY(-10%); } }

/* ---------- Cercle de marque ---------- */
.circle-hero { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1; max-width: 540px; margin: 0 auto; }
.circle-hero__img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow-lg); }
.circle-hero__center {
  position: absolute; display: grid; place-items: center;
  width: 37%; aspect-ratio: 1 / 1; border-radius: 50%;
  background: var(--c-bg); box-shadow: 0 12px 40px rgba(22, 48, 44, 0.2);
  text-align: center; line-height: 1;
}
.circle-hero__center .script { font-size: clamp(1.5rem, 4vw, 2.4rem); color: var(--c-ink); }
.circle-hero__center strong {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: clamp(0.62rem, 1.3vw, 0.8rem); letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--c-ink); margin-top: 4px;
}
@media (prefers-reduced-motion: no-preference) { .circle-hero__img { animation: turn 90s linear infinite; } }
@keyframes turn { to { transform: rotate(360deg); } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; padding: 26px 2px; font-size: 1.02rem; font-weight: 500; color: var(--c-ink);
  font-family: var(--font-display); letter-spacing: -0.01em;
}
.faq-q .chev { flex: none; width: 28px; height: 28px; display: grid; place-items: center; transition: transform 0.4s var(--ease); color: var(--c-ink-soft); }
.faq-q .chev svg { width: 14px; height: 14px; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 2px 26px; color: var(--c-ink-soft); max-width: 68ch; }

/* ---------- Fiche produit ---------- */
.pdp-hero { padding: 44px 0 90px; }
.pdp-crumb { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-ink-soft); margin-bottom: 40px; }
.pdp-crumb strong { color: var(--c-ink); font-weight: 500; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pdp-shot { max-width: 500px; margin: 0 auto; width: 100%; }
.pdp-shot .media-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.pdp-info .gamme { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-ink-soft); margin-bottom: 14px; }
.pdp-info .script { font-size: clamp(2.6rem, 5.4vw, 4.2rem); color: var(--accent, var(--c-ink)); display: block; margin-bottom: 10px; }
.pdp-info h1 { font-size: clamp(1.1rem, 1.9vw, 1.4rem); font-weight: 400; font-family: var(--font-body); color: var(--c-ink-soft); margin-bottom: 22px; letter-spacing: 0.02em; }
.pdp-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 26px; }
.pdp-badges span {
  border: 1px solid var(--c-line); padding: 9px 17px; border-radius: var(--radius-pill);
  font-size: 0.74rem; letter-spacing: 0.06em; color: var(--c-ink-soft);
}
.pdp-price { display: flex; align-items: baseline; gap: 14px; margin: 18px 0 28px; }
.pdp-price .price { font-size: 2rem; }
.pdp-price .duree { font-size: 0.82rem; color: var(--c-ink-soft); }
.qty-row { display: flex; gap: 14px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--c-line); border-radius: var(--radius-pill); overflow: hidden; }
.qty button { width: 46px; height: 56px; font-size: 1.1rem; transition: background 0.2s; }
.qty button:hover { background: var(--c-bg-soft); }
.qty input { width: 44px; text-align: center; border: none; font-weight: 500; font-size: 1rem; font-family: inherit; background: transparent; color: inherit; }
.qty input:focus { outline: none; }
.pdp-details { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.pdp-side { position: sticky; top: 108px; }
.frag-picker-label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; display: flex; justify-content: space-between; color: var(--c-ink-soft); }
.frag-swatches { display: flex; flex-wrap: wrap; gap: 9px; }
.frag-swatch {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px;
  border-radius: var(--radius-pill); border: 1px solid var(--c-line);
  font-size: 0.78rem; transition: border-color 0.3s, background 0.3s;
}
.frag-swatch .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--dot, #ccc); }
.frag-swatch:hover { border-color: var(--c-ink-soft); }
.frag-swatch.active { border-color: var(--c-ink); background: var(--c-bg-soft); }
.pdp-reassurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 34px; border-top: 1px solid var(--c-line); }
.pdp-reassurance div { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 18px 8px; border-right: 1px solid var(--c-line); color: var(--c-ink-soft); }
.pdp-reassurance div:last-child { border-right: 0; }
.compo-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compo-table td { padding: 13px 14px 13px 0; border-bottom: 1px solid var(--c-line); vertical-align: top; color: var(--c-ink-soft); }
.compo-table td:first-child { font-weight: 500; color: var(--c-ink); white-space: nowrap; width: 42%; }
.check-list li { padding: 7px 0 7px 24px; position: relative; color: var(--c-ink-soft); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 10px; height: 1px; background: var(--c-gold); }

/* ---------- Contenu ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; margin: 48px 0 14px; letter-spacing: -0.015em; }
.prose p { color: var(--c-ink-soft); margin-bottom: 18px; }
.prose ul { margin: 0 0 18px 18px; list-style: disc; color: var(--c-ink-soft); }
.prose .callout {
  border-left: 2px solid var(--c-gold); background: var(--c-bg-soft);
  padding: 22px 26px; margin: 30px 0; color: var(--c-ink); border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--c-deep); color: var(--c-bg); padding: 84px 0 34px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-grid h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 20px; opacity: 0.6; font-weight: 500; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a { font-size: 0.9rem; opacity: 0.82; transition: opacity 0.3s; }
.footer-grid a:hover { opacity: 1; }
.footer-brand .logo .script, .footer-brand .logo strong { color: var(--c-bg); }
.footer-brand p { font-size: 0.9rem; opacity: 0.7; max-width: 34ch; margin-top: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(244, 241, 234, 0.16); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 0.78rem; opacity: 0.62;
}

/* ---------- Panier ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(22, 48, 44, 0.45); opacity: 0; pointer-events: none; transition: opacity 0.4s; z-index: 100; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 92vw); background: var(--c-bg);
  z-index: 101; transform: translateX(105%); transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid var(--c-line); }
.cart-head h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; }
.cart-close { width: 34px; height: 34px; border-radius: var(--radius-pill); display: grid; place-items: center; font-size: 1.05rem; transition: background 0.2s; }
.cart-close:hover { background: var(--c-bg-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { text-align: center; color: var(--c-ink-soft); padding: 52px 0; font-size: 0.92rem; }
.cart-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--c-line); }
.cart-item img { width: 62px; height: 62px; object-fit: cover; border-radius: var(--radius); }
.cart-item strong { font-size: 0.9rem; display: block; font-weight: 500; }
.cart-item .ci-meta { font-size: 0.74rem; color: var(--c-ink-soft); }
.ci-qty { display: inline-flex; align-items: center; gap: 12px; margin-top: 7px; }
.ci-qty button { width: 22px; height: 22px; border: 1px solid var(--c-line); border-radius: var(--radius); }
.ci-remove { font-size: 0.72rem; color: var(--c-ink-soft); text-decoration: underline; }
.cart-foot { padding: 22px 28px 28px; border-top: 1px solid var(--c-line); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 16px; }
.cart-note { font-size: 0.74rem; color: var(--c-ink-soft); text-align: center; margin-top: 12px; }
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 80px);
  background: var(--c-ink); color: var(--c-bg); padding: 15px 30px; border-radius: var(--radius-pill);
  font-size: 0.86rem; z-index: 120; opacity: 0; transition: transform 0.45s var(--ease), opacity 0.45s; box-shadow: var(--shadow-lg);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .typo-track, .circle-hero__img, .typo-poster img { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .perks { grid-template-columns: repeat(2, 1fr); }
  .perk:nth-child(3) { border-left: 0; padding-left: 0; }
  .perk:nth-child(n+3) { border-top: 1px solid var(--c-line); margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip div:nth-child(2) { border-right: 0; }
  .hero-strip div:nth-child(n+3) { border-top: 1px solid var(--c-line); }
  .feat { gap: 48px; }
}
@media (max-width: 767px) {
  .section { padding: 66px 0; }
  .container { padding: 0 22px; }
  .main-nav {
    position: fixed; top: 78px; left: 0; right: 0; background: var(--c-bg); flex-direction: column; gap: 0;
    padding: 14px 22px 26px; border-bottom: 1px solid var(--c-line); box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform 0.4s var(--ease); z-index: 89;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--c-line); }
  .burger { display: flex; }
  .hero-grid, .feat, .pdp-grid, .pdp-details { grid-template-columns: 1fr; }
  .feat:nth-child(even) .feat-media { order: 0; }
  .feat { padding: 54px 0; }
  .pdp-side { position: static; }
  .perks { grid-template-columns: 1fr; }
  .perk { border-left: 0; padding-left: 0; border-top: 1px solid var(--c-line); }
  .perk:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-shot { max-width: 100%; }
  .typo-track img { width: 160px; height: 210px; }
  .hero-video { min-height: 78vh; }
  .hero-video__inner { padding-bottom: 54px; }
  .circle-hero { max-width: 340px; }
}

/* ============================================================
   V4 (2026-09-02) — retour du brand rayures + chaleur
   Retour de Ryan : « la ça fais un peu trop froid et fade,
   tu peux utiliser le brand des rayures ».
   On garde la structure éditoriale, on réchauffe la couleur.
   ============================================================ */

:root {
  --c-bg:      #faf4e6;   /* crème plus chaud qu'avant (#f4f1ea) */
  --c-bg-soft: #f3e8d0;
  --c-line:    #e2d5b8;
  --c-sun:     #f0c419;   /* jaune signature des rayures */
}

/* Bandes rayées de nouveau visibles (voile plus léger qu'en v2) */
.stripes { background-size: 150px 380px; background-repeat: repeat; }
.stripes--soft::before { background: rgba(250, 244, 230, 0.58); }

/* Section rayée : ponctue la page sans l'écraser */
.band-stripes { position: relative; overflow: hidden; }
.band-stripes::before { content: ""; position: absolute; inset: 0; background: rgba(250, 244, 230, 0.62); pointer-events: none; }
.band-stripes > * { position: relative; }

/* Bandeau d'arguments : sur fond jaune, plus vivant */
.hero-strip { background: var(--c-sun); border-top: 0; }
.hero-strip div { border-right-color: rgba(22, 48, 44, 0.16); color: rgba(22, 48, 44, 0.72); }
.hero-strip strong { color: var(--c-ink); }

/* Vignettes produit : fond teinté à la couleur de la fragrance */
.product-thumb { background: var(--tint, var(--c-bg-soft)); }

/* ---------- Packaging : la boîte dans la fiche produit ---------- */
.pack-shot {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--c-bg-soft);
}
.pack-shot img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* Grille packaging sur l'accueil */
.pack-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.pack-grid a { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.pack-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.pack-grid a:hover img { transform: scale(1.05); }

/* Le titre de section reprend le jaune en accent */
.section-head .eyebrow { --accent: #b08d57; }

/* V4b (2026-09-02) — corrections fiche produit */
/* L affiche typo etait rognee sur les cotes (3/4 + cover) : on la montre entiere */
.typo-poster { aspect-ratio: 4 / 5; }
.typo-poster img { height: 100%; object-fit: contain; padding: 6%; }
@media (prefers-reduced-motion: no-preference) {
  .typo-poster img { animation: driftSoft 18s ease-in-out infinite alternate; }
}
@keyframes driftSoft { from { transform: translateY(-1.5%) scale(1.01); } to { transform: translateY(1.5%) scale(1.03); } }
/* Video en situation : cadre 4/5 pour eviter la colonne trop haute */
/* Fiche produit : media plus compact et texte cale en haut (evitait une colonne vide) */
.pdp-situation { align-items: start; gap: 56px; }
.pdp-situation .feat-copy { padding-top: 28px; }
.pdp-situation .feat-media video { aspect-ratio: 1 / 1; }

/* 11 boites : grille centree, tuiles plus petites — evite la ligne orpheline trop vide */
.pack-grid { grid-template-columns: repeat(auto-fit, minmax(170px, 190px)); justify-content: center; gap: 16px; }
@media (max-width: 640px) { .pack-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   V5 (2026-09-04) — « AFFICHE & FORMES »
   Brief cliente : hero d'accueil traite comme une AFFICHE, produits
   presentes dans une ARCHE (= le bouton d'entree dans la fiche),
   photos et videos posees dans des BULLES organiques.
   Refs qu'elle a envoyees : SEPIU, Sond, Born Majesty, Mila.
   ============================================================ */

:root {
  --c-red:    #7fa8d6;   /* remplace par Morning Breeze (palette du 11/09) */
  --c-cream:  #f5ece0;
  --arch:     48% 48% 48% 48% / 62% 62% 38% 38%;
}

/* ---------- L'affiche (hero d'accueil) ---------- */
.poster {
  position: relative; overflow: hidden;
  background: var(--poster-bg, var(--c-red));
  color: var(--poster-ink, var(--c-cream));
  padding: clamp(40px, 7vw, 96px) 0;
}
.poster-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.poster h1 {
  font-family: var(--font-display);
  font-weight: 600; line-height: 0.9; letter-spacing: -0.02em;
  font-size: clamp(3rem, 8.6vw, 7.4rem);
  text-transform: uppercase;
}
.poster .poster-sub {
  font-size: clamp(0.98rem, 1.4vw, 1.12rem); line-height: 1.6;
  max-width: 44ch; margin-top: 22px; opacity: 0.92;
}
.poster-eyebrow {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 26px; opacity: 0.9;
}
.poster-eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.poster-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.poster .btn-poster {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: var(--radius-pill);
  background: var(--poster-ink, var(--c-cream)); color: var(--poster-bg, var(--c-red));
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--poster-ink, var(--c-cream)); transition: all 0.25s var(--ease);
}
.poster .btn-poster--ghost { background: transparent; color: var(--poster-ink, var(--c-cream)); }
.poster .btn-poster:hover { transform: translateY(-2px); }

/* ---------- L'arche : la forme qu'elle veut pour les produits ---------- */
.arch {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--arch);
  background: var(--arch-bg, var(--c-cream));
  aspect-ratio: 3 / 4;
}
.arch img, .arch video { width: 100%; height: 100%; object-fit: cover; display: block; }
.arch--pad img { object-fit: contain; padding: 12%; }

/* La carte produit devient une arche cliquable */
.arch-card { display: block; text-align: center; }
.arch-card .arch { transition: transform 0.5s var(--ease); }
.arch-card:hover .arch { transform: translateY(-6px); }
.arch-card .arch img { transition: transform 0.6s var(--ease); }
.arch-card:hover .arch img { transform: scale(1.05); }
.arch-card h3 { font-family: var(--font-display); font-size: 1.12rem; margin-top: 16px; font-weight: 600; }
.arch-card .note { font-size: 0.82rem; color: var(--c-ink-soft); margin-top: 3px; }
.arch-card .px { font-size: 0.9rem; margin-top: 8px; font-weight: 600; }

/* ---------- Les bulles : photos et videos posees dans des formes ---------- */
.blob { overflow: hidden; display: block; background: var(--c-bg-soft); }
.blob img, .blob video { width: 100%; height: 100%; object-fit: cover; display: block; }
.blob--a { border-radius: 62% 38% 44% 56% / 54% 46% 54% 46%; }
.blob--b { border-radius: 38% 62% 56% 44% / 44% 58% 42% 56%; }
.blob--c { border-radius: 54% 46% 38% 62% / 62% 38% 62% 38%; }

/* Grille de bulles : la mosaique qu'elle a montee elle-meme */
.blob-scene { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 2.2vw, 28px); align-items: center; }
.blob-scene .b1 { grid-column: 1 / 6;  aspect-ratio: 4 / 5; }
.blob-scene .b2 { grid-column: 7 / 13; aspect-ratio: 1 / 1; }
.blob-scene .b3 { grid-column: 2 / 7;  aspect-ratio: 1 / 1; }
.blob-scene .b4 { grid-column: 8 / 12; aspect-ratio: 4 / 5; }

/* ---------- Bandeau catalogue (grosse ecriture derriere) ---------- */
.catalog { position: relative; overflow: hidden; background: var(--cat-bg, var(--c-cream)); padding: clamp(56px, 8vw, 110px) 0; }
.catalog__word {
  position: absolute; inset-inline: 0; top: 34px; transform: none;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(5rem, 19vw, 17rem); line-height: 0.8; text-align: center;
  color: var(--cat-ink, rgba(22, 48, 44, 0.09)); pointer-events: none; user-select: none; white-space: nowrap;
}
.catalog__inner { position: relative; }

/* ---------- Affiches typo (ses nouveaux visuels a plat) ---------- */
.affiche-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.affiche-grid a { display: block; overflow: hidden; border-radius: var(--radius-lg); }
.affiche-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.affiche-grid a:hover img { transform: scale(1.04); }

@media (max-width: 860px) {
  .poster-inner { grid-template-columns: 1fr; }
  .blob-scene .b1, .blob-scene .b2, .blob-scene .b3, .blob-scene .b4 { grid-column: auto / span 6; }
}

/* La collection en arches : fond calme, la couleur vient des produits */
.arch-card h3 { color: var(--c-ink); }
.arch-card .px { color: var(--c-ink); }

/* ---------- Page marque : contenu du catalogue cosmetique (docx cliente) ---------- */
.etages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.etages article { border-top: 2px solid var(--c-red); padding-top: 20px; }
.etage-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: var(--c-red); line-height: 1; display: block; margin-bottom: 10px;
}
.etages h3 { font-family: var(--font-display); font-size: 1.16rem; margin-bottom: 10px; font-weight: 600; }
.etages p { color: var(--c-ink-soft); font-size: 0.92rem; line-height: 1.66; }

.actifs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px 34px; }
.actifs article { border-top: 1px solid var(--c-line); padding-top: 18px; }
.actifs h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 9px; font-weight: 600; }
.actifs p { color: var(--c-ink-soft); font-size: 0.9rem; line-height: 1.65; }

.bienfaits { list-style: none; margin-top: 6px; }
.bienfaits li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--c-ink-soft); line-height: 1.6; }
.bienfaits li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 2px; background: var(--c-red);
}

.avap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 880px; margin: 0 auto; }
.avap-col { border: 1.5px solid var(--c-line); border-radius: var(--radius-lg); padding: 30px 28px; background: rgba(255,255,255,0.5); }
.avap-col h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 16px; font-weight: 600; }
.avap-col ul { list-style: none; }
.avap-col li { position: relative; padding-left: 24px; margin-bottom: 11px; font-size: 0.93rem; line-height: 1.6; color: var(--c-ink-soft); }
.avap-col li::before { content: "—"; position: absolute; left: 0; color: var(--c-line); }
.avap-col--on { border-color: var(--c-red); background: #fff; }
.avap-col--on li::before { content: "✓"; color: var(--c-red); font-weight: 700; }
.avap-col--on li { color: var(--c-ink); }

@media (max-width: 860px) {
  .etages { grid-template-columns: 1fr; gap: 26px; }
  .avap { grid-template-columns: 1fr; }
}

/* ---------- Ses compositions sont deja des oeuvres finies ----------
   Elles ont leurs propres formes decoupees et un ratio precis.
   Les enfermer dans une bulle + object-fit:cover rognait son travail :
   on les affiche entieres, sans masque. */
.compo { display: block; background: none; border-radius: 0; overflow: visible; }
.compo img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; display: block; }

/* Dans la scene, les cellules qui portent une composition ne forcent plus de ratio */
.blob-scene .compo { aspect-ratio: auto !important; align-self: start; }

/* ============================================================
   MOBILE — 2026-09-07
   Ajustements des blocs V5 (affiche, arche, bulles, catalogue,
   marque) sur telephone. Tout est sous @media : la version
   bureau n'est pas touchee.
   ============================================================ */

@media (max-width: 860px) {
  /* L'affiche : la colonne texte passe au-dessus du visuel */
  .poster { padding: 44px 0 40px; }
  .poster-inner { gap: 30px; }
  .poster h1 { font-size: clamp(2.6rem, 13vw, 4rem); line-height: 0.94; }
  .poster .poster-sub { font-size: 0.97rem; margin-top: 16px; max-width: none; }
  .poster-eyebrow { margin-bottom: 18px; font-size: 0.68rem; letter-spacing: 0.16em; }
  .poster-eyebrow::before { width: 26px; }
  .poster-cta { margin-top: 26px; gap: 10px; }
  .poster .btn-poster { padding: 14px 22px; font-size: 0.76rem; flex: 1 1 auto; text-align: center; }
  /* Le visuel de l'affiche ne doit pas manger tout l'ecran */
  .poster .arch { aspect-ratio: 4 / 5; max-height: 62vh; margin-inline: auto; max-width: 420px; }

  /* Le bandeau chiffres : 2 colonnes lisibles */
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip > div { padding: 18px 20px; }

  /* Les affiches typo defilantes : plus petites sur telephone */
  .typo-track img { width: 132px; height: 176px; }

  /* La scene de bulles : une colonne, chaque forme respire */
  .blob-scene { grid-template-columns: 1fr; gap: 22px; }
  .blob-scene .b1, .blob-scene .b2, .blob-scene .b3, .blob-scene .b4 { grid-column: 1 / -1; }
  .blob-scene .blob { aspect-ratio: 1 / 1; max-width: 340px; margin-inline: auto; width: 100%; }
  .blob-scene .compo { max-width: 100%; }

  /* Le mot geant du catalogue : lisible en fond, pas ecrasant */
  .catalog { padding: 52px 0 46px; }
  .catalog__word { font-size: clamp(3.6rem, 24vw, 6rem); top: 22px; }

  /* Grilles d'affiches et de coffrets : 2 colonnes */
  .affiche-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .pack-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 560px) {
  /* Les cartes-arches de la collection : 2 par ligne, texte compact */
  .arch-card h3 { font-size: 0.98rem; margin-top: 11px; }
  .arch-card .note { font-size: 0.75rem; line-height: 1.45; }
  .arch-card .px { font-size: 0.84rem; margin-top: 5px; }

  /* Page marque : les blocs du docx en pleine largeur */
  .etages { grid-template-columns: 1fr; gap: 24px; }
  .etage-num { font-size: 2rem; }
  .actifs { grid-template-columns: 1fr; gap: 22px; }
  .avap { grid-template-columns: 1fr; gap: 16px; }
  .avap-col { padding: 22px 20px; }

  /* Fiche produit : l'arche ne doit pas depasser l'ecran */
  .pdp-situation { gap: 26px; }
  .pdp-situation .feat-copy { padding-top: 0; }
  .typo-poster { max-width: 320px; margin-inline: auto; }
}

@media (max-width: 420px) {
  /* Tres petits ecrans : on descend a 1 colonne la ou 2 serrait trop */
  .affiche-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .poster h1 { font-size: clamp(2.3rem, 12.5vw, 3.2rem); }
  .hero-strip > div { padding: 15px 16px; }
}

/* ---------- Grilles extraites des styles inline ----------
   Valeurs bureau strictement identiques a l'inline d'origine :
   seul le comportement mobile est ajoute. */
.duo-gammes { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 940px; padding: 0; }
.grid-arches { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; }
.pdp-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 900px; }
.pdp-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: center; }
#cross-sell.grid-arches { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 26px; }

@media (max-width: 860px) {
  .duo-gammes { grid-template-columns: 1fr; gap: 30px; }
  .pdp-duo { grid-template-columns: 1fr; gap: 30px; }
  /* 2 arches par ligne : la grille reste lisible sur telephone */
  .grid-arches, #cross-sell.grid-arches { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 380px) {
  .pdp-pair { gap: 12px; }
}

@media (max-width: 700px) {
  /* Catalogue : 2 produits par ligne au lieu d'un seul (minmax 250px
     forcait une colonne unique sous 500px = scroll interminable). */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .product-body { padding-top: 10px; }
  .product-card .script { font-size: 1.05rem; }
  .product-note { font-size: 0.76rem; line-height: 1.45; }
  .product-foot { flex-wrap: wrap; gap: 8px; }
  .price { font-size: 0.86rem; }
  .price small { font-size: 0.72rem; }
  .add-btn { width: 34px; height: 34px; flex: none; }
  /* Les boutons de filtre defilent horizontalement au lieu de passer
     a la ligne et de pousser la grille vers le bas. */
  #cat-chips { flex-wrap: nowrap !important; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; margin-bottom: 26px !important; }
  #cat-chips::-webkit-scrollbar { display: none; }
  #cat-chips > * { flex: none; }
  .frag-swatch { font-size: 0.78rem; padding: 9px 13px; }
}

/* ---------- Cartes d'info (page contact) ----------
   .perk n'a de sens que dans .perks (colonne + filet gauche) :
   hors de ce contexte il laissait un filet parasite et ignorait --tint. */
.info-card {
  border: 1.5px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 26px 24px; background: var(--c-white);
  border-top: 3px solid var(--accent, var(--c-gold));
}
.info-card h3 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 10px; font-weight: 600; }
.info-card p { color: var(--c-ink-soft); font-size: 0.92rem; line-height: 1.62; }
.info-card + .info-card { margin-top: 18px; }

@media (max-width: 767px) {
  /* Le formulaire passe avant les cartes, et respire */
  .contact-grid { gap: 34px; }
  .contact-form input, .contact-form textarea, .contact-form select {
    font-size: 16px; /* < 16px : iOS zoome automatiquement au focus */
  }
  .contact-form textarea { min-height: 120px; }
  .info-card { padding: 22px 20px; }
}

/* ============================================================
   V6 (2026-09-09) — REORGANISATION (reference Bloom & Bath)
   Retour cliente : « il y a un vrai potentiel mais c'est juste
   qu'il y a une grosse desorganisation », « on se sent un peu
   perdu si la personne ne connait pas le produit ».
   ============================================================ */

/* ---------- Bandeau d'annonce ---------- */
.topbar {
  background: #2c4a6b; color: #fff7d6;
  font-size: 0.76rem; letter-spacing: 0.06em; text-align: center;
  padding: 9px 16px;
}

/* ---------- L'ARCHE EST REMPLACEE PAR SES FORMES ----------
   Vocal du 09/09 : « pas la forme d'oeuf, je trouve ca pas beau ».
   Les .arch existants reprennent donc la geometrie organique de
   ses propres compositions, sans toucher au balisage. */
.arch { border-radius: 62% 38% 44% 56% / 54% 46% 54% 46%; aspect-ratio: 1 / 1; }
.arch-card:nth-child(3n+2) .arch,
.arch-card:nth-child(3n+2) .blob { border-radius: 38% 62% 56% 44% / 44% 58% 42% 56%; }
.arch-card:nth-child(3n+3) .arch,
.arch-card:nth-child(3n+3) .blob { border-radius: 54% 46% 38% 62% / 62% 38% 62% 38%; }
.arch-card .blob { display: block; overflow: hidden; aspect-ratio: 1 / 1; background: var(--arch-bg, var(--c-bg-soft)); transition: transform 0.5s var(--ease); }
.arch-card .blob img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.arch-card:hover .blob { transform: translateY(-6px); }
.arch-card:hover .blob img { transform: scale(1.05); }
/* Les videos dans des formes : plus grandes, comme elle le demande */
.blob-scene .blob { aspect-ratio: 1 / 1; }

/* ---------- Cartes de categorie (accueil) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.cat-card { display: block; text-align: center; }
.cat-card .blob { display: block; overflow: hidden; aspect-ratio: 1 / 1; background: var(--c-bg-soft); transition: transform 0.5s var(--ease); }
.cat-card .blob img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.cat-card:hover .blob { transform: translateY(-6px); }
.cat-card:hover .blob img { transform: scale(1.05); }
.cat-card h3 { font-family: var(--font-display); font-size: 1.24rem; margin-top: 20px; font-weight: 600; }
.cat-card p { color: var(--c-ink-soft); font-size: 0.9rem; line-height: 1.6; margin-top: 8px; max-width: 30ch; margin-inline: auto; }
.cat-link {
  display: inline-block; margin-top: 13px; font-size: 0.76rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-red); border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* ---------- Sommaire du catalogue ---------- */
.cat-toc { border-bottom: 1px solid var(--c-line); background: var(--c-bg); position: sticky; top: 0; z-index: 40; }
.cat-toc .container { display: flex; gap: 30px; overflow-x: auto; scrollbar-width: none; }
.cat-toc .container::-webkit-scrollbar { display: none; }
.cat-toc a {
  flex: none; padding: 16px 0; font-size: 0.79rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-ink-soft); border-bottom: 2px solid transparent;
}
.cat-toc a:hover { color: var(--c-ink); border-bottom-color: var(--c-red); }

/* ---------- Les deux gammes (page catalogue) ---------- */
.gamme-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.gamme-card { text-align: left; }
.gamme-card .blob { display: block; overflow: hidden; aspect-ratio: 1 / 1; max-width: 380px; background: var(--c-bg-soft); margin-bottom: 22px; }
.gamme-card .blob img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gamme-card h3 { font-family: var(--font-display); font-size: 1.42rem; font-weight: 600; }
.gamme-sub { color: var(--c-red); font-size: 0.86rem; margin: 5px 0 18px; letter-spacing: 0.04em; }
.gamme-card .bienfaits li { font-size: 0.9rem; }
.gamme-frags { font-size: 0.82rem; color: var(--c-ink-soft); margin: 16px 0 22px; line-height: 1.7; }

@media (max-width: 860px) {
  .cat-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-card .blob, .gamme-card .blob { max-width: 320px; margin-inline: auto; }
  .gamme-duo { grid-template-columns: 1fr; gap: 46px; }
  .cat-toc .container { gap: 20px; }
  .topbar { font-size: 0.7rem; padding: 8px 12px; }
}

/* Le visuel du hero prend une forme franchement organique (pas l'oeuf) */
.poster .arch { border-radius: 58% 42% 47% 53% / 46% 58% 42% 54%; aspect-ratio: 1 / 1; max-width: 520px; margin-inline: auto; }

/* ---------- Les videos dans SES formes ----------
   Vocal du 09/09 : « ces formes la, tu les selectionnes et a l'interieur tu
   mets des videos », « pour les videos que ca soit un peu plus grand ».
   La video n'est plus un rectangle arrondi mais une forme organique. */
.blob-video { overflow: hidden; display: block; background: var(--c-bg-soft); }
.blob-video video {
  width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  border-radius: 0 !important; box-shadow: none !important;
}
.feat-media .blob-video { box-shadow: none; }
/* Deux videos cote a cote, volontairement grandes */
.video-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin-inline: auto; }
.video-duo .blob-video { aspect-ratio: 1 / 1; }

@media (max-width: 860px) {
  .video-duo { grid-template-columns: 1fr; gap: 26px; }
  .video-duo .blob-video { max-width: 360px; margin-inline: auto; width: 100%; }
}

/* ============================================================
   V7 (2026-09-11) — PALETTE « BUTTERCUP SKY » + FORME CAPSULE
   Elle a envoye sa palette exacte (5 teintes nommees avec les hex)
   et une reference de formes en CAPSULE alignees en ligne.
   Vocal 2 : « si je peux retrouver ces couleurs dans la page d'accueil ».
   Vocal 1 : « pas l'oeuf […] vraiment la forme que je t'ai envoyee »,
             « une lignee », « le produit avec la main que je t'ai envoyee
             a l'interieur », « une selection ».
   ============================================================ */

:root {
  --c-buttercup: #fff2b2;   /* Buttercup Sky */
  --c-dewy:      #a8c6e7;   /* Dewy Blue */
  --c-sunwashed: #ffe08a;   /* Sunwashed */
  --c-cloud:     #fff7d6;   /* Cloud Puff */
  --c-breeze:    #7fa8d6;   /* Morning Breeze */
}

/* ---------- La forme CAPSULE (celle de sa reference) ---------- */
.pill {
  display: block; overflow: hidden;
  border-radius: 999px;             /* capsule pleine, pas un oeuf */
  aspect-ratio: 3 / 5;
  background: var(--pill-bg, var(--c-cloud));
}
.pill img, .pill video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- La « selection » : une lignee de capsules ---------- */
.selection {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.selection .pill-card { display: block; text-align: center; }
.selection .pill { transition: transform 0.5s var(--ease); }
.selection .pill img { transition: transform 0.6s var(--ease); }
.selection .pill-card:hover .pill { transform: translateY(-8px); }
.selection .pill-card:hover .pill img { transform: scale(1.05); }
.selection h3 { font-family: var(--font-display); font-size: 1rem; margin-top: 15px; font-weight: 600; }
.selection .note { font-size: 0.78rem; color: var(--c-ink-soft); margin-top: 4px; line-height: 1.45; }
.selection .px { font-size: 0.85rem; margin-top: 7px; font-weight: 600; }
/* Decalage vertical : la lignee respire, comme sur sa reference.
   Le texte est sorti du flux decale pour que les titres restent alignes. */
.selection .pill-card { display: flex; flex-direction: column; }
.selection { align-items: stretch; }
.selection .pill-card:nth-child(even) .pill { margin-top: 34px; }
.selection .pill-card .pill-txt { margin-top: auto; padding-top: 15px; }
/* la capsule garde sa taille, le texte est pousse en bas de carte */
.selection .pill-card .pill { flex: none; }

@media (max-width: 860px) {
  .selection { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .selection .pill-card:nth-child(even) .pill { margin-top: 24px; }
}

/* ============================================================
   V8 (2026-09-12) — LA CAPSULE PARTOUT
   Elle a refuse la forme « oeuf » TROIS fois. La seule forme
   validee est la CAPSULE de sa reference (bouts entierement
   ronds). On neutralise donc toutes les variantes blob/arche
   heritees, sur toutes les pages, sans toucher au balisage.
   ============================================================ */

.arch,
.blob,
.blob--a, .blob--b, .blob--c,
.arch-card .blob,
.arch-card:nth-child(3n+2) .arch, .arch-card:nth-child(3n+2) .blob,
.arch-card:nth-child(3n+3) .arch, .arch-card:nth-child(3n+3) .blob,
.cat-card .blob,
.gamme-card .blob,
.poster .arch,
.blob-video,
.blob-scene .blob {
  border-radius: 999px !important;
}

/* La capsule est verticale : on impose le bon rapport la ou il etait carre */
.arch, .arch-card .blob, .cat-card .blob, .gamme-card .blob { aspect-ratio: 3 / 5; }
.poster .arch { aspect-ratio: 3 / 5; max-width: 400px; }
/* Les videos gardent une capsule plus large pour rester lisibles */
.blob-video, .blob-scene .blob { aspect-ratio: 4 / 5; }
.video-duo .blob-video { aspect-ratio: 4 / 5; }

@media (max-width: 860px) {
  .poster .arch { max-width: 300px; }
}

/* ---------- Les jetons de base passent a SA palette ----------
   Les en-tetes de page, fonds doux et sections « fortes » etaient
   restes sur le beige/vert de la v3. On les rebranche sur
   Buttercup / Cloud Puff / Morning Breeze. */
:root {
  --c-bg:      #fffdf5;   /* creme tres clair, proche Cloud Puff */
  --c-bg-soft: #fff7d6;   /* Cloud Puff */
  --c-cream:   #fff7d6;
  --c-deep:    #2c4a6b;   /* encre bleue a la place du vert profond */
  --c-line:    #ecdfae;   /* filet chaud accorde au jaune */
}

/* La grille catalogue (filtres.html) utilise .product-thumb :
   elle doit suivre la meme forme capsule que le reste du site. */
.product-thumb { border-radius: 999px !important; aspect-ratio: 3 / 5; }
.product-thumb img { aspect-ratio: 3 / 5; transform: none; }
.product-card:hover .product-thumb img { transform: scale(1.04); }


/* ============================================================
   V9 (2026-09-12) — LES PASTILLES + LE BLEU « SPACE »
   Message 12:59 : « changer les points mettre autre chose a la
   place stp un autre style ». Message 13:00 : « mettre se style
   a la place » + photo « Bergamot Orange » en script.
   Vocal 07s : « ce bleu, si tu peux mettre genre la couleur mangue ».
   ============================================================ */

/* 1. Plus de pastille ronde : le nom de la fragrance porte sa
      couleur, dans le script de la marque (comme sa photo). */
.frag-swatch .dot { display: none; }
.frag-swatch {
  font-family: var(--font-script);
  font-size: 0.98rem;
  letter-spacing: 0;
  padding: 8px 18px 11px;
  color: var(--dot, var(--c-ink));
  line-height: 1.1;
}
.frag-swatch.active {
  border-color: var(--dot, var(--c-ink));
  background: var(--c-cloud);
}

/* 2. Le bandeau « espace » bleu froid passe en mangue.
      Elle a dit « genre la couleur mangue » : Sunwashed est
      le jaune chaud de SA propre palette. */
/* (remplace par V11 : la mangue va au pied de page) */


/* ============================================================
   V10 (2026-09-12) — FINITIONS MOBILE
   TOUT est sous @media : la version PC n'est pas touchee.
   Sonde : aucune page ne deborde (DEBORDE=non sur les 7).
   Restaient deux rangees scrollables coupees net, sans indice
   visuel qu'on peut faire defiler.
   ============================================================ */

@media (max-width: 860px) {
  /* 1. Rangees qui defilent : geste plus evident et derniere
        pastille qui ne colle plus au bord. Le gabarit .container
        garde ses 22px, on ne touche donc PAS aux marges. */
  #cat-chips,
  .cat-toc .container {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-left: 22px;
  }
  #cat-chips > *,
  .cat-toc a { scroll-snap-align: start; }

  /* Butee finale : on voit que la rangee est terminee. */
  #cat-chips::after,
  .cat-toc .container::after { content: ""; flex: 0 0 6px; }

  /* 2. Tiroir panier plein ecran sur petit telephone. */
  .cart-drawer { width: min(430px, 100vw); }
}

@media (max-width: 560px) {
  /* 3. Les puces en script sont plus larges que l'ancien texte :
        on resserre pour garder 2 par ligne sur la fiche produit. */
  .frag-swatch { font-size: 0.92rem; padding: 7px 14px 10px; }
}


/* ============================================================
   V11 (2026-09-13) — SES 3 DEMANDES DU 12/09 (20:08)
   ============================================================ */

/* 1. « Si tu peux les aligner, parce que la ils sont pas du tout
      alignes » — entoure en vert : Sage plus haut que Jasmine.
      Le decalage volontaire est SUPPRIME : meme haut, meme bas. */
.selection .pill-card:nth-child(even) .pill { margin-top: 0; }

/* 2. « Pour la couleur bleue, je t'avais demande de mettre la
      couleur mangue a la place de ce bleu » — sa capture montre le
      PIED DE PAGE bleu nuit (pas le bandeau chiffres, que j'avais
      change a tort hier). Reference mangue = le jaune d'or
      MAISON SUZOR qu'elle renvoie juste apres.
      Contraste verifie : #2c4a6b sur #f0a818 = 6,1:1 (AA large). */
:root { --c-mangue: #f0a818; }

.site-footer { background: var(--c-mangue); color: #2c4a6b; }
/* le logo etait force en creme (ligne ~361) : invisible sur mangue */
.site-footer .footer-brand .logo .script,
.site-footer .footer-brand .logo strong { color: #2c4a6b; }
.site-footer .footer-brand p { color: #2c4a6b; opacity: 0.78; }
.site-footer h4 { color: #2c4a6b; }
.site-footer a { color: #2c4a6b; }
.site-footer a:hover { color: #14283d; }
.site-footer li { color: #2c4a6b; }
.site-footer .footer-bottom {
  border-top-color: rgba(44, 74, 107, 0.26);
  color: #2c4a6b;
  opacity: 0.75;
}

/* 3. Le bandeau chiffres revient au jaune clair de SA palette
      (Sunwashed) : il ne doit pas rivaliser avec le pied de page. */
.hero-strip { background: #ffe08a !important; color: #2c4a6b; }

/* Suite du point 1 : le decalage supprime, il restait un 2e
   desalignement, celui des TEXTES. « Sage » a une description sur
   2 lignes, « Jasmine » sur 1 : les prix tombaient a des hauteurs
   differentes. On aligne donc aussi les lignes de texte.
   (le margin-top:auto servait a rattraper l'ancien decalage) */
.selection .pill-card .pill-txt {
  margin-top: 0;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* la description occupe la place restante -> le prix est toujours
   sur la meme ligne d'une carte a l'autre */
.selection .pill-card .pill-txt .note { flex: 1; }
.selection .pill-card .pill-txt .px { margin-top: 0; }


/* ============================================================
   V12 (2026-09-16) — SES VOCAUX DU 15/09
   « enormement d'informations », « organiser a l'essentiel »,
   « dans le catalogue c'est vraiment les explications des
   ingredients », « histoires a lire c'est hyper important ».
   ============================================================ */

/* ---------- Page BIENFAITS : les actifs ---------- */
.actifs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 56px; max-width: 940px; margin-inline: auto;
}
.actifs-grid .etage { padding: 30px 0; border-top: 1px solid var(--c-line); }
.actifs-grid .etage__num {
  display: block; font-family: var(--font-display); font-size: 1.5rem;
  color: var(--c-breeze, #7fa8d6); margin-bottom: 8px;
}
.actifs-grid .etage h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.actifs-grid .etage p { color: var(--c-ink-soft); font-size: 0.95rem; }
.etage__pour {
  margin-top: 12px; font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-breeze, #7fa8d6);
}

/* ---------- Page BIENFAITS : le schema en etapes ---------- */
.parcours {
  list-style: none; counter-reset: none; padding: 0; margin: 0 auto;
  max-width: 760px; display: flex; flex-direction: column; gap: 0;
}
.parcours li {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 26px 0; border-top: 1px solid rgba(44, 74, 107, 0.2);
}
.parcours li:last-child { border-bottom: 1px solid rgba(44, 74, 107, 0.2); }
.parcours__n {
  flex: none; width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
  background: #2c4a6b; color: #fff;
  font-family: var(--font-display); font-size: 1.05rem;
}
.parcours h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  margin-bottom: 6px; color: #2c4a6b;
}
.parcours p { color: rgba(44, 74, 107, 0.82); font-size: 0.95rem; }

/* ---------- Page BIENFAITS : par zone du corps ---------- */
.zones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.zones .zone h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}

/* ---------- Accueil : « Histoires a lire » (sa demande) ---------- */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.story {
  display: flex; flex-direction: column;
  border: 1px solid var(--c-line); background: #fff;
  overflow: hidden; transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.story:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.story__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-bg-soft); }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.story__body h3 {
  font-family: var(--font-display); font-size: 1.12rem;
  line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 12px;
}
.story__body p { color: var(--c-ink-soft); font-size: 0.92rem; flex: 1; }
.story__lire {
  margin-top: 18px; font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
}

@media (max-width: 860px) {
  .actifs-grid { grid-template-columns: 1fr; gap: 0; }
  .zones { grid-template-columns: 1fr; gap: 30px; }
  .stories { grid-template-columns: 1fr; gap: 18px; }
  .parcours li { gap: 16px; padding: 20px 0; }
  .parcours__n { width: 36px; height: 36px; font-size: 0.95rem; }
}


/* ============================================================
   V13 (2026-09-16) — LE BLEU NUIT, ELLE N'EN VEUT PLUS
   « mais ce bleu la, je suis desolee, j'aime pas du tout cette
     couleur » + « "L'eau change tout" mettre la couleur orangee
     a la place ». L'orange retenu est celui de SA fragrance
     Bergamot Orange (#d9713e), deja dans la charte.
   ============================================================ */

/* La bande d'annonce et les sections fortes quittent le bleu nuit */
.topbar { background: #d9713e; color: #fff7d6; }

/* .section--deep n'est plus utilisee sur l'accueil, mais si elle
   ressert ailleurs elle ne doit plus sortir du bleu nuit. */
.section--deep { background: var(--c-cloud, #fff7d6); color: var(--c-ink); }
.section--deep .display, .section--deep .eyebrow { color: var(--c-ink); }
.section--deep .lead, .section--deep p { color: var(--c-ink-soft); }

/* Les titres des cartes « gamme » redeviennent lisibles sur clair */
.section--deep .gamme-card h3 { color: var(--c-ink); }

/* NOTRE HISTOIRE : l'image retiree ("aucun rapport, aucun sens"),
   le texte restait coince sur une demi-largeur avec un grand vide
   a droite. On le centre proprement. */
#notre-histoire .feat-copy { max-width: none; text-align: center; }
#notre-histoire .feat-copy p { margin-inline: auto; max-width: 62ch; }
#notre-histoire .feat-copy .btn { margin-top: 26px; }

/* ============================================================
   V14 (2026-09-16) — LE SELECTEUR EN MINIATURES
   Vocal 15/09 : « des carres en miniature, cliquer sur le filtre
   et a cote c'est marque le nom, par exemple le filtre Camellia
   avec le filtre en miniature ». Sa photo : des pastilles rondes
   alignees, l'active entouree d'un cadre fin.
   Ajoute EN PLUS de la grille capsules (qu'elle avait validee).
   ============================================================ */
.mini-picker {
  display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 14px;
  margin-bottom: 30px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
}
.mini-picker::-webkit-scrollbar { display: none; }
.mini-picker::after { content: ""; flex: 0 0 6px; }

.mini {
  flex: none; scroll-snap-align: start;
  display: flex; align-items: center; gap: 10px;
  padding: 7px 15px 7px 7px;
  border: 1.5px solid transparent; border-radius: 999px;
  background: none; cursor: pointer; font-family: inherit;
  transition: border-color 0.25s, background 0.25s;
}
.mini__img {
  flex: none; width: 46px; height: 46px; border-radius: 999px;
  overflow: hidden; background: var(--mini-bg, var(--c-bg-soft));
  display: grid; place-items: center;
}
.mini__img img { width: 100%; height: 100%; object-fit: cover; }
.mini__nom {
  font-family: var(--font-script); font-size: 0.95rem;
  color: var(--c-ink); white-space: nowrap; line-height: 1;
}
.mini:hover { background: var(--c-cloud, #fff7d6); }
.mini.is-on {
  border-color: var(--c-ink);
  background: var(--c-cloud, #fff7d6);
}

@media (max-width: 560px) {
  .mini__img { width: 40px; height: 40px; }
  .mini__nom { font-size: 0.88rem; }
  .mini { padding: 6px 13px 6px 6px; }
}

/* ============================================================
   V15 (2026-09-18) — GALERIE FICHE PRODUIT + GROS TITRES
   Vocal 18/09 : « avec une seule presentation on peut pas faire
   defiler, t'en as juste la main. Est-ce que tu peux faire de la
   meme forme ? mettre 2e image le produit, 3e les boites, 4e le
   produit installe. »
   ============================================================ */

.pdp-vues {
  display: flex; gap: 10px; margin-top: 18px;
  justify-content: center; flex-wrap: wrap;
}
.pdp-vue {
  width: 58px; height: 74px; padding: 0;
  border: 1.5px solid var(--c-line); border-radius: 999px;
  overflow: hidden; background: var(--c-bg-soft);
  cursor: pointer; transition: border-color 0.25s, transform 0.25s;
}
.pdp-vue img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-vue:hover { transform: translateY(-2px); }
.pdp-vue.is-on { border-color: var(--c-ink); border-width: 2px; }

@media (max-width: 560px) {
  .pdp-vue { width: 50px; height: 64px; }
  .pdp-vues { gap: 8px; margin-top: 14px; }
}

/* ---- Le gros mot de fond, sur les sections qu'elle a citees ----
   « j'aime trop les grands titres, est-ce que tu peux faire dans
     toutes les pages, et aussi dans la page d'accueil » */
.section--mot { position: relative; overflow: hidden; }
.section--mot > .container { position: relative; z-index: 1; }
.section--mot::before {
  content: attr(data-mot);
  position: absolute; left: 50%; top: 18px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 15vw, 12rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 0.82;
  color: var(--mot-couleur, rgba(240, 168, 24, 0.16));
  white-space: nowrap; pointer-events: none; user-select: none;
  z-index: 0;
}
@media (max-width: 700px) {
  .section--mot::before { font-size: clamp(3.4rem, 22vw, 6rem); top: 14px; }
}

/* ============================================================
   V16 (2026-09-21) — PAGE « QUAND L'UTILISER »
   Message 20/09 14:29 : « je t'avais demande de mettre des
   explications pour le voyage, pour les animaux, pour les
   problematiques de peau corps et visage, et aussi pour la
   piscine. C'est hyper important. »
   + son document Vita_On_Apres_Piscine.docx (texte repris).
   Page dediee : elle veut aussi un accueil LEGER.
   ============================================================ */

.routine {
  margin-top: 44px; padding: 30px 32px;
  border: 1.5px solid var(--c-line); border-radius: var(--radius-lg);
  background: var(--c-cloud, #fff7d6);
}
.routine__titre {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-ink-soft); margin-bottom: 18px;
}
.routine__etapes {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px 0; align-items: center;
}
.routine__etapes li {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--c-ink); display: flex; align-items: center;
}
.routine__etapes li::after {
  content: "→"; margin: 0 14px;
  color: var(--c-breeze, #7fa8d6); font-family: var(--font-body);
}
.routine__etapes li:last-child::after { content: ""; margin: 0; }

@media (max-width: 560px) {
  .routine { padding: 24px 22px; }
  .routine__etapes li { font-size: 0.92rem; }
  .routine__etapes li::after { margin: 0 10px; }
}

/* ============================================================
   V17 (2026-09-24) — LE JOURNAL, L'EFFET PISCINE, LE COLLAGENE
   Vocaux du 24/09. Aucune image generee (consigne de Ryan) :
   cartes typographiques + vagues dessinees en SVG, aplats seuls.
   ============================================================ */

/* ---------- Le journal : 6 cartes usages ---------- */
.usage-cartes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.usage-carte {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--radius-lg); background: #fff;
  border: 1px solid var(--c-line);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.usage-carte:hover { transform: translateY(-4px); border-color: var(--uc-encre); }
.usage-carte__mot {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16 / 9; background: var(--uc-fond); color: var(--uc-encre);
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); letter-spacing: -0.02em;
  line-height: 1; overflow: hidden; white-space: nowrap;
}
.usage-carte__corps { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.usage-carte__corps h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.usage-carte__corps p { color: var(--c-ink-soft); font-size: 0.92rem; flex: 1; }
.usage-carte__lire {
  margin-top: 14px; font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
}

/* ---------- Bien plus que la vitamine C ---------- */
.trio-actifs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 980px; margin-inline: auto; }
.actif-cle { padding: 26px 28px; border-left: 1px solid var(--c-line); }
.actif-cle:first-child { border-left: 0; }
.actif-cle__nom {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--ak); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.actif-cle p { color: var(--c-ink-soft); font-size: 0.95rem; }
.trio-note {
  text-align: center; margin-top: 26px; font-size: 0.82rem; color: var(--c-ink-soft);
}
.trio-note a { margin-left: 8px; font-weight: 500; color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- L'effet piscine ---------- */
.piscine-bande {
  position: relative; background: #7fa8d6; color: #fff;
  padding: 110px 0 120px; overflow: hidden;
}
.piscine-bande .vague { position: absolute; left: 0; width: 100%; height: 60px; display: block; }
.piscine-bande .vague--haut { top: -1px; fill: var(--c-bg); }
.piscine-bande .vague--bas { bottom: -1px; fill: var(--c-bg); }
.piscine-bande__grille {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.piscine-bande .display { color: #fff; }
.piscine-bande__texte > p { color: rgba(255, 255, 255, 0.9); margin-top: 18px; max-width: 52ch; }
.piscine-etapes {
  list-style: none; padding: 0; margin: 26px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.piscine-etapes li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 9px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.16); font-size: 0.9rem;
}
.piscine-etapes li span {
  width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center;
  background: #fff7d6; color: #2c4a6b; font-weight: 600; font-size: 0.85rem;
}
.piscine-bande .btn-poster { background: #fff7d6; color: #2c4a6b; }
.piscine-bande__media .blob-video { max-width: 380px; margin-inline: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .usage-cartes { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trio-actifs { grid-template-columns: 1fr; }
  .actif-cle { border-left: 0; border-top: 1px solid var(--c-line); padding: 20px 4px; }
  .actif-cle:first-child { border-top: 0; }
  .piscine-bande { padding: 80px 0 90px; }
  .piscine-bande__grille { grid-template-columns: 1fr; gap: 36px; }
  .piscine-bande .vague { height: 36px; }
  .piscine-bande__media .blob-video { max-width: 260px; }
}
@media (max-width: 560px) {
  .usage-cartes { grid-template-columns: 1fr; }
  .usage-carte__mot { aspect-ratio: 5 / 2; }
}

/* V17 correctifs apres capture :
   1. .btn-poster n'etait style que dans .poster -> bouton reel ici
   2. vague du bas = couleur de la section suivante (Cloud Puff), plus de raccord */
.piscine-bande .btn-poster {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: var(--radius-pill);
  background: #fff7d6; color: #2c4a6b; border: 1.5px solid #fff7d6;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform 0.25s var(--ease);
}
.piscine-bande .btn-poster:hover { transform: translateY(-2px); }
.piscine-bande .vague--bas { fill: #fff7d6; }
@media (max-width: 560px) {
  .piscine-bande .btn-poster { width: 100%; padding: 14px 20px; font-size: 0.76rem; }
}
