/* =============================================================
   C-NET Entretien Sàrl — Feuille de style principale
   Identité : facility services premium / VIP (Suisse romande)
   Thème    : clair + sections sombres premium — vert unique du logo #00be5a
   Typo     : Outfit (titres) + Syne (textes) — auto-hébergées
   Auteur   : Gianna Sàrl
   ============================================================= */

/* -------------------------------------------------------------
   0. POLICES AUTO-HÉBERGÉES (WOFF, sous-ensemblées latin/français)
   ------------------------------------------------------------- */
@font-face { font-family:'Outfit'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/outfit-500.woff') format('woff'); }
@font-face { font-family:'Outfit'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/outfit-600.woff') format('woff'); }
@font-face { font-family:'Outfit'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/outfit-700.woff') format('woff'); }
@font-face { font-family:'Outfit'; font-style:normal; font-weight:800; font-display:swap; src:url('../fonts/outfit-800.woff') format('woff'); }
@font-face { font-family:'Syne'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/syne-400.woff') format('woff'); }
@font-face { font-family:'Syne'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/syne-500.woff') format('woff'); }
@font-face { font-family:'Syne'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/syne-600.woff') format('woff'); }
@font-face { font-family:'Syne'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/syne-700.woff') format('woff'); }

/* -------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------- */
:root {
  /* Fonds clairs */
  --bg:         #ffffff;   /* base */
  --bg-soft:    #f3f8f5;   /* section alternée (mist verte très douce) */
  --bg-tint:    #eaf4ef;   /* panneau teinté vert */
  --surface:    #ffffff;   /* cartes */

  /* Lignes / séparateurs sur clair */
  --line:       rgba(11,20,15,.10);
  --line-2:     rgba(11,20,15,.16);

  /* VERT UNIQUE DU LOGO (#00be5a) + sa déclinaison foncée pour le texte sur clair */
  --green:      #00be5a;   /* vert vif du logo — aplats boutons, accents, traits, texte sur sombre */
  --green-deep: #057a34;   /* même teinte, assombrie — texte/liens/icônes verts sur fond CLAIR (AA) */
  --green-600:  #05a34f;
  --green-glow: rgba(0,190,90,.32);
  --green-tint: rgba(0,190,90,.12);
  /* alias de compat (anciens noms mappés sur le vert) */
  --petrol:     var(--green-deep);
  --petrol-600: #046a2d;
  --petrol-700: #04431f;
  --petrol-tint:rgba(0,190,90,.10);

  /* Texte sur fond clair (encre quasi-noire, légèrement teintée) */
  --ink:        #0e1a17;   /* titres / texte fort */
  --ink-soft:   #45564f;   /* texte courant secondaire */
  --ink-dim:    #6b7a74;   /* légendes / métadonnées */

  /* Zones SOMBRES premium / VIP (noir profond, neutre) */
  --dark:       #0b0e0d;   /* noir profond — sections premium, footer, CTA */
  --dark-2:     #121614;   /* surfaces sur sombre (cartes) */
  --dark-3:     #1a201d;   /* hover surfaces sombres */
  --dark-line:  rgba(255,255,255,.10);
  --dark-line-2:rgba(255,255,255,.18);
  --on-dark:    #f0f4f2;   /* texte principal sur sombre */
  --on-dark-mid:#a7b3ad;   /* texte secondaire sur sombre */

  /* Typo — Outfit (titres) + Syne (textes) */
  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Syne', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Échelle typographique fluide — hero réduit à la demande du client */
  --fs-hero:    clamp(2.25rem, 1.5rem + 3vw, 3.7rem);    /* 36 → 59px */
  --fs-h1:      clamp(2.1rem, 1.5rem + 2.6vw, 3.25rem);  /* 34 → 52px */
  --fs-h2:      clamp(1.75rem, 1.35rem + 1.9vw, 2.6rem); /* 28 → 42px */
  --fs-h3:      clamp(1.25rem, 1.1rem + .7vw, 1.45rem);  /* 20 → 23px */
  --fs-sub:     clamp(1.1rem, 1rem + .6vw, 1.5rem);      /* 18 → 24px */
  --fs-lead:    clamp(1.05rem, 1rem + .3vw, 1.22rem);    /* 17 → 20px */
  --fs-body:    clamp(1rem, .97rem + .16vw, 1.1rem);
  --fs-small:   .93rem;
  --fs-eyebrow: .78rem;

  /* Rythme — généreux */
  --shell:      1240px;
  --shell-wide: 1440px;
  --gutter:     clamp(1.25rem, 5vw, 3rem);
  --section-y:  clamp(5rem, 10vw, 10rem);
  --radius:     20px;
  --radius-sm:  13px;
  --radius-lg:  28px;

  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);

  /* Ombres */
  --shadow-sm:  0 6px 20px -12px rgba(11,20,15,.22);
  --shadow:     0 26px 60px -30px rgba(11,20,15,.30);
  --shadow-lg:  0 40px 90px -40px rgba(11,20,15,.34);
  --shadow-green: 0 18px 46px -18px rgba(0,190,90,.45);
}

/* -------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }

::selection { background: var(--green); color: #04120a; }

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

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--petrol); color: #fff; padding: .7rem 1.2rem;
  border-radius: 8px; font-weight: 700; z-index: 2000; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* -------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   ------------------------------------------------------------- */
.shell { width: min(100% - 2*var(--gutter), var(--shell)); margin-inline: auto; }
.shell--wide { width: min(100% - 2*var(--gutter), var(--shell-wide)); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3.2rem, 6vw, 5.5rem); }

/* Fonds de section (repris tels quels par le HTML) */
.bg-ink    { background: var(--bg); }             /* base claire */
.bg-ink-1  { background: var(--bg-soft); }        /* alternée douce */
.bg-paper  { background: var(--bg-tint); }        /* panneau teinté */
.bg-dark   { background: var(--dark); color: var(--on-dark); }  /* section premium / VIP */

/* Fin séparateur entre sections claires */
.rule-top { border-top: 1px solid var(--line); }

/* -------------------------------------------------------------
   4. TYPOGRAPHIE ÉDITORIALE
   ------------------------------------------------------------- */

/* Signature : "eyebrow" avec trait vert net */
.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: var(--fs-eyebrow);
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--petrol);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px; background: var(--green);
  transform-origin: left; border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.title-xl { font-size: var(--fs-h1); }
.title-lg { font-size: var(--fs-h2); }
.title-md { font-size: var(--fs-h3); }

.subtitle {
  font-family: var(--font-display);
  font-weight: 500; font-size: var(--fs-sub);
  color: var(--ink-soft); line-height: 1.4; letter-spacing: -.01em;
}

.lead { font-size: var(--fs-lead); line-height: 1.7; color: var(--ink-soft); }

.prose p { color: var(--ink-soft); line-height: 1.75; }
.prose p + p { margin-top: 1.15em; }

/* Mot accentué en vert (déclinaison foncée = contraste AA sur clair) */
.accent { color: var(--green-deep); }

/* (soulignements de titres retirés à la demande du client) */
.underscore { position: relative; display: inline-block; }

.section-head { max-width: 60ch; }
.section-head--center { max-width: 62ch; margin-inline: auto; text-align: center; }
.section-head .subtitle { margin-top: 1rem; }

/* -------------------------------------------------------------
   5. BOUTONS
   ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--green);
  --btn-fg: #06140c;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  letter-spacing: .01em; line-height: 1;
  padding: 1.05rem 1.7rem; border-radius: 100px;
  background: var(--btn-bg); color: var(--btn-fg);
  position: relative; isolation: isolate; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .35s var(--ease); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: #17d06d;
  opacity: 0; transition: opacity .35s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-green); }
.btn:hover::before { opacity: 1; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn--lg { padding: 1.2rem 2.1rem; font-size: 1.06rem; }

/* Bouton secondaire — contour encre sur clair */
.btn--outline {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn--outline::before { background: var(--ink); }
.btn--outline:hover { color: #fff; box-shadow: none; }

.btn--ghost { background: transparent; color: var(--petrol); padding-inline: 0; }
.btn--ghost::before { display: none; }
.btn--ghost:hover { transform: none; box-shadow: none; color: var(--petrol-600); }
.btn--ghost:hover svg { transform: translateX(5px); }

/* Lien flèche */
.arrow-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; color: var(--petrol);
  letter-spacing: .01em;
}
.arrow-link svg { width: 1.1em; transition: transform .3s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Variantes de boutons sur fond sombre (footer, bande CTA) */
.on-dark .btn--outline,
.cta-band .btn--outline { color: #fff; box-shadow: inset 0 0 0 1.5px var(--dark-line-2); }
.on-dark .btn--outline::before,
.cta-band .btn--outline::before { background: #fff; }
.on-dark .btn--outline:hover,
.cta-band .btn--outline:hover { color: var(--petrol-700); }

/* -------------------------------------------------------------
   6. HEADER / NAV
   ------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .4s var(--ease), backdrop-filter .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 84px;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px -26px rgba(9,41,34,.35);
}
.site-header.is-scrolled .site-header__inner { height: 72px; }

/* Bi-logo : version sombre (texte noir) sur fond clair, version blanche sur fond sombre */
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 40px; width: auto; transition: height .3s var(--ease); }
.is-scrolled .brand img { height: 36px; }
.brand__on-dark { display: none; }

/* --- En-tête AU-DESSUS d'une bannière SOMBRE (pages intérieures) : texte + logo clairs --- */
.site-header--over-dark:not(.is-scrolled) .nav__link { color: rgba(255,255,255,.82); }
.site-header--over-dark:not(.is-scrolled) .nav__link:hover,
.site-header--over-dark:not(.is-scrolled) .nav__link[aria-current="page"] { color: #fff; }
.site-header--over-dark:not(.is-scrolled) .nav__phone { color: #fff; }
.site-header--over-dark:not(.is-scrolled) .nav__phone svg { color: var(--green); }
.site-header--over-dark:not(.is-scrolled) .nav__toggle svg { color: rgba(255,255,255,.82); }
.site-header--over-dark:not(.is-scrolled) .burger { border-color: rgba(255,255,255,.3); }
.site-header--over-dark:not(.is-scrolled) .burger span,
.site-header--over-dark:not(.is-scrolled) .burger span::before,
.site-header--over-dark:not(.is-scrolled) .burger span::after { background: #fff; }
.site-header--over-dark:not(.is-scrolled) .brand__on-light { display: none; }
.site-header--over-dark:not(.is-scrolled) .brand__on-dark { display: block; }

/* Menu mobile ouvert (panneau clair) : forcer le logo/burger sombres même sur page intérieure */
body.menu-open .site-header .brand__on-light { display: block; }
body.menu-open .site-header .brand__on-dark { display: none; }
body.menu-open .site-header .burger span,
body.menu-open .site-header .burger span::before,
body.menu-open .site-header .burger span::after { background: var(--ink); }
body.menu-open .site-header--over-dark:not(.is-scrolled) .burger { border-color: var(--line-2); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__list { display: flex; align-items: center; gap: clamp(.6rem, 1.8vw, 1.8rem); }
.nav__link {
  position: relative; font-family: var(--font-display); font-weight: 500;
  font-size: .96rem; color: var(--ink-soft); padding: .4rem 0; letter-spacing: .005em;
  transition: color .25s;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Dropdown prestations */
.nav__item--has-menu { position: relative; }
.nav__toggle { display: inline-flex; align-items: center; gap: .35rem; }
.nav__toggle svg { width: .8em; transition: transform .3s; }
.nav__item--has-menu:hover .nav__toggle svg,
.nav__item--has-menu:focus-within .nav__toggle svg { transform: rotate(180deg); }
.nav__submenu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translate(-50%, 10px);
  min-width: 300px; padding: .6rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.nav__item--has-menu:hover .nav__submenu,
.nav__item--has-menu:focus-within .nav__submenu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav__submenu::before {
  content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav__submenu a {
  display: flex; align-items: center; gap: .7rem; padding: .7rem .8rem;
  border-radius: 9px; color: var(--ink-soft); font-size: .94rem; font-family: var(--font-body);
  transition: background .2s, color .2s;
}
.nav__submenu a:hover { background: var(--bg-soft); color: var(--ink); }
.nav__submenu a .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }

.nav__cta { display: inline-flex; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .95rem;
}
.nav__phone svg { width: 1em; color: var(--petrol); }

/* Burger */
.burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
}
.burger span { position: relative; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after  { top: 0; transform: rotate(-45deg); }

/* -------------------------------------------------------------
   7. HERO (clair, "split")
   ------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(130px, 17vh, 190px);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(120% 90% at 88% 4%, var(--bg-tint), transparent 55%),
    radial-gradient(90% 70% at 6% 100%, var(--bg-soft), transparent 60%),
    var(--bg);
}
.hero__glow {
  position: absolute; z-index: 0; width: 46vw; height: 46vw; max-width: 560px; max-height: 560px;
  right: 2%; top: 12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,190,90,.10), transparent 62%);
  filter: blur(18px); pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__inner { max-width: 36rem; }
.hero__title {
  font-size: var(--fs-hero); font-weight: 800; letter-spacing: -.03em; line-height: 1.06;
}
.hero__title .ln { display: block; }
.hero__sub {
  margin-top: 1.5rem; font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-sub); color: var(--ink);
}
.hero__text { margin-top: .9rem; font-size: var(--fs-lead); color: var(--ink-soft); max-width: 46ch; }
.hero__actions { margin-top: 2.2rem; }

/* Média encadré + badge flottant */
.hero__media { position: relative; }
.hero__frame {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.hero__frame img { width: 100%; aspect-ratio: 4 / 3.5; object-fit: cover; }
.hero__frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); pointer-events: none;
}
.hero__badge {
  position: absolute; left: -18px; bottom: -20px; z-index: 2;
  display: flex; align-items: center; gap: .85rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 1rem 1.25rem; box-shadow: var(--shadow);
}
.hero__badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--petrol); line-height: 1; }
.hero__badge .lbl { font-size: .82rem; color: var(--ink-soft); line-height: 1.25; max-width: 15ch; }

/* Bandeau de repères */
.hero__strip {
  position: relative; z-index: 1; margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.hero__strip ul {
  display: flex; flex-wrap: wrap; gap: clamp(1rem,3.5vw,2.6rem);
  padding-top: 1.6rem; align-items: center;
}
.hero__strip li {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: var(--ink); letter-spacing: .01em;
}
.hero__strip li svg { width: 1.05em; color: var(--petrol); }

@media (max-width: 900px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__badge { left: 12px; bottom: -18px; }
}

/* -------------------------------------------------------------
   8. HERO INTÉRIEUR (pages) — bannière image en dégradé vert
   ------------------------------------------------------------- */
.page-hero {
  position: relative; padding-top: clamp(140px, 20vh, 220px); padding-bottom: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden; background: #0b0e0d;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(6,9,8,.9) 0%, rgba(6,9,8,.74) 48%, rgba(6,9,8,.93) 100%);
}
.page-hero__inner { max-width: 64ch; position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--green); }
.page-hero .eyebrow::before { background: var(--green); }
.page-hero .title-xl { color: #fff; text-shadow: 0 8px 40px rgba(0,0,0,.35); }
.page-hero .accent { color: var(--green); }
.page-hero .subtitle { color: rgba(255,255,255,.85); margin-top: 1.1rem; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.66); margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: .7em; opacity: .6; }
.breadcrumb [aria-current] { color: #fff; }

/* -------------------------------------------------------------
   9. GRILLE À-PROPOS / SPLIT
   ------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.split--media-right .split__media { order: 2; }
.split__media { position: relative; }
.split__media .frame { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow); border: 1px solid var(--line); }
.split__media .frame img { width: 100%; aspect-ratio: 3/2.3; object-fit: cover; }
/* pastille flottante */
.split__badge {
  position: absolute; z-index: 2; background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 1rem 1.25rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .85rem;
}
.split__badge--br { right: -14px; bottom: -18px; }
.split__badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--petrol); line-height: 1; }
.split__badge .lbl { font-size: .82rem; color: var(--ink-soft); line-height: 1.25; max-width: 14ch; }

@media (max-width: 860px){
  .split { grid-template-columns: 1fr; }
  .split--media-right .split__media { order: 0; }
  .split__badge--br { right: 12px; bottom: -16px; }
}

/* Liste à coches */
.checklist { display: grid; gap: .95rem; margin-top: 1.8rem; }
.checklist.cols-2 { grid-template-columns: 1fr 1fr; gap: 1rem 1.8rem; }
.checklist li {
  display: flex; gap: .85rem; align-items: flex-start;
  font-size: var(--fs-body); color: var(--ink); line-height: 1.5;
}
.checklist .tick {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; margin-top: 1px;
  display: grid; place-items: center; background: var(--green-tint);
  color: var(--petrol); box-shadow: inset 0 0 0 1px rgba(0,190,90,.22);
}
.checklist .tick svg { width: 15px; height: 15px; }
@media (max-width: 620px){ .checklist.cols-2 { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------
   10. CARTES DE PRESTATIONS (claires, ombre douce)
   ------------------------------------------------------------- */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 940px){ .cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .cards { grid-template-columns: 1fr; } }

.card {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.6rem, 2.4vw, 2.1rem);
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden; isolation: isolate;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.card::before { /* sweep vert (geste net) */
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--green), var(--petrol));
  transform: scaleX(0); transform-origin: left; z-index: 2;
  transition: transform .5s var(--ease-out);
}
.card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-tint); color: var(--petrol);
  box-shadow: inset 0 0 0 1px rgba(0,190,90,.16); margin-bottom: 1.3rem;
  transition: background .4s, transform .4s var(--ease);
}
.card:hover .card__icon { transform: scale(1.06) rotate(-3deg); background: var(--petrol); color: #fff; }
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.28rem; font-weight: 700; margin-bottom: .7rem; letter-spacing: -.01em; }
.card__text { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; flex: 1; }
.card__more {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--petrol);
}
.card__more svg { width: 1.05em; transition: transform .3s var(--ease); }
.card:hover .card__more svg { transform: translateX(5px); }
.card--link { cursor: pointer; }
.card__hit { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.card__hit:focus-visible { outline: 2px solid var(--petrol); outline-offset: -3px; }

/* Carte avec image (page prestations) */
.card-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface); isolation: isolate;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.card-photo:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-photo__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-photo__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card-photo:hover .card-photo__img img { transform: scale(1.06); }
.card-photo__tag {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--petrol);
  padding: .4rem .7rem; border-radius: 100px;
}
.card-photo__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card-photo__body h3 { font-size: 1.24rem; margin-bottom: .55rem; }
.card-photo__body p { color: var(--ink-soft); font-size: .96rem; line-height: 1.6; flex: 1; }
.card-photo__body .arrow-link { margin-top: 1.2rem; }

/* -------------------------------------------------------------
   11. BANDE STATISTIQUES / VALEURS
   ------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.stats__item { background: var(--surface); padding: clamp(1.6rem,3vw,2.4rem); text-align: center; }
.stats__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.stats__num .accent { color: var(--petrol); }
.stats__label { margin-top: .7rem; color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 780px){ .stats { grid-template-columns: 1fr 1fr; } }

/* Chips valeurs */
.values { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.values li {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink);
  padding: .7rem 1.15rem; border-radius: 100px; border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; gap: .6rem; background: var(--surface);
}
.values li::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* -------------------------------------------------------------
   12. SECTION CTA (bande verte d'ancrage)
   ------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; color: var(--on-dark); background: #0b0e0d; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(6,9,8,.9), rgba(6,9,8,.78)); }
.cta-band .eyebrow { color: var(--green); }
.cta-band .eyebrow::before { background: var(--green); }
.cta-band .title-lg, .cta-band h2 { color: #fff; }
.cta-band .lead, .cta-band .subtitle { color: rgba(255,255,255,.84); }
.cta-band__inner { position: relative; z-index: 1; text-align: center; max-width: 60ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2.2rem; }

.contact-line {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem;
  margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid var(--dark-line-2);
}
.contact-line li { display: inline-flex; align-items: center; gap: .6rem; color: #fff; font-size: .98rem; }
.contact-line svg { width: 1.05em; color: var(--green); flex: 0 0 auto; }
.contact-line a:hover { color: var(--green); }

/* -------------------------------------------------------------
   13. PAGE SERVICE — corps
   ------------------------------------------------------------- */
.service-body { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
@media (max-width: 900px){ .service-body { grid-template-columns: 1fr; } }
.service-body__aside { position: sticky; top: 110px; }
@media (max-width: 900px){ .service-body__aside { position: static; } }

.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.aside-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.4rem; }
.aside-card .btn { width: 100%; }
.aside-card__contact { margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: grid; gap: .8rem; }
.aside-card__contact li { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: var(--ink-soft); }
.aside-card__contact svg { width: 1.05em; color: var(--petrol); flex: 0 0 auto; }
.aside-card__contact a:hover { color: var(--petrol); }

.why-title { margin-top: 2.4rem; margin-bottom: .3rem; font-size: 1.4rem; font-weight: 700; }

/* Autres services (liens croisés) */
.mini-links { display: grid; gap: .5rem; margin-top: 1rem; }
.mini-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem 1rem; border-radius: 10px; border: 1px solid var(--line);
  color: var(--ink-soft); font-size: .92rem; transition: background .2s, color .2s, border-color .2s;
}
.mini-links a:hover { background: var(--bg-soft); color: var(--ink); border-color: var(--line-2); }
.mini-links a svg { width: 1em; color: var(--petrol); }

/* -------------------------------------------------------------
   14. ACTUALITÉS
   ------------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.8rem); margin-top: clamp(2.5rem,5vw,3.5rem); }
@media (max-width: 940px){ .post-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .post-grid { grid-template-columns: 1fr; } }

.post {
  display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.post__img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__img img { transform: scale(1.06); }
.post__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; gap: .8rem; align-items: center; font-size: .78rem; color: var(--ink-dim); margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-display); font-weight: 600; }
.post__meta .cat { color: var(--petrol); }
.post__body h3 { font-size: 1.18rem; line-height: 1.3; margin-bottom: .6rem; }
.post__body p { color: var(--ink-soft); font-size: .94rem; flex: 1; }
.post__body .arrow-link { margin-top: 1.2rem; font-size: .9rem; }

.notice {
  margin-top: 2.5rem; padding: 1.1rem 1.3rem; border-radius: 12px;
  border: 1px solid var(--line-2); background: var(--bg-soft);
  color: var(--ink-soft); font-size: .9rem; display: flex; gap: .8rem; align-items: flex-start;
}
.notice svg { width: 1.2em; color: var(--petrol); flex: 0 0 auto; margin-top: .1em; }

/* -------------------------------------------------------------
   15. FORMULAIRE / CONTACT
   ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: grid; gap: 1.4rem; margin-top: 2rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--green-tint); color: var(--petrol); box-shadow: inset 0 0 0 1px rgba(0,190,90,.16); }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list .k { font-family: var(--font-display); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-dim); margin-bottom: .2rem; }
.info-list .v { color: var(--ink); font-size: 1.05rem; }
.info-list .v a:hover { color: var(--petrol); }

.form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.6rem); box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px){ .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .85rem; margin-bottom: .5rem; color: var(--ink); }
.field label .req { color: var(--petrol); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 12px;
  padding: .95rem 1.1rem; transition: border-color .25s, box-shadow .25s, background .25s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300be5a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.6rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--petrol); background: #fff;
  box-shadow: 0 0 0 3px var(--petrol-tint);
}
.field--error input, .field--error select, .field--error textarea { border-color: #d64545; }
.field__err { color: #c23636; font-size: .82rem; margin-top: .4rem; display: none; }
.field--error .field__err { display: block; }

.form__consent { display: flex; gap: .7rem; align-items: flex-start; margin: .3rem 0 1.4rem; }
.form__consent input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--petrol); flex: 0 0 auto; }
.form__consent label { font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }
.form__consent a { color: var(--green-deep); font-weight: 600; }

.form__submit { width: 100%; }
.form__note { margin-top: 1rem; font-size: .82rem; color: var(--ink-dim); text-align: center; }

.form-status { border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.4rem; font-size: .95rem; display: none; }
.form-status.is-ok { display: block; background: var(--green-tint); border: 1px solid rgba(0,190,90,.30); color: var(--petrol-600); }
.form-status.is-err { display: block; background: rgba(214,69,69,.08); border: 1px solid rgba(214,69,69,.30); color: #c23636; }

/* map / zone */
.zone-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 2rem; box-shadow: var(--shadow-sm); }
.zone-map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* -------------------------------------------------------------
   16. FOOTER (ancrage vert-encre)
   ------------------------------------------------------------- */
.site-footer { background: var(--dark); color: var(--on-dark-mid); padding-top: clamp(3.5rem,7vw,5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(2rem,4vw,3rem); padding-bottom: 3rem; }
@media (max-width: 900px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 42px; margin-bottom: 1.3rem; }
.footer-brand p { color: var(--on-dark-mid); font-size: .95rem; max-width: 34ch; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--dark-line-2); color: var(--on-dark-mid); transition: color .25s, border-color .25s, background .25s; }
.footer-social a:hover { color: #fff; border-color: var(--green); background: rgba(0,190,90,.16); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 { font-family: var(--font-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a, .footer-col li { color: var(--on-dark-mid); font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-col .contact-mini { display: flex; gap: .6rem; align-items: flex-start; }
.footer-col .contact-mini svg { width: 1em; color: var(--green); margin-top: .3em; flex: 0 0 auto; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-block: 1.6rem; border-top: 1px solid var(--dark-line);
  font-size: .85rem; color: var(--on-dark-mid);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom .credit a { color: #fff; }
.footer-bottom .credit a:hover { color: var(--green); }

.to-top {
  position: fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 900;
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--petrol); color: #fff; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--green); }
.to-top svg { width: 20px; height: 20px; }

/* -------------------------------------------------------------
   17. MENU MOBILE (clair)
   ------------------------------------------------------------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg); padding: 100px var(--gutter) 2rem;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .45s var(--ease);
  overflow-y: auto; visibility: hidden;
}
body.menu-open .mobile-nav { transform: translateX(0); visibility: visible; }
.mobile-nav__list { display: grid; gap: .3rem; }
.mobile-nav__list > li > a, .mobile-nav__group > button {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--ink);
  padding: .9rem 0; border-bottom: 1px solid var(--line);
}
.mobile-nav__group > button svg { width: 1em; transition: transform .3s; color: var(--petrol); }
.mobile-nav__group.is-open > button svg { transform: rotate(180deg); }
.mobile-nav__sub { display: grid; gap: .1rem; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.mobile-nav__group.is-open .mobile-nav__sub { max-height: 500px; }
.mobile-nav__sub a { display: block; color: var(--ink-soft); font-size: 1.05rem; padding: .7rem 0 .7rem 1rem; }
.mobile-nav__sub a:hover { color: var(--petrol); }
.mobile-nav__cta { margin-top: 2rem; display: grid; gap: 1rem; }
.mobile-nav__cta .btn { width: 100%; }
.mobile-nav__contact { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: grid; gap: .9rem; }
.mobile-nav__contact li { display: flex; gap: .7rem; align-items: center; color: var(--ink-soft); font-size: .95rem; }
.mobile-nav__contact svg { width: 1em; color: var(--petrol); }

/* -------------------------------------------------------------
   18. RÉVÉLATION AU SCROLL
   ------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { 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; }
.reveal[data-delay="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .underscore::after { transition: none; }
}

/* -------------------------------------------------------------
   19. RESPONSIVE — NAV
   ------------------------------------------------------------- */
@media (max-width: 1080px){
  .nav__list, .nav__phone { display: none; }
  .nav__cta { display: none; }
  .burger { display: inline-flex; }
}
@media (min-width: 1081px){
  .mobile-nav { display: none; }
}

/* Utilitaires */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.center-actions { display: flex; justify-content: center; margin-top: 2.6rem; }
.max-60 { max-width: 60ch; }

/* =============================================================
   20. SECTIONS SOMBRES PREMIUM / VIP  (.bg-dark)
   ============================================================= */
.bg-dark { color: var(--on-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.bg-dark .title-xl, .bg-dark .title-lg, .bg-dark .title-md,
.bg-dark .why-title { color: #fff; }
.bg-dark .eyebrow { color: var(--green); }
.bg-dark .eyebrow::before { background: var(--green); }
.bg-dark .subtitle { color: rgba(255,255,255,.82); }
.bg-dark .lead { color: rgba(255,255,255,.78); }
.bg-dark .prose p { color: rgba(255,255,255,.78); }
.bg-dark .accent { color: var(--green); }
.bg-dark .arrow-link { color: var(--green); }
.bg-dark .btn--ghost { color: var(--green); }

/* Coches */
.bg-dark .checklist li { color: var(--on-dark); }
.bg-dark .checklist .tick { background: rgba(0,190,90,.16); color: var(--green); box-shadow: inset 0 0 0 1px rgba(0,190,90,.34); }

/* Split média + badge */
.bg-dark .split__media .frame { border-color: var(--dark-line); }
.bg-dark .split__badge { background: var(--dark-2); border-color: var(--dark-line-2); }
.bg-dark .split__badge .num { color: var(--green); }
.bg-dark .split__badge .lbl { color: var(--on-dark-mid); }

/* Cartes prestations sur fond sombre */
.bg-dark .card { background: var(--dark-2); border-color: var(--dark-line); box-shadow: none; }
.bg-dark .card:hover { border-color: var(--dark-line-2); background: var(--dark-3); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.bg-dark .card__icon { background: rgba(0,190,90,.14); color: var(--green); box-shadow: inset 0 0 0 1px rgba(0,190,90,.28); }
.bg-dark .card:hover .card__icon { background: var(--green); color: #06140c; }
.bg-dark .card__title { color: #fff; }
.bg-dark .card__text { color: var(--on-dark-mid); }
.bg-dark .card__more { color: var(--green); }

/* Cartes photo sur fond sombre */
.bg-dark .card-photo { background: var(--dark-2); border-color: var(--dark-line); box-shadow: none; }
.bg-dark .card-photo:hover { border-color: var(--dark-line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.bg-dark .card-photo__body h3 { color: #fff; }
.bg-dark .card-photo__body p { color: var(--on-dark-mid); }
.bg-dark .card-photo__tag { background: rgba(6,9,8,.7); border-color: var(--dark-line-2); color: var(--green); }

/* Stats / valeurs */
.bg-dark .stats { background: var(--dark-line); border-color: var(--dark-line); box-shadow: none; }
.bg-dark .stats__item { background: var(--dark-2); }
.bg-dark .stats__num { color: #fff; }
.bg-dark .stats__num .accent { color: var(--green); }
.bg-dark .stats__label { color: var(--on-dark-mid); }
.bg-dark .values li { background: var(--dark-2); border-color: var(--dark-line-2); color: #fff; }

/* Boutons contour sur fond sombre */
.bg-dark .btn--outline { color: #fff; box-shadow: inset 0 0 0 1.5px var(--dark-line-2); }
.bg-dark .btn--outline::before { background: #fff; }
.bg-dark .btn--outline:hover { color: #06140c; }

/* Notice / info-list sur sombre */
.bg-dark .notice { background: var(--dark-2); border-color: var(--dark-line-2); color: var(--on-dark-mid); }
.bg-dark .notice svg { color: var(--green); }
