/* ===========================================================
   PAGES.CSS · Site V comme Samedi
   En-tête, pied de page et sections des pages publiques.
   La page d'attente (« Prochainement ») vit dans main.css et
   n'utilise aucune de ces classes.
   =========================================================== */

/* ─── Accessibilité ─────────────────────────────────────────────────────*/
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: var(--z-panel);
  background: var(--noir-doux);
  color: var(--blanc-casse);
  padding: 12px 20px;
  font-size: var(--fs-small);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ─── En-tête ───────────────────────────────────────────────────────────*/
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  padding-block: clamp(16px, 2.2vw, 26px);
  /* Fond opaque en permanence. Le haut de chaque page étant déjà crème,
     la barre est invisible au repos ; et comme elle ne dépend pas de
     JavaScript, le contenu ne défile jamais derrière un fond transparent.
     Un fond translucide trahissait aussi la barre au-dessus des sections lin. */
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), padding var(--t-base);
}
/* Le filet n'apparaît qu'une fois la page défilée : au repos, rien ne
   souligne l'en-tête, il se confond avec la page. */
.site-header.is-scrolled {
  border-bottom-color: var(--filet-fin);
  padding-block: 12px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: var(--text);
}
.site-header__name {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  line-height: 1;
}
.site-header__baseline {
  font-size: 10px;
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ─── Navigation ────────────────────────────────────────────────────────*/
.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  color: var(--text-soft);
  text-decoration: none;
  padding-block: 4px;
  transition: color var(--t-fast);
}
/* Le filet doré se déploie depuis la gauche, discret, jamais souligné plein */
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after,
.nav__link.is-current::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--text); }

.nav__badge {
  font-size: 9px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 1px 6px;
  vertical-align: middle;
}

.btn--sm {
  padding: 11px 22px;
  font-size: var(--fs-micro);
}

/* ─── Burger + tiroir mobile ────────────────────────────────────────────*/
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.burger__line {
  display: block;
  width: 24px; height: 1px;
  margin-left: auto;
  background: var(--text);
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
}
.burger__line:last-child { width: 16px; }
.burger[aria-expanded='true'] .burger__line:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded='true'] .burger__line:last-child { width: 24px; transform: translateY(-3.5px) rotate(-45deg); }

/* Même précaution que pour la modale de l'admin : sans cette règle, le
   `display: flex` écraserait le `display: none` de [hidden] et le tiroir
   couvrirait la page en interceptant les clics. */
.drawer[hidden] { display: none; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-2xl) var(--container-px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.drawer[data-open='true'] { opacity: 1; visibility: visible; }

.drawer__nav { display: flex; flex-direction: column; gap: var(--space-md); }
.drawer__link {
  font-family: var(--font-serif);
  font-size: clamp(30px, 8vw, 44px);
  line-height: 1.1;
  color: var(--text);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
}
.drawer[data-open='true'] .drawer__link {
  animation: reveal var(--t-base) forwards;
  animation-delay: calc(80ms + var(--i) * 60ms);
}
.drawer__link.is-current { font-style: italic; color: var(--text-soft); }

.drawer__foot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--filet-fin);
}
.drawer__contact {
  font-size: var(--fs-small);
  color: var(--text-soft);
  text-decoration: none;
}

/* ─── Sections ──────────────────────────────────────────────────────────*/
.section { padding-block: var(--section-py); }
/* Bloc lin : rythme la page en alternant les fonds, sans jamais de couleur */
.section--bloc { background: var(--bg-bloc); }
.section--final {
  padding-block: var(--section-py-large, var(--section-py));
  border-top: 1px solid var(--filet-fin);
}

.section__head { margin-bottom: clamp(40px, 5vw, 72px); }
.section__head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}
.section__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin-top: var(--space-md);
  max-width: 18em;
  text-wrap: balance;
}
.section__intro {
  color: var(--text-soft);
  line-height: var(--lh-loose);
  margin-top: var(--space-sm);
  max-width: 34em;
}
.section__foot { margin-top: clamp(32px, 4vw, 56px); }

.center { text-align: center; }
.center .rule--center { margin-inline: auto; }
.center .section__title,
.center .prose { margin-inline: auto; }

.prose {
  color: var(--text-soft);
  line-height: var(--lh-loose);
  margin-top: var(--space-md);
  max-width: 36em;
  white-space: pre-line; /* les sauts de ligne viennent de content.json */
}
.prose--lead {
  font-family: var(--font-serif);
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text);
}
.signature { margin-top: var(--space-lg); }

.link-underline {
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.link-underline:hover { color: var(--text-soft); border-color: var(--text-soft); }

/* ─── Hero des pages intérieures ────────────────────────────────────────*/
.page-hero { padding-block: clamp(48px, 7vw, 104px) clamp(32px, 4vw, 64px); }
.page-hero__title {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-top: var(--space-lg);
  white-space: pre-line;
  text-wrap: balance;
}
.page-hero__lead {
  font-family: var(--font-serif);
  font-size: var(--fs-lead);
  line-height: 1.55;
  margin-top: var(--space-lg);
  max-width: 30em;
}

/* ─── Bannière d'accueil ────────────────────────────────────────────────
   Scopée à `.hero--home` : la page d'attente (« Prochainement ») utilise les
   mêmes classes `.hero*` mais garde sa mise en page propre, définie dans
   main.css. Ne pas dé-scoper ces règles, elles la casseraient.

   Tient dans une hauteur d'écran, en-tête déduit. `svh` plutôt que `vh` :
   sur mobile, la barre d'adresse du navigateur fausse `vh` et la bannière
   déborderait. --header-h est publiée par main.js ; la valeur de repli
   couvre le cas où le script n'a pas encore tourné. */
.hero--home {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-h, 97px));
  padding-block: clamp(20px, 3vw, 48px);
}
.hero--home .hero__grid { width: 100%; }

/* Titre légèrement resserré par rapport aux pages intérieures : c'est ce
   qui permet à l'ensemble de tenir dans l'écran sans rogner l'image. */
.hero--home .hero__title { font-size: clamp(34px, 5.2vw, 62px); }

/* La photo : plus large et plus haute qu'avant. À 300 px de large elle ne
   représentait que 25 % de la grille et flottait comme une vignette
   détachée ; elle ancre maintenant la composition face au texte.
   Hauteur en `svh` pour ne jamais déborder sur un écran bas. */
.hero--home .hero__figure { width: clamp(260px, 32vw, 400px); }
.hero--home .hero__img { height: min(62svh, 545px); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-lg);
  margin-top: clamp(24px, 4vh, 56px);
}

/* ─── Cartes d'offres ───────────────────────────────────────────────────*/
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 1px;
  background: var(--filet-fin);
  border-block: 1px solid var(--filet-fin);
}
/* Grille à filets : les cartes sont séparées par des lignes fines, pas des
   ombres ni des bordures arrondies, plus proche d'une mise en page imprimée. */
.card {
  background: var(--bg);
  padding: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  transition: background var(--t-base);
}
.section--bloc .card { background: var(--bg-bloc); }
.card:hover { background: var(--lin-clair); }
.section--bloc .card:hover { background: var(--bg); }

.card__num {
  font-family: var(--font-serif);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  color: var(--accent);
}
.card__title {
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin-top: var(--space-md);
}
.card__chapo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-body);
  color: var(--text-soft);
  margin-top: 6px;
}
.card__text {
  color: var(--text-soft);
  font-size: var(--fs-small);
  line-height: var(--lh-loose);
  margin-top: var(--space-md);
  flex: 1;
}
.card__price {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--filet-fin);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text);
}

/* ─── Étapes ────────────────────────────────────────────────────────────*/
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--filet-fin);
  border-block: 1px solid var(--filet-fin);
}
.step {
  display: grid;
  grid-template-columns: clamp(60px, 8vw, 110px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  background: var(--bg-bloc);
  padding: clamp(24px, 3vw, 36px) clamp(8px, 2vw, 24px);
  transition: background var(--t-base);
}
.step:hover { background: var(--bg); }
.step__num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  color: var(--accent);
}
.step__title { font-size: var(--fs-h3); line-height: 1.25; }
.step__text {
  color: var(--text-soft);
  line-height: var(--lh-loose);
  margin-top: 8px;
  max-width: 46em;
}

/* ─── Extraits ──────────────────────────────────────────────────────────*/
.extraits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 4vw, 64px);
}
.extrait {
  margin: 0;
  padding-left: var(--space-md);
  border-left: 1px solid var(--accent);
}
.extrait__texte {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.5;
  color: var(--text);
}
.extrait__source {
  display: block;
  margin-top: var(--space-md);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ─── Témoignages ───────────────────────────────────────────────────────*/
/* Carrousel de témoignages : 3 cartes visibles, les suivantes révélées en
   translatant la piste (transform, piloté par main.js). Le --tgap sert au
   calcul de la largeur des cartes ET du pas de translation : unique. */
.tslider { --tgap: clamp(20px, 2.4vw, 40px); position: relative; }
.tslider__viewport { overflow: hidden; }
.temoignages {
  display: flex;
  gap: var(--tgap);
  transition: transform var(--t-base);
  will-change: transform;
}
.temoignage {
  /* Trois cartes visibles : (100% - 2 gaps) / 3 */
  flex: 0 0 calc((100% - 2 * var(--tgap)) / 3);
  margin: 0;
  background: var(--bg);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

/* Flèches de navigation : confort, masquées si tout tient sans défiler */
.tslider__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: var(--space-lg);
}
.tslider__btn {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), opacity var(--t-fast);
}
.tslider__btn:hover:not(:disabled) {
  background: var(--noir-doux);
  border-color: var(--noir-doux);
  color: var(--blanc-casse);
}
.tslider__btn:disabled { opacity: 0.3; cursor: default; }

@media (max-width: 900px) {
  /* Deux cartes visibles */
  .temoignage { flex-basis: calc((100% - var(--tgap)) / 2); }
}
@media (max-width: 620px) {
  /* Une carte visible, pleine largeur */
  .temoignage { flex-basis: 100%; }
}
.temoignage__texte {
  margin: 0;
  flex: 1;
  font-family: var(--font-serif);
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text);
}
.temoignage__texte::before { content: '« '; color: var(--accent); }
.temoignage__texte::after  { content: ' »'; color: var(--accent); }
.temoignage__meta {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--filet-fin);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.temoignage__auteur { font-size: var(--fs-small); color: var(--text); }
.temoignage__contexte {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ─── Appel final ───────────────────────────────────────────────────────*/
.final__title {
  font-size: var(--fs-h1, var(--fs-h2));
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  max-width: 16em;
  margin-inline: auto;
  text-wrap: balance;
}
.section--final .btn { margin-top: var(--space-lg); }

/* ─── Pied de page ──────────────────────────────────────────────────────*/
.site-footer {
  background: var(--bg-bloc);
  padding-block: clamp(48px, 6vw, 88px) var(--space-xl);
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: var(--space-xl);
}
.site-footer__name {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}
.site-footer__signature {
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--text-soft);
  margin-top: 4px;
}

.site-footer__cols {
  display: flex;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
}
.site-footer__col { display: flex; flex-direction: column; gap: 8px; }
.site-footer__title {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.site-footer__link {
  font-size: var(--fs-small);
  color: var(--text);
  text-decoration: none;
  transition: color var(--t-fast);
}
.site-footer__link:hover { color: var(--text-soft); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm) var(--space-lg);
  padding-top: var(--space-lg);
}
.site-footer__meta,
.site-footer__meta-link {
  font-size: var(--fs-micro);
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.site-footer__legal { display: flex; gap: var(--space-md); }
.site-footer__meta-link { text-decoration: none; transition: color var(--t-fast); }
.site-footer__meta-link:hover { color: var(--text); }

/* Signature de l'auteur du site : au centre de la barre du bas, entre le
   copyright et les liens légaux. Reprend le style discret de .site-footer__meta. */
.site-footer__credit { text-align: center; }

/* ─── Responsive ────────────────────────────────────────────────────────*/
/* Le menu bascule en burger dès 1040px : en dessous, la marque et les cinq
   entrées de nav ne tiennent plus dans le conteneur et s'écrasent. */
@media (max-width: 1040px) {
  .nav { display: none; }
  .burger { display: flex; }
}

@media (max-width: 900px) {
  .section__head--split { grid-template-columns: 1fr; gap: var(--space-md); }
  .site-footer__top { grid-template-columns: 1fr; }

  /* En colonne, la photo passe au-dessus du texte : à 54svh elle mangeait
     plus de la moitié de l'écran et repoussait le titre sous la ligne de
     flottaison. `min-height` ne rogne jamais : sur un écran très bas
     (portable en paysage) la bannière dépasse simplement, et on défile. */
  .hero--home { min-height: 0; padding-block: clamp(12px, 2.5vw, 32px) var(--space-lg); }
  .hero--home .hero__figure { width: 100%; }
  .hero--home .hero__img { height: min(28svh, 230px); }
  /* Espacements resserrés : l'objectif est que le bouton principal reste
     visible sans défiler sur un téléphone standard. */
  .hero--home .hero__lead { margin-top: var(--space-md); }
  .hero--home .hero__actions { margin-top: var(--space-md); }
}

@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step__num { font-size: 22px; }
  .site-footer__cols { flex-direction: column; gap: var(--space-lg); }
  .site-footer__bottom { flex-direction: column; }
}

/* ─── Bandeau image ─────────────────────────────────────────────────────*/
/* Une image large et basse qui sépare deux blocs de texte. Volontairement
   peu haute : elle donne une respiration, elle ne raconte pas. */
.band {
  margin: clamp(48px, 6vw, 88px) 0 0;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.band__img {
  width: 100%;
  height: clamp(180px, 26vw, 340px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  filter: saturate(0.94) contrast(0.96);
}

/* ─── Approche : étapes + image ─────────────────────────────────────────*/
.approche {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(220px, 26vw, 340px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.approche .steps { margin: 0; }
/* Image de taille normale, calée en sticky : elle suit la lecture des étapes
   en restant à l'écran, puis se libère à la fin du bloc.
   (Ne fonctionne que si aucun parent n'a overflow:hidden, cf. ornaments.css.) */
.approche__figure {
  margin: 0;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h, 97px) + 24px);
}
.approche__img {
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: var(--radius-md);
  filter: saturate(0.92) contrast(0.95) brightness(1.02);
}

@media (max-width: 900px) {
  /* L'image passe sous les étapes, en bandeau court : en colonne, une image
     de 560px de haut couperait la lecture en deux. */
  .approche { grid-template-columns: 1fr; }
  .approche__figure { position: static; }
  .approche__img { height: clamp(200px, 40vw, 280px); object-position: 50% 45%; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGES INTÉRIEURES · offres, à propos, contact, journal, légal, 404
   ═══════════════════════════════════════════════════════════════════════ */

.page-hero--small { padding-block: clamp(40px, 6vw, 88px) 0; }
.legal__maj {
  font-size: var(--fs-small);
  color: var(--text-soft);
  margin-top: var(--space-md);
}

/* ─── Offres : familles + prestations ───────────────────────────────────*/
.offre {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
/* Pas de sticky : l'intro porte désormais une photo, ce qui la rend trop
   haute pour tenir dans l'écran. Elle défile naturellement avec sa colonne. */
.offre__intro { align-self: start; }
.offre__num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--accent);
}
.offre__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin-top: var(--space-sm);
}
.offre__chapo {
  font-size: var(--fs-script);
  color: var(--text);
  margin-top: var(--space-sm);
}

/* Photo d'ouverture d'une famille d'offres, dans la colonne intro,
   sous le texte. Volontairement modeste pour ne pas casser le sticky. */
.offre__figure { margin: var(--space-lg) 0 0; }
.offre__img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  filter: saturate(0.95) contrast(0.97);
}

/* La liste des prestations « suit » la lecture : elle reste collée en haut
   pendant qu'on parcourt la colonne de gauche (intro + photo), plus haute,
   puis se libère au bas du bloc. Même principe que la photo de l'accueil,
   section « Comment ça se passe ». Ne fonctionne que si aucun parent n'a
   overflow:hidden (cf. ornaments.css). */
.prestations {
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h, 97px) + 24px);
}
.prestation {
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid var(--filet-fin);
}
.prestation:last-child { border-bottom: 1px solid var(--filet-fin); }
.prestation__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
}
.prestation__nom {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: 400;
}
.prestation__prix {
  flex: 0 0 auto;
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.prestation__detail {
  color: var(--text-soft);
  line-height: var(--lh-normal);
  margin-top: var(--space-xs);
  max-width: 42em;
}

/* ─── Guide à l'écriture ────────────────────────────────────────────────*/
.guide {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background: var(--bg-bloc);
  border-radius: var(--radius-md);
  padding: clamp(32px, 5vw, 64px);
}
.guide__option {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
}
.guide__option:first-of-type { margin-top: var(--space-lg); }
.guide__option-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
}
.guide__option-nom { font-family: var(--font-serif); font-size: var(--fs-h4, 20px); }
.guide__option-prix {
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}
.guide__option-detail {
  color: var(--text-soft);
  font-size: var(--fs-small);
  margin-top: 4px;
}
.guide__aside {
  position: sticky;
  top: calc(var(--header-h, 97px) + 24px);
  background: var(--bg);
  border: 1px solid var(--filet-fin);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
}
.guide__prix {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
  color: var(--text);
}
.guide__modalite {
  color: var(--text-soft);
  font-size: var(--fs-small);
  line-height: var(--lh-normal);
  margin: var(--space-md) 0 var(--space-lg);
}

/* ─── FAQ ───────────────────────────────────────────────────────────────*/
.faq { margin-top: var(--space-xl); }
.faq__item { border-bottom: 1px solid var(--filet-fin); }
.faq__item:first-child { border-top: 1px solid var(--filet-fin); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  line-height: 1.3;
  color: var(--text);
  transition: color var(--t-fast);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--text-soft); }
/* Icône +/− dessinée en CSS */
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 16px; height: 16px;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform var(--t-base);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__reponse {
  color: var(--text-soft);
  line-height: var(--lh-loose);
  padding-bottom: var(--space-md);
  max-width: 46em;
}

/* ─── À propos ──────────────────────────────────────────────────────────*/
.apropos-hero { padding-block: clamp(40px, 6vw, 88px) var(--section-py); }
.apropos-hero__grid {
  display: grid;
  /* Colonne plafonnée à 340px : la photo source ne fait que 447px de côté,
     l'afficher plus large la rendrait floue sur écran retina. */
  grid-template-columns: minmax(0, 1fr) clamp(220px, 27vw, 340px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.apropos-hero__title {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-top: var(--space-lg);
}
.apropos-hero__lead {
  font-size: var(--fs-script);
  color: var(--text);
  margin-top: var(--space-md);
}
.apropos-hero__figure { margin: 0; }
.apropos-hero__img {
  width: 100%;
  /* `height: auto` est INDISPENSABLE : sans lui, l'attribut HTML height="800"
     de la balise <img> agit comme style de présentation et écrase
     l'aspect-ratio. Le portrait était alors étiré en 1:2 et rognait la
     moitié des côtés du visage. */
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  /* La source est carrée : le cadre 4/5 rogne les côtés. On centre
     légèrement au-dessus du milieu pour cadrer sur le regard. */
  object-position: 50% 42%;
  border-radius: var(--radius-md);
  filter: saturate(0.92) contrast(0.96);
}
.apropos-hero__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background: var(--bg-bloc);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text-soft);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.prose--long { columns: 1; }
.prose--long,
.prose--article { max-width: 40em; }

.grande-citation {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  color: var(--text);
  margin: 0 auto;
  max-width: 16em;
}

/* Presse */
.presse {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.presse__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}
.presse__chaine {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.04em;
}
.presse__emission {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ─── Contact ───────────────────────────────────────────────────────────*/
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact__aside {
  position: sticky;
  top: calc(var(--header-h, 97px) + 24px);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact__card {
  background: var(--bg-bloc);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
}
.contact__card--rdv { background: transparent; border: 1px solid var(--filet-fin); }
.contact__card-title { font-size: var(--fs-h3); font-weight: 400; }
.contact__card-text {
  color: var(--text-soft);
  font-size: var(--fs-small);
  line-height: var(--lh-normal);
  margin-top: var(--space-xs);
}
.contact__coords { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md); }
.contact__coord { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.contact__coord-label {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-soft);
}
.contact__coord-value {
  font-family: var(--font-serif);
  font-size: var(--fs-h4, 20px);
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
  align-self: flex-start;
}
.contact__coord:hover .contact__coord-value { border-bottom-color: var(--accent); }

/* ─── Journal ───────────────────────────────────────────────────────────*/
.articles { display: flex; flex-direction: column; }
.article-card { border-top: 1px solid var(--filet-fin); }
.article-card:last-child { border-bottom: 1px solid var(--filet-fin); }
.article-card__link {
  display: block;
  padding: clamp(28px, 4vw, 48px) 0;
  text-decoration: none;
  color: inherit;
}
.article-card__date {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-soft);
}
.article-card__title {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin-top: var(--space-sm);
  transition: color var(--t-fast);
}
.article-card__link:hover .article-card__title { color: var(--text-soft); }
.article-card__chapo {
  font-family: var(--font-serif);
  font-size: var(--fs-lead);
  color: var(--text-soft);
  margin-top: var(--space-sm);
  max-width: 40em;
}
.article-card__more {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

/* ─── Article ───────────────────────────────────────────────────────────*/
.post { padding-block: clamp(40px, 6vw, 88px) var(--section-py); }
.post__back {
  font-size: var(--fs-small);
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--t-fast);
}
.post__back:hover { color: var(--text); }
.post__date {
  display: block;
  margin-top: var(--space-lg);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-soft);
}
.post__title {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-top: var(--space-sm);
  text-wrap: balance;
}
.post__chapo {
  font-size: var(--fs-script);
  color: var(--text);
  margin-top: var(--space-md);
}
.post__body { margin-top: clamp(32px, 4vw, 56px); }
.prose--article {
  font-size: var(--fs-body-l, 18px);
  line-height: 1.9;
}
.post__foot { margin-top: var(--space-2xl); }
.post__sign { font-size: var(--fs-script); margin: var(--space-md) 0 var(--space-lg); }

/* ─── Corps HTML des pages légales ──────────────────────────────────────*/
.legal-body { max-width: 44em; color: var(--text-soft); line-height: var(--lh-loose); }
.legal-body h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--text);
  margin: var(--space-xl) 0 var(--space-sm);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--text);
  margin: var(--space-md) 0 var(--space-xs);
}
.legal-body p { margin-bottom: var(--space-md); }
.legal-body ul { margin: 0 0 var(--space-md); padding-left: 1.4em; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* ─── Page 404 ──────────────────────────────────────────────────────────*/
.error-page {
  min-height: calc(70svh - var(--header-h, 97px));
  display: grid;
  place-items: center;
  padding-block: var(--section-py);
}
.error-page__code {
  font-family: var(--font-serif);
  font-size: clamp(72px, 14vw, 160px);
  line-height: 1;
  color: var(--accent);
}
.error-page__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  margin-top: var(--space-md);
}
.error-page__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Le livre (accueil) ────────────────────────────────────────────────*/
/* Couverture à gauche, texte à droite. La colonne de gauche est bornée en
   largeur : un livre reste un objet, il ne doit pas occuper la moitié de
   l'écran. */
.livre {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.livre__figure { margin: 0; }
.livre__img {
  display: block;
  width: 100%;
  height: auto;
  /* Proportion d'un livre broché ; recadrage plutôt que déformation. */
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.livre__placeholder {
  width: 100%;
  aspect-ratio: 2 / 3;
  display: grid;
  place-items: center;
  padding: var(--space-md);
  text-align: center;
  background: var(--bg-bloc);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}
.livre__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ═══ Responsive pages intérieures ═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* La couverture repasse au-dessus du texte, en format raisonnable. */
  .livre { grid-template-columns: 1fr; gap: var(--space-lg); }
  .livre__figure { max-width: 220px; margin-inline: auto; }
  .offre { grid-template-columns: 1fr; gap: var(--space-lg); }
  .offre__intro { position: static; }
  /* En colonne unique, la liste ne colle plus : elle suit simplement l'intro. */
  .prestations { position: static; }
  .guide { grid-template-columns: 1fr; }
  .guide__aside { position: static; order: -1; }
  .apropos-hero__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .apropos-hero__figure { order: -1; max-width: 320px; }
  .presse { grid-template-columns: 1fr; gap: var(--space-lg); text-align: center; }
  .presse__mark { justify-self: center; }
  .contact { grid-template-columns: 1fr; gap: var(--space-xl); }
  .contact__aside { position: static; order: -1; }
}

/* ─── Bénéfices (accueil) : lignes alternées image / texte ──────────────*/
.benefices {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 104px);
}
.benefice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
/* Un rang sur deux : l'image passe à droite */
.benefice--reverse .benefice__figure { order: 2; }

.benefice__figure { margin: 0; }
.benefice__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  filter: saturate(0.96) contrast(0.97);
}
.benefice__num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--accent);
}
.benefice__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin-top: var(--space-xs);
}
.benefice__body .prose { margin-top: var(--space-sm); }

@media (max-width: 780px) {
  .benefice { grid-template-columns: 1fr; gap: var(--space-md); }
  /* En colonne, l'image repasse toujours au-dessus du texte */
  .benefice--reverse .benefice__figure { order: 0; }
}

/* ─── La plume de Séverine (signature à l'encre, par petites touches) ────*/
.plume-mark {
  display: block;
  width: 92px;
  height: auto;
  opacity: 0.55;
  /* La plume est un dessin noir : on la teinte légèrement pour qu'elle
     respire avec la charte au lieu de trancher en noir pur. */
  filter: sepia(0.15) opacity(0.9);
}
.plume-mark--center { margin: var(--space-lg) auto var(--space-xs); }
.site-footer__brand .plume-mark { margin-bottom: var(--space-sm); }
