/* =========================================================================
   czwick — Camille Zwick · Feuille de style globale
   -------------------------------------------------------------------------
   ORGANISATION DU FICHIER
     A. FONDATIONS — variables, reset, typo, boutons, mises en page communes
     B. STRUCTURE   — navigation + pied de page (sur toutes les pages)
     C. PAGES       — dans l'ordre : Accueil · Réalisations · Étude de cas ·
                      Offres · À propos · Contact
     D. UTILITAIRES — classes ponctuelles + media queries

   Pour modifier l'identité (couleurs, typo…), ajustez les variables en A.1.
   Toutes les pages partagent ce fichier.
   ========================================================================= */


/* =========================================================================
   A · FONDATIONS
   ========================================================================= */

/* ---- A.1 Variables ------------------------------------------------------ */
:root {
  /* Couleurs */
  --ink:          #111111;   /* texte principal / noir */
  --text:         #555555;   /* texte courant */
  --text-soft:    #666666;
  --muted:        #888888;   /* méta, légendes */
  --muted-2:      #999999;
  --accent:       #a98c5a;   /* sable — numéros, puces, libellés */
  --accent-soft:  #8a7a5c;   /* sable foncé — eyebrows */

  --bg:           #ffffff;   /* fond principal */
  --bg-warm:      #f7f4ee;   /* fond crème des sections alternées */
  --surface:      #ebe8e1;   /* aplats d'images / placeholders */
  --surface-2:    #f1efe9;

  --border:       #ececec;   /* filets fins */
  --border-warm:  #e7e2d8;   /* filets sur fond crème */
  --border-faq:   #e0dace;
  --line:         #d8d2c4;   /* soulignés de liens */
  --dashed:       #cfc8b8;   /* contours pointillés "à venir" */
  --placeholder:  #b3aa95;

  /* Mise en page */
  --maxw:    1240px;
  --gutter:  clamp(24px, 5vw, 48px);

  /* Rayons */
  --r-card:  14px;
  --r-lg:    18px;
  --r-pill:  100px;
  --r-input: 10px;

  /* Typographies */
  --font:    'Inter', system-ui, -apple-system, sans-serif;
  --script:  'Dancing Script', cursive;
}

/* ---- A.2 Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--ink); color: #fff; }



/* ---- A.3 Typographie ---------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow--plain { color: var(--muted-2); }

.display {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(30px, 4.5vw, 42px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
.lead {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  text-wrap: pretty;
}
.accent-text { color: var(--accent); }
.italic { font-style: italic; }



/* ---- A.4 Boutons & liens ------------------------------------------------ */
.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn--primary { color: #fff; background: var(--ink); border-color: var(--ink); }
.btn--primary:hover { opacity: .85; }
.btn--light { color: var(--ink); background: #fff; border-color: #fff; }
.btn--light:hover { opacity: .86; }
.btn--outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--sm { padding: 11px 22px; font-size: 14px; }

.text-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.text-link:hover { border-color: var(--ink); }
.text-link--ghost {
  border-bottom: none;
  padding: 15px 8px;
  border-bottom: 1px solid var(--line);
}
.text-link--light {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.text-link--light:hover { border-color: #fff; }



/* ---- A.5 Mise en page : sections & conteneurs --------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(80px, 11vw, 0px) 0; }
.section--sm     { padding: clamp(72px, 10vw, 90px) 0; }
.section--header { padding: clamp(56px, 8vw, 80px) 0 clamp(0px, 9vw, 50px) }
.section--flush-top    { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.section--warm {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--dark { background: var(--ink); color: #fff; }
.section--bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* En-tête de section (titre + libellé) */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 6vw, 60px);
}



/* ---- A.6 Placeholders d'images (Accueil · À propos · Étude de cas) ------
   <div class="media media--hero" data-label="…"></div>
   Pour mettre une vraie image, remplacez le div par :
   <img class="media media--hero" src="images/xxx.jpg" alt="…">
   ------------------------------------------------------------------------- */
.media {
  width: 100%;
  border-radius: var(--r-card);
  background: var(--surface-2);
  object-fit: cover;
}
div.media {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--placeholder);
  font-size: 13px;
}
div.media::after { content: attr(data-label); max-width: 64%; line-height: 1.4; }

.media--hero    { height: 540px; border-radius: var(--r-lg); background: var(--surface-2); }
.media--portrait{ height: 520px; border-radius: 16px; background: var(--surface-2); }
.media--tile    { height: 300px; background: var(--surface); }
.media--tile-lg { height: 320px; background: var(--surface); }
.media--wide    { height: clamp(300px, 46vw, 600px); border-radius: var(--r-lg); background: var(--surface-2); }
.media--gallery { height: 360px; background: var(--surface-2); }
.media--board   { height: 420px; border-radius: var(--r-card); background: var(--surface); }

.media-empty {
  width: 100%;
  height: 300px;
  border: 1px dashed var(--dashed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-empty span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--placeholder);
}



/* ---- A.7 Blocs partagés : colonnes & bandeau CTA ------------------------
   .split      → utilisé sur À propos et Étude de cas
   .cta-center → utilisé sur Accueil, Offres et À propos
   ------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.split__label {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding-top: 10px;
}
.split__body { grid-column: span 2; min-width: 0; }
.split__body p { text-wrap: pretty; }
.prose-lead {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 32px;
  max-width: 680px;
}

.cta-center { max-width: 790px; margin: 0 auto; text-align: center; padding-left: var(--gutter); padding-right: var(--gutter); }
.cta-center .eyebrow { justify-content: center; margin-bottom: 18px; }
.cta-center .lead { color: rgba(255,255,255,.7); margin: 0 0 44px; }
.cta-center h2 { margin: 0 0 24px; }
.cta-center--light .lead { color: var(--text); }
.cta-script {
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1;
}


/* =========================================================================
   B · STRUCTURE (sur toutes les pages)
   ========================================================================= */

/* ---- B.1 En-tête de site (navigation) ----------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

body {
  padding-top: 79px;
}

.nav {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  justify-self: start;
  z-index: 60;
}

.brand img {
  height: 42px;
  width: auto;
  display: block;
}

.nav__menu {
  grid-column: 2 / 4;
  display: contents;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 38px);
  justify-self: center;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link.is-active {
  color: var(--ink);
  font-weight: 600;
}

.nav__cta {
  justify-self: end;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-top: 75px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--gutter);
  }

  .brand img {
    height: 38px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 60;
    padding: 0;
  }

  .nav-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav__menu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    gap: 28px;
    padding: 32px var(--gutter);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(0,0,0,.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 999;
  }

  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__links {
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .nav__link {
    font-size: 18px;
    color: var(--ink);
    text-align: center;
  }

  .nav__cta {
    width: fit-content;
    justify-self: center;
    text-align: center;
  }
}



/* ---- B.2 Pied de page --------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) var(--gutter) 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) max-content minmax(220px, max-content) max-content;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Colonne marque + accroche */
.footer-brand {
  min-width: 0;
}

.footer-brand__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand__logo img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-brand__tagline {
  max-width: 280px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  text-wrap: pretty;
}

.footer-brand__location {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-2);
}

/* Colonnes de liens */
.footer-col {
  min-width: 0;
  max-width: 100%;
}

.footer-col__title {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-col__list a {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
  white-space: normal;
  overflow-wrap: anywhere;
}

.footer-col__list a:hover {
  color: var(--ink);
}

/* Réseaux sociaux */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.footer-social:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* Barre de bas */
.site-footer__bottom {
  max-width: var(--maxw);
  margin: clamp(40px, 6vw, 56px) auto 0;
  padding: clamp(40px, 6vw, 56px) var(--gutter) 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.copy {
  margin: 0;
  font-size: 13px;
  color: #aaa;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .2s;
}

.footer-top:hover {
  color: var(--ink);
}

.footer-top__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tablette */
@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 48px clamp(80px, 12vw, 140px);
  }

  .footer-brand,
  .footer-col {
    width: max-content;
    max-width: 320px;
  }
}

/* Téléphone */
@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
    max-width: 320px;
  }

  .footer-brand__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand__tagline,
  .footer-brand__location {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* =========================================================================
   C · PAGES
   ========================================================================= */

/* -------------------------------------------------------------------------
   C.1 · PAGE ACCUEIL (index.html)
   ------------------------------------------------------------------------- */

/* Hero */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 48px) clamp(64px, 9vw, 110px);
}
.hero .eyebrow { margin-bottom: 30px; }
.hero__title { margin: 0 0 28px; font-size: clamp(44px, 7vw, 76px); line-height: 1.02; }
.hero__lead { margin: 0 0 40px; max-width: 520px; }
.btn-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__media { position: relative; }
.media-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: #fff;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.media-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.media-badge strong { font-weight: 600; }
.media-badge span.muted { color: var(--muted-2); }

/* Statistiques */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 56px 48px;
}
.stat { display: flex; flex-direction: column; gap: 15px; align-items: baseline; }
.stat__num { font-size: 30px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.stat__text { font-size: 15px; line-height: 1.45; color: var(--text-soft); padding-top: 4px; }


/* Cartes offres — résumé sur l'accueil */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  position: relative;
  border: 1px solid var(--border-warm);
  border-radius: var(--r-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: border-color .2s;
}

.card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.card:hover {
  border-color: var(--ink);
}

.card__num {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
}

.card__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 auto;
  text-wrap: pretty;
}

.card__foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}

.card__foot .muted {
  color: var(--muted-2);
  font-weight: 400;
}

/* CTA sous les offres */

.after-cards {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}


/* Cartes offres — tablette & téléphone */

@media (max-width: 1024px) {
  .card {
    min-height: auto;
  }

  .card__text {
    margin: 0;
  }

  .card__foot {
    margin-top: 24px;
  }
}

/* Processus / étapes (aussi utilisé sur la page Offres) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
}
.step { border-top: 1px solid var(--ink); padding-top: 24px; }
.step__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 18px;
}
.step__title { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; }
.step__text { font-size: 14px; line-height: 1.6; color: #777; margin: 0; text-wrap: pretty; }


/* Témoignage */
.testimonial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.quote-mark { font-size: 64px; line-height: .6; font-weight: 600; color: var(--accent); margin-bottom: 20px; }
.quote {
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.quote__author { font-size: 14px; color: var(--muted); }
.testimonial__aside {
  border-left: 1px solid var(--border);
  padding-left: clamp(28px, 4vw, 48px);
  min-width: 0;
}
.testimonial__aside h3 {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 20px;
  text-wrap: balance;
}
.testimonial__aside p { font-size: 16px; line-height: 1.65; color: var(--text-soft); margin: 0; text-wrap: pretty; }



/* -------------------------------------------------------------------------
   C.2 · PAGE RÉALISATIONS (realisations.html)
   ------------------------------------------------------------------------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}
.filter {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--text);
  transition: all .2s;
}
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px 28px;
}

.work {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.work[hidden] {
  display: none;
}

.work__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.work .media {
  transition: transform .3s ease, opacity .3s ease;
}

.work:hover .media {
  transform: scale(1.015);
}

.work:hover .work__link {
  border-color: var(--ink);
}

.work__type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 20px 0 8px;
}
.work__title { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 6px; }
.work__meta { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0; }
.work__link { display: inline-block; margin-top: 14px; font-size: 14px; }
.work--soon .work__type,
.work--soon .work__title,
.work--soon .work__meta { color: var(--placeholder); }



/* -------------------------------------------------------------------------
   C.3 · PAGE ÉTUDE DE CAS (projet-…​.html)
   ------------------------------------------------------------------------- */
.case-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color .2s;
}
.case-back:hover { color: var(--ink); }
.case-header { padding: clamp(56px, 8vw, 72px) clamp(24px, 5vw, 48px) clamp(40px, 9vw, 20px); }
.case-header .eyebrow { margin-bottom: 22px; }
.case-header h1 { margin: 0 0 10px; font-size: clamp(40px, 7vw, 72px); line-height: 1.04; max-width: 900px; }
.case-header .lead { font-size: clamp(18px, 2.4vw, 18px); line-height: 1.5; }

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.meta { background: #fff; padding: 26px 24px; }
.meta__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.meta__value { font-size: 16px; font-weight: 600; }

.prose-strong {
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.65;
  color: #333;
  margin: 0 0 22px;
  font-weight: 500;
  text-wrap: pretty;
}
.prose { font-size: 17px; line-height: 1.75; color: var(--text); margin: 0; text-wrap: pretty; }
.prose + .prose { margin-top: 20px; }
.split--center { align-items: center; }
.split--center .approach p { color: #444; }

.deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 40px;
}
.deliverables li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: #333;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.deliverables li::before { content: "—"; color: var(--accent); font-weight: 700; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 24px; padding-bottom: 24px; }

.result { max-width: 950px; margin: 0 auto; text-align: center; padding-left: var(--gutter); padding-right: var(--gutter); }
.result .eyebrow { color: var(--accent); margin-bottom: 28px; justify-content: center; }
.result__mark { font-size: 56px; line-height: .5; font-weight: 600; color: rgba(255,255,255,.25); margin-bottom: 24px; }
.result .quote { font-size: clamp(24px, 3.6vw, 34px); line-height: 1.35; }
.result__author { font-size: 14px; color: rgba(255,255,255,.6); }

.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-row h2 { max-width: 560px; font-size: clamp(28px, 4vw, 40px); line-height: 1.12; }



/* -------------------------------------------------------------------------
   C.4 · PAGE OFFRES (offres.html)
   ------------------------------------------------------------------------- */

/* Libellé de bloc */
.label-row {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 22px;
}


/* Offre principale */
.offer-feature { border: 1px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; }
.offer-feature__head {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-warm);
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.offer-feature__head h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 600; letter-spacing: -0.03em; margin: 0 0 8px; line-height: 1.1; }
.offer-feature__sub { font-size: 15px; color: var(--text-soft); }
.price { text-align: right; }
.price__amount { font-size: clamp(30px, 4.5vw, 40px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.price__note { font-size: 13px; color: var(--muted); margin-top: 8px; }

.offer-feature__body {
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(36px, 5vw, 64px);
}
.offer-feature__body p { font-size: 16px; line-height: 1.7; color: #444; margin: 0 0 22px; text-wrap: pretty; }
.offer-feature__body p:last-child { margin-bottom: 0; }
.includes-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.4; color: #333; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.offer-feature__note {
  background: var(--ink);
  color: #fff;
  padding: 24px clamp(28px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.offer-feature__note p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.7); margin: 0; max-width: 650px; }


/* Options */
.options { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 24px; }
.option {
  border: 1px solid var(--border-warm);
  border-radius: var(--r-card);
  padding: 32px 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  transition: border-color .2s;
}
.option:hover { border-color: var(--ink); }
.option__main { min-width: 0; flex: 1; }
.option__main h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 10px; }
.option__main p { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin: 0; text-wrap: pretty; }
.option__price { font-size: 16px; font-weight: 600; white-space: nowrap; }
.option__price--quote { color: var(--accent); }


/* Cartes de services (autres prestations) */
.service {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: var(--r-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.service__num { font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 20px; }
.service h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 14px; }
.service__text { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin: 0 0 22px; text-wrap: pretty; }
.service__text-no-margin { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin: 0px; text-wrap: pretty; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: auto; }
.chip {
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--border-warm);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.service__foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.service__foot .price-inline { font-size: 14px; font-weight: 600; }
.service__foot .price-inline .muted { color: var(--muted-2); font-weight: 400; }

/* FAQ (question puis réponse dessous) */
.faq { display: grid; gap: 0; }
.faq__item { border-top: 1px solid var(--border-faq); padding: 28px 0; }
.faq__item:last-child { border-bottom: 1px solid var(--border-faq); }
.faq__q {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.faq__a {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  max-width: 1000px;
  text-wrap: pretty;
}


/* Pour qui (page offre identité visuelle + site web) */
.deliverables--audience {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .deliverables--audience {
    grid-template-columns: 1fr;
  }
}


/* -------------------------------------------------------------------------
   C.5 · PAGE À PROPOS (a-propos.html)
   ------------------------------------------------------------------------- */

/* Hero */

.about-hero {
  padding: clamp(72px, 10vw, 80px) 0 clamp(0px, 8vw, 120px);
  background: #fff;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: stretch;
}

.about-hero__content,
.about-hero__media {
  min-width: 0;
}

.about-hero__content {
  max-width: 560px;
}

.about-hero__title {
  margin: 32px 0 42px;
  line-height: 1.03;
  letter-spacing: -0.06em;
  font-weight: 700;
  color: var(--ink);
}

.about-hero__title em {
  color: var(--accent);
  font-style: italic;
}

.about-hero__lead {
  max-width: 520px;
  margin: 0;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--text);
  text-wrap: pretty;
}

.about-hero__media {
  width: 100%;
  height: 100%;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--r-card);
}

@media (max-width: 640px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__media {
    height: auto;
  }

  .about-hero__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .about-title-break {
    display: none;
  }
}

/* Section conviction */
.conviction-section {
  padding: clamp(64px, 10vw, 90px) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.conviction {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.conviction__left {
  max-width: 620px;
}
.conviction__quote {
  margin: clamp(32px, 4vw, 44px) 0 0;
  padding-left: clamp(22px, 3vw, 32px);
  border-left: 2px solid var(--accent);
  font-size: clamp(24px, 1.5vw, 34px);
  line-height: 1.35;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.conviction__quote::before {
  content: "« ";
}
.conviction__quote::after {
  content: " »";
}
.conviction__right {
  max-width: 560px;
  padding-top: clamp(0px, 6vw, 70px);
}
.conviction__right p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--text);
  text-wrap: pretty;
}
.conviction__right p + p {
  margin-top: clamp(22px, 3vw, 28px);
}



/* -------------------------------------------------------------------------
   C.6 · PAGE CONTACT (contact.html)
   ------------------------------------------------------------------------- */
.contact-page { min-height: 100vh; display: flex; flex-direction: column; }
.contact-page .site-footer { margin-top: auto; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: end;
  padding: clamp(64px, 9vw, 100px) var(--gutter) clamp(72px, 10vw, 100px);
}
.contact__intro { max-width: 520px; }
.contact__intro .eyebrow { margin-bottom: 22px; }
.contact__intro h1 {
  margin: 0 0 28px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
}
.contact__intro .lead {
  max-width: 470px;
  line-height: 1.75;
  margin: 0 0 clamp(36px, 5vw, 56px);
}

.contact-card {
  border: 1px solid var(--border-warm);
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 40px);
  background: var(--bg-warm);
}
.contact-card h2 {
  font-size: clamp(21px, 2.6vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.contact-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 28px;
  text-wrap: pretty;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: clamp(32px, 5vw, 48px);
}
.contact-detail {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--text);
}
.contact-detail__icon {
  color: var(--accent);
  line-height: 1.2;
  font-size: 16px;
  padding-top: 2px;
}
.contact-detail strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail a,
.contact-detail span {
  display: inline-block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
}
.contact-detail a:hover { color: var(--ink); }
.contact-socials { margin-top: 34px; gap: 12px; }

.contact__form-wrap { min-width: 0; }
.form-head { margin-bottom: clamp(28px, 4vw, 36px); }
.form-head h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.form-head p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  max-width: 480px;
  text-wrap: pretty;
}



/* Formulaire */
.form { display: grid; gap: 22px; }
.form-grid {
  display: grid;
  gap: 22px;
}
.form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 9px; min-width: 0; }
.field__label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: #444; }
.field__label .muted { color: var(--muted-2); font-weight: 500; }
.input, .textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 15px 16px;
  border: 1px solid #ddd;
  border-radius: var(--r-input);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.select { appearance: auto; }
.textarea { resize: vertical; line-height: 1.5; min-height: 150px; }
.input::placeholder, .textarea::placeholder { color: #aaa; }
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17,17,17,.06);
}
.form button { font-family: inherit; border: 1px solid var(--ink); padding: 16px; width: 100%; }
.form__privacy,
.form__note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-2);
  margin: 0;
}
.form__note { text-align: center; }
.btn--wrap {
  white-space: normal;
  max-width: 100%;
  text-align: center;
  overflow-wrap: break-word;
}

/* Confirmation d'envoi */
.confirm {
  border: 1px solid var(--ink);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}
.confirm__check {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}
.confirm h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 14px; }
.confirm p { font-size: 16px; line-height: 1.6; color: var(--text); margin: 0; text-wrap: pretty; }

.form__error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #d8b4b4;
  border-radius: 8px;
  background: #fff6f6;
  color: #8a3333;
  font-size: 14px;
  line-height: 1.5;
}

/* Bandeau de réassurance */
.contact-reassurance {
  padding: clamp(40px, 6vw, 64px) 0;
}
.contact-reassurance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 56px);
}
.reassurance-item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.reassurance-item__icon {
  color: var(--accent);
  font-size: 16px;
  line-height: 1.2;
  padding-top: 4px;
}
.reassurance-item h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.reassurance-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .contact__intro,
  .contact__intro .lead,
  .form-head p {
    max-width: none;
  }
  .contact-reassurance__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .form-grid--2 {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 28px 24px;
  }
  .contact-socials .btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* -------------------------------------------------------------------------
   C.7 · Page légale — Mentions légales / CGV / Confidentialité
   ------------------------------------------------------------------------- */

.legal {
  padding: clamp(56px, 8vw, 0px) clamp(24px, 5vw, 64px) clamp(64px, 9vw, 90px);
  padding-bottom: clamp(80px, 11vw, 130px);
}

.legal__update {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--muted-2);
}

.legal__block {
  padding: clamp(34px, 5vw, 48px) 0;
  border-top: 1px solid var(--border);
}

.legal__block:first-child {
  border-top: none;
  padding-top: 0;
}

.legal__title {
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.legal__subtitle {
  margin: 30px 0 12px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.legal__subtitle:first-of-type {
  margin-top: 0;
}

.legal__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  text-wrap: pretty;
}

.legal__text + .legal__text {
  margin-top: 18px;
}

.legal__text a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .2s, color .2s;
}

.legal__text a:hover {
  border-color: var(--ink);
}

.legal__list {
  margin: 16px 0 24px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.legal__list:last-child {
  margin-bottom: 0;
}

.legal__list li {
  padding-left: 4px;
}

.legal__list li::marker {
  color: var(--accent);
}

.legal strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 640px) {
  .legal {
    padding-bottom: 80px;
  }

  .legal__block {
    padding: 36px 0;
  }

  .legal__title {
    margin-bottom: 18px;
  }

  .legal__text,
  .legal__list {
    font-size: 15px;
  }
}


/* -------------------------------------------------------------------------
   C.8 · PAGE COVERING PRO (covering-pro.html)
   ------------------------------------------------------------------------- */
.cov-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(48px, 7vw, 72px);
}
.cov-hero > div { min-width: 0; }
.cov-hero__title { margin: 0 0 28px; font-size: clamp(40px, 6vw, 66px); line-height: 1.04; }
.cov-hero__lead { margin: 0 0 36px; max-width: 480px; color: #444; line-height: 1.65; }

.cov-lead-title {
  margin: 0 0 48px;
  max-width: 640px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}
.eyebrow + .cov-lead-title { margin-top: 16px; }

/* Cartes "pourquoi moi" */
.cov-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.cov-card {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 34px 30px;
}
.cov-card__num { font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 20px; }
.cov-card__title { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.2; }
.cov-card__text { font-size: 15px; line-height: 1.65; color: var(--text-soft); margin: 0; text-wrap: pretty; }

/* Encart certification */
.certif-inline {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border-warm);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 22px 26px;
}
.certif-inline__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 6px;
}
.certif-inline__text { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.45; }

/* Ce qui est inclus + visuel */
.cov-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  padding-inline: 48px;
  box-sizing: border-box;
}

.cov-split > div {
  min-width: 0;
}

@media (max-width: 768px) {
  .cov-split {
    padding-inline: 24px;
  }
}
.cov-split > div { min-width: 0; }
.cov-includes { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.cov-includes li { display: flex; gap: 12px; font-size: 16px; line-height: 1.4; color: #333; }
.cov-includes li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Pour qui */
.cov-usecases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.cov-usecase {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 14px;
  padding: 30px 28px;
}
.cov-usecase h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.cov-usecase p { font-size: 14px; line-height: 1.6; color: #777; margin: 0; text-wrap: pretty; }

/* Passerelle particuliers */
.cov-bridge-wrap { padding-top: clamp(56px, 8vw, 80px); padding-bottom: clamp(56px, 8vw, 80px); }
.cov-bridge {
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cov-bridge__text { min-width: 0; max-width: 620px; }
.cov-bridge__text h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.cov-bridge__text p { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin: 0; text-wrap: pretty; }

/* Médias spécifiques */
.media--cov-hero { height: 480px; border-radius: var(--r-lg); background: var(--surface-2); }
.media--cov-included { height: 420px; border-radius: var(--r-card); background: var(--surface); }



/* -------------------------------------------------------------------------
   Bandeau cookies
   ------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  width: min(360px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .12);
  padding: 22px;
}

.cookie-banner__content {
  display: grid;
  gap: 12px;
}

.cookie-banner__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.cookie-banner__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.cookie-banner__btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.cookie-banner__btn:hover {
  transform: translateY(-1px);
}

.cookie-banner__btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.cookie-banner__link {
  width: fit-content;
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.cookie-banner__link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.cookie-manage-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 12px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s, border-color .2s, transform .15s;
}

.cookie-manage-btn:hover {
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    padding: 20px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}



/* =========================================================================
   D · UTILITAIRES & RESPONSIVE
   ========================================================================= */

/* ---- D.1 Classes ponctuelles -------------------------------------------- */
.maxw-520 { max-width: 520px; }
.maxw-900 { max-width: 900px; }
.mt-0 { margin-top: 0; }
.h2--lh { line-height: 1.18; margin-bottom: 28px; }
.h2--cta { font-size: clamp(32px, 5vw, 48px); line-height: 1.12; }
.h2--40 { font-size: clamp(28px, 4vw, 40px); }
.h2--44 { font-size: clamp(30px, 4.5vw, 44px); line-height: 1.14; margin-bottom: 24px; }
.btn-row--center { justify-content: center; }
.section--header .h1 { margin-top: 28px; }
.block-head { margin-bottom: clamp(40px, 6vw, 56px); }
.block-head .eyebrow { margin-bottom: 16px; }
.eyebrow--accent { color: var(--accent); }
.lead-narrow { max-width: 760px; margin-top: 24px; }
.service-location { max-width: 760px; margin-top: 24px; }
.pb-filters { padding-bottom: 40px; }
.pb-grid { padding-bottom: clamp(80px, 11vw, 90px); }
.block { padding: clamp(56px, 8vw, 50px) clamp(24px, 5vw, 48px) clamp(64px, 9vw, 110px); }
.block--meta { padding: clamp(56px, 8vw, 50px) clamp(24px, 5vw, 48px) clamp(64px, 9vw, 72px); }
.pb-gallery { padding-bottom: clamp(40px, 6vw, 72px); }
.approach .prose:first-of-type { margin-top: 22px; }
.meta-grid--warm { background: var(--border-warm); border-color: var(--border-warm); }
.prose--full { max-width: none; }
[hidden] { display: none !important; }


/* ---- D.2 Media queries -------------------------------------------------- */
@media (max-width: 1024px) {
  .split--approach-mobile {
    grid-template-columns: 1fr;
  }

  /*.split--approach-mobile .approach {
    max-width: 720px;
  }*/

  .split--approach-mobile .media--wide {
    width: 100%;
    height: auto;
  }
}
