/* ===========================================================
   Apaisé — Héloïse Gimbert, Avocate & Médiatrice
   Direction artistique : éditoriale, crème & encre chaude,
   accent bleu, titres géométriques très gras.
   =========================================================== */

:root {
  --cream:      #f7f6f1;
  --cream-2:    #fbfaf6;
  --paper:      #ffffff;
  --ink:        #1e1608;
  --ink-2:      #2c2413;
  --muted:      #6d6656;
  --line:       #e7e3d8;
  --line-soft:  #efece3;

  --blue:       #2568e8;
  --blue-ink:   #16204a;
  --blue-deep:  #0e1836;
  --gold:       #e8b23a;
  --gold-soft:  #f0cf86;
  --teal:       #2fb6ab;

  --grad:       linear-gradient(120deg, var(--gold) 0%, var(--blue) 62%, var(--blue-deep) 100%);
  --grad-soft:  linear-gradient(120deg, #f6ead0 0%, #e6effb 60%, #dde7fb 100%);

  --shadow-sm:  0 2px 14px rgba(30, 22, 8, .05);
  --shadow-md:  0 16px 40px rgba(30, 22, 8, .09);
  --shadow-lg:  0 30px 70px rgba(30, 22, 8, .14);

  --radius:     16px;
  --radius-lg:  26px;
  --maxw:       1160px;

  --sans:       'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display:    'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.68;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.14; letter-spacing: -.005em; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.9rem); font-weight: 500; }
h2 { font-size: clamp(1.95rem, 4vw, 3.1rem); }
h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: 0; }
p  { margin: 0 0 1em; }
a  { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--blue); color: var(--cream); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--blue); display: inline-block; }

.section { padding: 116px 0; }
.section--cream2 { background: var(--cream-2); }
.section__head { max-width: 720px; margin-bottom: 62px; }
.section__head.center { margin: 0 auto 62px; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__head p { color: var(--muted); font-size: 1.15rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .95em 1.9em; border-radius: 999px;
  font-weight: 600; font-size: .96rem; font-family: var(--sans);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s, color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: var(--cream); box-shadow: 0 10px 24px rgba(37,104,232,.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(37,104,232,.36); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { transform: translateY(-2px); background: #000; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: var(--cream); color: var(--blue-ink); }
.btn--light:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,246,241,.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { max-width: 1260px; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--sans); font-weight: 700; color: var(--ink); font-size: 1.3rem; letter-spacing: -.02em; }
.brand__logo { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.35rem; }
.brand small { display: block; font-family: var(--sans); font-size: .6rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: .9rem; position: relative; white-space: nowrap; }
.nav__links a:hover { color: var(--blue); }
.nav__links a.active { color: var(--blue); }
.nav__links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--blue); border-radius: 2px; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; padding: 92px 0 60px; }
.hero h1 { margin-bottom: .3em; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--blue); }
.hero__lead { font-size: 1.24rem; color: var(--muted); max-width: 30em; margin-top: 1.1em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__media { position: relative; }
.hero__photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero__stamp {
  position: absolute; left: -22px; bottom: 34px;
  background: var(--paper); border-radius: 16px; padding: 15px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px; max-width: 260px;
}
.hero__stamp .dot { width: 44px; height: 44px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 1.25rem; flex: none; }
.hero__stamp strong { display: block; font-family: var(--display); font-weight: 800; font-size: .96rem; color: var(--ink); line-height: 1.2; }
.hero__stamp span { font-size: .8rem; color: var(--muted); }

/* ---------- Chiffres / repères ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 26px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: 2.9rem; line-height: 1; letter-spacing: -.04em; color: var(--ink); }
.stat__num span { color: var(--blue); }
.stat__lbl { color: var(--muted); font-size: .92rem; margin-top: 10px; }

/* ---------- Valeurs ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; transition: transform .2s, box-shadow .2s; }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px; }
.value p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Split (médiation) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.list-check { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.list-check li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-2); }
.list-check li::before { content: "✓"; color: var(--cream); background: var(--teal); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; flex: none; margin-top: 4px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 42px; }
.card-aud { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.card-aud h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.card-aud p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Podcast ---------- */
.podcast { position: relative; overflow: hidden; background: var(--blue-deep); color: var(--cream); }
.podcast::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 12% 15%, rgba(232,178,58,.20), transparent 42%), radial-gradient(circle at 90% 88%, rgba(47,182,171,.18), transparent 46%); }
.podcast .wrap { position: relative; }
.podcast h2, .podcast h3 { color: var(--cream); }
.podcast .section__head p { color: rgba(247,246,241,.72); }
.podcast .eyebrow { color: var(--gold-soft); }
.podcast .eyebrow::before { background: var(--gold); }
.podcast__intro { display: grid; grid-template-columns: .95fr 1.35fr; gap: 52px; align-items: center; margin-bottom: 60px; }
.podcast__cover { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.podcast__intro h3 { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.25; }
.platforms { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.platform { display: inline-flex; align-items: center; gap: .5em; background: rgba(247,246,241,.08); border: 1px solid rgba(247,246,241,.18); color: var(--cream); padding: .62em 1.15em; border-radius: 999px; font-size: .9rem; font-weight: 500; transition: background .2s, transform .2s; }
.platform:hover { background: rgba(247,246,241,.18); transform: translateY(-2px); }
.episodes { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.ep { background: rgba(247,246,241,.05); border: 1px solid rgba(247,246,241,.12); border-radius: var(--radius); padding: 28px; transition: transform .2s, background .2s; }
.ep:hover { transform: translateY(-4px); background: rgba(247,246,241,.09); }
.ep__num { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.ep h3 { font-size: 1.2rem; margin: 10px 0 6px; }
.ep__guest { color: var(--teal); font-weight: 500; font-size: .9rem; margin-bottom: 12px; }
.ep p { color: rgba(247,246,241,.68); font-size: .92rem; margin: 0 0 18px; }
.ep__link { color: var(--cream); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.ep__link:hover { color: var(--gold-soft); }

/* ---------- Formations ---------- */
.trainings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.training { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.training:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.training::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.training__tag { font-size: .72rem; font-weight: 600; color: var(--blue); letter-spacing: .1em; text-transform: uppercase; }
.training h3 { margin: 12px 0 10px; font-size: 1.35rem; }
.training p { color: var(--muted); font-size: .95rem; }
.training ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.training ul li { font-size: .92rem; color: var(--ink-2); padding-left: 22px; position: relative; }
.training ul li::before { content: "→"; position: absolute; left: 0; color: var(--blue); }
.formats { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 48px; }
.format-chip { background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: .62em 1.35em; font-size: .9rem; font-weight: 500; }

/* ---------- Newsletter ---------- */
.newsletter__card { background: var(--ink); border-radius: var(--radius-lg); padding: 66px; color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.newsletter__card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 15% 120%, rgba(37,104,232,.28), transparent 42%), radial-gradient(circle at 88% -10%, rgba(232,178,58,.18), transparent 40%); }
.newsletter__card > * { position: relative; }
.newsletter h2 { color: var(--cream); }
.newsletter .eyebrow { color: var(--gold-soft); justify-content: center; }
.newsletter .eyebrow::before { background: var(--gold); }
.newsletter p { color: rgba(247,246,241,.82); max-width: 36em; margin: 0 auto 30px; font-size: 1.08rem; }
.nl-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nl-form input { flex: 1 1 260px; padding: 1em 1.3em; border-radius: 999px; border: 0; font-family: inherit; font-size: 1rem; color: var(--ink); }
.nl-form input:focus { outline: 3px solid rgba(37,104,232,.5); }
.nl-note { font-size: .8rem; color: rgba(247,246,241,.6); margin-top: 18px; }
.nl-success { margin-top: 18px; font-weight: 600; display: none; color: var(--gold-soft); }
.nl-success.show { display: block; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact__methods { display: grid; gap: 18px; margin-top: 30px; }
.contact__method { display: flex; align-items: center; gap: 15px; }
.contact__method .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.25rem; flex: none; }
.contact__method a { color: var(--ink); font-weight: 600; }
.contact__method span { display: block; font-size: .82rem; color: var(--muted); font-weight: 400; }
.cform { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); display: grid; gap: 16px; }
.cform label { font-size: .82rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 6px; letter-spacing: .01em; }
.cform input, .cform textarea { width: 100%; padding: .85em 1.05em; border: 1px solid var(--line); border-radius: 12px; font-family: inherit; font-size: .96rem; background: var(--cream-2); color: var(--ink); }
.cform input:focus, .cform textarea:focus { outline: 2px solid var(--blue); background: var(--paper); }
.cform textarea { min-height: 120px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,246,241,.66); padding: 66px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.site-footer h4 { color: var(--cream); font-size: .95rem; margin: 0 0 15px; font-family: var(--display); }
.site-footer a { color: rgba(247,246,241,.66); display: block; padding: 4px 0; font-size: .93rem; }
.site-footer a:hover { color: var(--cream); }
.footer__brand { display: flex; align-items: center; gap: .6rem; color: var(--cream); font-family: var(--sans); font-weight: 700; font-size: 1.25rem; margin-bottom: 14px; }
.site-footer h4, .f-card__num, .f-card__obj h4 { font-family: var(--sans); }
.footer__socials { display: flex; gap: 12px; margin-top: 18px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(247,246,241,.08); display: grid; place-items: center; padding: 0; font-weight: 700; }
.footer__socials a:hover { background: var(--blue); color: var(--cream); }
.footer__bottom { border-top: 1px solid rgba(247,246,241,.14); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner, .split, .contact, .podcast__intro { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 360px; margin: 0 auto; }
  .values, .trainings, .cards-2 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; border-top: 1px solid var(--line); padding: 30px 0; }
  .stat:nth-child(odd) { padding-right: 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__links { position: fixed; inset: 78px 0 auto 0; background: var(--cream); flex-direction: column; padding: 20px 26px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .3s; }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 12px 0; width: 100%; }
  .nav__toggle { display: block; }
  .nav__cta .btn--ghost, .nav__cta .btn--outline { display: none; }
  .section { padding: 80px 0; }
  .newsletter__card { padding: 44px 26px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .trainings, .stats__grid { grid-template-columns: 1fr; }
  .stat { padding: 24px 0; }
  .hero__stamp { display: none; }
  .newsletter__card { padding: 36px 22px; }
}

/* ===========================================================
   COMPOSANTS MULTI-PAGES
   =========================================================== */

/* ---------- En-tête de page (pages internes) ---------- */
.page-hero { padding: 76px 0 20px; }
.page-hero__inner { max-width: 780px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin-bottom: .25em; }
.page-hero p { font-size: 1.2rem; color: var(--muted); max-width: 34em; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 20px; letter-spacing: .02em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }

/* ---------- Grille d'exemples de médiation ---------- */
.examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.example {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .2s, box-shadow .2s; position: relative;
}
.example:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.example__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }
.example h3 { font-size: 1.18rem; margin-bottom: 8px; }
.example p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- Types de médiation ---------- */
.types { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.type {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; position: relative; overflow: hidden;
}
.type::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.type h3 { font-size: 1.35rem; margin-bottom: 12px; }
.type p { color: var(--muted); font-size: .96rem; margin: 0; }
.type__tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }

/* ---------- Étapes du processus ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step__n { font-family: var(--display); font-weight: 800; font-size: 2.4rem; letter-spacing: -.04em; color: var(--blue); line-height: 1; }
.step h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Bandeau CTA rendez-vous ---------- */
.cta-band { background: var(--ink); color: var(--cream); border-radius: var(--radius-lg); padding: 58px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 15% 120%, rgba(37,104,232,.28), transparent 42%), radial-gradient(circle at 88% -10%, rgba(232,178,58,.18), transparent 40%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(247,246,241,.82); max-width: 34em; margin: 0 auto 28px; }

/* ---------- Fiches formation détaillées ---------- */
.f-list { display: grid; gap: 26px; }
.f-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start;
  transition: box-shadow .2s;
}
.f-card:hover { box-shadow: var(--shadow-md); }
.f-card__num { font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--blue); letter-spacing: .1em; }
.f-card h3 { font-size: 1.7rem; margin: 6px 0 12px; }
.f-card__desc { color: var(--muted); font-size: 1rem; }
.f-card__obj { margin-top: 20px; }
.f-card__obj h4 { font-family: var(--display); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
.f-card__obj ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.f-card__obj li { font-size: .94rem; color: var(--ink-2); padding-left: 24px; position: relative; }
.f-card__obj li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.f-card__side { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.f-meta { display: grid; gap: 14px; margin-bottom: 22px; }
.f-meta__row { display: flex; align-items: flex-start; gap: 12px; }
.f-meta__row .ic { font-size: 1.15rem; flex: none; }
.f-meta__row strong { display: block; font-size: .9rem; color: var(--ink); }
.f-meta__row span { font-size: .86rem; color: var(--muted); }
.f-card__side .btn { width: 100%; justify-content: center; }

/* ---------- Calendly ---------- */
.cal-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.cal-placeholder { text-align: center; padding: 56px 30px; }
.cal-placeholder__ic { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.cal-placeholder h3 { margin-bottom: 10px; }
.cal-placeholder p { color: var(--muted); max-width: 30em; margin: 0 auto 22px; }

/* ---------- Bloc newsletter (page dédiée) ---------- */
.nl-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.nl-benefit { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.nl-benefit .ic { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.nl-benefit h3 { font-size: 1.12rem; margin-bottom: 8px; }
.nl-benefit p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- Aperçus page d'accueil ---------- */
.preview-podcast { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.preview-podcast .ep { min-height: 0; }

@media (max-width: 940px) {
  .examples, .steps, .nl-benefits { grid-template-columns: 1fr 1fr; }
  .types, .preview-podcast { grid-template-columns: 1fr; }
  .f-card { grid-template-columns: 1fr; gap: 26px; padding: 30px; }
  .cta-band { padding: 40px 26px; }
}
@media (max-width: 560px) {
  .examples, .steps, .nl-benefits { grid-template-columns: 1fr; }
  .nav__podcast { display: none; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 26px 44px 26px 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: 1.22rem; color: var(--ink);
  letter-spacing: -.005em; transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 400; font-size: 1.7rem; color: var(--blue); transition: transform .25s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item__body { padding: 0 44px 28px 0; color: var(--muted); font-size: 1.02rem; }
.faq-item__body p { margin: 0 0 .8em; }
.faq-item__body a { font-weight: 600; }
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }

/* ---------- Cabinet / carte ---------- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }
.address-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.address-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.address-card address { font-style: normal; color: var(--ink-2); font-size: 1.05rem; line-height: 1.7; }
.zone-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
