/* ==========================================================================
   Mission Confettis — thème « Papier & Encre, version boutique »
   Chargé après style.css. Retune les jetons de marque et reconstruit les
   surfaces qui portent l'achat : cartes produit, prix, réassurance, CTA.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Jetons
   -------------------------------------------------------------------------- */

:root {
  /* Papier : moins jaune, plus propre — la couleur d'une belle feuille. */
  --paper: #fbf7f1;
  --paper-2: #f4ece1;
  --paper-3: #efe5d8;
  --white: #fff;

  /* Encre : noir chaud à sous-ton prune. Échelle de gris complète. */
  --ink: #1e1a24;
  /* Pour le texte posé sur un accent mi-ton (corail, or, menthe), où
     l'encre standard reste juste sous le seuil de contraste. */
  --ink-strong: #14111a;
  --ink-2: #4d4653;
  --muted: #6b6370;

  /* Couleurs de texte qui suivent la surface. Les sections sombres les
     redéfinissent plus bas ; sans quoi un libellé encre atterrit sur un
     aplat prune ou cobalt et devient illisible. */
  --label: var(--ink-2);
  --body-2: var(--ink-2);
  --rule: var(--line);
  --line: #e6dccf;
  --line-strong: #d6c8b6;

  /* Accents : désaturés d'un cran. Réservés aux petites surfaces. */
  --coral: #e04e2e;
  --coral-deep: #b93a1f;
  --coral-soft: #fbeae4;
  --cobalt: #2b46a6;
  --cobalt-deep: #1d3178;
  --cobalt-soft: #eceffa;
  --gold: #eeae2d;
  --gold-soft: #fcf1d9;
  --mint: #5fb694;
  --mint-soft: #e6f4ed;
  --plum: #6b3a73;
  --plum-soft: #f2e9f3;

  /* Ombres douces et chaudes. Fini l'ombre « autocollant » à décalage dur. */
  --shadow-sm: 0 1px 2px rgba(30, 26, 36, .05), 0 2px 6px rgba(30, 26, 36, .04);
  --shadow-md: 0 2px 4px rgba(30, 26, 36, .05), 0 10px 26px rgba(30, 26, 36, .07);
  --shadow-lg: 0 4px 10px rgba(30, 26, 36, .05), 0 22px 54px rgba(30, 26, 36, .11);
  --shadow: var(--shadow-md);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --page: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 116px);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

body {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
}

/* Le motif confetti restait perceptible comme un bruit gris sur tout l'écran. */
body::before { opacity: .008; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Les liens posés dans un paragraphe gagnent quelques pixels de hauteur de
   clic, compensés par une marge négative pour ne pas décaler le texte. */
.legal-sections a,
.faq-group details a,
.waitlist-consent a,
.catalog-note a {
  padding-block: 3px;
  margin-block: -3px;
}

/* Échelle d'affichage resserrée : les titres laissaient trop peu de place
   aux informations qui décident l'achat (prix, âge, format). */
.home-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.25rem);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 800;
}

.ritual-section h2,
.collection-section h2,
.manifesto-section h2,
.story-flow h2,
.preview-section-new h2,
.truth-section h2,
.package-section h2,
.shop-hero h1,
.product-final h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 800;
}

.kicker {
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--label);
  margin-bottom: 14px;
}

.kicker > span { background: var(--coral); }
.kicker-light { color: rgba(255, 255, 255, .78); }

/* Surfaces sombres : elles redéfinissent les jetons de texte pour toute
   leur descendance, plutôt que de corriger chaque élément un par un. */
.manifesto-section,
.orbit-feature,
.product-hero-new,
.package-board,
.signature-strip,
.site-footer,
.type-system,
.brand-position,
.robot-hero {
  --label: rgba(255, 255, 255, .88);
  --body-2: rgba(255, 255, 255, .88);
  --muted: rgba(255, 255, 255, .82);
  --rule: rgba(255, 255, 255, .22);
}

/* Le corail plein ne porte de petit texte blanc à aucun niveau lisible :
   les surfaces qui en ont besoin prennent la variante profonde. */
.brand-position {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  color: var(--white);
}

.brand-position p { color: var(--body-2); }

/* Texte sur pastilles de couleur mi-ton de la page marque. */
.swatch-coral,
.swatch-sun { color: var(--ink-strong); }

/* Le bouton papier prend le contour de la surface qui le porte. */
.manifesto-section .button-paper,
.product-hero-new .button-paper,
.orbit-feature .button-paper,
.robot-hero .button-paper {
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
  background: transparent;
}

.manifesto-section .button-paper:hover,
.product-hero-new .button-paper:hover,
.orbit-feature .button-paper:hover,
.robot-hero .button-paper:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   3. En-tête
   -------------------------------------------------------------------------- */

.site-header {
  height: 76px;
  background: rgba(251, 247, 241, .82);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(1.4) blur(14px);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(30, 26, 36, .05);
}

/* Cible d'au moins 24px de haut (WCAG 2.2, « Target Size (Minimum) »).
   Les liens de navigation ne bénéficient pas de l'exception réservée aux
   liens insérés dans un paragraphe. */
.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color .18s var(--ease);
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] { color: var(--ink); }

.site-header nav a:not(.nav-cta)::after { bottom: -5px; height: 2px; }

.nav-cta {
  background: var(--ink);
  color: var(--white);
  font-weight: 650;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), background .18s var(--ease);
}

/* Spécificité alignée sur la règle de couleur de navigation ci-dessus,
   sans quoi le libellé encre se retrouve sur une pastille encre. */
.site-header nav a.nav-cta,
.site-header nav a.nav-cta[aria-current="page"] { color: var(--white); }
.nav-cta:hover { background: var(--coral-deep); transform: translateY(-1px); }
.nav-cta::after { display: none; }

/* --------------------------------------------------------------------------
   4. Boutons
   -------------------------------------------------------------------------- */

.button {
  border-radius: 999px;
  font-weight: 680;
  font-size: 15.5px;
  letter-spacing: -.005em;
  padding: 15px 26px;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.button-ink:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.button-paper {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-paper:hover {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.button-sun {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.button-sun:hover { background: var(--white); border-color: var(--white); }

.button[disabled] {
  opacity: .42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.text-link {
  font-weight: 650;
  color: var(--ink);
  text-decoration-color: var(--line-strong);
  text-underline-offset: 5px;
}

.text-link:hover { text-decoration-color: var(--coral); }

/* --------------------------------------------------------------------------
   5. Accueil — héros
   -------------------------------------------------------------------------- */

/* Le héros occupait toute la hauteur d'écran : la réassurance et le catalogue
   restaient invisibles sans défiler. On le ramène à sa taille utile. */
.home-hero {
  min-height: auto;
  max-width: 1380px;
  margin-inline: auto;
  padding: clamp(36px, 4.5vw, 68px) var(--gutter) clamp(24px, 3vw, 40px);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

/* Le passage à une colonne sous 1120px appartient à la feuille de base :
   ne redéfinir les colonnes qu'au-dessus, sinon le titre déborde. */
@media (min-width: 1121px) {
  .home-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}

.hero-lede {
  font-size: 1.13rem;
  color: var(--ink-2);
  max-width: 34ch;
}

.hero-actions { margin-top: 30px; gap: 12px; }

/* La note d'honnêteté restait juste, mais criait plus fort que l'offre.
   Elle devient une mention discrète et non un bandeau d'alerte. */
.honesty-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
}

.honesty-note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* Le plateau de fête : aplat corail plein remplacé par un lavis chaud. */
.party-desk {
  background: linear-gradient(150deg, var(--coral-soft), var(--gold-soft) 62%, var(--paper-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.party-desk .desk-sun {
  background: radial-gradient(circle, rgba(238, 174, 45, .38), transparent 68%);
}

.paper { box-shadow: var(--shadow-md); border-radius: var(--radius-md); }
.paper-main { box-shadow: var(--shadow-lg); }

/* --------------------------------------------------------------------------
   6. Barre de réassurance (nouveau)
   -------------------------------------------------------------------------- */

.trust-bar {
  max-width: var(--page);
  margin: 0 auto;
  padding: 22px var(--gutter) clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  list-style: none;
}

.trust-bar li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  border-left: 1px solid var(--line);
}

.trust-bar li:first-child { border-left: 0; padding-left: 0; }

.trust-bar svg { flex: none; width: 22px; height: 22px; margin-top: 1px; color: var(--coral); }

.trust-bar strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-bar span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   7. Bandeau signature
   -------------------------------------------------------------------------- */

.signature-strip {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: clamp(30px, 4vw, 44px) var(--gutter);
}

.signature-strip p {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: -.02em;
}

.signature-strip strong { color: var(--gold); }

/* --------------------------------------------------------------------------
   8. Sections éditoriales
   -------------------------------------------------------------------------- */

.ritual-section,
.collection-section,
.manifesto-section {
  padding-block: var(--section-y);
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Les étapes deviennent trois cartes distinctes : la piste à filets de la
   version précédente rendait la lecture continue plutôt que séquentielle. */
.ritual-track {
  border-top: 0;
  margin-top: 42px;
  gap: 20px;
}

.ritual-track li,
.ritual-track li + li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.ritual-track li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.step-number {
  width: 42px;
  height: 42px;
  background: var(--coral-soft);
  border: 1px solid color-mix(in srgb, var(--coral) 35%, transparent);
  color: var(--coral-deep);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.ritual-track h3 { font-size: 1.18rem; letter-spacing: -.015em; }
.ritual-track p { color: var(--ink-2); font-size: .97rem; }

/* Section prototype : cobalt profond plutôt que bleu vif plein écran. */
/* Les marges latérales de la feuille de base doivent survivre : un simple
   margin-inline:auto les annulait et élargissait les feuilles en mobile. */
.orbit-feature {
  background: linear-gradient(155deg, var(--cobalt-deep), var(--cobalt));
  border-radius: var(--radius-xl);
  max-width: min(var(--page), calc(100% - 2 * clamp(16px, 3vw, 46px)));
  margin-inline: auto;
  overflow: hidden;
}

.orbit-copy h2 { font-size: clamp(2.4rem, 4.4vw, 3.4rem); letter-spacing: -.035em; }
.orbit-subtitle { color: var(--gold); font-weight: 650; }
.orbit-copy p { color: rgba(255, 255, 255, .8); }
.orbit-copy dt { color: rgba(255, 255, 255, .6); }
.orbit-copy dd { color: var(--white); }
.orbit-sheets figure { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow: hidden; }

/* Le titre occupait une seule rangée : la deuxième colonne restait un grand
   vide prune sous lui. Il s'étend maintenant sur les deux rangées. */
.manifesto-section {
  padding: clamp(28px, 5vw, 80px);
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
}

.manifesto-copy p { color: var(--body-2); }

@media (min-width: 1051px) {
  /* La colonne doit être fixée en même temps que la rangée : sans elle,
     le placement automatique renvoie le titre dans la colonne étroite. */
  .manifesto-section h2 {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
}

/* « L’émerveillement » est le mot le plus long du site : il fixe la taille
   plancher des titres sur les très petits écrans. */
@media (max-width: 380px) {
  .manifesto-section h2 { font-size: 1.7rem; }
}

/* --------------------------------------------------------------------------
   9. Cartes produit — la pièce commerciale
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 26px;
  background: none;
  padding: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              border-color .22s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

/* La carte est blanche quel que soit le stade : le fond beige des concepts
   les faisait passer pour désactivés. */
.product-card[data-stage="concept"] { background: var(--white); }

/* Cercle et étincelle décoratifs de l'ancienne couverture : ils passaient
   par-dessus l'aperçu réel du PDF. */
.product-cover::before,
.product-cover::after { content: none; }

/* L'ancienne grille recentrait la dernière carte impaire sur une demi-largeur. */
.product-grid > .product-card:last-child:nth-child(odd) {
  grid-column: auto;
  width: auto;
  justify-self: stretch;
}

/* Couverture : la vraie page du PDF quand elle existe. On achète ce qu'on voit. */
.product-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(120% 90% at 50% 105%, rgba(30, 26, 36, .07), transparent 60%),
    color-mix(in srgb, var(--accent) 10%, var(--paper-2));
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 0;
}

/* Les couvertures sont des A4. Positionnement absolu : une hauteur en
   pourcentage se résoudrait sinon contre la taille intrinsèque de l'image. */
.product-cover img,
.product-cover .cover-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 78%;
  width: auto;
  max-width: none;
  border-radius: 4px 7px 7px 4px;
  box-shadow: 0 3px 8px rgba(30, 26, 36, .12), 0 16px 34px rgba(30, 26, 36, .2);
  translate: -50% -50%;
  rotate: -1.75deg;
  transition: scale .3s var(--ease), rotate .3s var(--ease);
}

.product-card:hover .product-cover img,
.product-card:hover .product-cover .cover-fallback { scale: 1.04; rotate: -2.4deg; }

/* Repli sans aperçu : une feuille sobre aux couleurs de l'univers. */
.product-cover .cover-fallback {
  aspect-ratio: 900 / 1272;
  background: linear-gradient(165deg, var(--accent), color-mix(in srgb, var(--accent) 72%, #000));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
}

.product-cover .cover-fallback strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
}

.product-cover .cover-fallback em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 6px;
}

/* Puce d'âge : l'information n°1 pour un parent qui choisit. */
.product-cover .age-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -.005em;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  padding: 20px 20px 18px;
}

.stage-badge {
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 750;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--ink-2);
  border: 0;
  margin-bottom: 12px;
}

.product-card[data-stage="prototype"] .stage-badge { background: var(--mint-soft); color: #2f6f56; }
.product-card[data-stage="concept"] .stage-badge { background: var(--gold-soft); color: #8a6410; }
.product-card[data-stage="qualified"] .stage-badge { background: var(--cobalt-soft); color: var(--cobalt-deep); }

.product-info h3 {
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 750;
  margin: 0 0 8px;
}

.product-info > p {
  font-size: .94rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 16px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.product-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 9px;
}

/* Pied de carte : prix à gauche, action à droite. Toujours aligné en bas. */
.product-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.product-price strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.product-price span {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 550;
  margin-top: 3px;
}

.product-price[data-unpriced] strong {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 700;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s var(--ease), transform .18s var(--ease);
}

.product-card-link:hover { background: var(--coral-deep); transform: translateY(-1px); }
.product-card-link span { transition: transform .18s var(--ease); }
.product-card:hover .product-card-link span { transform: translateX(3px); }

/* Gabarits de chargement : mêmes dimensions que les cartes réelles, pour que
   l'arrivée du catalogue ne pousse pas la page. */
.product-card.is-skeleton {
  pointer-events: none;
  box-shadow: none;
}

.product-card.is-skeleton .product-cover { background: var(--paper-2); }

.skeleton-line {
  display: block;
  background: var(--paper-2);
  border-radius: 6px;
}

.skeleton-badge { width: 42%; height: 22px; margin-bottom: 12px; }
.skeleton-title { width: 85%; height: 21px; margin-bottom: 10px; }
.skeleton-text { width: 100%; height: 46px; margin-bottom: 18px; }
.skeleton-foot { width: 100%; height: 44px; margin-top: auto; }

@media (prefers-reduced-motion: no-preference) {
  .product-card.is-skeleton { animation: skeleton-pulse 1.4s var(--ease) infinite; }
  @keyframes skeleton-pulse { 50% { opacity: .62; } }
}

.section-heading { align-items: flex-end; margin-bottom: 34px; }

/* --------------------------------------------------------------------------
   10. Boutique
   -------------------------------------------------------------------------- */

.shop-main { background: var(--paper); }

/* Le héros boutique laissait un grand vide entre le titre et le catalogue.
   Titre et argumentaire passent côte à côte, alignés sur la même ligne de base. */
.shop-hero {
  position: relative;
  max-width: var(--page);
  margin-inline: auto;
  min-height: auto;
  padding: clamp(44px, 5.5vw, 72px) var(--gutter) clamp(24px, 3vw, 36px);
  border: 0;
}

.shop-hero h1 { margin: 14px 0 22px; }

/* La feuille de base repasse en bloc sous 1051px : on ne pose la grille
   deux colonnes qu'au-dessus de ce seuil. */
@media (min-width: 1051px) {
  .shop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: end;
    row-gap: 0;
    column-gap: clamp(24px, 4vw, 56px);
  }

  .shop-hero .kicker { grid-column: 1 / -1; margin: 0; }
  .shop-hero h1 { grid-column: 1; margin-bottom: 0; }
  .shop-hero > div { grid-column: 2; margin: 0; padding-bottom: 8px; }
}
.shop-hero p { color: var(--ink-2); margin: 0 0 12px; max-width: 46ch; }

.shop-hero > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 550;
}

.shop-hero > div > span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.shop-hero em { color: var(--coral); }

/* Le symbole devient une filigrane de fond au lieu d'un objet flottant. */
.shop-hero > img {
  position: absolute;
  top: 8%;
  right: var(--gutter);
  width: clamp(120px, 14vw, 180px);
  height: auto;
  opacity: .1;
  pointer-events: none;
  z-index: 0;
}

/* Le catalogue n'est plus un aplat corail : ses filets d'encre n'ont plus
   de surface à délimiter. */
.catalog-browser {
  max-width: var(--page);
  margin-inline: auto;
  padding: 0 var(--gutter) var(--section-y);
  background: none;
  border-block: 0;
}

/* La barre de filtres était un aplat corail plein écran qui écrasait les
   cartes. Elle devient une barre collante sobre. */
.catalog-toolbar {
  background: rgba(251, 247, 241, .9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 16px 0;
  margin-bottom: 32px;
  border-radius: 0;
  position: sticky;
  top: 76px;
  z-index: 20;
}

.catalog-toolbar .kicker { color: var(--muted); margin-bottom: 10px; }
.catalog-toolbar [data-results-count] { color: var(--muted); font-size: 14px; font-weight: 600; }

.filter-chips { gap: 8px; border: 0; padding: 0; margin: 0; }

.filter-chips span {
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 650;
  transition: all .18s var(--ease);
}

.filter-chips label:hover span { border-color: var(--ink); color: var(--ink); }

.filter-chips input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.filter-chips input:focus-visible + span { outline: 3px solid var(--cobalt); outline-offset: 3px; }

.catalog-note {
  background: var(--mint-soft);
  border: 1px solid #cfe7dc;
  border-radius: var(--radius-xl);
  max-width: var(--page);
  margin: 0 auto var(--section-y);
  padding: clamp(30px, 4vw, 48px);
}

.catalog-note p { color: var(--ink-2); }

/* --------------------------------------------------------------------------
   11. Page produit
   -------------------------------------------------------------------------- */

.product-hero-new {
  background: linear-gradient(158deg, var(--cobalt-deep), var(--cobalt) 70%, #3355bd);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.product-hero-new h1 { font-size: clamp(2.8rem, 6vw, 4.4rem); letter-spacing: -.04em; }
.product-hero-new em { color: var(--gold); }
.product-subtitle { color: rgba(255, 255, 255, .92); }
.product-lede { color: rgba(255, 255, 255, .78); }

.product-status {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 14px;
}

/* Bloc d'achat : le prix et ce qu'on reçoit, visibles sans défiler. */
.buy-block {
  margin: 26px 0 22px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.buy-block .price {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1;
}

.buy-block .price small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .82);
  margin-top: 6px;
}

.buy-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .84);
}

.buy-block li { display: flex; align-items: center; gap: 8px; }
.buy-block li::before { content: "✓"; color: var(--gold); font-weight: 800; }

.fact-ribbon {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: var(--page);
  margin-inline: auto;
}

.fact-ribbon span { color: var(--muted); font-size: 11.5px; letter-spacing: .1em; }
.fact-ribbon strong { font-size: 1.02rem; letter-spacing: -.015em; }

.story-flow li,
.preview-card,
.truth-columns article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Les actes deviennent des cartes : le filet d'encre et les séparateurs de
   la version précédente doublaient alors la bordure. */
.story-flow ol {
  border-top: 0;
  display: grid;
  gap: 12px;
}

.story-flow li {
  border-bottom: 0;
  padding: 20px 24px;
  align-items: center;
  grid-template-columns: 48px 1fr;
}

.story-flow li > span {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral-deep);
}

.story-flow h3 { font-size: 1.1rem; letter-spacing: -.015em; }
.story-flow li p { color: var(--ink-2); font-size: .95rem; }

.preview-card { overflow: visible; transition: transform .2s var(--ease); }
.preview-card:hover { transform: translateY(-3px); }

.preview-card button {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s var(--ease);
}

.preview-card:hover button { box-shadow: var(--shadow-md); }
.preview-card figcaption { color: var(--muted); font-size: 11.5px; letter-spacing: .1em; }

/* Aplat menthe saturé sur toute la largeur remplacé par un lavis. */
.package-section {
  background: var(--mint-soft);
  border: 1px solid #cfe7dc;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 76px);
}

.package-board {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: none;
}

.package-board h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin: 26px 0; letter-spacing: -.03em; }
.package-board li { border-top-color: rgba(251, 247, 241, .14); }
.package-board li > span { color: var(--gold); font-size: 1.3rem; }
.package-board li p { color: rgba(251, 247, 241, .66); }
.package-board .stamp { color: var(--gold); border-color: rgba(238, 174, 45, .4); }

.package-aside blockquote {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.18;
  border-left: 3px solid var(--coral);
  padding-left: 22px;
  color: var(--ink);
}

.package-aside > p:last-child { color: var(--ink-2); }

/* Les mentions manquantes doivent sauter aux yeux : personne ne doit pouvoir
   publier ce document en croyant qu'il est complet. */
.legal-blank {
  display: inline-block;
  background: var(--gold-soft);
  border: 1px dashed var(--gold);
  border-radius: 5px;
  padding: 1px 8px;
  font-size: .92em;
  font-weight: 700;
  color: #8a6410;
  white-space: nowrap;
}

.truth-section { border-top: 1px solid var(--line); }
.truth-columns article { border-width: 1px; }
.truth-columns article:last-child { background: var(--paper-2); }
.truth-columns article > span { color: var(--muted); font-weight: 750; }
.truth-columns li { color: var(--ink-2); }

.commerce-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.product-final { background: var(--paper-2); border-radius: var(--radius-xl); }

/* --------------------------------------------------------------------------
   11 bis. Liste d'attente
   -------------------------------------------------------------------------- */

.waitlist {
  max-width: var(--page);
  margin: 0 auto var(--section-y);
  padding: clamp(32px, 4.5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.waitlist-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 0 0 16px;
}

.waitlist-copy em { font-style: normal; color: var(--coral); }
.waitlist-copy p { color: var(--ink-2); margin: 0; max-width: 42ch; }

.waitlist-form { display: grid; gap: 16px; }

.waitlist-field {
  display: grid;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.waitlist-field input {
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 52px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}

.waitlist-field input::placeholder { color: var(--muted); }
.waitlist-field input:hover { border-color: var(--ink-2); }
.waitlist-field input:focus { background: var(--white); border-color: var(--ink); outline: none; }
.waitlist-field input:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 2px; }

.waitlist-consent {
  display: flex;
  gap: 11px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  cursor: pointer;
}

.waitlist-consent input {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--coral-deep);
  cursor: pointer;
}

.waitlist-consent a { color: var(--ink); text-underline-offset: 3px; }
.waitlist-form .button { justify-content: center; }

.waitlist-message {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.waitlist-message:empty { display: none; }
.waitlist-message[data-state="error"] { color: var(--coral-deep); }
.waitlist-message[data-state="success"] { color: #2f6f56; }
.waitlist-message[data-state="pending"] { color: var(--muted); }

.waitlist-note { margin: 0; font-size: 12.5px; color: var(--muted); }

/* Une fois l'inscription enregistrée, les champs n'ont plus de rôle. */
.waitlist-form[data-done="true"] .waitlist-field,
.waitlist-form[data-done="true"] .waitlist-consent,
.waitlist-form[data-done="true"] .button { display: none; }

/* --------------------------------------------------------------------------
   11 ter. Questions fréquentes
   -------------------------------------------------------------------------- */

.faq-main { max-width: 900px; margin-inline: auto; padding-inline: var(--gutter); }

.faq-hero { padding: clamp(48px, 6vw, 84px) 0 clamp(24px, 3vw, 40px); }

.faq-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 0 0 20px;
}

.faq-hero em { font-style: normal; color: var(--coral); }
.faq-hero > p:last-child { color: var(--ink-2); max-width: 62ch; margin: 0; }

.faq-group { padding-bottom: clamp(32px, 4vw, 52px); }

.faq-group h2 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.faq-group details {
  border-bottom: 1px solid var(--line);
  background: none;
}

.faq-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 20px 2px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.25;
  min-height: 44px;
  transition: color .18s var(--ease);
}

.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary:hover { color: var(--coral-deep); }
.faq-group summary:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 2px; }

/* Chevron construit en CSS : pas de police d'icônes ni d'image distante. */
.faq-group summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  rotate: 45deg;
  translate: 0 -3px;
  transition: rotate .22s var(--ease), translate .22s var(--ease);
}

.faq-group details[open] summary::after { rotate: 225deg; translate: 0 3px; }

.faq-group details > div { padding: 0 2px 22px; max-width: 68ch; }
.faq-group details p { color: var(--ink-2); margin: 0 0 12px; }
.faq-group details p:last-child { margin-bottom: 0; }
.faq-group details a { color: var(--ink); text-underline-offset: 3px; }

.faq-cta {
  margin-bottom: var(--section-y);
  padding: clamp(30px, 4vw, 52px);
  background: var(--paper-2);
  border-radius: var(--radius-xl);
}

.faq-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 0 0 12px;
}

.faq-cta p { color: var(--ink-2); margin: 0 0 22px; max-width: 56ch; }
.faq-cta > div { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 860px) {
  .waitlist { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   11 quater. Page introuvable
   -------------------------------------------------------------------------- */

.notfound-main {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(56px, 9vw, 128px) var(--gutter) var(--section-y);
}

.notfound-main h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 0 0 20px;
}

.notfound-main em { font-style: normal; color: var(--coral); }
.notfound-lede { font-size: 1.1rem; color: var(--ink-2); max-width: 48ch; margin: 0 0 32px; }
.notfound-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: clamp(40px, 6vw, 64px); }

.notfound-links {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.notfound-links li { border-bottom: 1px solid var(--line); }

.notfound-links a {
  display: block;
  padding: 18px 2px 6px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -.02em;
  text-decoration: none;
}

.notfound-links a:hover { color: var(--coral-deep); }
.notfound-links span { display: block; padding: 0 2px 18px; font-size: .92rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   12. Pied de page
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(251, 247, 241, .78);
  padding-block: clamp(48px, 6vw, 72px);
}

.site-footer p { color: var(--paper); }

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: rgba(251, 247, 241, .78);
}
.site-footer nav a:hover { color: var(--gold); }
.site-footer small { color: rgba(251, 247, 241, .5); }

/* --------------------------------------------------------------------------
   13. Réactif
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .trust-bar li:nth-child(odd) { border-left: 0; padding-left: 0; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .catalog-toolbar { position: static; }
  .buy-block { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar li { border-left: 0; padding-left: 0; padding-block: 12px; }
}

/* --------------------------------------------------------------------------
   14. Téléphone : deux aventures par ligne
   Le format une-carte-par-ligne obligeait à faire défiler quatre écrans pour
   comparer la collection. La grille est le défaut, la liste reste au choix ;
   le basculement fonctionne aussi sans JavaScript grâce au sélecteur d'état.
   -------------------------------------------------------------------------- */

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-grid[data-view="list"] {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  /* Carte compacte : on ne garde que ce qui sert à choisir. */
  .product-grid:not([data-view="list"]) .product-info { padding: 14px 14px 16px; }
  .product-grid:not([data-view="list"]) .stage-badge { font-size: 9.5px; padding: 4px 7px; margin-bottom: 9px; }
  .product-grid:not([data-view="list"]) .product-info h3 { font-size: 1rem; margin-bottom: 6px; }
  .product-grid:not([data-view="list"]) .product-info > p { display: none; }
  .product-grid:not([data-view="list"]) .product-meta { gap: 4px; margin-bottom: 14px; }
  .product-grid:not([data-view="list"]) .product-meta span:nth-child(n + 3) { display: none; }
  .product-grid:not([data-view="list"]) .product-meta span { font-size: 11px; padding: 3px 7px; }
  .product-grid:not([data-view="list"]) .product-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 12px;
  }
  .product-grid:not([data-view="list"]) .product-price strong { font-size: 1.2rem; }
  .product-grid:not([data-view="list"]) .product-price span { font-size: 10.5px; }
  .product-grid:not([data-view="list"]) .product-card-link {
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
  }
  .product-grid:not([data-view="list"]) .product-cover .age-chip { top: 8px; left: 8px; font-size: 11px; padding: 4px 9px; }
  .product-grid:not([data-view="list"]) .cover-fallback { padding: 12px 10px; }
  .product-grid:not([data-view="list"]) .cover-fallback strong { font-size: .82rem; }
  .product-grid:not([data-view="list"]) .cover-fallback em { font-size: 8.5px; margin-bottom: 4px; }

  .product-grid[data-view="list"] .product-foot { flex-direction: column; align-items: stretch; }
  .product-grid[data-view="list"] .product-card-link { justify-content: center; }
}

/* Bascule grille / liste — n'a de sens que là où la grille est contrainte. */
.catalog-view {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.catalog-view [data-results-count] { margin: 0; }

.view-toggle {
  display: none;
  border: 0;
  margin: 0;
  padding: 0;
  gap: 6px;
}

.view-toggle label { cursor: pointer; }
.view-toggle input { position: absolute; opacity: 0; pointer-events: none; }

.view-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 650;
  min-height: 44px;
  box-sizing: border-box;
}

.view-toggle input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.view-toggle input:focus-visible + span { outline: 3px solid var(--cobalt); outline-offset: 3px; }
.view-toggle svg { width: 15px; height: 15px; }

@media (max-width: 700px) {
  .view-toggle { display: flex; }
  .catalog-toolbar [data-results-count] { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
