/* ==========================================================================
   C'DIET — Design System
   Palette dérivée du logo : cyan #1697D6 / vert pomme #A4C636 / navy glacé
   Typo : Bricolage Grotesque (display) + Figtree (texte) + Instrument Serif (accent)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Figtree:wght@400;500;600;700&family=Instrument+Serif:ital@1&display=swap');

:root {
  color-scheme: light;
  /* Couleurs */
  --ink: #0a2a3d;
  --ink-2: #11405c;
  --slate: #44617a;
  --blue: #1697d6;
  --blue-deep: #0d7ab2;
  --blue-dark: #0a3b56;
  --green: #a4c636;
  --green-deep: #6f8c1a;
  --ice: #f1f8fd;
  --ice-2: #e1f1fa;
  --line: #d8e8f2;
  --white: #ffffff;
  --grad-cta: linear-gradient(135deg, #1697d6 0%, #36b3e8 100%);
  --grad-ice: linear-gradient(180deg, #eaf5fc 0%, #ffffff 100%);
  --grad-ink: linear-gradient(150deg, #0a2a3d 0%, #0d3c58 60%, #0f4d6e 100%);
  /* Typo */
  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-body: 'Figtree', system-ui, sans-serif;
  --f-accent: 'Instrument Serif', Georgia, serif;
  /* Layout */
  --container: 1180px;
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow-1: 0 1px 2px rgba(10, 42, 61, .05), 0 8px 24px -12px rgba(10, 42, 61, .12);
  --shadow-2: 0 2px 4px rgba(10, 42, 61, .06), 0 20px 48px -16px rgba(13, 122, 178, .22);
  --shadow-3: 0 24px 64px -20px rgba(10, 42, 61, .35);
  /* z-scale */
  --z-header: 50;
  --z-drawer: 60;
  --z-fab: 40;
}

/* ---------- Reset & 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; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-deep); text-decoration: none; }
a:hover { color: var(--blue); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--blue); color: #fff; }

h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.015em; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.125rem, 1.6vw, 1.3rem); color: var(--ink-2); line-height: 1.6; }
.muted { color: var(--slate); }
.accent { font-family: var(--f-accent); font-style: italic; font-weight: 400; letter-spacing: 0; color: var(--blue-deep); }
.accent--green { color: var(--green-deep); }
.s-ink .accent { color: #7fd0f2; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.s-ice { background: var(--grad-ice); }
.s-ice-flat { background: var(--ice); }
.s-ink { background: var(--grad-ink); color: #d9ecf6; }
.s-ink h2, .s-ink h3 { color: #fff; }
.s-ink .muted { color: #9fc1d4; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }
.s-ink .eyebrow { color: #7fd0f2; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--f-body); font-weight: 700; font-size: 1rem;
  padding: .95rem 1.7rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(22, 151, 214, .55);
  transition: box-shadow .2s ease, background-color .2s ease, transform .2s ease;
  min-height: 48px;
}
.btn:hover { color: #fff; box-shadow: 0 12px 28px -8px rgba(22, 151, 214, .7); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.0625rem; }
.btn--ghost {
  background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line);
}
.btn--ghost:hover { color: var(--blue-deep); box-shadow: inset 0 0 0 2px var(--blue); transform: none; }
.btn--white { background: #fff; color: var(--blue-dark); box-shadow: 0 8px 24px -10px rgba(0, 0, 0, .4); }
.btn--white:hover { color: var(--blue-deep); }
.btn--green { background: linear-gradient(135deg, #8db223 0%, #a4c636 100%); box-shadow: 0 8px 20px -8px rgba(140, 178, 35, .55); }
.btn--green:hover { box-shadow: 0 12px 28px -8px rgba(140, 178, 35, .7); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(255, 255, 255, .94); }
.header-in { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.brand { display: flex; align-items: center; gap: .75rem; font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); letter-spacing: -.02em; }
.brand img { width: 46px; height: auto; }
.brand:hover { color: var(--blue-deep); }
.brand small { display: block; font-family: var(--f-body); font-size: .72rem; font-weight: 600; color: var(--slate); letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav > a, .nav-drop > button {
  font-family: var(--f-body); font-size: .98rem; font-weight: 600; color: var(--ink-2);
  padding: .55rem .85rem; border-radius: 999px; background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: background-color .2s ease, color .2s ease;
}
.nav > a:hover, .nav-drop > button:hover { background: var(--ice); color: var(--blue-deep); }
.nav > a[aria-current="page"] { color: var(--blue-deep); background: var(--ice); }
.nav-drop { position: relative; }
.nav-drop > button svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-drop.open > button svg { transform: rotate(180deg); }
.drop-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: .6rem; min-width: 300px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-drop.open .drop-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-panel a {
  display: flex; gap: .85rem; align-items: center; padding: .7rem .8rem; border-radius: var(--r-sm);
  color: var(--ink); transition: background-color .15s ease;
}
.drop-panel a:hover { background: var(--ice); }
.drop-ico {
  width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--ice-2); color: var(--blue-deep);
}
.drop-ico svg { width: 20px; height: 20px; }
.drop-panel strong { display: block; font-size: .95rem; }
.drop-panel span { display: block; font-size: .8rem; color: var(--slate); line-height: 1.35; }
.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-tel { font-weight: 700; font-size: .95rem; color: var(--ink); display: inline-flex; align-items: center; gap: .45rem; padding: .55rem .8rem; border-radius: 999px; white-space: nowrap; }
.header-tel:hover { color: var(--blue-deep); background: var(--ice); }
.header-tel svg { width: 16px; height: 16px; color: var(--blue-deep); }
.header-cta .btn { padding: .7rem 1.3rem; min-height: 44px; font-size: .95rem; }

.nav-burger { display: none; margin-left: auto; width: 48px; height: 48px; border: 1px solid var(--line); background: #fff; border-radius: 14px; cursor: pointer; place-items: center; color: var(--ink); }
.nav-burger svg { width: 22px; height: 22px; }

/* Drawer mobile */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer); display: none;
}
.drawer.open { display: block; }
.drawer-bg { position: absolute; inset: 0; background: rgba(8, 32, 47, .5); backdrop-filter: blur(3px); }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 88vw);
  background: #fff; padding: 1.4rem 1.6rem 2rem; overflow-y: auto;
  display: flex; flex-direction: column; gap: .3rem;
  animation: drawerIn .28s cubic-bezier(.2, .8, .3, 1);
}
@keyframes drawerIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.drawer-close { width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 12px; cursor: pointer; display: grid; place-items: center; color: var(--ink); }
.drawer-close svg { width: 20px; height: 20px; }
.drawer-panel > a {
  font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: var(--ink);
  padding: .8rem .4rem; border-bottom: 1px solid var(--ice-2);
}
.drawer-panel > a:hover { color: var(--blue-deep); }
.drawer-panel > a.sub { font-family: var(--f-body); font-size: 1rem; font-weight: 600; padding-left: 1.4rem; color: var(--ink-2); }
.drawer-panel .btn { margin-top: 1.4rem; }
.drawer-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--slate); margin-top: 1rem; padding: .4rem .4rem 0; }

/* ---------- Hero accueil ---------- */
.hero { position: relative; overflow: hidden; background: var(--grad-ice); }
.hero::before {
  content: ""; position: absolute; right: -180px; top: -180px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(22, 151, 214, .16) 0%, transparent 65%); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: -140px; bottom: -200px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(164, 198, 54, .14) 0%, transparent 65%); pointer-events: none;
}
.hero-in { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.hero-copy .lead { max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; margin-top: 2.2rem; }
.trust-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.trust-item svg { width: 18px; height: 18px; color: var(--green-deep); flex: none; }
.stars { display: inline-flex; gap: 2px; color: #f5a623; }
.stars svg { width: 16px; height: 16px; }

.hero-visual { position: relative; }
.hero-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-3); aspect-ratio: 4 / 4.6; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .8); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: .85rem 1.1rem;
  display: flex; align-items: center; gap: .8rem;
}
.float-card .fc-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--ice-2); color: var(--blue-deep); flex: none; }
.float-card .fc-ico--green { background: #eef5d8; color: var(--green-deep); }
.float-card .fc-ico svg { width: 22px; height: 22px; }
.float-card strong { display: block; font-family: var(--f-display); font-size: 1.05rem; line-height: 1.2; }
.float-card span { display: block; font-size: .78rem; color: var(--slate); line-height: 1.3; }
.float-card--tl { top: -22px; left: -34px; }
.float-card--br { bottom: 9%; right: -26px; }
@media (max-width: 1240px) { .float-card--tl { left: 8px; } .float-card--br { right: 8px; } }

/* ---------- Cards soins ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.care-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; color: var(--ink);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  cursor: pointer;
}
.care-card:hover { box-shadow: var(--shadow-2); transform: translateY(-4px); border-color: #bfe0f2; color: var(--ink); }
.care-card figure { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.care-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.care-card:hover figure img { transform: scale(1.045); }
.care-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-dark); padding: .35rem .75rem; border-radius: 999px;
}
.care-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.care-body h3 { margin-bottom: .4rem; }
.care-body p { color: var(--slate); font-size: .98rem; flex: 1; }
.care-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--blue-deep); font-size: .98rem; margin-top: .9rem; }
.care-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.care-card:hover .care-link svg { transform: translateX(4px); }
.care-price { font-size: .85rem; font-weight: 700; color: var(--green-deep); margin-top: .4rem; }

/* ---------- Méthode / étapes ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-md); padding: 1.6rem 1.5rem; position: relative;
}
.step-num { font-family: var(--f-display); font-weight: 800; font-size: 2.4rem; color: #7fd0f2; line-height: 1; margin-bottom: .8rem; }
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { font-size: .92rem; color: #b8d6e6; margin: 0; }
.s-light .step { background: #fff; border-color: var(--line); }
.s-light .step-num { color: var(--blue); }
.s-light .step p { color: var(--slate); }

/* ---------- Listes à puces premium ---------- */
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; }
.check-list svg { width: 21px; height: 21px; flex: none; margin-top: .15rem; color: var(--green-deep); }
.s-ink .check-list svg { color: var(--green); }
.check-list--2col { grid-template-columns: 1fr 1fr; }

/* ---------- Split media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev > .split-media { order: 2; }
.split-media { position: relative; }
.split-media .ph-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.split-media .ph-main img { width: 100%; height: 100%; object-fit: cover; }
.ph-badge {
  position: absolute; bottom: -18px; left: clamp(.5rem, 3vw, 2rem); background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: .9rem 1.2rem; display: flex; gap: .8rem; align-items: center;
  border: 1px solid var(--ice-2);
}
.ph-badge .fc-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--ice-2); color: var(--blue-deep); display: grid; place-items: center; flex: none; }
.ph-badge .fc-ico svg { width: 20px; height: 20px; }
.ph-badge strong { font-family: var(--f-display); display: block; font-size: 1rem; line-height: 1.2; }
.ph-badge span { font-size: .78rem; color: var(--slate); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.6rem 1rem; border-radius: var(--r-md); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); }
.stat b { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem); color: #fff; line-height: 1.1; }
.stat b .unit { font-size: .6em; color: #7fd0f2; }
.stat span { font-size: .88rem; color: #b8d6e6; }

/* ---------- Tarifs ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem 1.8rem; display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.price-card--hl { border: 2px solid var(--blue); box-shadow: var(--shadow-2); }
.price-flag {
  position: absolute; top: -13px; left: 1.6rem; background: var(--grad-cta); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 999px;
}
.price-flag--green { background: linear-gradient(135deg, #8db223, #a4c636); }
.price-kicker { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: .4rem; }
.price-card h3 { font-size: 1.22rem; margin-bottom: .2rem; }
.price-meta { font-size: .88rem; color: var(--slate); display: flex; align-items: center; gap: .4rem; margin-bottom: 1rem; }
.price-meta svg { width: 15px; height: 15px; }
.price-val { font-family: var(--f-display); font-weight: 800; font-size: 2.5rem; color: var(--ink); line-height: 1; margin: .4rem 0 .2rem; }
.price-val .unit { font-size: .45em; font-weight: 700; color: var(--slate); }
.price-old { font-size: 1.05rem; color: var(--slate); text-decoration: line-through; font-weight: 600; margin-right: .5rem; }
.price-save { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--green-deep); background: #eef5d8; border-radius: 999px; padding: .2rem .7rem; margin-bottom: .6rem; }
.price-feats { list-style: none; margin: .9rem 0 1.4rem; padding: 0; display: grid; gap: .5rem; flex: 1; }
.price-feats li { display: flex; gap: .55rem; font-size: .93rem; color: var(--ink-2); align-items: flex-start; }
.price-feats svg { width: 18px; height: 18px; flex: none; margin-top: .1rem; color: var(--green-deep); }
.price-card .btn { width: 100%; }

.price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tier { background: var(--ice); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.1rem 1.3rem; display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.tier b { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; }
.tier span { font-size: .85rem; font-weight: 600; color: var(--slate); }

/* ---------- Simulateur ---------- */
.sim {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); overflow: hidden;
  display: grid; grid-template-columns: 1.15fr .85fr;
}
.sim-zones { padding: clamp(1.6rem, 3vw, 2.4rem); }
.sim-zones h3 { margin-bottom: .3rem; }
.sim-hint { font-size: .9rem; color: var(--slate); margin-bottom: 1.3rem; }
.zone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.zone-btn {
  display: flex; flex-direction: row; align-items: center; gap: .7rem; text-align: left;
  padding: .7rem .85rem; border-radius: var(--r-sm); border: 2px solid var(--line); background: #fff;
  font-family: var(--f-body); font-size: .9rem; font-weight: 600; color: var(--ink-2); cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
  min-height: 48px;
}
.zone-btn svg { width: 26px; height: 26px; color: var(--blue-deep); }
.zone-btn:hover { border-color: #9ed3ef; }
.zone-btn[aria-pressed="true"] { border-color: var(--blue); background: var(--ice); color: var(--blue-dark); }
.zone-btn[aria-pressed="true"] svg { color: var(--blue); }
.zone-num { display: inline-flex; align-items: center; justify-content: center; width: 23px; height: 23px; border-radius: 50%; background: var(--ice); color: var(--blue-deep); font-size: .72rem; font-weight: 800; flex-shrink: 0; }
.zone-btn[aria-pressed="true"] .zone-num { background: var(--blue); color: #fff; }
.zone-btn .zone-txt { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.zone-btn .zone-txt small { font-weight: 500; font-size: .76em; color: var(--slate); margin-top: 2px; }
.zone-btn[aria-pressed="true"] .zone-txt small { color: var(--blue-deep); }
.zone-btn.is-disabled, .zone-btn:disabled { opacity: .38; cursor: not-allowed; }
.zone-btn.is-disabled:hover { border-color: var(--line); }
.sim-hint--note { margin-top: 1.2rem; margin-bottom: 0; font-style: italic; }
.tarif-note { font-style: italic; margin: 1.4rem auto 0; max-width: 780px; }
.zones-figure { max-width: 1000px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--line); }
.zones-figure img { width: 100%; height: auto; display: block; }
/* Schéma corporel interactif (overlay cliquable sur l'infographique) */
.bodymap { margin: 0 auto 1.6rem; max-width: 780px; }
.bodymap-hint { font-size: .9rem; color: var(--slate); text-align: center; margin: 0 0 .7rem; }
.bodymap-frame { position: relative; margin: 0 auto; line-height: 0; }
.bodymap-frame > img { width: 100%; display: block; border-radius: var(--r-md, 12px); border: 1px solid var(--line); }
.bodymap-frame .bodyzone {
  position: absolute; width: 3.1%; aspect-ratio: 1 / 1; min-width: 19px;
  transform: translate(-50%, -50%); border: 0; background: transparent; border-radius: 50%;
  cursor: pointer; padding: 0;
}
.bodymap-frame .bodyzone::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  transition: box-shadow .16s ease, background-color .16s ease;
}
.bodymap-frame .bodyzone:hover::after { box-shadow: 0 0 0 3px rgba(164, 198, 54, .65); }
.bodymap-frame .bodyzone.is-selected::after {
  background: rgba(164, 198, 54, .28);
  box-shadow: 0 0 0 3px #a4c636, 0 0 15px 5px rgba(164, 198, 54, .75);
}
.bodymap-frame .bodyzone.is-off { opacity: .35; cursor: not-allowed; }
.bodymap-frame .bodyzone.is-off::after { box-shadow: none; background: transparent; }
.bodymap-frame .bodyzone:focus { outline: none; }
.bodymap-frame .bodyzone:focus-visible::after { box-shadow: 0 0 0 3px var(--green); }
.bodyveil {
  position: absolute; border-radius: 18px; background: rgba(247, 251, 253, .78);
  display: flex; align-items: center; justify-content: center; text-align: center;
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.bodyveil span {
  font-size: .78rem; font-weight: 700; color: var(--slate); background: #fff;
  border: 1px solid var(--line); border-radius: 99px; padding: 5px 12px; max-width: 82%;
  box-shadow: 0 6px 18px rgba(10, 42, 61, .12);
}
.bodyveil.is-active { opacity: 1; }
.bodyveil--ant { left: 25.5%; top: 22%; width: 25%; height: 66%; }
.bodyveil--post { left: 50.5%; top: 22%; width: 24%; height: 66%; }
.video-wrap { max-width: 900px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-3); aspect-ratio: 16 / 9; background: #0a2a3d; }
.video-wrap video { width: 100%; height: 100%; display: block; object-fit: cover; }
.sim-count { display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.sim-count label { font-weight: 600; font-size: .95rem; }
.count-ctrl { display: inline-flex; align-items: center; border: 2px solid var(--line); border-radius: 999px; overflow: hidden; }
.count-ctrl button { width: 46px; height: 46px; border: 0; background: #fff; font-size: 1.3rem; font-weight: 700; color: var(--blue-deep); cursor: pointer; }
.count-ctrl button:hover { background: var(--ice); }
.count-ctrl output { width: 52px; text-align: center; font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; }
.sim-result { background: var(--grad-ink); color: #d9ecf6; padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; }
.sim-result h3 { color: #fff; }
.sim-line { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; font-size: .95rem; border-bottom: 1px dashed rgba(255, 255, 255, .18); }
.sim-line b { color: #fff; }
.sim-total { margin-top: auto; padding-top: 1.2rem; }
.sim-total .label { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: #7fd0f2; font-weight: 700; }
.sim-total .amount { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.4rem); color: #fff; line-height: 1.05; }
.sim-total .amount .unit { font-size: .42em; color: #7fd0f2; }
.sim-note { font-size: .8rem; color: #9fc1d4; margin: .6rem 0 1.1rem; }
.sim-combo { background: rgba(164, 198, 54, .14); border: 1px solid rgba(164, 198, 54, .4); border-radius: var(--r-sm); padding: .85rem 1rem; font-size: .88rem; margin-top: 1rem; }
.sim-combo b { color: #cde36e; }

/* ---------- Avis ---------- */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.reviews-score { display: flex; align-items: center; gap: 1rem; }
.score-big { font-family: var(--f-display); font-weight: 800; font-size: 3rem; line-height: 1; }
.reviews-nav { display: flex; gap: .6rem; }
.rev-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: border-color .2s ease, color .2s ease, background-color .2s ease; }
.rev-btn:hover { border-color: var(--blue); color: var(--blue-deep); background: var(--ice); }
.rev-btn svg { width: 20px; height: 20px; }
.reviews-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(380px, 82vw);
  gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 1.4rem .3rem 1.6rem;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.7rem 1.7rem 1.5rem; display: flex; flex-direction: column; box-shadow: var(--shadow-1);
}
.review-card .stars { margin-bottom: .8rem; }
.review-card blockquote { margin: 0 0 1.2rem; font-size: .96rem; color: var(--ink-2); flex: 1; }
.review-card blockquote.clamp { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review-who { display: flex; align-items: center; gap: .8rem; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-cta); color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--f-display); flex: none; }
.review-who strong { display: block; font-size: .95rem; }
.review-who span { font-size: .78rem; color: var(--slate); display: inline-flex; align-items: center; gap: .3rem; }
.review-who span svg { width: 13px; height: 13px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease; }
.faq details[open] { border-color: #9ed3ef; box-shadow: var(--shadow-1); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; padding: 1.15rem 1.4rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-deep); }
.faq-x { width: 30px; height: 30px; border-radius: 50%; background: var(--ice); color: var(--blue-deep); display: grid; place-items: center; flex: none; transition: transform .25s ease, background-color .2s; }
.faq-x svg { width: 16px; height: 16px; }
.faq details[open] .faq-x { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--slate); font-size: .98rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-ink); border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; color: #d9ecf6; }
.cta-band::before { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(54, 179, 232, .25), transparent 65%); }
.cta-band::after { content: ""; position: absolute; left: -120px; bottom: -140px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(164, 198, 54, .18), transparent 65%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 620px; margin-inline: auto; }
.cta-band p { max-width: 520px; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 1.8rem; }

/* ---------- Page hero (pages internes) ---------- */
.page-hero { background: var(--grad-ice); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -160px; top: -160px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(22, 151, 214, .14), transparent 65%); }
.page-hero-in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3rem, 6vw, 5rem); }
.page-hero-in.solo { grid-template-columns: 1fr; max-width: 780px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.page-hero .lead { max-width: 560px; }
.page-hero-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-3); aspect-ratio: 16 / 11; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: .85rem; color: var(--slate); margin-bottom: 1.4rem; }
.breadcrumbs a { color: var(--slate); font-weight: 600; }
.breadcrumbs a:hover { color: var(--blue-deep); }
.breadcrumbs svg { width: 13px; height: 13px; opacity: .6; }

/* ---------- Bandeau info / contact ---------- */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.info-cards--4 { grid-template-columns: repeat(4, 1fr); }
.info-cards--4 .info-card { flex-direction: column; gap: .9rem; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.6rem; display: flex; gap: 1rem; align-items: flex-start; transition: box-shadow .2s ease, transform .2s ease; }
a.info-card { color: var(--ink); }
a.info-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.info-card .fc-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--ice-2); color: var(--blue-deep); display: grid; place-items: center; flex: none; }
.info-card .fc-ico svg { width: 22px; height: 22px; }
.info-card strong { display: block; font-family: var(--f-display); font-size: 1.05rem; margin-bottom: .15rem; }
.info-card span, .info-card p { font-size: .92rem; color: var(--slate); margin: 0; }

/* ---------- Formulaire ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-1); padding: clamp(1.6rem, 3vw, 2.4rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .92rem; }
.form-field label .req { color: #d3473d; }
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 2px solid var(--line); border-radius: var(--r-sm); background: #fff;
  transition: border-color .2s ease;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--blue); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-hint { font-size: .8rem; color: var(--slate); }

/* ---------- Footer ---------- */
.site-footer { background: var(--grad-ink); color: #b8d6e6; margin-top: clamp(3rem, 7vw, 5rem); }
.footer-cta-wrap { transform: translateY(-50%); }
.footer-in { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-block: 3.5rem 2.5rem; }
.footer-brand img { width: 64px; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 280px; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-links a { color: #b8d6e6; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: .8rem; font-size: .95rem; }
.footer-contact a { color: #d9ecf6; display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: .2rem; color: #7fd0f2; }
.footer-socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .18); display: grid; place-items: center; color: #d9ecf6; transition: background-color .2s ease, border-color .2s ease; }
.footer-socials a:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .4); color: #fff; }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .85rem; color: #8fb3c7; }
.footer-bottom a { color: #b8d6e6; }
.footer-bottom a:hover { color: #fff; }

/* ---------- FAB mobile (appeler / RDV) ---------- */
.fab-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-fab); display: none;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .7rem;
}
.fab-bar a { flex: 1; min-height: 52px; font-size: 1rem; white-space: nowrap; }
.fab-bar .btn--ghost { background: #fff; }
.fab-call svg { width: 18px; height: 18px; }
.fab-rdv { display: flex; align-items: center; justify-content: center; gap: .4rem; padding-inline: .6rem; }
.fab-rdv-logo { height: 18px; width: auto; border-radius: 4px; flex: none; }

/* ---------- Bouton « Prendre rendez-vous » flottant (ordinateur) ----------
   Toujours visible, il suit le défilement. Logo Doctolib officiel + texte clair :
   pensé pour être reconnu et cliqué en un instant, y compris par une personne âgée. */
.doctolib-fab {
  position: fixed; right: clamp(16px, 2vw, 30px); bottom: clamp(16px, 2vw, 30px);
  z-index: var(--z-fab);
  display: flex; align-items: center; gap: .85rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1.15rem .55rem .6rem;
  box-shadow: 0 8px 28px -6px rgba(10, 42, 61, .38), 0 2px 8px rgba(10, 42, 61, .12);
  text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
  animation: fab-pop .5s cubic-bezier(.2, .8, .3, 1.2) .8s both;
}
.doctolib-fab:hover { transform: translateY(-3px); box-shadow: 0 16px 38px -8px rgba(13, 122, 178, .5), 0 3px 10px rgba(10, 42, 61, .16); }
.doctolib-fab:hover .doctolib-fab-arrow { transform: translateX(3px); }
.doctolib-fab-logo { height: 30px; width: auto; border-radius: 7px; display: block; flex: none; }
.doctolib-fab-txt { display: flex; flex-direction: column; line-height: 1.2; }
.doctolib-fab-txt strong { font-family: var(--f-display); font-size: 1.06rem; font-weight: 700; color: var(--ink); }
.doctolib-fab-txt small { font-size: .82rem; font-weight: 600; color: var(--blue-deep); }
.doctolib-fab-arrow { width: 18px; height: 18px; color: var(--blue-deep); flex: none; transition: transform .2s ease; }
@keyframes fab-pop { from { opacity: 0; transform: translateY(16px) scale(.92); } to { opacity: 1; transform: none; } }
@media (max-width: 900px) { .doctolib-fab { display: none; } }  /* la barre d'action mobile prend le relais */
@media (prefers-reduced-motion: reduce) { .doctolib-fab { animation: none; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2, .65, .3, 1), transform .6s cubic-bezier(.2, .65, .3, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utilitaires ---------- */
.narrow { max-width: 760px; margin-inline: auto; }
.mt-lg { margin-top: 2.5rem; }
.ta-center { text-align: center; }
.ta-center .eyebrow, .ta-center .hero-actions { justify-content: center; }

/* ---------- Tables légales / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .35rem; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav, .header-cta .header-tel { display: none; }
  .nav-burger { display: grid; }
  .hero-in, .page-hero-in { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; }
  .split, .sim { grid-template-columns: 1fr; }
  .split--rev > .split-media { order: 0; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .info-cards, .info-cards--4 { grid-template-columns: 1fr 1fr; }
  .footer-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards-3, .steps, .price-tiers, .zone-grid, .form-grid { grid-template-columns: 1fr; }
  .check-list--2col { grid-template-columns: 1fr; }
  .fab-bar { display: flex; }
  body { padding-bottom: 72px; }
  .header-cta .btn { display: none; }
  .brand small { display: none; }
  .brand img { width: 38px; }
  .header-in { min-height: 64px; }
  .info-cards, .info-cards--4 { grid-template-columns: 1fr; }
  .footer-in { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions .btn { width: 100%; }
  .float-card--tl { top: -26px; }
  .float-card--br { bottom: 4%; }
}

/* ==========================================================================
   BLOG, ARTICLES & PAGES CRÉÉES DEPUIS LE BACK-OFFICE
   ========================================================================== */

/* ---------- Texte long (corps d'article, blocs « texte ») ---------- */
.prose { color: var(--slate); font-size: 1.06rem; line-height: 1.75; }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose p { margin: 0 0 1.15rem; }
.prose h2 {
  font-family: var(--f-display); color: var(--ink); font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2; margin: 2.6rem 0 1rem; letter-spacing: -.01em;
}
.prose h3 {
  font-family: var(--f-display); color: var(--ink); font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.4rem); line-height: 1.3; margin: 2rem 0 .8rem;
}
.prose ul, .prose ol { margin: 0 0 1.3rem; padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose li { padding-left: .2rem; }
.prose li::marker { color: var(--blue); font-weight: 700; }
.prose a { color: var(--blue-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:hover { color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose img { width: 100%; border-radius: var(--r-md); margin: 1.6rem 0; box-shadow: var(--shadow-1); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4rem 0; }
.prose code { background: var(--ice-2); padding: .12em .4em; border-radius: 6px; font-size: .9em; }
.prose blockquote {
  margin: 1.8rem 0; padding: .2rem 0 .2rem 1.4rem;
  border-left: 4px solid var(--green); color: var(--ink-2); font-style: italic;
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: .96rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .7rem .9rem; text-align: left; }
.prose th { background: var(--ice); color: var(--ink); font-weight: 700; }
.s-ink .prose, .s-ink .prose strong, .s-ink .prose h2, .s-ink .prose h3 { color: #fff; }
.s-ink .prose { color: #cfe6f3; }

/* ---------- Grille du blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 1.9rem); }
.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: #9ed3ef; }
.post-card figure { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ice-2); }
.post-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .65, .3, 1); }
.post-card:hover img { transform: scale(1.05); }
.post-ph { display: block; width: 100%; height: 100%; background: var(--grad-ice); }
.post-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-date { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--blue-deep); }
.post-body h3 { font-family: var(--f-display); color: var(--ink); font-size: 1.24rem; line-height: 1.28; margin: .5rem 0 .6rem; }
.post-body p { color: var(--slate); font-size: .97rem; line-height: 1.6; margin: 0; }
.post-body .care-link { margin-top: auto; padding-top: 1rem; }

/* ---------- Corps d'article ---------- */
.post > .section:first-child { padding-top: clamp(2.4rem, 5vw, 3.4rem); }
.post .prose { font-size: 1.1rem; }

/* ---------- Encadré auteur (E-E-A-T) ---------- */
.author-box {
  display: flex; gap: 1.3rem; align-items: center; background: var(--ice);
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem;
}
.author-box img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: var(--shadow-1); }
.author-box > div { display: flex; flex-direction: column; }
.author-box strong { font-family: var(--f-display); color: var(--ink); font-size: 1.1rem; }
.author-box span { color: var(--slate); font-size: .95rem; line-height: 1.55; margin-top: .2rem; }
.author-box .care-link { margin-top: .6rem; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.6vw, 1.2rem); align-items: start; }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-1); background: var(--ice-2); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2, .65, .3, 1); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { padding: .7rem .9rem; font-size: .88rem; color: var(--slate); background: #fff; }

/* ---------- Citation mise en avant ---------- */
.pull-quote { margin: 0; padding: 0 0 0 1.6rem; border-left: 5px solid var(--green); }
.pull-quote p { font-family: var(--f-accent); font-style: italic; font-size: clamp(1.4rem, 2.8vw, 1.95rem); line-height: 1.4; color: var(--ink); margin: 0; }
.pull-quote cite { display: block; margin-top: .9rem; font-family: var(--f-body); font-style: normal; font-weight: 700; color: var(--blue-deep); font-size: .95rem; }

/* ---------- Confirmation d'envoi du formulaire ---------- */
.form-ok {
  display: flex; flex-direction: column; gap: .5rem; text-align: center;
  background: #fff; border: 2px solid var(--green); border-radius: var(--r-lg);
  box-shadow: var(--shadow-1); padding: clamp(2rem, 4vw, 3rem);
}
.form-ok strong { font-family: var(--f-display); color: var(--ink); font-size: 1.4rem; }
.form-ok span { color: var(--slate); }
.form-ok a { color: var(--blue-deep); font-weight: 700; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; text-align: center; align-items: center; }
  .author-box .care-link { align-self: center; }
}
