/* ==========================================================================
   Maison Louis — feuille de style
   Palette verrouillée (cf. direction artistique) :
   or #A67B38 · brun #4A3722 · crème #F8F0E3 · nuances #F3E7D3 #E7D3B2 #C9A76B #8A6230 #2A2119
   ========================================================================== */

:root {
  --or: #A67B38;
  --brun: #4A3722;
  --creme: #F8F0E3;
  --creme-2: #F3E7D3;
  --sable: #E7D3B2;
  --dore: #C9A76B;
  --bronze: #8A6230;
  --noir: #2A2119;
  --papier: #FFFDF8;
  /* le padding grandit au-delà de 1280px pour centrer le contenu sur grand écran */
  --pad-x: max(min(56px, 5vw), calc((100vw - 1280px) / 2));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--brun);
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  line-height: 1.55;
}

a { color: var(--bronze); }
a:hover { color: var(--or); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 2px;
}

input, select, textarea, button { font-family: 'EB Garamond', serif; }
a, button, input, select, textarea, label { touch-action: manipulation; }

section[id] { scroll-margin-top: 24px; }

/* apparition au scroll (classe posée par JS, jamais si prefers-reduced-motion) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease-out, transform .5s ease-out; }
.reveal.est-visible { opacity: 1; transform: none; }

@keyframes mlDraw { to { stroke-dashoffset: 0; } }
@keyframes mlFade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brun);
  color: var(--creme);
  padding: 10px 18px;
  z-index: 10;
}
.skip-link:focus { left: 0; color: var(--creme); }

/* ===== Éléments communs ===== */

.kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bronze); /* bronze plutôt qu'or : contraste 4,8:1 sur crème (l'or est à 3,4:1) */
}

.titre {
  margin: 0 0 20px;
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.titre--bronze { color: var(--bronze); }
.titre--brun { color: var(--brun); }
.titre--grand { font-size: 36px; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn:active { transform: scale(.98); }
.btn--plein { background: var(--or); color: var(--creme); }
.btn--plein:hover, .btn--plein:active { background: var(--bronze); color: var(--creme); }
.btn--contour { background: transparent; border: 1px solid var(--or); color: var(--bronze); padding: 14px 32px; }
.btn--contour:hover, .btn--contour:active { background: var(--creme-2); color: var(--bronze); }

.note-attente {
  margin: 24px 0 0;
  padding: 12px 16px;
  border: 1px dashed var(--dore);
  font-size: 14px;
  font-style: italic;
  color: var(--bronze);
}

/* ===== Page Idées & accords ===== */

/* cadre photo en attente de shooting : le texte décrit la photo à réaliser */
.cadre-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin: 26px 0;
  padding: 28px;
  border: 1px dashed var(--dore);
  background: var(--creme-2);
  text-align: center;
}
.cadre-photo--bandeau { min-height: 240px; max-width: 800px; margin: 34px auto 0; }
.idees-photo--bandeau { max-width: 800px; margin: 34px auto 0; }
.cadre-photo p {
  max-width: 500px;
  margin: 0;
  font-size: 14.5px;
  font-style: italic;
  color: var(--bronze);
  line-height: 1.65;
}
.cadre-photo p strong {
  display: block;
  margin-bottom: 8px;
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* photo d'illustration des sections (recadrée en bandeau pour rester discrète) */
.idees-photo { margin: 26px 0; }
.idees-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(42, 33, 25, .28);
}

/* toute la carte est cliquable quand son titre contient un lien
   (le « Voir la fiche ⟶ » / « Lire l'article ⟶ » compris) */
.carte-article { position: relative; }
.carte-article h2 a::after,
.carte-article h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* cadre photo compact dans les cartes de réalisations */
.carte-article .cadre-photo {
  min-height: 180px;
  margin: 0 0 18px;
  padding: 18px;
}
.carte-article .cadre-photo p { font-size: 12.5px; }

/* photo de réalisation dans les cartes (ratio unifié, léger recadrage si besoin) */
.carte-article__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 0 18px;
}

/* carte recette */
.recette {
  margin: 26px 0 0;
  padding: 30px 30px 26px;
  background: var(--papier);
  border: 1px solid var(--sable);
  box-shadow: 0 2px 12px rgba(74, 55, 34, .08);
}
.recette h3 {
  margin: 0 0 4px;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 25px;
  color: var(--brun);
}
.recette__meta {
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze);
}
.recette__ingredients {
  margin: 0 0 14px;
  font-size: 15.5px;
  font-style: italic;
  color: var(--brun);
}
.recette ol { margin: 0; padding-left: 20px; }
.recette li { font-size: 16px; line-height: 1.6; margin-bottom: 8px; }
.recette li:last-child { margin-bottom: 0; }

/* ===== Page professionnels : tableau comparatif ===== */

.tableau-defilant { max-width: 1080px; margin: 0 auto; overflow-x: auto; }
.tableau-comparatif {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--papier);
  border: 1px solid var(--sable);
  box-shadow: 0 2px 12px rgba(74, 55, 34, .08);
  font-size: 15px;
}
.tableau-comparatif th,
.tableau-comparatif td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--sable);
  vertical-align: top;
}
.tableau-comparatif thead th {
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bronze);
  background: var(--creme-2);
  border-bottom: 1px solid var(--dore);
}
.tableau-comparatif tbody th {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--brun);
  white-space: nowrap;
}
.tableau-comparatif tbody th span {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--bronze);
  white-space: normal;
}
.tableau-comparatif tbody th a { color: var(--brun); text-decoration-color: var(--dore); }
.tableau-comparatif tbody tr:last-child th,
.tableau-comparatif tbody tr:last-child td { border-bottom: none; }

/* ===== Typographie : veuves et orphelines =====
   `pretty` évite un mot seul sur la dernière ligne d'un paragraphe ;
   `balance` équilibre les lignes des titres. Ignoré par les vieux
   navigateurs (amélioration progressive). */

p, li, dd, dt, figcaption {
  text-wrap: pretty;
}
h1, h2, h3,
.titre,
.journal__intro,
.hero__lead {
  text-wrap: balance;
}

/* un mot long ne doit jamais créer de défilement horizontal ;
   sur petit écran, on autorise la césure des titres */
h1, h2, h3, .titre { overflow-wrap: break-word; }
@media (max-width: 600px) {
  h1, h2, h3, .titre { hyphens: auto; }
}

/* cibles tactiles confortables pour le fil d'Ariane */
.article__fil a { display: inline-block; padding: 6px 2px; }

/* ===== Liens de variétés (créés par script.js) =====
   Les noms Bourbon / Pompona / Givrée deviennent des liens discrets
   vers leur fiche : soulignement doré léger, couleur du texte conservée. */

.lien-variete {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--dore);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.lien-variete:hover,
.lien-variete:focus {
  color: var(--bronze);
  text-decoration-color: var(--bronze);
}

/* ===== Barre de progression de lecture (élément créé par script.js) ===== */

.progression-lecture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--dore), var(--or));
  transform: scaleX(0);
  transform-origin: 0 0;
  z-index: 100;
  pointer-events: none;
}

/* ===== En-tête ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--creme);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px var(--pad-x);
  border-bottom: 1px solid var(--sable);
  transition: padding .3s ease;
}
.site-header__logo-link { display: inline-flex; }
.site-header img { display: block; width: 180px; height: 180px; transition: width .3s ease, height .3s ease; }
/* en-tête compact une fois la page défilée (classe posée par script.js) */
.site-header--compact { padding: 8px var(--pad-x); }
.site-header--compact img { width: 76px; height: 76px; }
@media (max-width: 600px) {
  .site-header img { width: 130px; height: 130px; }
  .site-header--compact img { width: 70px; height: 70px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header, .site-header img { transition: none; }
}

.site-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-nav a { position: relative; color: var(--brun); text-decoration: none; padding: 12px 10px; }
.site-nav a:hover { color: var(--or); }
/* souligné animé au survol */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after { transform: scaleX(1); }
.site-nav a[aria-current="true"] { color: var(--bronze); }

/* menu déroulant "Nos vanilles" */
.nav-deroulant { position: relative; display: flex; }
.nav-deroulant__caret { font-size: 11px; color: var(--or); }
.nav-deroulant__panneau {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  background: var(--papier);
  border: 1px solid var(--sable);
  box-shadow: 0 12px 28px rgba(74, 55, 34, .14);
  z-index: 60;
}
.nav-deroulant:hover .nav-deroulant__panneau,
.nav-deroulant:focus-within .nav-deroulant__panneau { display: flex; animation: navDeroule .25s ease; }
.nav-deroulant__panneau a { padding: 12px 22px; }
.nav-deroulant__panneau a::after { content: none; }
.nav-deroulant__panneau a:hover { background: var(--creme-2); }

/* menu déroulant en mobile */
.nav-toggle { display: none; }
@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--dore);
    cursor: pointer;
  }
  .nav-toggle__barre {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--brun);
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__barre:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__barre:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__barre:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex-basis: 100%;
    margin: 4px 0 0;
    padding: 6px 0 4px;
    border-top: 1px solid var(--sable);
  }
  .site-nav.est-ouvert { display: flex; animation: navDeroule .3s ease; }
  .site-nav a { padding: 14px 4px; }
  .site-nav a::after { content: none; }

  /* dans le burger, le sous-menu est déplié en permanence */
  .nav-deroulant { position: static; flex-direction: column; }
  .nav-deroulant__panneau {
    position: static;
    display: flex;
    border: none;
    box-shadow: none;
    padding: 0 0 6px 16px;
    margin-left: 6px;
    border-left: 1px solid var(--sable);
    background: transparent;
  }
  .nav-deroulant__panneau a { padding: 11px 4px; font-size: 13px; }
}
@keyframes navDeroule { from { opacity: 0; transform: translateY(-8px); } }
.site-nav__cta { color: var(--or) !important; font-weight: 600; }
.site-nav__cta:hover { color: var(--bronze) !important; }

/* ===== Hero ===== */

.hero { padding: min(56px, 5vw) var(--pad-x); }

.hero__frame {
  border: 1px solid var(--or);
  outline: 1px solid var(--or);
  outline-offset: 4px;
  padding: min(60px, 6vw) min(40px, 3.5vw) min(48px, 5vw);
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 14px;
}
.hero__meta-marque {
  font-family: 'Cormorant', serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--brun);
}
.hero__meta-marque::before,
.hero__meta-marque::after {
  content: '✳︎';
  font-size: 17px;
  color: var(--or);
  vertical-align: 6px;
}
.hero__meta-marque::before { margin-right: 16px; }
.hero__meta-marque::after { margin-left: 16px; }

.hero__body {
  display: flex;
  gap: min(64px, 5vw);
  align-items: center;
  flex-wrap: wrap;
}

.hero__text { flex: 1 1 360px; min-width: 0; }

.hero__text h1 {
  margin: 0;
  max-width: 640px;
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.15;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brun);
  text-wrap: balance;
}

.hero__lead { margin: 22px 0 0; max-width: 520px; font-size: 18px; }

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 32px 0 0; }

.hero__motion {
  flex: 0 1 300px;
  min-width: 220px;
  margin: 0 auto;
  width: 100%;
  max-width: 330px;
}
/* en mobile, le hero se recentre sur le message : pas d'animation */
@media (max-width: 760px) {
  .hero__motion { display: none; }
}
.hero__motion-stage { position: relative; width: 100%; aspect-ratio: 320 / 370; }
.hero__motion-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .7s ease;
  transform-origin: 50% 10%;
}
.hero__motion-stage svg.est-active { opacity: 1; }

.hero__motion-caption {
  margin: 12px 0 0;
  min-height: 42px;
  text-align: center;
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--bronze);
}

.hero__motion-dots { display: flex; gap: 4px; justify-content: center; margin: 6px 0 0; }
.hero__motion-dots button {
  /* zone tactile 28px, pastille visuelle 9px */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hero__motion-dots button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--or);
  transition: background .4s;
}
.hero__motion-dots button[aria-selected="true"]::before { background: var(--or); }

.hero__flourish {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 40px 0 0;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--or);
}
.hero__flourish span {
  border-top: 1px solid var(--dore);
  width: min(180px, 20vw);
  margin-top: 9px;
  transform-origin: center;
  animation: mlLigne 1.4s ease .5s both;
}
@keyframes mlLigne { from { transform: scaleX(0); } }

/* ===== La maison ===== */

.maison { padding: 40px var(--pad-x) 76px; }
.maison__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.maison__inner .titre { margin-bottom: 24px; }
.maison__recit { margin: 0; font-size: 18px; line-height: 1.6; }

/* ===== Bulletins ===== */

.bulletins { background: var(--creme-2); padding: 76px var(--pad-x); }
.bulletins .kicker, .bulletins .titre { text-align: center; }
.bulletins .titre { margin-bottom: 12px; }
.bulletins__intro { margin: 0 auto 48px; max-width: 520px; text-align: center; }

/* rangée photo / texte alternée */
.duo {
  display: flex;
  align-items: stretch;
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto 44px;
}
.duo--inverse { flex-direction: row-reverse; }
.duo:last-child { margin-bottom: 0; }
.duo .bulletin { flex: 1 1 58%; max-width: none; margin: 0; }

.duo__visuel {
  flex: 1 1 42%;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 36px 28px;
  background: var(--papier);
  border: 1px solid var(--sable);
  box-shadow: 0 2px 12px rgba(74, 55, 34, .08);
  text-align: center;
}
.duo__visuel svg { width: min(200px, 55%); height: auto; }
.duo__visuel figcaption {
  max-width: 320px;
  font-size: 13.5px;
  font-style: italic;
  color: var(--bronze);
  padding: 8px 14px;
  border: 1px dashed var(--dore);
}
.duo__visuel--sombre { background: var(--noir); border: none; box-shadow: 0 4px 18px rgba(42, 33, 25, .28); }
.duo__visuel--sombre figcaption { color: var(--dore); border-color: var(--bronze); }

.duo__visuel--photo { padding: 0; overflow: hidden; }
.duo__visuel--photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.duo__visuel--photo:hover img { transform: scale(1.03); }

@media (max-width: 940px) {
  .duo, .duo--inverse { flex-direction: column; }
  .duo__visuel { padding: 28px 22px; }
  .duo__visuel svg { width: 130px; }
  .duo__visuel--photo { padding: 0; }
  .duo__visuel--photo img { height: 260px; min-height: 0; }
}

.bulletin {
  max-width: 760px;
  margin: 0 auto 44px;
  background: var(--papier);
  border: 1px solid var(--sable);
  box-shadow: 0 2px 12px rgba(74, 55, 34, .08);
  padding: 44px min(52px, 5vw);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.bulletin:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(74, 55, 34, .14); }
.bulletin:last-child { margin-bottom: 0; }

.bulletin__entete {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 3px double var(--dore);
  padding: 0 0 12px;
  margin: 0 0 26px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.bulletin__entete--sous-badge { padding-top: 14px; }

.bulletin__nom {
  margin: 0 0 2px;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brun);
}

.bulletin__espece { margin: 0 0 26px; font-size: 15px; font-style: italic; color: var(--bronze); }

.bulletin__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 7px 22px;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.bulletin__badge--or { background: var(--or); color: var(--noir); }
.bulletin__badge--creme { background: var(--creme); color: var(--bronze); border: 1px solid var(--dore); padding: 6px 22px; }

.fiche { display: flex; flex-direction: column; gap: 11px; margin: 0; font-size: 16.5px; }
.fiche > div { display: flex; align-items: baseline; gap: 8px; }
.fiche dt { flex-shrink: 0; }
.fiche dd { margin: 0; text-align: right; }

/* filet pointillé entre libellé et valeur */
.fiche > div::before {
  content: "";
  order: 1;
  flex: 1;
  border-bottom: 1px dotted var(--dore);
  align-self: flex-end;
  margin-bottom: 4px;
}
.fiche dt { order: 0; }
.fiche dd { order: 2; }

.fiche--deux-colonnes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 11px 48px;
}

.bulletin__profil {
  margin: 28px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--sable);
  font-size: 16px;
}
.bulletin__profil-label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-style: normal;
}
.bulletin__conservation { margin: 16px 0 0; font-size: 15px; color: var(--bronze); }
.bulletin__profil-libre { margin: 0 0 26px; font-size: 16px; }
.bulletin__profil-libre--brun { color: var(--brun); }

/* Bulletin Pompona — fond sombre */
.bulletin--rare {
  max-width: 860px;
  background: var(--noir);
  border: none;
  box-shadow: 0 4px 18px rgba(42, 33, 25, .28);
  padding: 50px min(56px, 5vw);
  color: var(--creme);
}
.bulletin--rare .bulletin__entete { border-bottom-color: var(--bronze); color: var(--dore); padding-top: 14px; }
.bulletin--rare .bulletin__nom { font-size: 32px; color: var(--creme); }
.bulletin--rare .bulletin__espece { margin-bottom: 8px; color: var(--dore); }
.bulletin--rare .bulletin__profil-libre { color: var(--sable); }
.bulletin--rare .fiche { color: var(--creme); }
.bulletin--rare .fiche dt { color: var(--dore); }
.bulletin--rare .fiche > div::before { border-bottom-color: var(--bronze); }

/* ===== Origine ===== */

.origine {
  padding: 76px var(--pad-x);
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}
.origine__photo {
  flex: 1 1 380px;
  min-width: 0;
  max-width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.origine__texte { flex: 1 1 400px; }
.origine__texte p { margin: 0 0 14px; }
.origine__promesse { font-style: italic; color: var(--bronze); }

/* ===== Sélection ===== */

.selection { background: var(--creme-2); padding: 70px var(--pad-x); }
.selection .kicker, .selection .titre { text-align: center; }
.selection .titre { margin-bottom: 44px; }

.selection__grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px 0;
}
.critere { padding: 0 28px; border-left: 1px solid var(--dore); }
/* apparition en cascade des quatre critères */
.critere.reveal:nth-child(2) { transition-delay: .12s; }
.critere.reveal:nth-child(3) { transition-delay: .24s; }
.critere.reveal:nth-child(4) { transition-delay: .36s; }
.critere__numero { margin: 0 0 8px; font-family: 'Cormorant', serif; font-size: 30px; color: var(--or); }
.critere__nom { margin: 0; font-weight: 600; }
.critere__detail { margin: 10px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--bronze); }

/* ===== Pour qui ===== */

.pour-qui { padding: 70px var(--pad-x); text-align: center; }
.pour-qui .titre { margin-bottom: 18px; }
.pour-qui__texte { margin: 0 auto 30px; max-width: 540px; }

.pour-qui__metiers { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.pour-qui__metiers span {
  padding: 10px 24px;
  border: 1px solid var(--dore);
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: background .3s ease, color .3s ease;
}
.pour-qui__metiers span:hover { background: var(--creme-2); color: var(--brun); }

/* ===== Questions fréquentes ===== */

.faq { padding: 76px var(--pad-x); }
.faq .kicker, .faq .titre { text-align: center; }
.faq .titre { margin-bottom: 36px; }
.faq__liste { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--sable); }

.faq details { border-bottom: 1px solid var(--sable); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: .03em;
  color: var(--brun);
  transition: color .25s ease;
}
.faq summary:hover { color: var(--bronze); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  line-height: 1;
  color: var(--or);
  transition: transform .3s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__reponse { padding: 0 36px 24px 4px; }
.faq__reponse p { margin: 0; font-size: 16.5px; line-height: 1.6; }

/* ouverture fluide de l'accordéon (navigateurs récents, sans effet ailleurs) */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq details::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size .35s ease, content-visibility .35s allow-discrete;
  }
  .faq details[open]::details-content { block-size: auto; }
}

/* ===== Journal (blog) ===== */

.journal { padding: 56px var(--pad-x) 76px; }
.journal__entete { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.journal__entete .titre { margin-bottom: 16px; }
.journal__intro { margin: 0; font-size: 18px; }

.journal__grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.carte-article {
  display: flex;
  flex-direction: column;
  background: var(--papier);
  border: 1px solid var(--sable);
  box-shadow: 0 2px 12px rgba(74, 55, 34, .08);
  padding: 32px 30px 26px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.carte-article:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(74, 55, 34, .14); }
.carte-article__theme {
  margin: 0 0 14px;
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
}
.carte-article h2 { margin: 0 0 12px; font-family: 'Cormorant', serif; font-weight: 600; font-size: 24px; line-height: 1.2; letter-spacing: .02em; }
.carte-article h2 a { color: var(--brun); text-decoration: none; }
.carte-article h2 a:hover { color: var(--bronze); }
.carte-article p { margin: 0 0 16px; font-size: 16px; line-height: 1.55; }
.carte-article__lire { margin-top: auto; font-style: italic; font-size: 15px; color: var(--or); }

.journal__cta {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 22px 28px;
  border: 1px solid var(--dore);
  text-align: center;
}
.journal__cta p { margin: 0; font-size: 17px; }

/* ===== Article ===== */

.article { max-width: 720px; margin: 0 auto; padding: 48px var(--pad-x) 76px; }
.article__fil { margin: 0 0 36px; font-size: 14px; color: var(--bronze); }
.article h1 {
  margin: 0 0 10px;
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: .04em;
  color: var(--brun);
  text-wrap: balance;
}
.article__date { margin: 0 0 28px; font-size: 14px; font-style: italic; color: var(--bronze); }
.article__chapo { margin: 0 0 12px; font-size: 19px; line-height: 1.6; color: var(--brun); }
.article h2 {
  margin: 40px 0 14px;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--bronze);
}
.article h3 { margin: 24px 0 10px; font-family: 'Cormorant', serif; font-weight: 600; font-size: 21px; color: var(--brun); }
.article p, .article li { font-size: 17px; line-height: 1.65; }
.article ul { padding-left: 22px; }
.article li { margin: 0 0 8px; }
.article__note { font-size: 15px; font-style: italic; color: var(--bronze); }

.article__tableau-cadre { overflow-x: auto; margin: 18px 0 8px; }
.article__tableau { width: 100%; border-collapse: collapse; font-size: 16px; }
.article__tableau th, .article__tableau td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--sable); }
.article__tableau thead th { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze); border-bottom: 3px double var(--dore); }
.article__tableau tbody th { font-weight: 600; color: var(--bronze); white-space: nowrap; }

.article__cta { margin: 44px 0 0; padding: 22px 28px; border: 1px solid var(--dore); }
.article__cta p { margin: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Pages produit ===== */

.produit-hero {
  padding: 40px var(--pad-x) 64px;
  display: flex;
  gap: min(56px, 4vw);
  align-items: center;
  flex-wrap: wrap;
}
.produit-hero__texte { flex: 1 1 440px; min-width: 0; }
.produit-hero h1 {
  margin: 0 0 18px;
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brun);
  text-wrap: balance;
}
.produit-hero__chapo { margin: 0 0 28px; max-width: 560px; font-size: 18px; line-height: 1.6; }
.produit-hero__photo { flex: 1 1 380px; min-width: 0; margin: 0; }
.produit-hero__photo img {
  width: 100%;
  height: clamp(280px, 38vw, 440px);
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 18px rgba(74, 55, 34, .16);
}

/* variante sombre (Pompona) */
.produit-hero--sombre { background: var(--noir); color: var(--sable); }
.produit-hero--sombre h1 { color: var(--creme); }
.produit-hero--sombre .produit-hero__chapo { color: var(--sable); }
.article__fil--clair, .article__fil--clair a { color: var(--dore); }
.kicker--dore { color: var(--dore); }
.btn--contour-clair { color: var(--dore); border-color: var(--dore); }
.btn--contour-clair:hover, .btn--contour-clair:active { background: rgba(201, 167, 107, .12); color: var(--creme); }

.produit-section { padding: 64px var(--pad-x); }
.produit-section--fond { background: var(--creme-2); }
.produit-section--cta { padding-top: 8px; }
.produit-section__inner { max-width: 800px; margin: 0 auto; }
.produit-section__inner p { font-size: 17px; line-height: 1.65; margin: 0 0 16px; }
.produit-section__note { font-style: italic; color: var(--bronze); }
.kicker--centre, .titre--centre { text-align: center; }
.produit-section .bulletin { margin-top: 24px; }
.produit-section .bulletin--rare { margin-top: 30px; }
.bulletin__profil--clair { border-top-color: var(--bronze); color: var(--sable); }

.journal__grille--deux { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 820px; }
.carte-article h3 { margin: 0 0 12px; font-family: 'Cormorant', serif; font-weight: 600; font-size: 23px; line-height: 1.2; letter-spacing: .02em; }
.carte-article h3 a { color: var(--brun); text-decoration: none; }
.carte-article h3 a:hover { color: var(--bronze); }

/* lien fiche complète sur les bulletins de la home */
.bulletin__fiche-lien { margin: 22px 0 0; font-size: 15px; }
.bulletin__fiche-lien a { color: var(--bronze); text-decoration: none; font-style: italic; }
.bulletin__fiche-lien a:hover { color: var(--or); text-decoration: underline; text-underline-offset: 4px; }
.bulletin__fiche-lien--clair a { color: var(--dore); }
.bulletin__fiche-lien--clair a:hover { color: var(--creme); }

/* ===== Bon de demande ===== */

.contact { background: var(--brun); padding: 76px var(--pad-x); }

.bon {
  max-width: 720px;
  margin: 0 auto;
  background: var(--papier);
  padding: 48px min(52px, 5vw);
  border: 1px solid var(--sable);
}
.bon .bulletin__entete { margin-bottom: 24px; }

.bon__titre {
  margin: 0 0 12px;
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brun);
}
.bon__intro { margin: 0 0 28px; font-size: 16.5px; }

.bon__champs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px 16px;
}
.champ { display: flex; flex-direction: column; gap: 6px; }
.champ--large { grid-column: 1 / -1; }
.champ label {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bronze);
}
.champ__requis { color: var(--or); }
.bon__champs input,
.bon__champs select,
.bon__champs textarea {
  padding: 13px 16px;
  background: var(--creme);
  border: 1px solid var(--dore);
  font-size: 16px;
  color: var(--brun);
  width: 100%;
}
.bon__champs textarea { resize: vertical; }
.bon__champs ::placeholder { color: var(--bronze); opacity: .75; }
.bon__champs [aria-invalid="true"] { border-color: #9C3E23; }
.champ__erreur { margin: 0; font-size: 14px; font-style: italic; color: #9C3E23; }
.bon__requis-note { margin: 14px 0 0; font-size: 13.5px; color: var(--bronze); }

.bon__pied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 0;
  gap: 20px;
  flex-wrap: wrap;
}
.bon__type { display: flex; gap: 22px; font-size: 16px; }
.bon__type label { display: flex; align-items: center; gap: 8px; }
.bon__type input { accent-color: var(--or); }

.bon__confirmation {
  margin: 20px 0 0;
  padding: 14px 18px;
  background: var(--creme-2);
  border: 1px solid var(--dore);
  font-size: 16px;
  color: var(--brun);
}

.bon__erreur {
  margin: 20px 0 0;
  padding: 14px 18px;
  background: var(--creme-2);
  border: 1px solid var(--bronze);
  font-size: 16px;
  color: var(--brun);
}
.bon__erreur a { color: var(--bronze); }

/* ===== Pied de page ===== */

.site-footer {
  background: var(--noir);
  padding: 48px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer img { width: 120px; height: 120px; }
.site-footer__infos { text-align: right; }
.site-footer__nom {
  margin: 0 0 6px;
  font-family: 'Cormorant', serif;
  font-size: 17px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--creme);
}
.site-footer__activite { margin: 0 0 10px; font-size: 14px; color: var(--dore); }
.site-footer__mentions { margin: 0; font-size: 13px; font-style: italic; color: var(--dore); } /* le bronze était à 2,9:1 sur fond noir */
.site-footer__mentions a { color: var(--dore); text-underline-offset: 2px; }
.site-footer__mentions a:hover { color: var(--creme); }

@media (max-width: 560px) {
  .site-footer { justify-content: center; text-align: center; }
  .site-footer__infos { text-align: center; }
  .fiche > div { flex-wrap: wrap; }
  .fiche dd { text-align: left; }
}

/* ===== Ajustements mobiles (en fin de fichier pour primer sur les bases) ===== */

@media (max-width: 600px) {
  /* la marque du hero tient sur une seule ligne */
  .hero__meta-marque { font-size: 21px; letter-spacing: .12em; white-space: nowrap; }
  .hero__meta-marque::before,
  .hero__meta-marque::after { font-size: 12px; vertical-align: 4px; }
  .hero__meta-marque::before { margin-right: 10px; }
  .hero__meta-marque::after { margin-left: 10px; }

  /* boutons d'action empilés, pleine largeur, une ligne chacun */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; padding-left: 10px; padding-right: 10px; }

  /* bulletin : libellé au-dessus de la valeur, sans filet pointillé
     (le filet courait dans le vide dès que la valeur passait à la ligne) */
  .fiche > div { display: block; }
  .fiche > div::before { display: none; }
  .fiche dt {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 2px;
  }
  .fiche dd { margin: 0; }

  /* FAQ plus compacte */
  .faq summary { font-size: 19px; padding: 18px 4px; }
}

/* ===== Avis clients ===== */

.avis-section { padding-top: 10px; }

/* étoiles d'affichage */
.etoiles { display: inline-flex; gap: 2px; font-size: 19px; line-height: 1; }
.etoiles__item { color: var(--sable); }
.etoiles__item--pleine { color: var(--or); }

.avis__synthese {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sable);
}
.avis__synthese .etoiles { font-size: 24px; }
.avis__moyenne { margin: 0; font-size: 15px; color: var(--bronze); }
.avis__moyenne strong { font-family: 'Cormorant', serif; font-size: 24px; color: var(--brun); }

.avis__vide {
  margin: 0;
  padding: 22px 24px;
  background: var(--creme-2);
  border: 1px solid var(--sable);
  font-style: italic;
  color: var(--bronze);
}

.avis__liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.avis {
  padding: 24px 26px;
  background: var(--papier);
  border: 1px solid var(--sable);
  box-shadow: 0 2px 12px rgba(74, 55, 34, .08);
}
.avis__texte { margin: 12px 0 14px; font-size: 16.5px; line-height: 1.6; }
.avis__auteur { margin: 0; font-size: 14px; color: var(--bronze); }
.avis__auteur span, .avis__auteur time { font-style: italic; }
.avis__auteur time { display: block; margin-top: 3px; font-size: 13px; }

/* formulaire d'avis, replié par défaut */
.avis-formulaire { margin: 28px 0 0; border-top: 1px solid var(--sable); }
.avis-formulaire summary {
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .03em;
  color: var(--bronze);
}
.avis-formulaire summary::-webkit-details-marker { display: none; }
.avis-formulaire summary::before { content: "✎ "; color: var(--or); }
.avis-formulaire summary:hover { color: var(--or); }
.avis-form { padding: 4px 0 26px; }
.avis-form .bon__champs { margin-bottom: 20px; }

/* notation par étoiles (cases radio stylées) */
.champ--note { border: none; margin: 0 0 20px; padding: 0; }
.champ--note legend { padding: 0; margin-bottom: 8px; font-size: 14px; color: var(--bronze); }
.notation { display: inline-flex; gap: 4px; }
.notation input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.notation label {
  font-size: 30px;
  line-height: 1;
  color: var(--sable);
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
}
/* l'étoile cochée et toutes celles qui la précèdent s'allument */
.notation input:checked + label,
.notation label:has(~ input:checked) { color: var(--or); }
.notation label:hover,
.notation label:has(~ label:hover) { color: var(--bronze); transform: scale(1.08); }
.notation input:focus-visible + label { outline: 2px solid var(--or); outline-offset: 3px; }

.champ__aide { margin: 6px 0 0; font-size: 13px; font-style: italic; color: var(--bronze); }

.avis__mentions {
  margin: 26px 0 0;
  padding: 16px 18px;
  background: var(--creme-2);
  border-left: 2px solid var(--dore);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--bronze);
}

@media (max-width: 600px) {
  .avis { padding: 20px; }
  .notation label { font-size: 34px; }
  .avis__synthese .etoiles { font-size: 21px; }
}

/* L'en-tête change de hauteur au défilement : sans cette ligne, le navigateur
   « recale » la position de défilement à chaque changement, ce qui repasse le
   seuil et fait osciller le bandeau en boucle. */
body { overflow-anchor: none; }
