/* ==========================================================================
   David GUDIN — Sculpteur céramiste, restauration du patrimoine
   Design system « Carnet d'atelier »
   Feuille unique, sans dépendance externe, sans framework.
   ========================================================================== */

/* ---------- 1. Jetons de design -------------------------------------- */
:root {
  /* Marque — échantillonnée sur le logo existant */
  --terre:        #E84B1D;
  --terre-fonce:  #A8320F;
  --terre-pale:   #FBE4DC;

  /* Matière */
  --encre:        #1A1613;
  --encre-doux:   #57504A;
  --encre-tenu:   #8A8078;
  --papier:       #FCFAF7;
  --engobe:       #F3EDE4;
  --argile:       #DED3C5;
  --email:        #2C5A73;

  /* Typographie */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Échelle fluide */
  --pas-0: clamp(0.78rem, 0.76rem + 0.10vw, 0.84rem);
  --pas-1: clamp(0.94rem, 0.91rem + 0.14vw, 1.02rem);
  --pas-2: clamp(1.06rem, 1.00rem + 0.28vw, 1.22rem);
  --pas-3: clamp(1.30rem, 1.18rem + 0.58vw, 1.70rem);
  --pas-4: clamp(1.65rem, 1.40rem + 1.20vw, 2.45rem);
  --pas-5: clamp(2.10rem, 1.60rem + 2.40vw, 3.60rem);
  --pas-6: clamp(2.30rem, 1.55rem + 4.00vw, 5.20rem);

  /* Rythme */
  --contenu: 1240px;
  --prose: 66ch;
  --gouttiere: clamp(1.15rem, 4vw, 2.75rem);
  --section: clamp(3.75rem, 9vw, 7.5rem);

  --filet: 1px solid var(--argile);
  --ombre: 0 1px 2px rgba(26, 22, 19, .05), 0 12px 32px -12px rgba(26, 22, 19, .14);
}

/* ---------- 2. Réinitialisation --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--sans);
  font-size: var(--pas-2);
  line-height: 1.65;
  color: var(--encre);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--terre);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 3. Titres -------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1, h2, h3 { scroll-margin-top: 6rem; }
h1 { font-size: var(--pas-6); }
h2 { font-size: var(--pas-5); }
h3 { font-size: var(--pas-3); line-height: 1.25; }
h4 { font-size: var(--pas-2); line-height: 1.35; }

p, li { text-wrap: pretty; }

/* ---------- 4. Utilitaires de mise en page ----------------------------- */
.enveloppe {
  width: min(100% - (var(--gouttiere) * 2), var(--contenu));
  margin-inline: auto;
}
.prose > * + * { margin-top: 1.15em; }
.prose { max-width: var(--prose); }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose a { color: var(--terre-fonce); text-underline-offset: .18em; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--terre); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .45em; }
.prose strong { font-weight: 600; }

.section { padding-block: var(--section); }
.section--engobe { background: var(--engobe); }
.section--encre { background: var(--encre); color: var(--papier); }
.section--encre h2, .section--encre h3 { color: var(--papier); }

.centre { text-align: center; margin-inline: auto; }
.visuellement-cache {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 5. Œil-de-bœuf (eyebrow / numéro de section) --------------- */
.oeil {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--mono);
  font-size: var(--pas-0);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terre-fonce);
  margin-bottom: 1.4rem;
}
.oeil::after {
  content: ""; flex: 1 1 auto; height: 1px;
  background: linear-gradient(to right, var(--argile), transparent);
}
.section--encre .oeil { color: var(--terre); }
.section--encre .oeil::after { background: linear-gradient(to right, rgba(255,255,255,.28), transparent); }
.oeil--centre { justify-content: center; }
.oeil--centre::after { display: none; }

/* ---------- 6. Boutons ------------------------------------------------- */
.bouton {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.75rem;
  font-size: var(--pas-1);
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.bouton:hover { transform: translateY(-1px); }
.bouton--plein { background: var(--terre); color: #fff; }
.bouton--plein:hover { background: var(--terre-fonce); }
.bouton--trait { border-color: currentColor; color: var(--encre); }
.bouton--trait:hover { background: var(--encre); color: var(--papier); border-color: var(--encre); }
.bouton--clair { border-color: rgba(255,255,255,.5); color: #fff; }
.bouton--clair:hover { background: #fff; color: var(--encre); }
.bouton .fleche { transition: transform .18s ease; }
.bouton:hover .fleche { transform: translateX(3px); }

.groupe-boutons { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- 7. En-tête ------------------------------------------------- */
.lien-evitement {
  position: absolute; left: .5rem; top: -100px; z-index: 200;
  background: var(--encre); color: #fff; padding: .75rem 1.25rem;
  transition: top .16s ease;
}
.lien-evitement:focus { top: .5rem; }

.entete {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 250, 247, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: var(--filet);
}
.entete__interieur {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 76px;
}
.marque { display: flex; align-items: center; gap: .85rem; text-decoration: none; flex-shrink: 0; }
.marque__sigle {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: var(--terre); color: #fff;
  font-family: var(--serif); font-size: 1.4rem; line-height: 1;
}
.marque__nom { font-family: var(--serif); font-size: 1.22rem; letter-spacing: .06em; line-height: 1.05; }
.marque__role {
  display: block; font-family: var(--mono);
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--encre-tenu); margin-top: .2rem;
}

.navigation ul { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); list-style: none; padding: 0; margin: 0; }
.navigation a {
  font-size: var(--pas-1);
  text-decoration: none;
  padding-block: .4rem;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease, color .18s ease;
}
.navigation a:hover { border-bottom-color: var(--terre); }
.navigation a[aria-current="page"] { border-bottom-color: var(--terre); color: var(--terre-fonce); }

.bascule-nav {
  display: none; background: none; border: var(--filet);
  padding: .55rem .75rem; border-radius: 2px; cursor: pointer;
}

@media (max-width: 940px) {
  .bascule-nav { display: block; }
  .navigation {
    position: absolute; inset-inline: 0; top: 100%;
    background: var(--papier); border-bottom: var(--filet);
    padding: 1rem var(--gouttiere) 1.75rem;
    box-shadow: var(--ombre);
  }
  .navigation[hidden] { display: none; }
  .navigation ul { flex-direction: column; align-items: stretch; gap: 0; }
  .navigation li { border-bottom: var(--filet); }
  .navigation li:last-child { border-bottom: 0; padding-top: 1rem; }
  .navigation a { display: block; padding: .95rem 0; }
  .entete__cta { display: none; }
}

/* ---------- 8. Bannière (hero) ----------------------------------------- */
.banniere { position: relative; background: var(--encre); color: var(--papier); overflow: hidden; }
.banniere__media { position: absolute; inset: 0; }
.banniere__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.banniere__voile {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(26,22,19,.94) 0%, rgba(26,22,19,.72) 48%, rgba(26,22,19,.30) 100%),
    linear-gradient(to top, rgba(26,22,19,.85), transparent 55%);
}
.banniere__contenu {
  position: relative;
  padding-block: clamp(4.5rem, 13vw, 9.5rem);
  max-width: 46rem;
}
.banniere h1 { color: #fff; }
.banniere h1 em { font-style: normal; color: var(--terre); }
.banniere__chapo {
  font-size: var(--pas-3);
  line-height: 1.5;
  color: rgba(252,250,247,.86);
  max-width: 34rem;
  margin-top: 1.6rem;
}
.banniere .groupe-boutons { margin-top: 2.6rem; }

/* Sur mobile, le dégradé horizontal recouvre toute la largeur et écrase la
   photo. On l'allège et on ne garde qu'un voile vertical, pour que la matière
   reste visible sans nuire à la lisibilité du titre. */
@media (max-width: 700px) {
  .banniere__media img { opacity: .5; }
  .banniere__voile {
    background:
      linear-gradient(to top, rgba(26,22,19,.92) 12%, rgba(26,22,19,.55) 58%, rgba(26,22,19,.28) 100%);
  }
  .banniere__contenu { padding-block: clamp(3rem, 9vw, 4.5rem); }
}

/* Bandeau de références sous la bannière */
.references {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  padding-block: 1.5rem;
}
.references__liste {
  display: flex; flex-wrap: wrap; gap: .9rem clamp(1.3rem, 3.5vw, 3rem);
  align-items: center; list-style: none; padding: 0; margin: 0;
}
.references__intitule {
  font-family: var(--mono); font-size: var(--pas-0);
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(252,250,247,.5);
}
.references li {
  font-family: var(--serif); font-size: var(--pas-2);
  color: rgba(252,250,247,.92);
}

/* ---------- 9. Encadré « En bref » (AEO / GEO) ------------------------- */
.en-bref {
  border-left: 3px solid var(--terre);
  background: var(--engobe);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  border-radius: 0 3px 3px 0;
}
.en-bref__intitule {
  font-family: var(--mono); font-size: var(--pas-0);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--terre-fonce); margin-bottom: .85rem;
}
.en-bref__citation { font-family: var(--serif); font-size: var(--pas-3); line-height: 1.45; }
.en-bref__texte { margin-top: .8rem; font-size: var(--pas-2); color: var(--encre-doux); }
.en-bref__action { margin-top: 1.5rem; }

/* ---------- 10. Grilles ------------------------------------------------ */
.grille { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grille--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grille--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }

/* Grille des savoir-faire : 1 / 2 / 4 colonnes — jamais de carte orpheline */
.grille--savoir { grid-template-columns: 1fr; }
@media (min-width: 620px)  { .grille--savoir { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1120px) { .grille--savoir { grid-template-columns: repeat(4, 1fr); } }

.deux-colonnes {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .deux-colonnes { grid-template-columns: 1fr 1fr; }
  .deux-colonnes--texte-etroit { grid-template-columns: 1.05fr 1fr; }
}

/* ---------- 11. Carte savoir-faire ------------------------------------- */
.savoir {
  display: flex; flex-direction: column;
  background: var(--papier);
  border: var(--filet);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.savoir:hover { border-color: var(--terre); transform: translateY(-3px); box-shadow: var(--ombre); }
.savoir__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--argile); }
.savoir__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.savoir:hover .savoir__media img { transform: scale(1.04); }
.savoir__corps { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.savoir__titre { font-family: var(--serif); font-size: var(--pas-3); }
.savoir__texte { font-size: var(--pas-1); color: var(--encre-doux); flex: 1; }
.savoir__lien {
  font-family: var(--mono); font-size: var(--pas-0);
  letter-spacing: .12em; text-transform: uppercase; color: var(--terre-fonce);
  display: inline-flex; align-items: center; gap: .45rem;
}
.savoir:hover .savoir__lien .fleche { transform: translateX(3px); }
.savoir__lien .fleche { transition: transform .2s ease; }

/* ---------- 12. Étude de cas ------------------------------------------- */
.cas {
  position: relative; display: block; text-decoration: none;
  overflow: hidden; background: var(--encre);
  min-height: clamp(20rem, 34vw, 27rem);
}
.cas img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .68; transition: transform .6s ease, opacity .3s ease; }
.cas:hover img { transform: scale(1.045); opacity: .5; }
.cas__voile { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,22,19,.93) 8%, rgba(26,22,19,.35) 55%, rgba(26,22,19,.1) 100%); }
.cas__corps { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; gap: .55rem; padding: clamp(1.5rem, 3vw, 2.25rem); min-height: inherit; }
.cas__lieu {
  font-family: var(--mono); font-size: var(--pas-0);
  letter-spacing: .16em; text-transform: uppercase; color: var(--terre);
}
.cas__titre { font-family: var(--serif); font-size: var(--pas-3); color: #fff; }
.cas__note { font-size: var(--pas-1); color: rgba(252,250,247,.78); max-width: 34ch; }
.cas--large { grid-column: 1 / -1; min-height: clamp(22rem, 40vw, 32rem); }
@media (min-width: 900px) { .cas--large .cas__note { max-width: 48ch; } }

/* ---------- 13. Étapes du processus ------------------------------------ */
.etapes { counter-reset: etape; list-style: none; padding: 0; display: grid; gap: 0; }
.etape { counter-increment: etape; display: grid; gap: 1rem 2rem; padding-block: clamp(1.6rem, 3vw, 2.4rem); border-top: 1px solid rgba(255,255,255,.14); }
@media (min-width: 760px) { .etape { grid-template-columns: 5rem 16rem 1fr; align-items: start; } }
.etape:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.etape::before {
  content: "0" counter(etape);
  font-family: var(--mono); font-size: var(--pas-2);
  color: var(--terre); letter-spacing: .06em;
}
.etape__titre { font-family: var(--serif); font-size: var(--pas-3); color: var(--papier); }
.etape__texte { color: rgba(252,250,247,.74); font-size: var(--pas-1); max-width: 52ch; }

/* ---------- 14. Fiche technique (tableau de faits — GEO) --------------- */
.fiche { border: var(--filet); background: var(--papier); }
.fiche__entete {
  padding: 1.15rem 1.5rem; border-bottom: var(--filet); background: var(--engobe);
  font-family: var(--mono); font-size: var(--pas-0);
  letter-spacing: .16em; text-transform: uppercase; color: var(--terre-fonce);
}
.fiche table { width: 100%; border-collapse: collapse; font-size: var(--pas-1); }
.fiche th, .fiche td { text-align: left; padding: .95rem 1.5rem; border-bottom: 1px solid var(--engobe); vertical-align: top; }
.fiche tr:last-child th, .fiche tr:last-child td { border-bottom: 0; }
.fiche th { font-weight: 600; width: 38%; color: var(--encre-doux); }
.fiche td { color: var(--encre); }
.defilant { overflow-x: auto; }

/* ---------- 15. FAQ ---------------------------------------------------- */
.faq { border-top: var(--filet); }
.faq details { border-bottom: var(--filet); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: var(--pas-3); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--mono); font-size: var(--pas-4);
  line-height: 1; color: var(--terre); flex-shrink: 0; transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--terre-fonce); }
.faq__reponse { padding-bottom: 1.75rem; max-width: var(--prose); color: var(--encre-doux); }
.faq__reponse > * + * { margin-top: .9rem; }

/* ---------- 16. Fil d'Ariane ------------------------------------------- */
.ariane { padding-block: 1.15rem; border-bottom: var(--filet); font-size: var(--pas-0); }
.ariane ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; color: var(--encre-tenu); }
.ariane li + li::before { content: "/"; margin-right: .5rem; color: var(--argile); }
.ariane a { text-decoration: none; color: var(--encre-doux); }
.ariane a:hover { color: var(--terre-fonce); text-decoration: underline; }
.ariane [aria-current="page"] { color: var(--encre); }

/* ---------- 17. En-tête de page intérieure ----------------------------- */
.chapeau { padding-block: clamp(2.75rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem); }
.chapeau h1 { font-size: var(--pas-5); max-width: 20ch; }
.chapeau__chapo { font-size: var(--pas-3); line-height: 1.5; color: var(--encre-doux); max-width: 44ch; margin-top: 1.4rem; }

/* ---------- 18. Galerie ------------------------------------------------ */
.galerie { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.galerie figure { margin: 0; }
.galerie img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--argile); }
.galerie figcaption { font-size: var(--pas-0); color: var(--encre-tenu); margin-top: .6rem; }

/* ---------- 19. Formulaire --------------------------------------------- */
.formulaire { display: grid; gap: 1.4rem; max-width: 42rem; }
/* align-content: start — sans quoi, deux champs côte à côte dans .duo se
   voient étirés à la même hauteur : celui dont la colonne voisine porte une
   ligne d'aide récupère l'espace excédentaire et son <input> grandit. */
.champ { display: grid; gap: .45rem; align-content: start; }
.champ label { font-size: var(--pas-1); font-weight: 500; }
.champ .aide { font-size: var(--pas-0); color: var(--encre-tenu); }
.champ input, .champ textarea, .champ select {
  padding: .85rem 1rem; border: 1px solid var(--argile);
  border-radius: 2px; background: var(--papier); width: 100%;
  /* line-height explicite : sans elle, un <select> et un <input> côte à côte
     ne calculent pas la même hauteur de contenu (7 px d'écart observés). */
  line-height: 1.5;
}
/* Le <select> natif n'hérite pas de la couleur de fond sur tous les moteurs. */
.champ select { -webkit-appearance: none; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--encre-doux) 50%),
                    linear-gradient(135deg, var(--encre-doux) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) 55%, calc(100% - .8rem) 55%;
  background-size: .35rem .35rem, .35rem .35rem;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}
.champ input:focus, .champ textarea:focus, .champ select:focus { border-color: var(--terre); }
.champ textarea { min-height: 9rem; resize: vertical; }
.champ--requis label::after { content: " *"; color: var(--terre); }
.duo { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.consentement { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--pas-1); color: var(--encre-doux); }
.consentement input { width: 1.15rem; height: 1.15rem; margin-top: .3rem; flex-shrink: 0; }

/* ---------- 20. Bloc contact / NAP ------------------------------------- */
.coordonnees { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.coordonnees dt, .coordonnees__intitule {
  font-family: var(--mono); font-size: var(--pas-0);
  letter-spacing: .16em; text-transform: uppercase; color: var(--encre-tenu); margin-bottom: .3rem;
}
.coordonnees dd { margin: 0; font-family: var(--serif); font-size: var(--pas-3); }
.coordonnees a { text-decoration: none; }
.coordonnees a:hover { color: var(--terre-fonce); text-decoration: underline; }

/* ---------- 21. Appel à l'action --------------------------------------- */
.appel { position: relative; overflow: hidden; background: var(--encre); color: var(--papier); }
.appel__media { position: absolute; inset: 0; }
.appel__media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.appel__contenu { position: relative; padding-block: var(--section); max-width: 44rem; }
.appel h2 { color: #fff; }
.appel p { color: rgba(252,250,247,.82); font-size: var(--pas-3); margin-top: 1.3rem; max-width: 36rem; }
.appel .groupe-boutons { margin-top: 2.2rem; }

/* ---------- 22. Pied de page ------------------------------------------- */
.pied { background: var(--encre); color: rgba(252,250,247,.72); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: var(--pas-1); }
.pied a { text-decoration: none; }
.pied a:hover { color: #fff; text-decoration: underline; }
.pied__grille { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.pied__titre {
  font-family: var(--mono); font-size: var(--pas-0);
  letter-spacing: .16em; text-transform: uppercase; color: var(--terre); margin-bottom: 1rem;
}
.pied ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.pied__marque { font-family: var(--serif); font-size: var(--pas-4); color: #fff; line-height: 1.15; }
.pied__bas {
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: var(--pas-0); color: rgba(252,250,247,.55);
}

/* ---------- 23. Label Artisan d'Art ------------------------------------ */
/* Marque officielle du titre d'Artisan d'Art. Deux variantes d'image :
   couleur sur fond clair, blanc sur fond sombre. L'intitulé est en texte
   HTML — il reste lisible par les moteurs et s'adapte à la traduction. */
.label { display: flex; align-items: center; gap: 1.15rem; }
.label img { flex-shrink: 0; height: 4rem; width: auto; }
.label__titre {
  display: block;
  font-family: var(--serif);
  font-size: var(--pas-2);
  line-height: 1.15;
  letter-spacing: .01em;
}
.label__note {
  display: block;
  font-size: var(--pas-0);
  line-height: 1.45;
  color: var(--encre-tenu);
  margin-top: .3rem;
  max-width: 32ch;
}

/* Mise en avant : accueil et page atelier */
.label--marque {
  margin-top: 2rem;
  padding-top: 1.7rem;
  border-top: var(--filet);
}
.label--marque img { height: 5rem; }

/* Pied de page, fond sombre */
.label--pied { gap: 1rem; margin-top: 1.7rem; }
.label--pied img { height: 3.6rem; }
.label--pied .label__titre { font-size: var(--pas-1); color: var(--papier); }
.label--pied .label__note { color: rgba(252, 250, 247, .5); max-width: 24ch; }

@media (max-width: 480px) {
  .label--marque img { height: 4.2rem; }
}

/* ---------- 24. Contenu à confirmer par le client ----------------------- */
/* Marque visuellement les passages qui attendent une donnée du client.
   À supprimer (classe et règle) avant la mise en production. */
.a-confirmer {
  display: inline-block;
  background: var(--terre-pale);
  border-left: 3px solid var(--terre);
  padding: .55rem .85rem;
  font-size: var(--pas-1);
  color: var(--terre-fonce);
}
.a-confirmer::before {
  content: "À confirmer — ";
  font-family: var(--mono); font-size: var(--pas-0);
  letter-spacing: .12em; text-transform: uppercase;
}

/* ---------- 24. Impression --------------------------------------------- */
@media print {
  .entete, .appel, .bascule-nav, .lien-evitement { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
