/* =========================================================
   Atelier Fiat créations — feuille de style principale
   Palette sobre, tons verts et doux.
   ========================================================= */

/* ---------- 1. Variables ---------- */
:root {
  /* Fonds */
  --creme:        #FAF8F3;
  --lin:          #F1EDE3;
  --ivoire:       #FDFCF9;

  /* Verts */
  --sauge-clair:  #DCE3D6;
  --sauge:        #B3C0A8;
  --vert:         #7C8F70;
  --vert-fonce:   #55684C;
  --vert-profond: #35422F;

  /* Textes */
  --encre:        #2C302A;
  --encre-doux:   #5C6357;
  --encre-tres-doux: #646B59;

  /* Accent discret */
  --lin-fonce:    #E3DCCC;
  --terre:        #B08D74;

  /* Typo */
  --titre: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --texte: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Mesures */
  --largeur-max: 1180px;
  --largeur-texte: 62ch;
  --gouttiere: clamp(1.25rem, 5vw, 3.5rem);
  --rayon: 2px;

  /* Transitions */
  --transition: 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--encre);
  font-family: var(--texte);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--titre);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--vert-profond);
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--sauge); color: var(--vert-profond); }

:focus-visible {
  outline: 2px solid var(--vert);
  outline-offset: 3px;
  border-radius: var(--rayon);
}

/* ---------- 3. Utilitaires de mise en page ---------- */
.conteneur {
  width: 100%;
  max-width: var(--largeur-max);
  margin-inline: auto;
  padding-inline: var(--gouttiere);
}

.conteneur--etroit { max-width: 780px; }

.section { padding-block: clamp(3.5rem, 9vw, 7.5rem); }
.section--serree { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--lin { background: var(--lin); }
.section--sauge { background: var(--sauge-clair); }

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

.lien-evitement {
  position: absolute;
  left: 0.5rem;
  top: -4rem;
  z-index: 200;
  background: var(--vert-profond);
  color: var(--creme);
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  transition: top var(--transition);
}
.lien-evitement:focus { top: 0.5rem; }

/* ---------- 4. Éléments typographiques ---------- */
.surtitre {
  font-family: var(--texte);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--encre-tres-doux);
  margin: 0 0 1.1rem;
  display: block;
}

.titre-xl { font-size: clamp(2.8rem, 7.5vw, 5rem); }
.titre-l  { font-size: clamp(2rem, 4.6vw, 3rem); }
.titre-m  { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.titre-s  { font-size: 1.2rem; }

.chapo {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--encre-doux);
  max-width: var(--largeur-texte);
}

.italique { font-style: italic; }

.texte-courant { max-width: var(--largeur-texte); color: var(--encre-doux); }
.texte-courant p + p { margin-top: 0; }

/* Filet brodé : une ligne de points façon couture */
.filet {
  border: 0;
  height: 1px;
  width: 100%;
  margin: 0;
  background-image: linear-gradient(to right, var(--sauge) 0 6px, transparent 6px 12px);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  opacity: 0.9;
}

.filet--court { width: 56px; }

/* ---------- 5. Boutons ---------- */
.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--vert-fonce);
  border-radius: var(--rayon);
  background: var(--vert-fonce);
  color: var(--ivoire);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.bouton:hover { background: var(--vert-profond); border-color: var(--vert-profond); }
.bouton:active { transform: translateY(1px); }

.bouton--fantome {
  background: transparent;
  color: var(--vert-fonce);
}
.bouton--fantome:hover { background: var(--vert-fonce); color: var(--ivoire); }

.bouton--clair {
  background: transparent;
  border-color: rgba(253, 252, 249, 0.55);
  color: var(--ivoire);
}
.bouton--clair:hover { background: var(--ivoire); color: var(--vert-profond); border-color: var(--ivoire); }

.bouton[disabled], .bouton[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Lien souligné discret */
.lien-souligne {
  display: inline-block;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vert-fonce);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--sauge);
  transition: border-color var(--transition), color var(--transition);
}
.lien-souligne:hover { border-color: var(--vert-fonce); color: var(--vert-profond); }

/* ---------- 6. En-tête ---------- */
.entete {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.entete.est-defilee { border-bottom-color: var(--lin-fonce); }

.entete__interieur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.marque {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--vert-profond);
}
.marque__symbole { width: 26px; height: 26px; flex: none; color: var(--vert); }
.marque__texte {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.marque__nom {
  font-family: var(--titre);
  font-size: 1.32rem;
  letter-spacing: 0.02em;
}
.marque__sous {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--encre-tres-doux);
  margin-top: 5px;
}

.nav__liste {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__lien {
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--encre-doux);
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav__lien::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--vert);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__lien:hover { color: var(--vert-profond); }
.nav__lien:hover::after,
.nav__lien[aria-current="page"]::after { transform: scaleX(1); }
.nav__lien[aria-current="page"] { color: var(--vert-profond); }

.bascule-menu {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--lin-fonce);
  border-radius: var(--rayon);
  cursor: pointer;
}
.bascule-menu__barres, .bascule-menu__barres::before, .bascule-menu__barres::after {
  display: block;
  width: 18px; height: 1px;
  background: var(--vert-profond);
  transition: transform var(--transition), opacity var(--transition);
}
.bascule-menu__barres { position: relative; }
.bascule-menu__barres::before, .bascule-menu__barres::after {
  content: ""; position: absolute; left: 0;
}
.bascule-menu__barres::before { top: -6px; }
.bascule-menu__barres::after  { top: 6px; }
.bascule-menu[aria-expanded="true"] .bascule-menu__barres { background: transparent; }
.bascule-menu[aria-expanded="true"] .bascule-menu__barres::before { transform: translateY(6px) rotate(45deg); }
.bascule-menu[aria-expanded="true"] .bascule-menu__barres::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 760px) {
  .bascule-menu { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--creme);
    border-bottom: 1px solid var(--lin-fonce);
    padding: 0 var(--gouttiere);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
  }
  .nav.est-ouverte { max-height: 60vh; padding-block: 1.5rem 2rem; }
  .nav__liste { flex-direction: column; align-items: flex-start; gap: 1.35rem; }
  .nav__lien { font-size: 0.95rem; }
}

/* ---------- 7. Héros ---------- */
.heros {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(78vh, 720px);
  background: var(--lin);
}
.heros__contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  margin-left: auto;
  max-width: calc(var(--largeur-max) / 2);
  width: 100%;
}
.heros__titre { margin-bottom: 1.5rem; }
.heros__texte {
  color: var(--encre-doux);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  max-width: 42ch;
  margin-bottom: 2.4rem;
}
.heros__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem 1.75rem; }
.heros__media { position: relative; overflow: hidden; background: var(--sauge-clair); }
.heros__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

@media (max-width: 900px) {
  .heros { grid-template-columns: 1fr; min-height: 0; }
  .heros__media { order: -1; aspect-ratio: 4 / 3; }
  .heros__contenu { margin-inline: auto; max-width: 620px; text-align: center; align-items: center; }
  .heros__texte { margin-inline: auto; }
  .heros__actions { justify-content: center; }
}

/* Héros secondaire (pages intérieures) */
.entete-page {
  background: var(--lin);
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.entete-page .chapo { margin-inline: auto; text-align: center; }
.entete-page__titre { margin-bottom: 1.2rem; }

/* ---------- 8. Grilles génériques ---------- */
.grille {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.grille--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grille--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }

/* ---------- 9. Section histoire ---------- */
.histoire {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 860px) {
  .histoire { grid-template-columns: 1fr; }
}
.histoire__portrait {
  position: relative;
}
.histoire__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--rayon);
}
.histoire__portrait::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--sauge);
  border-radius: var(--rayon);
  z-index: 0;
}
@media (max-width: 860px) {
  .histoire__portrait::after { inset: 12px -12px -12px 12px; }
}
.histoire__signature {
  font-family: var(--titre);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--vert);
  margin-top: 1.8rem;
}

/* Valeurs / repères */
.reperes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.repere__icone { color: var(--vert); width: 30px; height: 30px; margin-bottom: 1rem; }
.repere h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.repere p { color: var(--encre-doux); font-size: 0.95rem; }

/* ---------- 10. Carte œuvre / produit ---------- */
.carte {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
}
.carte__media {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--lin);
  border-radius: var(--rayon);
  aspect-ratio: 4 / 5;
}
.carte__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.carte:hover .carte__media img,
.carte:focus-visible .carte__media img { transform: scale(1.045); }

.carte__etiquette {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: rgba(250, 248, 243, 0.92);
  color: var(--vert-profond);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--rayon);
}
.carte__etiquette--vendu {
  background: rgba(53, 66, 47, 0.9);
  color: var(--ivoire);
}

.carte__corps { display: block; padding-top: 1rem; }
.carte__meta, .carte__titre, .carte__prix { display: block; }
.carte__titre {
  font-family: var(--titre);
  font-size: 1.32rem;
  color: var(--vert-profond);
  margin: 0 0 0.25rem;
}
.carte__meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-tres-doux);
}
.carte__prix {
  font-size: 1rem;
  color: var(--encre);
  margin-top: 0.5rem;
}
.carte__prix--indisponible { color: var(--encre-tres-doux); text-decoration: line-through; }

/* ---------- 11. Filtres ---------- */
.filtres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.filtre {
  background: transparent;
  border: 1px solid var(--lin-fonce);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-doux);
  cursor: pointer;
  transition: all var(--transition);
}
.filtre:hover { border-color: var(--sauge); color: var(--vert-profond); }
.filtre[aria-pressed="true"] {
  background: var(--vert-fonce);
  border-color: var(--vert-fonce);
  color: var(--ivoire);
}

/* ---------- 12. Galerie en mosaïque ---------- */
.mosaique {
  columns: 3 260px;
  column-gap: clamp(1rem, 2vw, 1.6rem);
}
.mosaique__element {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
  border-radius: var(--rayon);
  overflow: hidden;
}
.mosaique__element img {
  width: 100%;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1), filter var(--transition);
  background: var(--lin);
}
.mosaique__element:hover img { transform: scale(1.035); }
.mosaique__element.est-masque { display: none; }

/* ---------- 13. Visionneuse (lightbox) ---------- */
.visionneuse {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(28, 34, 25, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.visionneuse.est-ouverte { display: flex; }
.visionneuse__image {
  max-width: min(100%, 1100px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--rayon);
}
.visionneuse__legende {
  position: absolute;
  bottom: clamp(0.75rem, 3vw, 1.75rem);
  left: 0; right: 0;
  text-align: center;
  color: rgba(253, 252, 249, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding-inline: 1rem;
}
.visionneuse__bouton {
  position: absolute;
  background: none;
  border: 1px solid rgba(253, 252, 249, 0.3);
  color: var(--ivoire);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.visionneuse__bouton:hover { background: rgba(253, 252, 249, 0.14); border-color: rgba(253, 252, 249, 0.6); }
.visionneuse__fermer { top: clamp(0.75rem, 3vw, 1.75rem); right: clamp(0.75rem, 3vw, 1.75rem); }
.visionneuse__precedent { left: clamp(0.5rem, 2.5vw, 1.75rem); top: 50%; transform: translateY(-50%); }
.visionneuse__suivant  { right: clamp(0.5rem, 2.5vw, 1.75rem); top: 50%; transform: translateY(-50%); }

/* ---------- 14. Fiche produit (panneau latéral) ---------- */
.panneau-fond {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(44, 48, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.panneau-fond.est-ouvert { opacity: 1; pointer-events: auto; }

.panneau {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 260;
  width: min(560px, 100%);
  background: var(--ivoire);
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.panneau.est-ouvert { transform: translateX(0); }

.panneau__entete {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to bottom, var(--ivoire) 65%, transparent);
}
.panneau__fermer {
  background: none;
  border: 1px solid var(--lin-fonce);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--vert-profond);
  transition: background var(--transition);
}
.panneau__fermer:hover { background: var(--lin); }

.panneau__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.panneau__miniatures {
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 1.75rem 0;
  flex-wrap: wrap;
}
.panneau__miniature {
  width: 62px; height: 62px;
  padding: 0; border: 1px solid transparent;
  border-radius: var(--rayon);
  overflow: hidden;
  cursor: pointer;
  background: var(--lin);
  opacity: 0.65;
  transition: opacity var(--transition), border-color var(--transition);
}
.panneau__miniature img { width: 100%; height: 100%; object-fit: cover; }
.panneau__miniature[aria-current="true"], .panneau__miniature:hover { opacity: 1; border-color: var(--sauge); }

.panneau__corps { padding: 1.75rem 1.75rem 2.5rem; }
.panneau__titre { font-size: 2rem; margin-bottom: 0.4rem; }
.panneau__prix {
  font-size: 1.25rem;
  color: var(--vert-fonce);
  margin-bottom: 1.5rem;
}
.panneau__description { color: var(--encre-doux); margin-bottom: 1.75rem; }
.panneau__details {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--lin-fonce);
}
.panneau__details li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--lin-fonce);
  font-size: 0.9rem;
}
.panneau__details dt, .panneau__details .cle {
  color: var(--encre-tres-doux);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.panneau__details .valeur { color: var(--encre); text-align: right; }

.panneau__achat { display: grid; gap: 0.75rem; }
.panneau__note {
  font-size: 0.82rem;
  color: var(--encre-tres-doux);
  text-align: center;
}

/* ---------- 15. Formulaires ---------- */
.formulaire { display: grid; gap: 1.15rem; }
.champ { display: grid; gap: 0.4rem; }
.champ label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-tres-doux);
}
.champ input, .champ textarea, .champ select {
  font: inherit;
  color: var(--encre);
  background: var(--ivoire);
  border: 1px solid var(--lin-fonce);
  border-radius: var(--rayon);
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color var(--transition);
}
.champ input:hover, .champ textarea:hover { border-color: var(--sauge); }
.champ input:focus, .champ textarea:focus { border-color: var(--vert); outline: none; }
.champ textarea { min-height: 130px; resize: vertical; }
.champ--double { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .champ--double { grid-template-columns: 1fr; } }

.message-formulaire {
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: var(--rayon);
  border: 1px solid var(--sauge);
  background: var(--sauge-clair);
  color: var(--vert-profond);
}
.message-formulaire[hidden] { display: none; }
.message-formulaire--erreur {
  border-color: #C9A38D;
  background: #F6E9E1;
  color: #7A4B32;
}

/* ---------- 16. Bandeau citation ---------- */
.citation {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.citation blockquote {
  margin: 0;
  font-family: var(--titre);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.4;
  color: var(--vert-profond);
}
.citation figcaption {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-doux);
}

/* ---------- 17. Appel à l'action ---------- */
.appel {
  background: var(--vert-profond);
  color: var(--ivoire);
  text-align: center;
}
.appel h2 { color: var(--ivoire); margin-bottom: 1.1rem; }
.appel p { color: rgba(253, 252, 249, 0.82); max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }

/* ---------- 18. Pied de page ---------- */
.pied {
  background: var(--lin);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.9rem;
}
.pied__haut {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
}
@media (max-width: 760px) {
  .pied__haut { grid-template-columns: 1fr; gap: 2.25rem; }
}
.pied h3 {
  font-family: var(--texte);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-tres-doux);
  margin-bottom: 1.1rem;
}
.pied p { color: var(--encre-doux); max-width: 40ch; }
.pied ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.pied a {
  text-decoration: none;
  color: var(--encre-doux);
  transition: color var(--transition);
}
.pied a:hover { color: var(--vert-profond); }
.pied__bas {
  border-top: 1px solid var(--lin-fonce);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--encre-tres-doux);
}
.pied__reseaux { display: flex; gap: 1rem; }
.pied__reseaux a {
  width: 38px; height: 38px;
  border: 1px solid var(--lin-fonce);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}
.pied__reseaux a:hover { border-color: var(--sauge); color: var(--vert-profond); }

/* ---------- 19. Pages de texte (mentions, CGV) ---------- */
.page-texte { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3.5rem, 8vw, 6rem); }
.page-texte h2 {
  font-size: 1.55rem;
  margin: 2.75rem 0 0.9rem;
}
.page-texte h2:first-of-type { margin-top: 0; }
.page-texte h3 { font-size: 1.15rem; margin: 1.75rem 0 0.6rem; }
.page-texte p, .page-texte li { color: var(--encre-doux); }
.page-texte ul { padding-left: 1.2rem; }
.page-texte li { margin-bottom: 0.5rem; }
.page-texte a { color: var(--vert-fonce); }

/* ---------- 20. Apparition au défilement ---------- */
.apparait {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.apparait.est-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .apparait { opacity: 1; transform: none; }
}

/* ---------- 21. Divers ---------- */
.centre { text-align: center; }
.entete-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.vide {
  text-align: center;
  color: var(--encre-tres-doux);
  padding-block: 3rem;
}
body.est-bloque { overflow: hidden; }
