/* ==========================================================================
   ACS — Chauffage · Climatisation · Sanitaire (Bonson, 42)
   Skyrisen · creation-site-web
   Concept : le thermostat. Un bleu nuit pour la structure, deux touches
   fonctionnelles — braise (chaud) et glacier (froid) — jamais décoratives.
   ========================================================================== */
:root {
  /* Marque */
  --ink:        #0E1A2A;   /* bleu nuit : texte, surfaces sombres */
  --ink-2:      #1A2A3F;
  --muted:      #4C5869;   /* texte secondaire sur clair (AA) */
  --on-dark:    #E9EDF2;
  --on-dark-2:  #A9B4C2;

  /* Fonds */
  --paper:      #F5F4F0;
  --chalk:      #ECEAE4;
  --card:       #FFFFFF;
  --line:       rgba(14, 26, 42, .12);
  --line-dark:  rgba(233, 237, 242, .14);

  /* Températures (fonctionnel) */
  --ember:      #E0452A;   /* chaud */
  --ember-btn:  #C8381F;   /* fond bouton, texte blanc AA */
  --ember-ink:  #B5321B;   /* texte braise sur clair */
  --glacier:    #3C8ED6;   /* froid */
  --glacier-ink:#1D67AD;
  --water:      #1FA3A8;   /* eau */

  /* Typo */
  --font-display: "Schibsted Grotesk", "Arial Narrow", sans-serif;
  --font-body:    "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Rayons / ombres / mouvement */
  --r: 6px;
  --r-lg: 14px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(14,26,42,.05), 0 6px 18px rgba(14,26,42,.06);
  --sh-3: 0 30px 70px rgba(14,26,42,.28);
  --ease: cubic-bezier(.2,.7,.2,1);
  --nav-h: 72px;
  --gutter: clamp(16px, 4vw, 40px);
  --thermo-space: 0px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--glacier); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: var(--r);
}
.skip:focus { top: 12px; }

.wrap { width: min(1240px, 100% - 2 * var(--gutter) - 2 * var(--thermo-space)); margin-inline: auto; }

/* ---------- Typo ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 46ch; margin-top: 1.25rem; }
.kicker {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .02em;
  color: var(--muted);
  margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .6; }
.kicker--dark { color: var(--on-dark-2); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .8rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 1rem; line-height: 1.1;
  text-decoration: none; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--ember { background: var(--ember-btn); color: #fff; }
.btn--ember:hover { background: #B02F18; }
.btn--light { background: #fff; color: var(--ink); }
.btn--ghost { border-color: rgba(233,237,242,.4); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--block { width: 100%; }

/* ==========================================================================
   THERMOMÈTRE — progression de lecture (geste signature)
   --p (0→1) et --tc (couleur interpolée glacier→braise) posés par script.js
   ========================================================================== */
.thermo {
  --p: 0; --tc: var(--glacier);
  --tube: 4px; --bulb: 12px;
  --track: rgba(14,26,42,.12);
  --fg: var(--ink);
  position: fixed; z-index: 60;
  right: clamp(12px, 1.8vw, 28px);
  top: 50%; transform: translateY(-50%);
  height: min(46vh, 420px);
  width: 56px;
  display: flex; flex-direction: column; align-items: flex-end;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.thermo.on-dark { --track: rgba(233,237,242,.18); --fg: var(--on-dark); }
.thermo__tube {
  position: relative; flex: 1; width: var(--tube);
  margin-right: calc((var(--bulb) - var(--tube)) / 2);
  border-radius: var(--r-pill);
  background: var(--track);
  transition: background-color .3s;
}
.thermo__fill {
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: calc(var(--p) * 100% + 4px);
  border-radius: var(--r-pill);
  background: var(--tc);
  box-shadow: 0 0 10px color-mix(in srgb, var(--tc) 45%, transparent);
}
.thermo__bulb {
  width: var(--bulb); height: var(--bulb); border-radius: 50%;
  margin-top: -3px;
  background: var(--tc);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tc) 18%, transparent);
}
/* graduations : une par section, étiquette au survol de la zone */
.thermo__marks { position: absolute; inset: 0; }
.thermo__mark {
  position: absolute; right: calc(100% + 6px);
  transform: translateY(50%);
  display: flex; align-items: center; gap: 8px;
  pointer-events: auto;
  color: var(--fg);
  font-family: var(--font-mono); font-size: .72rem; white-space: nowrap;
  text-decoration: none;
}
.thermo__mark::after { content: ""; width: 7px; height: 1.5px; background: currentColor; opacity: .55; transition: width .25s var(--ease), opacity .25s; }
.thermo__mark span {
  padding: 3px 9px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff;
  opacity: 0; transform: translateX(6px); transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.thermo.on-dark .thermo__mark span { background: #fff; color: var(--ink); }
.thermo__mark { padding: 6px 0 6px 10px; } /* zone de survol confortable */
.thermo__mark:hover::after, .thermo__mark.is-active::after { width: 12px; opacity: 1; }
.thermo__mark:hover span, .thermo__mark:focus-visible span { opacity: 1; transform: none; }
.thermo__read {
  font-family: var(--font-mono); font-weight: 500; font-size: .68rem;
  color: #fff;
  margin: 0 0 8px; padding: 2px 7px;
  border-radius: var(--r-pill);
  background: var(--tc);
  font-variant-numeric: tabular-nums;
}
.thermo__read i { font-style: normal; opacity: .8; margin-left: 1px; }
body.menu-open .thermo { opacity: 0; }

@media (min-width: 900px) { :root { --thermo-space: 40px; } }
@media (max-width: 899px) {
  .thermo { --tube: 3px; --bulb: 9px; right: 5px; width: 20px; height: 46vh; }
  .thermo__read, .thermo__marks { display: none; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 70;
  height: var(--nav-h);
  color: #fff;
  transition: background-color .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.hdr.is-solid {
  background: rgba(245,244,240,.9);
  -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.hdr__in {
  height: 100%;
  width: min(1240px, 100% - 2 * var(--gutter) - 2 * var(--thermo-space)); margin-inline: auto;
  display: flex; align-items: center; gap: 2rem;
}
.brand { display: inline-flex; align-items: baseline; text-decoration: none; gap: 0; }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.04em; line-height: 1; }
.brand__dot {
  width: .5rem; height: .5rem; border-radius: 50%; margin-left: 3px;
  background: linear-gradient(90deg, var(--glacier) 50%, var(--ember) 50%);
}
@media (max-width: 1239px) { .brand__sub { display: none !important; } }
.brand__sub { white-space: nowrap; margin-left: .85rem; font-family: var(--font-mono); font-size: .72rem; opacity: .75; }
.nav { display: flex; gap: 1.8rem; margin-left: auto; }
.nav a { text-decoration: none; font-size: .95rem; font-weight: 500; position: relative; padding: .3rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after { transform: scaleX(1); }
.hdr__cta { min-height: 42px; padding: .55rem 1.1rem; font-size: .92rem; }
.hdr.is-solid .hdr__cta { background: var(--ink); color: #fff; }
.burger { display: none; }

.msheet { display: none; }

@media (max-width: 999px) {
  .nav, .hdr__cta, .brand__sub { display: none; }
  .burger {
    display: grid; place-content: center; gap: 7px;
    width: 46px; height: 46px; margin-left: auto; border-radius: 50%;
    position: relative; z-index: 80;
  }
  .burger span { width: 22px; height: 1.8px; background: currentColor; transition: transform .35s var(--ease); }
  .burger[aria-expanded="true"] span:first-child { transform: translateY(4.4px) rotate(45deg); }
  .burger[aria-expanded="true"] span:last-child { transform: translateY(-4.4px) rotate(-45deg); }
  body.menu-open .hdr { color: #fff; background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }

  .msheet {
    display: flex; flex-direction: column; justify-content: space-between;
    position: fixed; inset: 0; z-index: 65;
    padding: calc(var(--nav-h) + 24px) var(--gutter) calc(28px + env(safe-area-inset-bottom));
    background: var(--ink); color: #fff;
    clip-path: circle(0% at calc(100% - 40px) 36px);
    visibility: hidden;
    transition: clip-path .55s var(--ease), visibility 0s linear .55s;
  }
  .msheet.is-open { clip-path: circle(150% at calc(100% - 40px) 36px); visibility: visible; transition: clip-path .6s var(--ease); }
  .msheet nav { display: flex; flex-direction: column; }
  .msheet nav a {
    font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 9vw, 2.8rem);
    letter-spacing: -.03em; text-decoration: none; padding: .4rem 0;
    border-bottom: 1px solid var(--line-dark);
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; flex-direction: column;
  color: #fff; background: var(--ink);
  overflow: hidden;
  padding: var(--nav-h) 0 0;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 55% 38%;
  filter: saturate(.7) brightness(.8);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(14,26,42,.88) 0%, rgba(14,26,42,.55) 55%, rgba(14,26,42,.25) 100%),
    linear-gradient(0deg, rgba(14,26,42,.9) 0%, rgba(14,26,42,0) 45%);
}
.hero__in {
  width: min(1240px, 100% - 2 * var(--gutter) - 2 * var(--thermo-space)); margin-inline: auto;
  flex: 1; display: flex; flex-direction: column; justify-content: center;  /* texte centré entre menu et bandeau */
  padding-block: clamp(32px, 6vh, 64px);
}
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.9rem, 9.4vw, 7.4rem);
  line-height: .94; letter-spacing: -.045em;
  max-width: 13ch;
}
.hero__kicker {
  display: block; margin-bottom: 1.4rem;
  font-family: var(--font-mono); font-weight: 400; font-size: clamp(.78rem, 1.4vw, .9rem);
  letter-spacing: .01em; line-height: 1.4; color: var(--on-dark-2);
}
.hero__lead { margin-top: 1.6rem; max-width: 44ch; font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: #D5DCE4; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2.2rem; }

.hero__creds {
  width: min(1240px, 100% - 2 * var(--gutter) - 2 * var(--thermo-space)); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: .4rem 2.2rem;
  padding: 1.1rem 0 calc(1.2rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono); font-size: .8rem; color: var(--on-dark-2);
}
.hero__creds b { color: #fff; font-weight: 500; }

/* entrée du hero : une seule fois, discrète */
@media (prefers-reduced-motion: no-preference) {
  .hero__title, .hero__lead, .hero__cta, .hero__creds { animation: heroIn 1s var(--ease) both; }
  .hero__lead  { animation-delay: .12s; }
  .hero__cta   { animation-delay: .22s; }
  .hero__creds { animation-delay: .4s; }
  .hero__media { animation: heroZoom 14s ease-out both; }
}
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ==========================================================================
   PRESTATIONS — liste éditoriale, pastille de température par ligne
   ========================================================================== */
.svc { padding: clamp(80px, 13vw, 170px) 0; }
.svc__grid { display: grid; gap: 3rem; }
@media (min-width: 960px) {
  .svc__grid { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
  .svc__head { position: sticky; top: calc(var(--nav-h) + 40px); }
}
.legend { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }
.legend li { display: flex; align-items: center; gap: .5rem; }
.t { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.t--heat { background: var(--ember); }
.t--cold { background: var(--glacier); }
.t--water { background: var(--water); }

.svc__list { border-top: 1px solid var(--line); }
.svc-row {
  --c: var(--ember);
  position: relative;
  display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem;
  padding: 1.7rem .5rem 1.7rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease), background-color .35s var(--ease);
}
.svc-row[data-t="cold"]  { --c: var(--glacier); }
.svc-row[data-t="water"] { --c: var(--water); }
.svc-row::before {
  content: ""; position: absolute; left: 0; top: -1px; bottom: -1px; width: 3px;
  background: var(--c); transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease);
}
.svc-row__n { font-family: var(--font-mono); font-size: .85rem; color: var(--muted); padding-top: .45rem; display: flex; align-items: flex-start; gap: .45rem; }
.svc-row__n::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c); margin-top: .35rem; }
.svc-row h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.45rem, 2.6vw, 1.9rem); letter-spacing: -.025em; line-height: 1.15; }
.svc-row p { color: var(--muted); margin-top: .45rem; max-width: 56ch; }
.svc-row .tags { font-family: var(--font-mono); font-size: .78rem; color: var(--ink); margin-top: .8rem; }
@media (hover: hover) {
  .svc-row:hover { padding-left: 1.2rem; background: color-mix(in srgb, var(--c) 5%, transparent); }
  .svc-row:hover::before { transform: scaleY(1); }
}

/* ==========================================================================
   RÉALISATIONS — galerie en colonnes, voile de couleur + légende au survol
   ========================================================================== */
.real { padding: clamp(80px, 12vw, 150px) 0; background: var(--chalk); }
.real__head { margin-bottom: 3rem; }
.real__head .lead { max-width: 52ch; }

.gallery { columns: 2; column-gap: 12px; }
@media (min-width: 760px) { .gallery { columns: 3; column-gap: 16px; } }
@media (min-width: 1100px) { .gallery { columns: 4; } }
.shot {
  break-inside: avoid; margin: 0 0 12px; position: relative;
  border-radius: var(--r); overflow: hidden; cursor: zoom-in; background: #d9d6ce;
  isolation: isolate;
}
@media (min-width: 760px) { .shot { margin-bottom: 16px; } }
.shot img { width: 100%; height: auto; transition: transform .9s var(--ease), filter .5s var(--ease); }
.shot figcaption {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  color: #fff; font-size: .8rem; font-weight: 500; line-height: 1.3;
}
.shot figcaption small { display: block; font-family: var(--font-mono); font-size: .68rem; font-weight: 400; opacity: .75; margin-bottom: .2rem; }

/* Mobile / tactile : photo seule (la légende reste dans la lightbox) */
.shot figcaption { display: none; }
.shot::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; }

/* Desktop : voile bleu nuit teinté + légende qui monte au survol */
@media (hover: hover) and (min-width: 760px) {
  .shot figcaption { display: block; }
  .shot::after {
    background: linear-gradient(160deg, rgba(60,142,214,.55) 0%, rgba(14,26,42,.88) 70%);
    opacity: 0; transition: opacity .45s var(--ease);
  }
  .shot figcaption {
    left: 18px; right: 18px; bottom: 18px;
    font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em;
    opacity: 0; transform: translateY(14px);
    transition: opacity .45s var(--ease), transform .45s var(--ease);
  }
  .shot figcaption small { font-family: var(--font-mono); font-weight: 400; letter-spacing: 0; margin-bottom: .35rem; }
  .shot:hover::after, .shot:focus-visible::after { opacity: 1; }
  .shot:hover figcaption, .shot:focus-visible figcaption { opacity: 1; transform: none; }
  .shot:hover img, .shot:focus-visible img { transform: scale(1.05); filter: grayscale(.6) contrast(1.05); }
}

/* ==========================================================================
   L'ENTREPRISE — photo camion + « plaque signalétique »
   ========================================================================== */
.about { padding: clamp(80px, 13vw, 170px) 0; }
.about__grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 960px) { .about__grid { grid-template-columns: 6fr 5fr; gap: 5rem; } }
.about__img { position: relative; }
@media (min-width: 960px) { .about__img { position: sticky; top: calc(var(--nav-h) + 40px); } }
.about__img img { width: 100%; height: auto; aspect-ratio: 4 / 3.3; object-fit: cover; object-position: 30% 55%; border-radius: var(--r-lg); }
.about__img figcaption { margin-top: .8rem; font-family: var(--font-mono); font-size: .78rem; color: var(--muted); }
.about__txt p:not(.kicker):not(.lead) { margin-top: 1rem; max-width: 50ch; color: var(--muted); }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.stat__n {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.045em;
}
.stat__n .u { font-size: .5em; margin-left: .08em; color: var(--ember); vertical-align: .55em; letter-spacing: 0; }
.stat__l { margin-top: .55rem; font-family: var(--font-mono); font-size: .76rem; color: var(--muted); line-height: 1.4; }

/* ==========================================================================
   AVIS
   ========================================================================== */
.avis { padding: 0 0 clamp(80px, 12vw, 150px); }
.avis__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 2rem; margin-bottom: 2.5rem; }
.avis__head .kicker { margin: 0; }
.stars { color: var(--ember); letter-spacing: .12em; font-size: 1.1rem; }
.stars--sm { font-size: .85rem; }
.avis__grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .avis__grid { grid-template-columns: 7fr 4fr; gap: 2.5rem 5rem; align-items: start; }
  .quote--main { grid-row: span 2; }
  .quote:not(.quote--main) { padding-left: 2rem; border-left: 1px solid var(--line); }
}
.quote blockquote p { font-size: 1.15rem; line-height: 1.5; margin-top: .9rem; text-wrap: pretty; }
.quote--main blockquote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.55rem, 3.2vw, 2.4rem); line-height: 1.18; letter-spacing: -.02em;
}
.quote figcaption { margin-top: 1.1rem; font-weight: 600; }
.quote figcaption span { font-weight: 400; color: var(--muted); font-family: var(--font-mono); font-size: .78rem; }
.link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 3rem;
  font-weight: 600; text-decoration: none; border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
}
.link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link:hover svg { transform: translate(2px, -2px); }

/* ==========================================================================
   CONTACT (sombre)
   ========================================================================== */
.contact { background: var(--ink); color: var(--on-dark); padding: clamp(80px, 12vw, 150px) 0 clamp(60px, 8vw, 100px); }
.contact__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.3rem, 7vw, 5.6rem); line-height: 1; letter-spacing: -.045em; color: #fff;
}
.contact__title a { text-decoration: none; color: var(--ember); font-variant-numeric: tabular-nums; white-space: nowrap; transition: color .25s; }
.contact__title a:hover { color: #FF6A4D; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2.4rem; }
.contact__actions .btn--ghost { white-space: normal; }
.contact__grid { display: grid; gap: 2.5rem; margin-top: clamp(3rem, 7vw, 5rem); padding-top: 2.5rem; border-top: 1px solid var(--line-dark); }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr 1.3fr; gap: 3rem; } }
.cblock h3 { font-family: var(--font-mono); font-weight: 400; font-size: .8rem; color: var(--on-dark-2); margin-bottom: .9rem; }
.cblock h3:not(:first-child) { margin-top: 1.8rem; }
.cblock a { text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.cblock a:hover { border-color: currentColor; }
.zone { max-width: 34ch; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem .7rem; margin: 0 -.7rem; border-radius: var(--r); font-variant-numeric: tabular-nums; }
.hours li.off { color: var(--on-dark-2); }
.hours li.is-today { background: rgba(233,237,242,.08); color: #fff; font-weight: 600; }
.hours li span:last-child { white-space: nowrap; }
.hours li.is-today span:first-child { display: inline-flex; align-items: center; gap: .5rem; }
.hours li.is-today span:first-child::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 3px rgba(224,69,42,.25); }
.cblock--map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; border-radius: var(--r-lg); filter: grayscale(1) invert(.9) contrast(.9); }



/* ==========================================================================
   FOOTER — sombre, 3 colonnes (skill : footer variante 8)
   ========================================================================== */
.ftr { background: var(--ink); color: var(--on-dark-2); }
.ftr__grid { display: grid; gap: 2.6rem; padding: clamp(56px, 8vw, 90px) 0 clamp(40px, 6vw, 60px); }
@media (min-width: 860px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1.2fr; gap: clamp(40px, 5vw, 80px); } }
.brand--ftr { color: #fff; }
.brand--ftr .brand__word { font-size: 2.4rem; }
.ftr__slogan { margin-top: .7rem; color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; letter-spacing: -.01em; }
.ftr__desc { margin-top: .8rem; max-width: 42ch; font-size: .95rem; line-height: 1.65; }
.ftr__creds { margin-top: 1.2rem; font-family: var(--font-mono); font-size: .74rem; color: var(--on-dark-2); }
.ftr__t { font-family: var(--font-mono); font-weight: 400; font-size: .78rem; color: var(--ember); margin-bottom: 1.2rem; }
.ftr__nav { display: flex; flex-direction: column; gap: .7rem; }
.ftr__nav a { display: inline-flex; width: fit-content; text-decoration: none; color: var(--on-dark); transition: color .3s var(--ease), transform .3s var(--ease); }
.ftr__nav a:hover { color: #fff; transform: translateX(4px); }
.ftr__contact { display: flex; flex-direction: column; gap: .8rem; font-size: .95rem; }
.ftr__phone { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; color: #fff; text-decoration: none; width: fit-content; transition: color .25s; }
.ftr__phone:hover { color: #FF7A5E; }
.ftr__link { color: var(--on-dark); text-decoration: none; width: fit-content; word-break: break-word; transition: color .25s; }
.ftr__link:hover { color: #fff; }
.ftr__hours { font-size: .86rem; opacity: .8; }
.ftr__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem;
  padding: 1.4rem 0 calc(1.2rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono); font-size: .72rem;
}
.ftr__bottom a { text-decoration: underline; text-underline-offset: 3px; }
.ftr__bottom a:hover { color: #fff; }

/* ==========================================================================
   BOUTON D'APPEL FLOTTANT (mobile, en bas à droite, sous le thermomètre)
   ========================================================================== */
.fcall { display: none; }
@media (max-width: 899px) {
  .fcall {
    display: grid; place-items: center;
    position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 55;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--glacier-ink); color: #fff;
    box-shadow: 0 10px 28px rgba(29,103,173,.4), 0 2px 6px rgba(14,26,42,.2);
    opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .fcall svg { width: 20px; height: 20px; }
  .fcall.is-on { opacity: 1; transform: none; pointer-events: auto; }
  .fcall::before {                      /* halo discret, une pulsation lente */
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid var(--glacier); opacity: 0;
  }
  .fcall.is-on::before { animation: fcallPulse 2.8s var(--ease) 1s infinite; }
  body.menu-open .fcall { opacity: 0; pointer-events: none; }
}
@keyframes fcallPulse { 0% { transform: scale(1); opacity: .6; } 70%, 100% { transform: scale(1.55); opacity: 0; } }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lb {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: rgba(8,14,23,.94);
  padding: 64px 16px;
}
.lb[hidden] { display: none; }
.lb__stage { max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lb__stage img { max-height: calc(100svh - 170px); width: auto; border-radius: var(--r); }
.lb__stage figcaption { color: var(--on-dark); font-family: var(--font-mono); font-size: .8rem; text-align: center; }
.lb__btn {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  transition: background-color .25s;
}
.lb__btn:hover { background: rgba(255,255,255,.18); }
.lb__btn svg { width: 22px; height: 22px; }
.lb__close { top: 14px; right: 14px; }
.lb__prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb__prev, .lb__next { top: auto; bottom: 14px; transform: none; }
  .lb__prev { left: calc(50% - 60px); } .lb__next { right: calc(50% - 60px); }
}

/* ---------- Apparition au scroll (.rise → .in) ---------- */
.js .rise { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .rise.in { opacity: 1; transform: none; }
.js .svc-row.rise { transition: opacity .8s var(--ease), transform .8s var(--ease), padding-left .35s var(--ease), background-color .35s var(--ease); }

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rise { opacity: 1; transform: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

