/* ==========================================================================
   Thomas Pellet, photographe mariage Lyon
   Largeurs, typographie et rythme vertical fluides.
   ========================================================================== */

:root {
  /* Coquille et gouttière */
  --shell: 1720px;
  --gutter: clamp(20px, 6vw, 112px);

  /* Échelle typographique fluide */
  --t-15: clamp(14.5px, .13vw + 13.7px, 16.5px);
  --t-16: clamp(15px, .17vw + 14.1px, 17.5px);
  --t-17: clamp(16px, .2vw + 15.1px, 19px);
  --t-18: clamp(16.5px, .24vw + 15.6px, 20px);
  --t-19: clamp(17px, .3vw + 15.9px, 21.5px);
  --t-20: clamp(18px, .32vw + 16.9px, 22.5px);
  --t-22: clamp(19px, .4vw + 17.5px, 25px);
  --t-23: clamp(19.5px, .44vw + 17.8px, 26px);
  --t-25: clamp(21px, .5vw + 19.1px, 28px);
  --t-26: clamp(21.5px, .55vw + 19.4px, 29.5px);

  /* Rythme vertical */
  --rythme: clamp(56px, 5.4vw, 120px);

  /* Couleurs */
  --cream: #FBF8F1;
  --sand: #F4EBDC;
  --card: #FEFDF9;
  --ink: #1B1A16;
  --corps: #4A443C;
  --muted: #645D52;
  --muted-sombre: #A79E90;
  --gold: #B18C4E;
  --gold-light: #E7CD9C;
  --line: #E9E1D3;
  --line-strong: #DCD2C0;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', system-ui, sans-serif;
  font-size: var(--t-16);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
p { text-wrap: pretty; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: #8E6E37; text-decoration: underline; }

.saut {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
}
.saut:focus { left: 0; text-decoration: none; }

/* ------------------------------------------------- Coquille et sections - */

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.sec { padding-block: var(--rythme); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  align-items: stretch;
  gap: clamp(28px, 3.2vw, 64px);
}
.split > * { min-width: 0; }

.pad { display: flex; flex-direction: column; justify-content: center; }

.stack {
  display: grid;
  gap: clamp(16px, 1.6vw, 26px);
  align-content: stretch;
  grid-auto-rows: 1fr;
  align-self: stretch;
}
.stack img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 17vw, 340px);
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.portrait {
  position: relative;
  min-height: clamp(340px, 32vw, 680px);
  border-radius: 10px;
  overflow: hidden;
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  display: block;
}

.sec-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}

/* ------------------------------------------------------------- Bandeau -- */

.bandeau {
  background: var(--ink);
  color: #D9D3C7;
  font-size: 13px;
  font-weight: 300;
}
.bandeau__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 20px;
  padding-block: 9px;
}
.bandeau p { margin: 0; }
.bandeau__nom { color: #fff; font-weight: 400; grid-column: 1; grid-row: 1; }
.bandeau__item { display: inline-flex; align-items: center; gap: 7px; }
.bandeau__adresse { grid-column: 1 / -1; grid-row: 2; }
.bandeau__tel { color: var(--gold-light); justify-self: end; grid-column: 2; grid-row: 1; }
.bandeau__tel:hover { color: #fff; text-decoration: none; }
.bandeau svg { flex: 0 0 auto; }

@media (min-width: 760px) {
  .bandeau__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 28px;
  }
  .bandeau__nom { grid-column: 1; grid-row: 1; }
  .bandeau__adresse { grid-column: 2; grid-row: 1; justify-self: center; }
  .bandeau__tel { grid-column: 3; grid-row: 1; }
}

/* -------------------------------------------------------------- Header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 40px);
  padding-block: 15px;
}
.marque {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-20);
  color: var(--ink);
  white-space: nowrap;
}
.marque:hover { color: var(--ink); text-decoration: none; }
.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.6vw, 30px);
  justify-content: flex-end;
  min-width: 0;
}
.nav a:not(.btn) { font-size: var(--t-15); color: var(--corps); white-space: nowrap; }
.nav a:not(.btn):hover { color: var(--ink); }
.nav .btn { white-space: nowrap; }

/* ---------------------------------------------------------------- Typo -- */

.eyebrow {
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow--hero { margin-bottom: 22px; }
.eyebrow--tight { margin-bottom: 16px; }

.h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(38px, 4.2vw, 80px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 24px;
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(29px, 2.6vw, 50px);
  line-height: 1.15;
  margin: 0;
}
.h1 em, .h2 em { font-style: italic; color: var(--gold); }
.h2 em.light { color: var(--gold-light); }

.lead {
  font-size: var(--t-16);
  line-height: 1.75;
  color: var(--corps);
  font-weight: 300;
  margin: 0;
}
.lead strong { font-weight: 500; color: var(--ink); }

.hint { font-size: 12.5px; color: var(--muted); font-weight: 300; }
.small { font-size: 13px; color: var(--muted); font-weight: 300; }

/* ------------------------------------------------------------- Boutons -- */

.btn {
  display: inline-block;
  border-radius: 999px;
  font-size: var(--t-15);
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}
.btn:hover { text-decoration: none; }

a.btn--dark, .btn--dark { background: var(--ink); color: #fff; padding: 16px 30px; }
a.btn--dark:hover, .btn--dark:hover { background: #000; color: #fff; }

.btn--sm { padding: 13px 26px; }

a.btn--outline, .btn--outline { border-color: var(--line-strong); color: var(--ink); padding: 15px 26px; }
a.btn--outline:hover, .btn--outline:hover { border-color: var(--gold); color: var(--ink); }

a.btn--outline-dark, .btn--outline-dark { border-color: #3A382F; color: #fff; padding: 15px 26px; }
a.btn--outline-dark:hover, .btn--outline-dark:hover { border-color: var(--gold); color: #fff; }

a.btn--gold, .btn--gold { background: var(--gold-light); color: var(--ink); padding: 16px 30px; }
a.btn--gold:hover, .btn--gold:hover { background: #F2DDB8; color: var(--ink); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}
.cta-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.pill {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: 999px;
  display: inline-block;
}
.pill:hover { border-color: var(--gold); color: var(--ink); text-decoration: none; }

.badge {
  background: var(--ink);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 13px;
  white-space: nowrap;
}

/* --------------------------------------------------------------- Listes - */

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.checks li { display: flex; gap: 14px; align-items: baseline; }
.checks .tick { color: var(--gold); font-size: 13px; font-style: normal; }
.checks .txt { font-size: var(--t-16); line-height: 1.7; color: var(--corps); font-weight: 300; }
.checks .txt strong { font-weight: 500; color: var(--ink); }

/* ----------------------------------------------------------- Citations -- */

.pull { border-left: 2px solid var(--gold); padding: 6px 0 6px 22px; }
.pull-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.pull-note {
  font-size: var(--t-16);
  line-height: 1.75;
  color: var(--corps);
  font-weight: 300;
  margin: 0;
}
.pull-note strong { font-weight: 500; color: var(--ink); }
.pull-sign {
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 16px 0 0;
}

/* ------------------------------------------------------------ Sur fond -- */

.sec--dark { background: var(--ink); color: var(--cream); }
.sec--dark .lead { color: #CFC9BE; }
.sec--dark .lead strong { color: #fff; }
.sec--dark .pull-quote { color: #fff; line-height: 1.65; }
.sec--dark .pull-quote strong { font-weight: 500; }
.sec--dark .small { color: #A9A296; }
.sec--dark .checks .txt { color: #CFC9BE; }
.sec--dark .checks .txt strong { color: #fff; }
.sec--dark .pull-label { color: var(--gold-light); }

.cadre-tarifs {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: clamp(300px, 30vw, 640px);
  border-radius: 10px;
  overflow: hidden;
}
.cadre-tarifs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 62%;
  display: block;
}

.note {
  background: var(--ink);
  color: var(--cream);
  border-radius: 10px;
  padding: clamp(22px, 2vw, 34px);
}
.note-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 12px;
}
.note p { font-size: var(--t-15); line-height: 1.75; color: #CFC9BE; font-weight: 300; margin: 0; }
.note strong { font-weight: 500; color: #fff; }

/* ------------------------------------------------------------- Galerie -- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: clamp(16px, 1.6vw, 26px);
  margin-top: 32px;
}
.gallery-col { display: flex; flex-direction: column; gap: clamp(16px, 1.6vw, 26px); }

.zoom {
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 10px;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
}
.zoom img { width: 100%; display: block; transition: opacity .5s ease; }
.zoom:hover img { opacity: .88; }
.zoom:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ------------------------------------------------------------ Formules -- */

.offers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.offer {
  border-radius: 10px;
  padding: clamp(24px, 2vw, 36px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
}
.offer--dark { background: #21201B; border: 1px solid #302E27; }
.offer--light { background: #fff; color: var(--ink); }
.offer-num { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--gold); }
.offer-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.offer h3 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: var(--t-23); margin: 0; }
.offer-price { font-family: 'Playfair Display', serif; font-size: var(--t-20); color: var(--gold-light); }
.offer--light .offer-price { font-size: var(--t-26); color: var(--ink); }
.offer p { font-size: var(--t-15); line-height: 1.7; font-weight: 300; margin: 0; color: #CFC9BE; }
.offer p strong { font-weight: 500; color: #fff; }
.offer--light p { color: var(--corps); }
.offer--light p strong { color: var(--ink); }

/* -------------------------------------------------------------- Étapes -- */

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--gold); }
.step p { margin: 0; font-size: var(--t-16); line-height: 1.7; color: var(--corps); font-weight: 300; }
.step strong { font-weight: 500; color: var(--ink); }

/* --------------------------------------------------------------- Zones -- */

.zones { display: flex; flex-direction: column; }
.zone {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line-strong);
  align-items: baseline;
}
.zone:last-child { border-bottom: 1px solid var(--line-strong); }
.zone h3 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: var(--t-19); margin: 0; }
.zone p { margin: 0; font-size: var(--t-15); line-height: 1.7; color: var(--corps); font-weight: 300; }
.zone strong { font-weight: 500; color: var(--ink); }

/* -------------------------------------------------------- Témoignages -- */

.avis-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.avis-nav { display: flex; gap: 10px; }
.avis-nav button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
}
.avis-nav button:hover { border-color: var(--gold); background: var(--card); }

.rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  min-width: 0;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }

.tcard {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: min(320px, 100%);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid #EBE3D5;
  border-radius: 10px;
  padding: clamp(24px, 2vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stars { color: var(--gold); font-size: 13px; letter-spacing: .3em; }
.tcard p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--t-17);
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.tcard footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #EBE3D5;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
.tcard footer strong { font-weight: 500; color: var(--ink); }

/* ----------------------------------------------------------------- FAQ -- */

.faq details { border-top: 1px solid var(--line-strong); }
.faq details:last-of-type { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
  outline: none;
  border: 0;
  box-shadow: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.4;
  color: var(--ink);
}
.plus { color: var(--gold); font-size: 20px; transition: transform .25s; line-height: 1; }
details[open] .plus { transform: rotate(45deg); }
.faq p {
  font-size: var(--t-16);
  line-height: 1.75;
  color: var(--corps);
  font-weight: 300;
  margin: 0 0 24px;
}
.faq p strong { font-weight: 500; color: var(--ink); }

/* ------------------------------------------------------------- Contact -- */

.facts { margin-top: 32px; border-top: 1px solid #302E27; }
.fact {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #302E27;
}
.fact-key {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-sombre);
}
.fact-val { font-size: 14px; font-weight: 300; text-align: right; }
.fact-val--serif { font-family: 'Playfair Display', serif; font-size: var(--t-16); }

.formbox {
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: clamp(28px, 2.4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.formbox h3 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: var(--t-25); margin: 0 0 8px; color: var(--ink); }
.formbox .form-intro { font-size: 13.5px; color: var(--muted); font-weight: 300; margin: 0 0 26px; }

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form label { display: flex; flex-direction: column; gap: 8px; }
.form label > span {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input, .form textarea, .form select {
  background: var(--cream);
  border: 1px solid #8F856F;
  border-radius: 5px;
  color: var(--ink);
  font-size: 14px;
  padding: 13px 14px;
  font-family: 'Jost', system-ui, sans-serif;
  width: 100%;
}
.form textarea { resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: var(--muted); }
.form input:focus, .form textarea:focus, .form select:focus { outline: 1px solid var(--gold); border-color: var(--gold); }
.form .full { grid-column: 1 / -1; }
.form button { grid-column: 1 / -1; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 400;
  margin: 18px 0 0;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.form-legal { font-size: 12px; color: var(--muted); font-weight: 300; margin: 18px 0 0; line-height: 1.7; }

/* --------------------------------------------------------- Pied de page - */

.site-footer {
  background: #141310;
  color: #A9A296;
  padding-block: clamp(48px, 4.6vw, 104px) clamp(32px, 3vw, 56px);
}
.pied__grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(28px, 2.6vw, 48px);
}
.pied__marque { font-family: 'Playfair Display', serif; font-size: var(--t-22); color: #fff; margin-bottom: 14px; }
.site-footer p { margin: 0; font-size: 14px; line-height: 1.8; font-weight: 300; }
.pied__titre {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.pied__liens { display: flex; flex-direction: column; gap: 10px; font-size: 14px; font-weight: 300; }
.site-footer a { color: #A9A296; }
.site-footer a:hover { color: var(--gold-light); }

.pied__carte { margin-top: clamp(32px, 3vw, 56px); }
.pied__carte iframe {
  width: 100%;
  height: clamp(220px, 22vw, 380px);
  border: 0;
  border-radius: 10px;
  display: block;
  filter: grayscale(.25);
}
.pied__fiche { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13.5px; font-weight: 300; }

.pied__eco {
  margin-top: clamp(28px, 2.6vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  border: 1px solid #26241F;
  border-radius: 10px;
  padding: 16px 20px;
}
.pied__eco-chiffre {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-19);
  color: var(--gold-light);
  white-space: nowrap;
}
.pied__eco-texte { font-size: 13px; font-weight: 300; line-height: 1.6; }

.pied__bas {
  margin-top: clamp(28px, 2.6vw, 48px);
  padding-top: 22px;
  border-top: 1px solid #26241F;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted-sombre);
}
.pied__bas p { font-size: 12.5px; }
.pied__bas nav { display: flex; flex-wrap: wrap; gap: 12px 24px; }

/* ----------------------------------------------------------- Visionneuse */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 19, 16, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1400px, 90vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox button {
  position: absolute;
  border-radius: 999px;
  border: 1px solid #3A382F;
  color: #fff;
  cursor: pointer;
}
.lb-close { top: 20px; right: 24px; width: 44px; height: 44px; background: transparent; font-size: 18px; }
.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(20, 19, 16, .6);
  font-size: 20px;
}
.lb-prev { left: clamp(12px, 3vw, 32px); }
.lb-next { right: clamp(12px, 3vw, 32px); }
.lightbox button:hover { border-color: var(--gold); }

/* ------------------------------------------------------ Pages internes -- */

.gabarit { padding-block: clamp(40px, 3.4vw, 72px) clamp(56px, 5vw, 112px); }
.gabarit__corps { max-width: 78ch; }
.gabarit h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(30px, 2.8vw, 52px);
  line-height: 1.12;
  margin: 0 0 28px;
}
.gabarit h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(22px, 1.7vw, 32px);
  line-height: 1.2;
  margin: 40px 0 14px;
}
.gabarit p, .gabarit li {
  font-size: var(--t-16);
  line-height: 1.8;
  color: var(--corps);
  font-weight: 300;
}
.gabarit ul { padding-left: 20px; }
.gabarit li { margin-bottom: 8px; }
.fil {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin: 0 0 26px;
}
.fil a { color: var(--muted); }
.fil a:hover { color: var(--gold); }

/* ------------------------------------------------------------ Utilitaires
   Placés après les composants : à spécificité égale, l'ordre du fichier
   gagne, et .lead ou .checks remettraient sinon la marge à zéro.
   ------------------------------------------------------------------------ */

.mb-20 { margin-bottom: 20px; }
.mb-22 { margin-bottom: 22px; }
.mb-24 { margin-bottom: 24px; }
.mb-26 { margin-bottom: 26px; }
.mb-28 { margin-bottom: 28px; }
.mb-30 { margin-bottom: 30px; }
.mb-32 { margin-bottom: 32px; }
.max-24 { max-width: 24ch; }
.max-28 { max-width: 28ch; }
.max-60 { max-width: 60ch; }

/* ==========================================================================
   Surcharges responsive, toujours en dernier
   ========================================================================== */

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split > .media { order: -1; }
  .nav {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav::-webkit-scrollbar { display: none; }
}

@media (max-width: 560px) {
  .form { grid-template-columns: 1fr; }
  .zone { grid-template-columns: 1fr; gap: 6px; }
  .fact { flex-direction: column; gap: 6px; }
  .fact-val { text-align: left; }
  .pied__bas { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rail { scroll-behavior: auto; }
  .zoom img, .plus { transition: none; }
}
