/* ============================================================================
   brand.css — Système de design partagé « M.Lombardo — Couvreur 68 »
   ----------------------------------------------------------------------------
   Source de vérité visuelle extraite de index.html. Toute page du site doit
   produire la même identité : mêmes tokens, même navigation, mêmes boutons,
   même en-tête de section, mêmes avis, même pied de page, même bandeau cookies.

   Ordre de chargement attendu :
     <link rel="stylesheet" href="/brand.css">
     <link rel="stylesheet" href="/service-page.css">   (blocs propres au gabarit)
     <script src="/brand.js" defer></script>
   ========================================================================== */

/* Les polices ne sont plus chargées ici : un @import impose une chaîne
   sérialisée (HTML → brand.css → CSS Google → fichiers de police). Chaque page
   déclare les preconnect et le <link> des polices dans son <head>, avant
   brand.css, pour que les deux téléchargements partent en parallèle. */

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --slate: #1C2B3A;
  --slate-2: #2A3B4D;
  --terracotta: #E8761A;
  --terracotta-dk: #C9620F;
  /* Texte mono 10-12px sur fond clair : #E8761A plafonne à 2,7:1, sous le
     seuil WCAG AA. #A9500A donne 5,0:1 sur --bg sans changer la teinte perçue.
     Réservé au petit texte ; les gros titres gardent --terracotta. */
  --terracotta-ink: #A9500A;
  --bg: #F7F5F2;
  --bg-alt: #F1EDE5;
  --surface: #FFFFFF;
  --line: #E8E2D8;
  --line-soft: #EFEAE0;
  --muted: #6B7480;
  --muted-2: #8A92A0;
  --ink: #1C2B3A;
  --gold: #F4B400;
  --success: #2F7A4D;
  --error: #B23A2E;

  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;

  --sh-sm: 0 1px 2px rgba(28, 43, 58, .04), 0 1px 1px rgba(28, 43, 58, .03);
  --sh-md: 0 6px 24px -8px rgba(28, 43, 58, .10), 0 2px 6px rgba(28, 43, 58, .04);
  --sh-lg: 0 24px 60px -20px rgba(28, 43, 58, .18), 0 6px 18px -8px rgba(28, 43, 58, .08);

  --max: 1180px;
  --pad: clamp(20px, 4vw, 40px);
}

/* ── Base ────────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--slate);
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

picture { display: contents; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip { position: absolute; left: -9999px; }

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: var(--surface);
  color: var(--slate);
  padding: 10px 14px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}

/* ── Surfaces navigateur : sélection, curseur, focus, barre de défilement ── */
::selection {
  background: rgba(232, 118, 26, .22);
  color: var(--slate);
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 4px;
}

* { scrollbar-color: rgba(28, 43, 58, .28) transparent; }

*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }

*::-webkit-scrollbar-thumb {
  background: rgba(28, 43, 58, .22);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover { background: rgba(28, 43, 58, .38); background-clip: content-box; }

a { text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* ── Animations d'apparition ─────────────────────────────────────────────── */
[data-fade] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-fade].visible { opacity: 1; transform: none; }

[data-fade][data-d="1"] { transition-delay: .08s; }
[data-fade][data-d="2"] { transition-delay: .16s; }
[data-fade][data-d="3"] { transition-delay: .24s; }
[data-fade][data-d="4"] { transition-delay: .32s; }
[data-fade][data-d="5"] { transition-delay: .40s; }
[data-fade][data-d="6"] { transition-delay: .48s; }

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

/* ── Navigation : transparente → capsule au défilement ───────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px var(--pad);
  pointer-events: none;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
}

.nav.hidden { transform: translateY(-130%); opacity: 0; }

.nav .wrap { padding-left: 0; padding-right: 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  pointer-events: all;
  border-radius: 0;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease,
    border-radius .3s ease, padding .3s ease, max-width .3s ease;
}

.nav.scrolled .nav-inner {
  max-width: 940px;
  background: rgba(18, 28, 40, .92);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 0 26px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .25), 0 1px 4px rgba(0, 0, 0, .15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  color: #fff;
}

.brand-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.1;
  margin-top: 2px;
}

.nav-links { display: none; gap: 32px; }

@media (min-width: 860px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: rgba(255, 255, 255, .80);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .15s ease;
  display: none;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .nav-cta { display: inline-block; }
}

.nav-cta:hover { background: var(--terracotta-dk); }

/* ── Menu burger ─────────────────────────────────────────────────────────── */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
}

@media (min-width: 860px) {
  .nav-burger { display: none; }
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Menu mobile plein écran ─────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(18, 28, 40, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

@media (min-width: 860px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  color: rgba(255, 255, 255, .80);
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 10px 0;
  transition: color .15s ease;
}

.mobile-menu a:hover { color: #fff; }

.mobile-menu .mobile-cta {
  margin-top: 28px;
  background: var(--terracotta);
  color: #fff !important;
  padding: 14px 34px;
  border-radius: var(--r-lg);
  font-size: clamp(16px, 4vw, 18px);
  box-shadow: 0 6px 24px rgba(232, 118, 26, .40);
}

.mobile-menu .mobile-cta:hover { background: var(--terracotta-dk); }

/* ── Hero : typographie et repères partagés ──────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  color: #fff;
  padding: clamp(150px, 18vw, 210px) 0 clamp(72px, 9vw, 120px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: start;
}

/* Sans cela, un enfant de grille garde `min-width: auto` et refuse de
   descendre sous la largeur de son contenu : la colonne déborde sur mobile. */
.hero-grid > * { min-width: 0; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .30);
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  box-shadow: var(--sh-sm);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 20px;
}

.hero h1 .accent,
.hero h1 span {
  color: var(--terracotta);
  display: inline-block;
  position: relative;
}

.hero h1 .accent::after,
.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--terracotta);
  opacity: .35;
}

.hero-sub,
.hero-lead {
  margin-top: 20px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(255, 255, 255, .95);
  max-width: 52ch;
}

.hero-proof {
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 10px 28px -18px rgba(0, 0, 0, .8);
  transition: background .2s ease, border-color .2s ease, transform .1s ease;
}

.hero-proof:hover {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .18);
  transform: translateY(-1px);
}

.hero-proof-stars { color: var(--gold); letter-spacing: 1px; white-space: nowrap; }

.hero-proof strong { font-family: 'Sora', sans-serif; font-weight: 600; }

.hero-proof-rating {
  border-left: 1px solid rgba(255, 255, 255, .28);
  padding-left: 10px;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .hero-proof { align-items: flex-start; flex-wrap: wrap; }
}

.hero-note {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

/* ============================================================================
   Paire de contact — un seul composant pour tout le site
   Deux boutons de même hauteur, chacun sur deux lignes : action puis détail.
   `auto-fit / minmax(248px, 1fr)` empêche toute compression : la grille passe
   à une colonne avant que le libellé ou le numéro ne puisse se couper.
   ========================================================================== */
.cta-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(248px, 100%), 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 24px;
}

.cta-pair.cta-pair-center { margin-left: auto; margin-right: auto; }

.btn-call,
.btn-sms {
  min-height: 64px;
  min-width: 0;
  border-radius: var(--r-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  font-family: 'Sora', sans-serif;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease,
    box-shadow .2s ease, transform .1s ease;
}

.btn-call svg,
.btn-sms svg { flex-shrink: 0; }

.btn-call {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 8px 26px -8px rgba(232, 118, 26, .7);
}

.btn-call:hover {
  background: var(--terracotta-dk);
  transform: translateY(-1px);
}

.btn-call:active { transform: translateY(0); }

.btn-sms {
  background: var(--surface);
  color: var(--slate);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px -12px rgba(28, 43, 58, .55);
}

.btn-sms:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-dk);
  transform: translateY(-1px);
}

.btn-sms:active { transform: translateY(0); }

.btn-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.btn-lines b {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-lines span {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-call .btn-lines span {
  color: rgba(255, 255, 255, .82);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.btn-sms .btn-lines span { color: var(--muted); }

/* Variante sur fond sombre (hero, CTA final) */
.on-dark .btn-sms,
.hero .btn-sms {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.on-dark .btn-sms .btn-lines span,
.hero .btn-sms .btn-lines span { color: rgba(255, 255, 255, .72); }

.on-dark .btn-sms:hover,
.hero .btn-sms:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}

/* ── Boutons secondaires ─────────────────────────────────────────────────── */
.btn-cta-section {
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--r-lg);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background .15s ease, box-shadow .15s ease, transform .1s ease;
}

.btn-cta-section:hover {
  background: var(--terracotta-dk);
  box-shadow: 0 6px 22px -4px rgba(232, 118, 26, .38);
  transform: translateY(-1px);
}

.btn-cta-section:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--slate);
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta-dk); }

.on-dark .btn-ghost,
.hero .btn-ghost {
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}

.on-dark .btn-ghost:hover,
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.btn-terracotta {
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: var(--r-lg);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .15s ease, transform .1s ease;
}

.btn-terracotta:hover { background: var(--terracotta-dk); transform: translateY(-1px); }

/* ── En-tête de section ──────────────────────────────────────────────────── */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--terracotta-ink);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.section-head h2 .accent,
.section-head h2 span { color: var(--terracotta); }

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 16px;
  max-width: 56ch;
}

.section-head-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head-wrap .section-head {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.section-head-cta {
  flex-shrink: 0;
  padding-top: clamp(72px, 8vw, 90px);
}

@media (max-width: 640px) {
  .section-head-wrap { flex-direction: column; }
  .section-head-cta { padding-top: 0; }
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
}

/* ── Avis clients ────────────────────────────────────────────────────────── */
.reviews { background: var(--bg-alt); }

.reviews-rating { text-align: center; margin-bottom: 44px; }

.rating-score { display: inline-flex; align-items: baseline; gap: 10px; }

.rating-star { color: var(--gold); font-size: 34px; line-height: 1; }

.rating-num {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.rating-max { font-size: 20px; color: var(--muted); font-weight: 500; }

.rating-label { color: var(--muted); font-size: 14px; margin-top: 8px; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}

.review:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--slate);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}

.review-meta .who {
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.3;
}

.review-meta .where { font-size: 12px; color: var(--muted); margin-top: 2px; }

.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; }

.review p.body {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
  flex-grow: 1;
}

.review-date { font-size: 13px; color: var(--muted); margin-top: 16px; }

.reviews-gmb { display: flex; justify-content: center; margin-top: 36px; }

.btn-gmb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  background: var(--surface);
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s;
  white-space: nowrap;
}

.btn-gmb:hover { box-shadow: var(--sh-md); border-color: #aaa; }

/* ── CTA final ───────────────────────────────────────────────────────────── */
.final-cta {
  background: var(--slate);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -180px;
  top: -220px;
  background: rgba(232, 118, 26, .16);
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; text-align: center; }

.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.12;
}

.final-cta h2 .accent { color: var(--terracotta); }

.final-cta p {
  color: rgba(255, 255, 255, .78);
  margin: 16px auto 0;
  max-width: 58ch;
  font-size: 16px;
}

/* ── Pied de page ────────────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 44px 0 32px;
}

.foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 760px) {
  .foot { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.foot .col h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.foot .col p,
.foot .col a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  display: block;
}

.foot .col a:hover { color: var(--terracotta); }

.foot-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.foot-bottom a { color: var(--muted); text-decoration: none; }
.foot-bottom a:hover { color: var(--terracotta); }

footer .brand { color: var(--slate); }

footer .brand-mark {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

footer .brand-name { color: var(--slate); }
footer .brand-sub { color: var(--muted); }

/* ── CTA flottant mobile ─────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 16px;
  right: 16px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  transform: translateY(calc(100% + 40px));
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta a {
  min-height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(28, 43, 58, .22), 0 2px 6px rgba(0, 0, 0, .12);
}

.sticky-cta-call { background: var(--terracotta); color: #fff; }

.sticky-cta-sms {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(28, 43, 58, .96);
  color: #fff;
}

@media (min-width: 640px) {
  .sticky-cta { display: none !important; }
}

/* ── Bandeau cookies ─────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100vw - 32px));
  background: var(--slate);
  color: rgba(255, 255, 255, .9);
  padding: 20px 24px;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  line-height: 1.5;
  transition: opacity .35s ease, transform .35s ease, width .35s ease,
    padding .35s ease, bottom .35s ease, left .35s ease, right .35s ease;
}

.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }

.cookie-banner.minimized {
  left: auto;
  right: 20px;
  transform: none;
  width: auto;
  padding: 12px 18px;
  cursor: pointer;
  gap: 0;
  bottom: 20px;
}

.cookie-banner.minimized:hover { background: var(--slate-2); }

.cookie-banner p { margin: 0; color: rgba(255, 255, 255, .80); }
.cookie-banner strong { color: #fff; }

.cookie-content { display: flex; flex-direction: column; gap: 14px; }
.cookie-banner.minimized .cookie-content { display: none; }

.cookie-mini {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.cookie-banner.minimized .cookie-mini { display: flex; }

.cookie-actions { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }

.cookie-btn {
  padding: 9px 16px;
  border-radius: var(--r-md);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background .15s ease;
  white-space: nowrap;
}

.cookie-btn-essential { background: rgba(255, 255, 255, .10); color: rgba(255, 255, 255, .80); }
.cookie-btn-essential:hover { background: rgba(255, 255, 255, .18); }

.cookie-btn-refuse { background: rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .55); font-weight: 500; }
.cookie-btn-refuse:hover { background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .80); }

.cookie-btn-accept { background: var(--terracotta); color: #fff; }
.cookie-btn-accept:hover { background: var(--terracotta-dk); }

/* Le CTA flottant ne doit jamais recouvrir le bandeau cookies */
@media (max-width: 639px) {
  .cookie-banner:not(.minimized) { bottom: 82px; }
}
