/* =========================================================
   Centre Borel Maisonny — "Clinique chaleureux" (Direction A)
   Palette : blanc / teal profond / ambre · Inter
   Pro + humain : structure clinique, accent chaleureux.
   ========================================================= */

:root {
  --cream:        #F4F8F7;   /* fond de page, très léger teinté teal */
  --cream-2:      #DCEFEC;   /* halo décoratif doux */
  --ink:          #103E3B;   /* teal profond : texte fort + surfaces sombres (marque) */
  --ink-soft:     #4C5C5A;   /* texte secondaire */
  --blue:         #0E6F6A;   /* teal moyen : liens, icônes, accents froids */
  --blue-deep:    #0A4E4A;
  --sage:         #79B4AF;   /* secondaire doux */
  --sage-deep:    #2F6B66;
  --terracotta:   #E08A3C;   /* ambre : accent chaleureux + CTA */
  --terracotta-d: #C9742A;
  --line:         #E2EAE9;
  --white-warm:   #FFFFFF;   /* cartes */

  --shadow-sm: 0 2px 10px rgba(16,62,59,.05);
  --shadow-md: 0 18px 44px -22px rgba(16,62,59,.28);
  --shadow-lg: 0 34px 70px -34px rgba(16,62,59,.36);

  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 20px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--terracotta); color: #fff; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* grain désactivé (look clinique net) */
.grain { display: none; }

/* =================== TYPOGRAPHY =================== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.022em; color: var(--ink); }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }
em { font-style: normal; color: var(--terracotta-d); }

.kicker {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .9rem;
}
.kicker--cream { color: color-mix(in srgb, #fff 78%, var(--sage)); }

.eyebrow {
  display: inline-block; font-weight: 600; font-size: .82rem; letter-spacing: .01em;
  color: var(--blue-deep); background: color-mix(in srgb, var(--blue) 12%, #fff);
  padding: .5rem .9rem; border-radius: 100px;
}
.muted { color: var(--ink-soft); font-size: .92rem; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .9rem 1.5rem; border-radius: 12px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .3s var(--ease), background .25s, box-shadow .3s, color .25s, border-color .25s;
  white-space: nowrap;
}
/* CTA principal = ambre (chaleureux, incitatif) */
.btn-solid { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-solid:hover { background: var(--terracotta-d); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--blue-deep); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--ink); transform: translateY(-2px); }
/* CTA nav = teal plein (pro) */
.btn-pill { background: var(--ink); color: #fff; padding: .7rem 1.3rem; font-size: .92rem; border-radius: 10px; }
.btn-pill:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; padding: 1rem; }

/* =================== A11Y : skip link + focus =================== */
.skip-link { position: fixed; top: -120px; left: 12px; z-index: 300; background: var(--ink); color: #fff; padding: .75rem 1.2rem; border-radius: 10px; font-weight: 600; box-shadow: var(--shadow-md); transition: top .25s var(--ease); }
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px;
}

/* =================== MOBILE ACTION BAR =================== */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; gap: .55rem; padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom)); background: color-mix(in srgb, #fff 90%, transparent); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
.mobile-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .9rem .6rem; border-radius: 12px; font-weight: 600; font-size: .92rem; white-space: nowrap; }
.mobile-bar .mb-call { background: var(--ink); color: #fff; }
.mobile-bar .mb-rdv { background: var(--terracotta); color: #fff; }
.mobile-bar svg { width: 18px; height: 18px; }

/* =================== NAV =================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: .9rem clamp(1.2rem, 5vw, 3rem);
  background: color-mix(in srgb, #fff 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  transition: box-shadow .3s var(--ease), background .3s;
}
.nav.scrolled { box-shadow: 0 8px 30px -20px rgba(16,62,59,.35); background: color-mix(in srgb, #fff 94%, transparent); }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand-logo { flex-shrink: 0; color: var(--blue); }
.brand-logo--footer { color: #fff; margin-bottom: .9rem; }
.brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; line-height: 1.05; color: var(--ink); }
.brand-text em { display: block; font-size: .58rem; font-style: normal; color: var(--ink-soft); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }

.nav-links { display: flex; gap: 1.7rem; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0 11px; border: 1.5px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--ink-soft); position: relative; padding: .2rem 0; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--terracotta); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { width: 100%; }

/* =================== HERO =================== */
.hero { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 3rem) 2.5rem; display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; align-items: center; z-index: 2; }
.hero-blob { position: absolute; top: -6%; right: -14%; width: 52%; max-width: 640px; z-index: -1; color: var(--cream-2); opacity: .7; }
.hero-blob svg { width: 100%; }
.hero-blob path { fill: currentColor; }

.hero-title { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 800; margin: 1.1rem 0 1.3rem; }
.hero-title em { color: var(--terracotta-d); }
.hero-lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 36ch; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.8rem 0 2.2rem; align-items: center; }

.hero-trust { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.hero-trust strong { display: block; font-size: .96rem; color: var(--ink); }
.hero-trust span { font-size: .82rem; color: var(--ink-soft); }

.hero-figure { margin: 0; }
.figure-frame { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.illus { width: 100%; height: auto; display: block; }
.figure-frame .illus { aspect-ratio: 4 / 5; object-fit: cover; }

/* bande d'ambiance — section "Le centre" */
.centre-ambiance { margin: 2.5rem 0 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.centre-ambiance img { display: block; width: 100%; height: clamp(200px, 28vw, 360px); object-fit: cover; }
.figure-note { position: absolute; bottom: 10px; left: 10px; font-size: .68rem; letter-spacing: .04em; color: #fff; background: rgba(16,62,59,.5); padding: .25rem .6rem; border-radius: 100px; backdrop-filter: blur(4px); }

/* =================== SECTION BASE =================== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem); position: relative; z-index: 2; }
.section-head { max-width: 42ch; margin-bottom: 2.6rem; }
.section-head--light .kicker { color: color-mix(in srgb, #fff 78%, var(--sage)); }

/* =================== LE CENTRE =================== */
.centre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem; align-items: start; }
.centre-lead { font-size: 1.3rem; font-weight: 500; line-height: 1.5; color: var(--ink); }
.centre-points { list-style: none; display: grid; gap: 1.7rem; }
.centre-points li { position: relative; padding-left: 2.2rem; }
.centre-points .dot { position: absolute; left: 0; top: 7px; width: 13px; height: 13px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 5px color-mix(in srgb, var(--terracotta) 18%, transparent); }
.centre-points h3 { margin-bottom: .25rem; }
.centre-points p { color: var(--ink-soft); font-size: .98rem; }
.cred-strip { list-style: none; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 1.2rem; margin-top: 3rem; padding: 1.6rem 0 0; border-top: 1px solid var(--line); text-align: center; }
.cred-strip li { display: flex; flex-direction: column; gap: .3rem; }
.cred-strip strong { font-weight: 800; font-size: 1.9rem; color: var(--blue); line-height: 1; letter-spacing: -.02em; }
.cred-strip span { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 560px) { .cred-strip { grid-auto-flow: row; grid-auto-columns: auto; } }

/* =================== DISCIPLINES =================== */
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.disc-card {
  background: var(--white-warm); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.disc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.disc-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: var(--blue); background: color-mix(in srgb, var(--blue) 12%, #fff); margin-bottom: 1.2rem; }
.disc-icon svg { width: 28px; height: 28px; }
.disc-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.disc-card p { color: var(--ink-soft); font-size: .95rem; }
.disc-tags { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.disc-tags li { font-size: .76rem; font-weight: 600; color: var(--sage-deep); background: color-mix(in srgb, var(--sage) 16%, #fff); padding: .3rem .7rem; border-radius: 100px; }
.disc-note { margin-top: 2rem; text-align: center; color: var(--ink-soft); font-size: .92rem; max-width: 60ch; margin-inline: auto; }

.disc-more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.3rem; font-weight: 600; font-size: .94rem; color: var(--blue); transition: gap .25s var(--ease), color .25s; }
.disc-more span { transition: transform .25s var(--ease); }
.disc-more:hover { color: var(--terracotta-d); }
.disc-more:hover span { transform: translateX(4px); }

/* =================== SERVICE PAGES =================== */
.subhero { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem, 5vw, 3.5rem) clamp(1.2rem, 5vw, 3rem) 1rem; position: relative; z-index: 2; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .5; }
.subhero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 800; max-width: 18ch; }
.subhero h1 em { color: var(--terracotta-d); }
.subhero-lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 52ch; margin-top: 1.2rem; }
.subhero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }

.prose { max-width: 760px; }
.prose h2 { margin: 0 0 1rem; }
.prose h3 { margin: 0 0 .5rem; }
.prose p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose .lead-q { font-weight: 600; font-size: 1.4rem; line-height: 1.45; color: var(--ink); margin-bottom: 1.2rem; }

.block { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem); position: relative; z-index: 2; }
.block + .block { padding-top: 0; }

/* signs / indications grid */
.signs { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: .5rem; }
.signs li { background: var(--white-warm); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; font-size: .96rem; color: var(--ink-soft); display: flex; gap: .7rem; align-items: flex-start; }
.signs li::before { content: ""; flex-shrink: 0; width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: var(--sage); }

/* steps */
.steps { list-style: none; counter-reset: step; display: grid; gap: 1.2rem; margin-top: .5rem; }
.steps li { position: relative; padding-left: 3.4rem; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px; width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 1.05rem; }
.steps h3 { margin-bottom: .2rem; }
.steps p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* highlight / why box */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: .5rem; }
.why-card { background: var(--white-warm); border: 1px solid var(--line); border-radius: 16px; padding: 1.4rem; }
.why-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.why-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* Avis / témoignages */
.avis .why-grid { grid-template-columns: repeat(3, 1fr); }
.avis-stars { color: #E8A23A; letter-spacing: 2px; font-size: 1rem; }
.avis-score { margin-top: .9rem; color: var(--ink-soft); font-size: 1rem; display: inline-flex; align-items: center; gap: .5rem; }
.avis-score strong { color: var(--ink); }
.avis .why-card { display: flex; flex-direction: column; gap: .7rem; }
.avis .why-card blockquote { margin: 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }
.avis .why-card figcaption { font-weight: 700; font-size: .9rem; color: var(--ink); }
.avis-cta { margin-top: 1.6rem; }

/* CTA band */
.cta-band { max-width: var(--maxw); margin: 3rem auto 0; padding: 0 clamp(1.2rem, 5vw, 3rem); position: relative; z-index: 2; }
.cta-inner { background: linear-gradient(150deg, var(--blue-deep), var(--ink) 92%); color: #fff; border-radius: 26px; padding: clamp(2.2rem, 5vw, 3.4rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; box-shadow: var(--shadow-lg); }
.cta-inner h2 { color: #fff; max-width: 18ch; }
.cta-inner p { color: color-mix(in srgb, #fff 82%, var(--ink)); margin-top: .5rem; }
.cta-inner .btn-solid { background: var(--terracotta); color: #fff; }
.cta-inner .btn-solid:hover { background: var(--terracotta-d); }

/* related services */
.related { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: .5rem; }
.related a { display: block; background: var(--white-warm); border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem 1.4rem; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.related a:hover { transform: translateY(-4px); border-color: var(--sage); box-shadow: var(--shadow-md); }
.related strong { display: block; font-weight: 700; font-size: 1.15rem; color: var(--ink); margin-bottom: .2rem; }
.related span { color: var(--ink-soft); font-size: .92rem; }

/* =================== POUR QUI =================== */
.pourqui { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 3rem); position: relative; z-index: 2; }
.pourqui-card {
  background: linear-gradient(150deg, var(--blue-deep), var(--ink) 92%); color: #fff; border-radius: 30px;
  padding: clamp(2.5rem, 6vw, 4.5rem); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.pourqui-card::before { content: ""; position: absolute; top: -40%; right: -10%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--sage) 55%, transparent), transparent 70%); }
.pourqui-card .section-head h2 { color: #fff; }
.pourqui-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; position: relative; }
.pourqui-grid h3 { color: #fff; margin-bottom: .5rem; padding-top: 1.1rem; border-top: 2px solid color-mix(in srgb, var(--sage) 55%, transparent); }
.pourqui-grid p { color: color-mix(in srgb, #fff 82%, var(--ink)); font-size: .95rem; }

/* =================== INFOS =================== */
.infos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.info-block { background: var(--white-warm); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.info-block h3 { margin-bottom: 1rem; font-size: 1.15rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th { text-align: left; font-weight: 500; color: var(--ink-soft); padding: .4rem 0; font-size: .94rem; }
.hours td { text-align: right; font-weight: 700; padding: .4rem 0; font-size: .94rem; }
.hours tr + tr { border-top: 1px solid var(--line); }
.info-block p + p { margin-top: .7rem; }
.map-link { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: .92rem; color: var(--blue); transition: color .2s; }
.map-link:hover { color: var(--terracotta-d); }

/* =================== CONTACT =================== */
.contact-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem;
  background: linear-gradient(150deg, var(--blue-deep), var(--ink) 92%);
  border-radius: 30px; padding: clamp(2.4rem, 6vw, 4rem); box-shadow: var(--shadow-lg);
  align-items: start;
}
.contact-intro { color: #fff; }
.contact-intro h2 { color: #fff; margin-bottom: 1rem; }
.contact-intro > p { color: color-mix(in srgb, #fff 84%, var(--ink)); max-width: 30ch; }
.contact-phone { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; font-size: 1.6rem; letter-spacing: -.01em; color: #fff; margin: 1.8rem 0 .4rem; transition: color .25s; }
.contact-phone:hover { color: var(--terracotta); }
.contact-phone svg { color: var(--terracotta); }
.contact-email { font-size: .95rem; color: color-mix(in srgb, #fff 82%, var(--ink)); }
.contact-email a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.contact-form { background: var(--white-warm); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--ink); }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 22%, transparent);
}
.field textarea { resize: vertical; }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid {
  border-color: var(--terracotta-d);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--terracotta) 20%, transparent);
}
.hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); margin: .3rem 0 1.3rem; line-height: 1.45; }
.consent input { margin-top: 3px; accent-color: var(--terracotta); width: 17px; height: 17px; flex-shrink: 0; }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.form-status { margin-top: 1rem; font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--sage-deep); }
.form-status.err { color: var(--terracotta-d); }

/* =================== FOOTER =================== */
.footer { background: var(--ink); color: #fff; margin-top: 5rem; padding: clamp(3rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 3rem) 2.5rem; position: relative; z-index: 2; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 2.5rem; align-items: start; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text em { color: color-mix(in srgb, #fff 62%, var(--ink)); }
.footer-brand p { color: color-mix(in srgb, #fff 72%, var(--ink)); font-size: .9rem; margin-top: .6rem; }
.footer-nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a { color: color-mix(in srgb, #fff 84%, var(--ink)); font-size: .95rem; transition: color .2s; width: fit-content; }
.footer-nav a:hover { color: var(--terracotta); }
.footer-legal p { font-size: .85rem; color: color-mix(in srgb, #fff 80%, var(--ink)); }
.footer-legal p + p { margin-top: .7rem; }
.footer-legal .muted { color: color-mix(in srgb, #fff 58%, var(--ink)); font-size: .8rem; }
.footer-legal a { color: color-mix(in srgb, #fff 80%, var(--ink)); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.footer-legal a:hover { color: var(--terracotta); }

/* =================== FAQ =================== */
.faq-list { display: grid; gap: .9rem; max-width: 800px; }
.faq-item { background: var(--white-warm); border: 1px solid var(--line); border-radius: 16px; padding: 0 1.4rem; transition: border-color .3s, box-shadow .3s; }
.faq-item[open] { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.2rem 0; font-weight: 700; font-size: 1.08rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform .3s var(--ease); flex-shrink: 0; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.3rem; color: var(--ink-soft); font-size: .98rem; max-width: 65ch; }

/* =================== REVEAL ANIM =================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .nav { flex-wrap: wrap; gap: 1rem; }
  .nav-toggle { display: flex; order: 3; }
  .nav-cta { order: 2; }
  .nav-links {
    order: 4; flex-basis: 100%; flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .35s var(--ease), opacity .25s;
  }
  .nav-links.open { max-height: 70vh; opacity: 1; padding-top: .5rem; }
  .nav-links a { padding: .9rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav-links a::after { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-figure { order: 1; max-width: 360px; margin: 0 auto; }
  .centre-grid, .disc-grid, .pourqui-grid, .infos-grid, .contact-grid, .footer-grid,
  .why-grid, .signs, .related, .avis .why-grid { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; gap: .9rem; }
  .contact-grid { gap: 2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-inner .btn { width: 100%; justify-content: center; }
}
@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
  .footer-nav a, .disc-more, .map-link { min-height: 40px; display: inline-flex; align-items: center; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .nav-cta { padding: .55rem .9rem; font-size: .82rem; }
  .brand-text { font-size: 1rem; }
  .subhero-actions .btn, .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* =================== WHATSAPP =================== */
.mobile-bar .mb-wa { background: #25D366; color: #fff; }
.mobile-bar .mb-wa svg { width: 18px; height: 18px; }

.wa-fab {
  position: fixed; right: 18px; bottom: 22px; z-index: 96;
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.wa-fab svg { width: 30px; height: 30px; }
@media (max-width: 760px) {
  .wa-fab { bottom: calc(78px + env(safe-area-inset-bottom) + 14px); width: 52px; height: 52px; }
  .wa-fab svg { width: 27px; height: 27px; }
}
@media (prefers-reduced-motion: reduce) { .wa-fab { transition: none; } }

/* Bouton WhatsApp inline (hero / contact) */
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

/* =================== BLOG =================== */
.post-meta { color: var(--ink-soft); font-size: .85rem; margin-top: .6rem; }
.why-card h3 a { color: var(--ink); transition: color .2s; }
.why-card h3 a:hover { color: var(--terracotta-d); }
.article-body > * + * { margin-top: 1.1rem; }
.article-body h2 { margin-top: 2.2rem; font-size: 1.45rem; }
.article-body h3 { margin-top: 1.6rem; font-size: 1.2rem; }
.article-body ul, .article-body ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.article-body li { color: var(--ink-soft); }
.article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.article-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.4rem; }
