/* Légère Plume — feuille de style unique. Aucune ressource externe. */

:root {
  --bg:        #FAF7F2;
  --bg-warm:   #F3EADF;
  --surface:   #FFFFFF;
  --ink:       #2B2724;
  --ink-soft:  #574F47;
  --muted:     #7A7167;
  --accent:    #99756A;
  --accent-dk: #77574B;
  --accent-lt: #F0E7E0;
  --sand:      #C0894A;
  --sand-lt:   #F7EEDF;
  --line:      #E9DFD1;
  --shadow:    0 1px 2px rgba(43,39,36,.04), 0 8px 24px rgba(43,39,36,.06);
  --shadow-lg: 0 2px 4px rgba(43,39,36,.05), 0 18px 48px rgba(43,39,36,.10);
  --radius:    16px;
  --maxw:      1120px;
  --serif:     Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  --sans:      system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.22; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.6vw, 2.15rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 1.02rem + .6vw, 1.4rem); }
p  { margin: 0 0 1.1em; }
a  { color: var(--accent-dk); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent-dk); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.narrow { max-width: 760px; }

/* ---------- En-tête ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__in { display: flex; align-items: center; gap: 1rem; min-height: 120px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand__mark { width: 42px; height: 42px; flex: none; color: var(--accent); }
.brand__name { font-family: var(--serif); font-size: 1.72rem; line-height: 1; letter-spacing: .01em; color: var(--accent-dk); }
.brand__sub { display: block; font-family: var(--sans); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: .34rem; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  color: var(--ink-soft); text-decoration: none; font-size: .9rem; white-space: nowrap;
  padding: .5rem .55rem; border-radius: 9px;
}
.nav a:hover { background: var(--accent-lt); color: var(--accent-dk); }
.nav a[aria-current="page"] { color: var(--accent-dk); background: var(--accent-lt); }

.navtoggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: .5rem .7rem; cursor: pointer; font: inherit; color: var(--ink); }

@media (max-width: 1300px) {
  .navtoggle { display: inline-flex; align-items: center; gap: .45rem; }
  .nav {
    position: absolute; inset: 120px 0 auto; display: none; flex-direction: column; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: .6rem 20px 1.1rem; gap: 0;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .6rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a:last-child { border-bottom: 0; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  white-space: nowrap;
  font: inherit; font-size: .97rem; line-height: 1;
  padding: .85rem 1.3rem; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent-dk); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--accent-dk); border-color: var(--line); }
.btn--ghost:hover { background: var(--accent-lt); }
.btn--wa { background: var(--accent); color: #fff; }
.btn--wa:hover { background: var(--accent-dk); color: #fff; }
.btn__i { flex: none; }
.trust li svg, .infolist svg { flex: none; }

/* ---------- Héros ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(170deg, var(--bg-warm) 0%, var(--bg) 62%); }
.hero::after {
  content: ""; position: absolute; inset: auto -12% -45% auto; width: 620px; height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(192,137,74,.14), rgba(192,137,74,0) 68%);
  pointer-events: none;
}
.hero__in { position: relative; padding: clamp(3rem, 2rem + 6vw, 6.5rem) 0 clamp(2.5rem, 2rem + 4vw, 4.5rem); }
.hero__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: clamp(2rem,4vw,4rem); align-items: center; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .hero__art { order: -1; max-width: 150px; margin-inline: auto; }
  .hero__in { padding-top: 2rem; }
}
@media (max-width: 420px) {
  .brand__sub { display: none; }
  .brand__name { font-size: 1.42rem; }
}
.hero p.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--ink-soft); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.hero__art { color: var(--accent); opacity: .9; }
.eyebrow { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-dk); margin: 0 0 .9rem; font-weight: 600; }

/* ---------- Bandeau de confiance ---------- */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust ul { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem 2.2rem; margin: 0; padding: 1rem 0; justify-content: center; }
.trust li { display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--ink-soft); }
.trust li svg { color: var(--accent); }
.stars { color: var(--sand); letter-spacing: .08em; }

/* ---------- Sections ---------- */
section { padding: clamp(2.8rem, 2rem + 4vw, 5rem) 0; }
.section__head { max-width: 62ch; margin-bottom: 2.2rem; }
.section__head p { color: var(--muted); margin-bottom: 0; }
.tint { background: var(--surface); border-block: 1px solid var(--line); }
.tint--warm { background: var(--sand-lt); border-block: 1px solid var(--line); }

/* ---------- Cartes de prestation ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.4rem; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #D9D0C2; }
.card__i { width: 42px; height: 42px; color: var(--accent); margin-bottom: 1rem; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.card__price { font-size: .88rem; color: var(--sand); font-weight: 600; margin: .2rem 0 1rem; }
.card__link { font-size: .94rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.card__link::after { content: "→"; transition: transform .15s ease; }
.card:hover .card__link::after { transform: translateX(3px); }

/* ---------- Listes de raisons ---------- */
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 1rem; list-style: none; padding: 0; margin: 0; }
.reasons li { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.2rem; font-size: .96rem; color: var(--ink-soft); }
.reasons strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.05rem; font-weight: 400; margin-bottom: .25rem; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 2rem; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .45rem; }
.prose ul li::marker { color: var(--accent); }
.lead { font-size: 1.1rem; color: var(--ink-soft); }

.note {
  background: var(--accent-lt); border-left: 3px solid var(--accent);
  padding: 1rem 1.2rem; border-radius: 0 12px 12px 0; margin: 1.6rem 0; font-size: .95rem; color: var(--ink-soft);
}
.note p:last-child { margin-bottom: 0; }

.quote {
  font-family: var(--serif); font-size: clamp(1.15rem,1.05rem + .6vw,1.5rem); line-height: 1.5;
  color: var(--accent-dk); border-left: 3px solid var(--sand); padding-left: 1.4rem; margin: 2.2rem 0; font-style: italic;
}
.quote cite { display: block; font-size: .85rem; font-style: normal; color: var(--muted); margin-top: .7rem; font-family: var(--sans); }

/* ---------- Tarifs ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
table { border-collapse: collapse; width: 100%; font-size: .96rem; }
th, td { text-align: left; padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--serif); font-weight: 400; font-size: 1rem; background: var(--bg-warm); }
tr:last-child td { border-bottom: 0; }
td strong { color: var(--accent-dk); }

/* ---------- Avis ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.2rem; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.review__stars { color: var(--sand); font-size: .95rem; letter-spacing: .1em; }
.review p { font-size: .95rem; color: var(--ink-soft); margin: .6rem 0 .9rem; }
.review__who { font-size: .86rem; color: var(--muted); }
.review__who b { color: var(--ink); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 1.1rem 2rem 1.1rem 0; position: relative; list-style: none;
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 1.4rem; line-height: 1; font-family: var(--sans);
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 1.2rem; color: var(--ink-soft); font-size: .97rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Appel à l'action ---------- */
.cta { background: linear-gradient(160deg, var(--accent-dk), var(--accent)); color: #fff; text-align: center; }
.cta h2, .cta p { color: #fff; }
.cta p { color: rgba(255,255,255,.88); max-width: 52ch; margin-inline: auto; }
.cta .btn--primary { background: #fff; color: var(--accent-dk); }
.cta .btn--primary:hover { background: var(--bg-warm); color: var(--accent-dk); }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.cta .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.cta__row { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.6rem; }

/* ---------- Coordonnées / contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.6rem; align-items: start; }
.infocard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.infolist { list-style: none; margin: 0; padding: 0; }
.infolist li { display: flex; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.infolist li:last-child { border-bottom: 0; }
.infolist svg { color: var(--accent); margin-top: .25rem; }
.infolist a { font-weight: 600; text-decoration: none; }
.infolist a:hover { text-decoration: underline; }
.map { border: 0; width: 100%; height: 340px; border-radius: var(--radius); display: block; }

form label { display: block; font-size: .9rem; font-weight: 600; color: var(--ink-soft); margin: 1rem 0 .35rem; }
form input, form select, form textarea {
  width: 100%; font: inherit; font-size: .97rem; padding: .75rem .9rem;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink);
}
form input:focus, form select:focus, form textarea:focus { border-color: var(--accent); background: #fff; }
form textarea { min-height: 140px; resize: vertical; }
.consent { display: flex; gap: .65rem; align-items: flex-start; margin: 1.3rem 0; font-size: .89rem; color: var(--ink-soft); }
.consent input { width: auto; margin-top: .25rem; flex: none; }

/* ---------- Fil d'Ariane ---------- */
.crumbs { font-size: .85rem; color: var(--muted); padding-top: 1.4rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-dk); text-decoration: underline; }
.crumbs span { margin: 0 .4rem; opacity: .6; }

/* ---------- Pied de page ---------- */
.footer { background: var(--ink); color: #CFC7BC; padding: 3.2rem 0 6.5rem; font-size: .92rem; }
.footer a { color: #E8E1D7; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 2rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .5rem; }
.footer__brand { display: inline-flex; align-items: center; gap: .6rem; color: #fff; margin-bottom: .9rem; }
.footer__brand svg { width: 30px; height: 30px; color: var(--sand); }
.footer__legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; font-size: .84rem; color: #9C948A; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.disclaimer { font-size: .84rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1.2rem; margin-top: 2.5rem; }

/* ---------- Barre d'appel mobile ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  gap: .6rem; padding: .6rem 14px calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(250,247,242,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
}
.callbar .btn { flex: 1; padding: .8rem 1rem; }
@media (max-width: 760px) { .callbar { display: flex; } body { padding-bottom: 68px; } }

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

/* ---------- Thème sombre ---------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1A1815; --bg-warm: #221F1B; --surface: #232019; --ink: #F0EAE1; --ink-soft: #CFC6B9;
    --muted: #A79A8D; --accent: #C6A093; --accent-dk: #DBB6A6; --accent-lt: #332822;
    --sand: #D8AC6E; --sand-lt: #262019; --line: #3B342C;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.28);
    --shadow-lg: 0 2px 4px rgba(0,0,0,.34), 0 18px 48px rgba(0,0,0,.4);
  }
  :root:not([data-theme="light"]) .topbar { background: rgba(26,24,21,.92); }
  :root:not([data-theme="light"]) .callbar { background: rgba(26,24,21,.96); }
  :root:not([data-theme="light"]) .btn--primary { background: var(--accent); color: #241C17; }
  :root:not([data-theme="light"]) .btn--primary:hover { background: var(--accent-dk); color: #241C17; }
  :root:not([data-theme="light"]) .cta { background: linear-gradient(160deg, #4C3A31, #63483C); }
  :root:not([data-theme="light"]) .cta .btn--primary { background: var(--accent); color: #241C17; }
  :root:not([data-theme="light"]) .footer { background: #12100E; }
}

/* ---------- Photos (facultatives : déposées dans assets/img/) ---------- */
.photo {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
  object-fit: cover; background: var(--bg-warm); display: block;
}
.photo--hero { aspect-ratio: 4 / 3; }
.photo--banner { aspect-ratio: 16 / 7; margin: 1.6rem 0 2rem; }
.photo--portrait { aspect-ratio: 3 / 4; max-width: 300px; margin: 0 0 1.4rem; }
.prose .photo--portrait { float: right; max-width: 240px; margin: .3rem 0 1.2rem 1.6rem; }
@media (max-width: 620px) {
  .prose .photo--portrait { float: none; max-width: 100%; margin: 0 0 1.4rem; }
}
/* Quand une photo occupe le héros, la plume s'efface. */
.hero__art:has(.photo) .hero__feather { display: none; }

/* ---------- Feuillages décoratifs (dessinés, aucun poids réseau) ---------- */
.leafdeco { position: relative; overflow: clip; }
.leafdeco::before, .leafdeco::after {
  content: ""; position: absolute; width: 120px; height: 320px; pointer-events: none;
  background: currentColor;
  -webkit-mask: url("../img/feuillage.svg") no-repeat center / contain;
          mask: url("../img/feuillage.svg") no-repeat center / contain;
  color: var(--accent); opacity: .13; z-index: 0;
}
.leafdeco::before { top: -40px; left: -34px; transform: rotate(18deg); }
.leafdeco::after  { bottom: -60px; right: -34px; transform: rotate(-160deg); }
.leafdeco > * { position: relative; z-index: 1; }
@media (max-width: 760px) {
  .leafdeco::before, .leafdeco::after { width: 78px; height: 210px; opacity: .10; }
  .leafdeco::before { left: -30px; } .leafdeco::after { right: -30px; }
}
:root:not([data-theme="light"]) .leafdeco::before,
:root:not([data-theme="light"]) .leafdeco::after { opacity: .16; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .leafdeco::before,
  :root:not([data-theme="light"]) .leafdeco::after { opacity: .16; }
}

/* Bandeau photo d'ambiance en séparateur */
.stripe { position: relative; height: clamp(180px, 26vw, 300px); overflow: hidden; }
.stripe img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stripe::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,39,36,.05), rgba(43,39,36,.18)); }

/* ---------- Logo image dans l'en-tête ---------- */
.brand__logo { height: 104px; width: auto; display: block; }
@media (max-width: 600px) { .brand__logo { height: 66px; } }

/* ============ Héros plein écran (effet d'accueil) ============ */
.hero {
  position: relative; min-height: min(82vh, 740px);
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--bg-warm);
}
.hero::after { content: none; }              /* neutralise l'ancien halo */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../img/hero-bg.webp") center 40% / cover no-repeat;
  transform: scale(1.04); will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(26,17,12,.88) 0%, rgba(26,17,12,.72) 34%, rgba(26,17,12,.30) 58%, rgba(26,17,12,0) 82%),
    linear-gradient(0deg, rgba(22,15,10,.82) 0%, rgba(22,15,10,.58) 38%, rgba(22,15,10,.24) 62%, rgba(22,15,10,0) 84%);
}
.hero__in { position: relative; z-index: 2; width: 100%; color: #fff; padding-block: clamp(2.6rem, 6vw, 5.5rem); text-align: left; }
.hero__title { max-width: 18ch; }
.hero__lead { max-width: 33ch; }
.hero .eyebrow { max-width: none; }
.eyebrow--onphoto { color: #fff; opacity: .92; }
.hero__title { color: #fff; margin: 0 0 .5em; letter-spacing: -.01em; }
.hero__title-em { display: block; font-size: clamp(2.3rem, 1.5rem + 3.4vw, 4.2rem); line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero__title-sub { display: block; font-size: clamp(1.05rem, .95rem + .8vw, 1.6rem); font-weight: 400;
  color: rgba(255,255,255,.94); margin-top: .55rem; text-shadow: 0 1px 16px rgba(0,0,0,.3); }
.hero__lead { color: #fff; max-width: 33ch;
  text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 2px 18px rgba(0,0,0,.45); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.7rem; }
.btn--glass { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.btn--glass:hover { background: rgba(255,255,255,.26); color: #fff; }
.hero__scroll { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 2;
  color: #fff; opacity: .85; animation: heroBob 2.4s ease-in-out infinite; }
@keyframes heroBob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* ============ Cartes de prestation avec photo ============ */
.card--photo { padding: 0; overflow: hidden; }
.card__media { display: block; position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.card__img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease; }
.card--photo:hover .card__img { transform: scale(1.05); }
.card__badge {
  position: absolute; left: 14px; bottom: -20px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center;
  box-shadow: var(--shadow); color: var(--accent-dk);
}
.card__badge svg { width: 24px; height: 24px; }
.card__body { padding: 1.7rem 1.5rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card--photo .card__body h3 { margin-top: .3rem; }
.card--photo .card__body p { color: var(--ink-soft); font-size: .96rem; flex: 1; }

/* Priorité : le paragraphe du héros doit rester blanc (battre .lead) */
.hero p.hero__lead { color: #fff; }

/* ============ En-tête : logo grand et centré (mobile ET desktop) ============ */
.topbar { position: static; }                    /* le grand logo n'est pas collant */
.topbar__in { flex-direction: column; align-items: center; gap: .55rem;
  min-height: 0; padding-block: 1rem .5rem; justify-content: center; }
.brand { margin: 0; }
.brand__logo { height: auto; width: min(86vw, 380px); }   /* grand, en longueur, partout */
.navtoggle { display: inline-flex; margin-top: .1rem; }
/* menu mobile : s'ouvre juste sous le logo, centré, dans le flux */
.topbar .nav { position: static; inset: auto; width: 100%; background: none;
  border: 0; box-shadow: none; padding: 0; }
.topbar .nav a { border-bottom: 1px solid var(--line); }
@media (min-width: 1001px) {
  .brand__logo { width: min(560px, 42vw); height: auto; }   /* DESKTOP : grand aussi */
  .navtoggle { display: none !important; }
  .topbar .nav { display: flex !important; flex-direction: row; justify-content: center;
    flex-wrap: wrap; gap: .2rem; }
  .topbar .nav a { padding: .55rem .8rem; border-bottom: 0; }
}

/* ============ Carrousel d'avis (défilement continu) ============ */
.marquee { overflow: hidden; width: 100%; padding: .5rem 0 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 1.2rem; width: max-content;
  animation: marquee 80s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .review { width: 340px; flex: none; height: 300px; overflow: hidden;
  display: flex; flex-direction: column; }
.marquee .review p { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical;
  overflow: hidden; }
.marquee .review__who { margin-top: auto; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: nowrap; overflow-x: auto; }
}

/* Icône de prestation, bien visible dans le corps de la carte (sous la photo) */
.card__ico { display: inline-flex; width: 46px; height: 46px; margin: 0 0 .7rem;
  align-items: center; justify-content: center; border-radius: 50%;
  background: var(--accent-lt); color: var(--accent-dk); }
.card__ico svg { width: 26px; height: 26px; }
