/* ============================================================
   VARIABLES — couleurs, typos, espacements
   Modifier ici change tout le site.
   ============================================================ */
:root {
  --bg: #F3EFE4;          /* crème, fond principal */
  --bg-dark: #141412;     /* noir chaud, sections contrastées */
  --ink: #141412;         /* texte principal */
  --ink-soft: #5F5B51;    /* texte secondaire (AA sur crème) */
  --accent: #E3B93A;      /* ocre, bouton et accents */
  --accent-ink: #141412;  /* texte sur ocre */
  --line: rgba(20, 20, 18, .16);

  --font-display: "Bricolage Grotesque", "Arial Narrow", Impact, sans-serif;
  --font-text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(6rem, 12vw, 10rem);   /* espace entre sections */
  --radius: 12px;
  --header-h: 4.25rem;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; font-variation-settings: "wdth" 88; line-height: .95; letter-spacing: -.02em; }
p { margin: 0; }
.nowrap { white-space: nowrap; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--wide { width: min(100% - 2 * var(--gutter), 1360px); }

/* Petit sur-titre en capitales */
.eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before { content: ""; display: inline-block; width: .5em; height: .5em; margin-right: .75em; background: var(--accent); border-radius: 1px; vertical-align: .1em; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.6rem; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 600; font-size: .95rem; line-height: 1; text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #D9AD2B; transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--small { padding: .7rem 1.1rem; font-size: .85rem; }

/* ============================================================
   EN-TÊTE
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.header__brand { display: block; line-height: 0; }
.header__brand img { height: 32px; width: auto; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a:not(.btn) { font-size: .9rem; font-weight: 500; text-decoration: none; opacity: .85; }
.nav a:not(.btn):hover { opacity: 1; text-decoration: underline; text-underline-offset: .35em; }

/* Bouton menu (téléphone uniquement) */
.header__toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.header__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin-inline: auto; transition: transform .2s ease; }
.header__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 899px) {
  .header__toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.25rem;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .nav a:not(.btn) { font-size: 1.15rem; padding: .8rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 1.25rem; align-self: stretch; padding: 1rem; }
}

/* ============================================================
   HÉROS — texte centré + roue de photos 3D
   ============================================================ */
.hero { padding-top: clamp(2rem, 4vw, 3rem); overflow: hidden; text-align: center; }
.eyebrow--center { text-align: center; }
.hero__title {
  margin: 1.25rem auto 0;
  font-size: clamp(2.5rem, 5.6vw, 5.1rem);
  max-width: 18ch; text-wrap: balance; line-height: .92;
}
.hero__lead {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) auto 0;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.45; max-width: 44ch;
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.5rem; }

/* --- La roue ---
   --w : largeur d'une photo, --gap : espace entre deux photos,
   --n : nombre de photos (défini dans le HTML). Le rayon se déduit. */
.wheel-stage {
  --w: clamp(150px, 14.5vw, 205px);
  --gap: clamp(10px, 1.4vw, 22px);
  --h: calc(var(--w) * 1.25);
  --r: calc((var(--w) + var(--gap)) / 2 / tan(180deg / var(--n)));
  position: relative;
  height: calc(var(--h) * 2.05);           /* de la place pour la photo de face, agrandie par la perspective */
  margin-top: clamp(1rem, 2vw, 1.5rem);
  display: grid; place-items: center;
  perspective: 1750px;                       /* plus petit = plus bombé */
}
/* Fondu sur les côtés, posé par-dessus la roue (ne coupe rien) */
.wheel-stage::before, .wheel-stage::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 14%; z-index: 2; pointer-events: none;
}
.wheel-stage::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.wheel-stage::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.wheel-scene { width: var(--w); height: var(--h); transform-style: preserve-3d; transform: translateY(calc(var(--h) * .3)); /* recentre la roue, décalée vers le haut par l'inclinaison */ }
.wheel {
  list-style: none; margin: 0; padding: 0;
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(9deg) rotateZ(-3deg) rotateY(0deg);   /* mis à jour par script.js */
  will-change: transform;
}
.wheel__item {
  position: absolute; inset: 0;
  border-radius: 10px; overflow: hidden; background: #E2DCCB;
  transform: rotateY(calc(var(--i) * 360deg / var(--n))) translateZ(var(--r));
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  box-shadow: 0 12px 30px rgba(20, 20, 18, .18);
}
.wheel__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.001);
  transition: transform 1.1s cubic-bezier(.2, .7, .1, 1);
}
.wheel__item:hover img { transform: scale(1.08); }

@media (max-width: 599px) { .wheel-stage { height: calc(var(--h) * 1.7); } }

/* Sans JavaScript ou si l'utilisateur limite les animations : rotation CSS lente / statique */
@media (prefers-reduced-motion: no-preference) {
  .wheel:not(.is-js) { animation: wheel-spin 70s linear infinite; }
}
@keyframes wheel-spin {
  from { transform: rotateX(9deg) rotateZ(-3deg) rotateY(0deg); }
  to   { transform: rotateX(9deg) rotateZ(-3deg) rotateY(-360deg); }
}

/* ============================================================
   SECTIONS — structure commune
   ============================================================ */
.section { padding-block: var(--section); }
.section--dark { background: var(--bg-dark); color: var(--bg); }
.section--dark .eyebrow { color: rgba(243, 239, 228, .7); }
.section--dark .btn--ghost { border-color: var(--bg); color: var(--bg); }
.section--accent { background: var(--accent); color: var(--accent-ink); }
.section--accent .eyebrow { color: rgba(20, 20, 18, .7); }
.section--accent .eyebrow::before { background: var(--accent-ink); }

.h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); margin-top: 1rem; max-width: 16ch; text-wrap: balance; }
.h3 { font-size: clamp(1.75rem, 3.2vw, 2.75rem); max-width: 14ch; text-wrap: balance; }
.h3--small { font-size: clamp(1.4rem, 2.2vw, 1.75rem); }

.prose { display: grid; gap: 1.1em; }
.prose--large { font-size: clamp(1.125rem, 1.5vw, 1.35rem); line-height: 1.5; }
.prose strong { font-weight: 600; }

/* En-tête de section : titre à gauche, intro à droite */
.section-head { display: grid; gap: 1.5rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); align-items: end; }
.section-head__intro { max-width: 36ch; font-size: 1.125rem; line-height: 1.5; }
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 1fr; }
  .section-head__intro { justify-self: end; padding-bottom: .5rem; }
}

/* Grille d'images : une grande + deux petites */
.img-grid, .presta__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
}
.presta__grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: #E2DCCB; aspect-ratio: 4 / 3; }
.presta__grid figure img { width: 100%; height: 100%; object-fit: cover; }
.presta__grid .presta__big { grid-row: 1 / 3; aspect-ratio: auto; position: relative; }
/* La grande photo prend exactement la hauteur des deux petites, quelle que soit sa forme */
.presta__grid .presta__big img { position: absolute; inset: 0; }
@media (min-width: 600px) { .presta__grid { gap: 1rem; } }

/* ============================================================
   LE CONSTAT
   ============================================================ */
.constat { padding-top: var(--section); }
.constat__grid { display: grid; gap: 2.5rem; align-items: center; }
.constat__text .prose { margin-top: 2rem; max-width: 52ch; }
.constat__figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: #E2DCCB; }
.constat__figure img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .constat__grid { grid-template-columns: 7fr 5fr; gap: clamp(3rem, 6vw, 6rem); }
}

/* ============================================================
   PRESTATIONS
   ============================================================ */
.prestations { padding-bottom: var(--section); }
.presta {
  display: grid; gap: 1.75rem;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}
.presta:first-of-type { border-top: 0; padding-top: 0; }
.presta__text p { margin-top: 1rem; max-width: 42ch; color: var(--ink); }
.presta__cta { margin-top: 1.5rem; }
.presta--nophotos .presta__grid { display: none; }
@media (min-width: 900px) {
  .presta { grid-template-columns: 4fr 8fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
  .presta__text { position: sticky; top: calc(var(--header-h) + 2rem); }
  .presta--reverse .presta__text { order: 2; }
  .presta--nophotos { grid-template-columns: 1fr; }
  .presta--nophotos .presta__text { position: static; }
}

/* ============================================================
   TARIFS
   ============================================================ */
.tarifs__grid { display: grid; gap: 1rem; }
.tarif {
  border: 1px solid rgba(243, 239, 228, .18); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex; flex-direction: column; gap: .75rem;
}
.tarif__name { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.tarif__desc { color: rgba(243, 239, 228, .75); flex: 1; line-height: 1.5; }
.tarif__price { font-family: var(--font-display); font-weight: 800; font-variation-settings: "wdth" 88; font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1; margin-top: 1rem; letter-spacing: -.02em; }
.tarif__from { display: block; font-family: var(--font-text); font-weight: 500; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; opacity: .7; margin-bottom: .5rem; }
.tarifs__note { margin-top: 2rem; max-width: 70ch; color: rgba(243, 239, 228, .8); font-size: .95rem; line-height: 1.6; }
.tarifs__legal { margin-top: .75rem; font-size: .75rem; color: rgba(243, 239, 228, .5); }
@media (min-width: 720px) { .tarifs__grid { grid-template-columns: repeat(3, 1fr); } }

/* Pack photo + site vitrine : encadré ocre */
.pack {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--accent); color: var(--accent-ink);
  border-radius: 16px; padding: clamp(1.75rem, 4vw, 3.5rem);
  display: grid; gap: 2rem;
}
.pack .eyebrow { color: rgba(20, 20, 18, .7); }
.pack .eyebrow::before { background: var(--accent-ink); }
.pack .h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.pack__text p:not(.eyebrow) { margin-top: 1.25rem; max-width: 52ch; line-height: 1.55; }
.pack__offer { display: flex; flex-direction: column; justify-content: flex-end; gap: .5rem; }
.pack__label { font-weight: 600; font-size: .95rem; }
.pack__price { font-family: var(--font-display); font-weight: 800; font-variation-settings: "wdth" 88; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; letter-spacing: -.02em; }
.pack__price .tarif__from { opacity: .75; }
.pack__offer .btn { margin-top: 1.25rem; align-self: flex-start; }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { background: #2A2A26; }
@media (min-width: 900px) {
  .pack { grid-template-columns: 7fr 4fr; gap: 4rem; align-items: end; }
  .pack__offer { align-items: flex-start; }
}

/* ============================================================
   COMMENT ÇA SE PASSE — trois cartes
   ============================================================ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; counter-reset: step; }
.step {
  background: #EAE4D3; border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex; flex-direction: column; min-height: 100%;
}
.step__num {
  display: inline-grid; place-items: center; width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em;
}
.step .h3 { margin-top: clamp(2rem, 4vw, 3.5rem); }
.step p { margin-top: .75rem; max-width: 34ch; color: var(--ink-soft); }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

/* ============================================================
   À PROPOS — fond sombre, photo à gauche
   ============================================================ */
.apropos__grid { display: grid; gap: 2.5rem; align-items: center; }
.apropos__figure { margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; background: #2A2A26; }
.apropos__figure img { width: 100%; height: 100%; object-fit: cover; }
.apropos__text .prose { margin-top: 2rem; color: rgba(243, 239, 228, .88); }
@media (min-width: 900px) {
  .apropos__grid { grid-template-columns: 5fr 7fr; gap: clamp(3rem, 7vw, 7rem); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; gap: 2rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.25rem 3rem 1.25rem 0; position: relative;
  font-weight: 600; font-size: 1.1rem; line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--accent); line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 3rem 1.5rem 0; max-width: 60ch; color: var(--ink-soft); }
@media (min-width: 900px) { .faq__grid { grid-template-columns: 5fr 7fr; gap: clamp(3rem, 6vw, 6rem); } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; gap: 3rem; }
.contact__lead { margin-top: 1.5rem; max-width: 40ch; font-size: 1.125rem; line-height: 1.5; }
.contact__direct { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: .9rem; }
.contact__direct li { display: grid; gap: .15rem; font-size: 1.15rem; font-weight: 500; }
.contact__direct li span { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(20, 20, 18, .65); }
.contact__direct a { text-decoration: none; text-decoration-color: var(--accent); }
.contact__direct a:hover { text-decoration: underline; text-underline-offset: .3em; }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: .45rem; }
.form label { font-size: .9rem; font-weight: 600; }
.form__opt { font-weight: 400; color: rgba(20, 20, 18, .65); }
.form input, .form textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .9rem 1rem; border-radius: 10px;
  border: 1.5px solid transparent; background: #FBF9F3;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--ink); }
.contact .btn--block { background: var(--ink); color: var(--bg); }
.contact .btn--block:hover { background: #2A2A26; }
.form textarea { resize: vertical; min-height: 8rem; }
.form__gotcha { position: absolute; left: -9999px; }
.btn--block { width: 100%; padding: 1.1rem; font-size: 1rem; margin-top: .5rem; }
.form__error { color: #9A2E1E; font-size: .95rem; }
.form__success { font-weight: 600; background: #FBF9F3; padding: 1rem; border-radius: 10px; }
.form__privacy { font-size: .8rem; color: rgba(20, 20, 18, .7); }
.form__privacy a { text-underline-offset: .25em; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 5fr 7fr; gap: clamp(3rem, 6vw, 6rem); } }

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.footer { background: var(--bg-dark); color: rgba(243, 239, 228, .75); font-size: .9rem; padding-block: 2.5rem; }
.footer__inner { display: grid; gap: .75rem; }
.footer__brand { line-height: 0; }
.footer__brand img { height: 22px; width: auto; filter: invert(1) brightness(.95); }
.footer a { text-underline-offset: .3em; }
.footer a:hover { color: var(--bg); }
@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; }
}

/* ============================================================
   PAGE MENTIONS LÉGALES
   ============================================================ */
.nav--simple { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; background: none; border: 0; padding: 0; }
.legal { padding-block: clamp(3rem, 8vw, 6rem); }
.legal__inner { max-width: 72ch; }
.legal h1 { margin-bottom: 1.5rem; }
.legal h1 + h1, .legal #confidentialite { margin-top: var(--section); }
.legal h2 { margin-top: 2.25rem; margin-bottom: .6rem; }
.legal p { max-width: 68ch; }
.legal p + p { margin-top: 1em; }
.legal a { text-underline-offset: .25em; }
.legal__date { margin-top: 3rem; font-size: .85rem; color: var(--ink-soft); }
.nav--simple a { white-space: nowrap; font-size: .9rem; }
.legal h1, .legal h2 { max-width: none; }
@media (max-width: 480px) { .header__brand img { height: 22px; } }

/* ============================================================
   BLOG — liste des articles
   ============================================================ */
.blog { padding-block: clamp(2.5rem, 5vw, 4rem) var(--section); }
.blog__head { max-width: 60ch; }
.blog__intro { margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.55; color: var(--ink-soft); }
.blog__filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; }
.blog__grid { display: grid; gap: 2rem 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog__grid { grid-template-columns: repeat(3, 1fr); } }

.chip {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .45em .9em; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft);
  margin: 0;
}
.chip--btn { background: none; cursor: pointer; font-family: inherit; transition: background .15s, color .15s; }
.chip--btn:hover { border-color: var(--ink); color: var(--ink); }
.chip--btn.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.card { display: block; text-decoration: none; color: inherit; }
.card.is-hidden { display: none; }
.card__figure { margin: 0 0 1rem; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: #E2DCCB; }
.card__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.1,1); }
.card:hover .card__figure img { transform: scale(1.04); }
.card__title { font-size: 1.35rem; margin-top: .75rem; line-height: 1.1; max-width: none; }
.card:hover .card__title { text-decoration: underline; text-underline-offset: .15em; text-decoration-thickness: 2px; }
.card__desc { margin-top: .6rem; color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.card__meta { margin-top: .75rem; font-size: .8rem; color: var(--ink-soft); }

/* ============================================================
   BLOG — page d'article
   ============================================================ */
.article { padding-block: clamp(1.5rem, 3vw, 2.5rem) var(--section); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: .25em; }

.article__cover { margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 9; background: #E2DCCB; }
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .article__cover { aspect-ratio: 16 / 9; } }

.article__layout { display: grid; gap: 3rem; margin-top: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 1000px) {
  .article__layout { grid-template-columns: minmax(0, 68ch) 300px; justify-content: space-between; gap: clamp(3rem, 6vw, 6rem); }
  .article__side { position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; }
}

.article__title { font-size: clamp(2rem, 4.2vw, 3.5rem); margin-top: 1rem; max-width: none; text-wrap: balance; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: 1.5rem; font-size: .9rem; color: var(--ink-soft); }
.article__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.article__dot { opacity: .5; }
.article__lead { margin-top: 1.5rem; font-size: 1.2rem; line-height: 1.5; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }

/* Corps de l'article */
.prose-article { margin-top: 1.75rem; font-size: 1.0625rem; line-height: 1.75; }
.prose-article > * + * { margin-top: 1.25em; }
.prose-article h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-top: 2.25em; max-width: none; line-height: 1.1; }
.prose-article h3 { font-size: 1.25rem; margin-top: 1.75em; max-width: none; }
.prose-article strong { font-weight: 600; }
.prose-article a { text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: .2em; }
.prose-article a:hover { background: rgba(227, 185, 58, .3); }
.prose-article ul, .prose-article ol { padding-left: 1.4em; }
.prose-article li + li { margin-top: .4em; }
.prose-article blockquote { margin: 1.75em 0; padding: .25em 0 .25em 1.25em; border-left: 3px solid var(--accent); color: var(--ink-soft); font-size: 1.1rem; }
.prose-article hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }
.prose-article img { border-radius: var(--radius); }
.prose-article figure { margin: 2em 0; }
.prose-article figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: .6em; }
.prose-article em { color: var(--ink-soft); }

/* Encadré auteur */
.article__author { display: flex; gap: 1.25rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line); font-size: .95rem; line-height: 1.55; color: var(--ink-soft); }
.article__author img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; flex: none; }
.article__author-name { font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.article__author-link { display: inline-block; margin-top: .6rem; color: var(--ink); font-weight: 500; text-decoration: none; }
.article__author-link:hover { text-decoration: underline; text-underline-offset: .25em; }

/* Colonne latérale */
.side-card { background: #EAE4D3; border-radius: 16px; padding: 1.75rem; }
.side-card__title { font-family: var(--font-display); font-weight: 800; font-variation-settings: "wdth" 88; font-size: 1.4rem; line-height: 1.05; letter-spacing: -.02em; margin-top: .75rem; }
.side-card__text { margin-top: .75rem; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.side-card .btn--block { margin-top: 1.25rem; }
.side-card__link { display: block; margin-top: .9rem; text-align: center; font-size: .9rem; font-weight: 500; text-decoration: none; }
.side-card__link:hover { text-decoration: underline; text-underline-offset: .25em; }
.share { margin-top: 1.75rem; }
.share__label { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.share__links { display: flex; gap: .5rem; margin-top: .75rem; }
.share__links a, .share__links button {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: none; color: var(--ink); text-decoration: none;
  font: 600 .9rem/1 var(--font-text); cursor: pointer; transition: background .15s, color .15s;
}
.share__links a:hover, .share__links button:hover { background: var(--ink); color: var(--bg); }
.share__copy.is-copied { background: var(--accent); border-color: var(--accent); }

.related { margin-top: var(--section); padding-top: 3rem; border-top: 1px solid var(--line); }
.related .blog__grid { margin-top: 1.5rem; }

/* ============================================================
   PAGES LOCALES (une par ville)
   ============================================================ */
.locale { padding-bottom: var(--section); }
.locale__hero { padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem); }
.locale__title { margin-top: 1rem; max-width: 18ch; }
.locale__lead { margin-top: 1.5rem; max-width: 60ch; font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.5; }
.hero__actions--left { justify-content: flex-start; margin-top: 1.75rem; }
.locale__strip { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.locale__strip figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: #E2DCCB; }
.locale__strip figure:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.locale__strip img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 720px) {
  .locale__strip { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .locale__strip figure:first-child { grid-column: auto; aspect-ratio: 4 / 3; }
}
.locale .article__layout { margin-top: clamp(2.5rem, 5vw, 4rem); }
.locale .prose-article { margin-top: 0; }
.locale .prose-article h2:first-child { margin-top: 0; }
.locale .prose-article h3 { font-size: 1.1rem; margin-top: 1.5em; }
.side-list { margin-top: 1.75rem; }
.side-list ul { list-style: none; margin: .75rem 0 0; padding: 0; }
.side-list li + li { border-top: 1px solid var(--line); }
.side-list a { display: block; padding: .6rem 0; text-decoration: none; font-size: .95rem; font-weight: 500; }
.side-list a:hover { text-decoration: underline; text-underline-offset: .25em; }
.locale__cta {
  margin-top: var(--section); background: var(--accent); color: var(--accent-ink); border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 3rem); display: grid; gap: 1.5rem; align-items: center;
}
.locale__cta .eyebrow { color: rgba(20, 20, 18, .7); }
.locale__cta .eyebrow::before { background: var(--accent-ink); }
.locale__cta .h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.locale__cta p:not(.eyebrow) { margin-top: .75rem; max-width: 48ch; }
@media (min-width: 900px) { .locale__cta { grid-template-columns: 1fr auto; gap: 3rem; } }
.footer__villes { grid-column: 1 / -1; font-size: .85rem; color: rgba(243, 239, 228, .6); }
.footer__villes a { color: inherit; text-decoration: none; }
.footer__villes a:hover { color: var(--bg); text-decoration: underline; }
