/* CD Engineering — landing page
   One family (Archivo, variable width and weight): the wide 900 cut echoes their heavy
   geometric wordmark, the normal cut is the reading face. Colours come from their van,
   their yellow buttons and the mascot. Yellow is the only action colour: the phone. */

:root {
  /* ---- colour ---- */
  --navy: #0F1A4A;          /* their site navy, the van */
  --navy-deep: #0A1236;
  --navy-2: #1A2A6E;
  --yellow: #F5C842;        /* their pill yellow, one step deeper for contrast */
  --yellow-ink: #7A5C00;    /* yellow you can read on paper */
  --coral: #F26B5E;         /* the mascot's arms */
  --lilac: #E9E8F5;         /* the mascot's body */
  --paper: #F6F5F0;
  --white: #FFFFFF;
  --ink: #10173A;
  --ink-soft: rgba(16, 23, 58, .72);
  --on-navy: var(--paper);
  --on-navy-soft: rgba(246, 245, 240, .72);
  --line-navy: rgba(246, 245, 240, .14);
  --line-navy-strong: rgba(246, 245, 240, .3);
  --line-ink: rgba(16, 23, 58, .16);
  --line-ink-strong: rgba(16, 23, 58, .4);
  --yellow-tint: rgba(245, 200, 66, .14);
  --navy-glass: rgba(15, 26, 74, .86);
  --green: #4CCB7E;

  /* ---- type ---- */
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --wide: "wdth" 118;
  --semi: "wdth" 108;
  --normal: "wdth" 100;
  --t-label: .72rem;
  --t-nav: .8rem;
  --t-small: .85rem;
  --t-body: 1.0625rem;
  --t-lead: clamp(1.1rem, 1.5vw, 1.35rem);
  --t-h3: clamp(1.25rem, 1.7vw, 1.6rem);
  --t-h2: clamp(2rem, 4vw, 3.4rem);
  --t-h1: clamp(2.8rem, 6.5vw, 6.2rem);
  --t-num: clamp(2.6rem, 4.6vw, 4.2rem);
  --t-phone: clamp(2rem, 3.6vw, 3.6rem);
  --t-quote: clamp(1.1rem, 1.5vw, 1.3rem);
  --t-rating: clamp(5rem, 12vw, 11rem);
  --lh-body: 1.55;
  --lh-tight: .92;
  --track-label: .16em;
  --measure: 58ch;

  /* ---- space (4px scale) ---- */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem; --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem; --sp-10: 2.5rem; --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem; --sp-32: 8rem;
  --section: clamp(var(--sp-16), 9vw, var(--sp-32));
  --safe: clamp(var(--sp-5), 4vw, 4.5rem);
  --max: 1480px;
  --aside: clamp(300px, 32vw, 520px);
  --header-h: 4.5rem;
  --touch: 2.75rem;

  /* ---- shape & motion ---- */
  --radius: .25rem;
  --radius-pill: 999px;
  --hairline: 1px;
  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --ease-inout: cubic-bezier(.77, 0, .18, 1);
  --d-fast: .25s;
  --d-base: .5s;
  --d-reveal: .9s;
  --z-header: 800;
  --z-menu: 750;
  --z-sticky: 700;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
body {
  margin: 0; font-family: var(--font); font-size: var(--t-body); line-height: var(--lh-body);
  font-variation-settings: var(--normal); color: var(--ink); background: var(--paper);
  overflow-x: clip; -webkit-font-smoothing: antialiased;
}
html.menu-open body { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.on-yellow :focus-visible, .btn-yellow:focus-visible { outline-color: var(--navy); }
.ico { width: 1.1em; height: 1.1em; flex: none; }
.skip-link { position: absolute; left: var(--sp-4); top: -100px; z-index: 1000; padding: var(--sp-3) var(--sp-4); background: var(--yellow); color: var(--ink); font-weight: 700; }
.skip-link:focus { top: var(--sp-4); }
.wrap { width: min(100% - 2 * var(--safe), var(--max)); margin-inline: auto; }

.eyebrow {
  display: flex; align-items: center; gap: var(--sp-3); margin: 0 0 var(--sp-5);
  font-size: var(--t-label); letter-spacing: var(--track-label); text-transform: uppercase; font-weight: 700; color: var(--yellow-ink);
}
.eyebrow::before { content: ""; width: var(--sp-8); height: 3px; background: currentColor; }
.section-navy .eyebrow { color: var(--yellow); }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -.02em; line-height: var(--lh-tight); }
.display { font-variation-settings: var(--wide); text-transform: uppercase; }
.section-title { font-size: var(--t-h2); max-width: 22ch; margin-bottom: var(--sp-6); }
.lead { font-size: var(--t-lead); line-height: 1.45; max-width: 44ch; margin: 0; color: var(--ink-soft); }
.section-navy .lead { color: var(--on-navy-soft); }
p { margin: 0 0 var(--sp-4); max-width: var(--measure); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em; min-height: var(--touch); padding: .9em 1.5em;
  border: 2px solid transparent; border-radius: var(--radius); text-decoration: none; cursor: pointer;
  font-size: var(--t-nav); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-variation-settings: var(--semi);
  transition: transform var(--d-fast) var(--ease-out), background var(--d-fast), color var(--d-fast), border-color var(--d-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--white); border-color: var(--white); }
.btn-ghost { border-color: var(--line-navy-strong); color: var(--on-navy); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-ink { border-color: var(--line-ink-strong); color: var(--ink); }
.btn-ink:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-lg { font-size: .95rem; padding: 1em 1.7em; }
.btn-phone { font-variation-settings: var(--wide); font-size: 1.05rem; letter-spacing: .02em; }
.link-more { display: inline-flex; align-items: center; gap: var(--sp-2); text-decoration: none; font-weight: 700; border-bottom: 2px solid var(--yellow); padding-bottom: .1em; transition: gap var(--d-fast); }
.link-more:hover { gap: var(--sp-3); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header); height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: 0 var(--safe); background: var(--navy-glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--hairline) solid var(--line-navy); color: var(--on-navy);
  transition: transform .5s var(--ease-out);
}
.site-header.hidden { transform: translateY(-105%); }
.brand { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; color: var(--on-navy); }
.brand img { width: 2.4rem; height: 2.4rem; object-fit: contain; }
.brand b { font-size: 1.05rem; font-weight: 900; font-variation-settings: var(--wide); letter-spacing: -.01em; text-transform: uppercase; }
.nav-desktop { display: flex; gap: var(--sp-6); }
.nav-desktop a { text-decoration: none; font-size: var(--t-nav); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--on-navy-soft); padding: .5rem 0; border-bottom: 2px solid transparent; transition: color var(--d-fast), border-color var(--d-fast); }
.nav-desktop a:hover, .nav-desktop a:focus-visible { color: var(--on-navy); border-color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.menu-btn { display: none; width: var(--touch); height: var(--touch); flex-direction: column; justify-content: center; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; }
.menu-btn span { width: 1.5rem; height: 2px; background: var(--on-navy); transition: transform .35s var(--ease-out); }
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.menu { position: fixed; inset: var(--header-h) 0 0 0; z-index: var(--z-menu); background: var(--navy-deep); color: var(--on-navy); padding: var(--sp-8) var(--safe); display: flex; flex-direction: column; gap: var(--sp-8); clip-path: inset(0 0 100% 0); visibility: hidden; transition: clip-path .6s var(--ease-inout), visibility 0s .6s; }
.menu.open { clip-path: inset(0); visibility: visible; transition-delay: 0s; }
.menu nav { display: flex; flex-direction: column; }
.menu nav a { padding: var(--sp-3) 0; text-decoration: none; font-size: clamp(2rem, 9vw, 3rem); font-weight: 800; font-variation-settings: var(--wide); text-transform: uppercase; line-height: 1.1; border-bottom: var(--hairline) solid var(--line-navy); }
.menu-foot { display: flex; flex-direction: column; gap: var(--sp-2); color: var(--on-navy-soft); }
.menu-foot a { color: var(--on-navy); text-decoration: none; font-weight: 700; }

/* ---------- guide layout: content column + sticky mascot ---------- */
.guide { position: relative; --stage: var(--navy); background: var(--stage); transition: background .7s var(--ease-out); }
.aside {
  display: none; position: sticky; top: 0; height: 100svh; align-items: center; justify-content: center;
  pointer-events: none; z-index: 2; overflow: hidden;
}
.mascot { position: relative; width: min(100%, 78vh); aspect-ratio: 1 / 1; display: grid; place-items: center; --sc: 1; --tilt: 0deg; --float: 0px; }
.mascot img { position: absolute; z-index: 1; inset: 8%; width: 84%; height: 84%; object-fit: contain; opacity: 0; transition: opacity 0s; transform: translateY(var(--float)) rotate(var(--tilt)) scale(var(--sc)); transform-origin: 50% 60%; filter: drop-shadow(0 30px 40px rgba(10, 18, 54, .35)); }
.mascot img.on { opacity: 1; }
.mascot.zap img.on { filter: brightness(2.2) saturate(.2) drop-shadow(0 0 40px var(--yellow)); }
.mascot.ring img.on { animation: ring .12s linear 6; }
@keyframes ring { 0%, 100% { transform: translateY(var(--float)) rotate(-4deg) scale(var(--sc)); } 50% { transform: translateY(var(--float)) rotate(4deg) scale(var(--sc)); } }
/* The cable sits under the mascot (z-index 0) so it emerges from behind the pin; design.js
   sets its top and height so it ends at the socket when plugged, off-screen otherwise. */
.cable { position: absolute; z-index: 0; left: 50%; top: 86%; width: 12px; height: 60vh; margin-left: -6px; overflow: visible; }
.cable path { fill: none; stroke: var(--yellow); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 18 14; animation: flow 1.2s linear infinite; }
.cable path.under { stroke: var(--navy-deep); stroke-width: 12; stroke-dasharray: none; animation: none; }
@keyframes flow { to { stroke-dashoffset: -32; } }
.socket { position: absolute; z-index: 3; left: 50%; bottom: 6vh; width: 88px; height: 88px; margin-left: -44px; border-radius: 50%; background: var(--lilac); border: 4px solid var(--navy-deep); display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: opacity var(--d-base), transform var(--d-base) var(--ease-out); }
.socket::before, .socket::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--navy-deep); top: 34px; }
.socket::before { left: 22px; } .socket::after { right: 22px; }
.socket i { width: 12px; height: 22px; border-radius: 6px; background: var(--navy-deep); position: absolute; top: 6px; }
.socket-label { position: absolute; z-index: 3; left: 50%; bottom: 2vh; transform: translateX(-50%); font-size: var(--t-label); letter-spacing: var(--track-label); text-transform: uppercase; font-weight: 700; color: var(--yellow); opacity: 0; transition: opacity var(--d-base) .2s; }
.aside.plugged .socket, .aside.plugged .socket-label { opacity: 1; transform: none; }
.aside.plugged .socket-label { transform: translateX(-50%); }

@media (min-width: 1000px) {
  .guide { display: grid; grid-template-columns: minmax(0, 1fr) var(--aside); column-gap: clamp(var(--sp-8), 4vw, var(--sp-16)); align-items: start; }
  .guide > .content { min-width: 0; }
  .aside { display: flex; }
  .mascot-inline { display: none; }
}

/* ---------- sections ---------- */
section { padding: var(--section) 0; }
.section-navy { background: var(--navy); color: var(--on-navy); }
.section-paper { background: var(--paper); }
.section-lilac { background: var(--lilac); }
.section-yellow { background: var(--yellow); color: var(--ink); }
.content > section > .wrap { width: auto; margin: 0; padding-left: var(--safe); }
.full { grid-column: 1 / -1; }

/* hero */
.hero { position: relative; min-height: 100svh; padding-top: calc(var(--header-h) + var(--sp-16)); display: flex; flex-direction: column; justify-content: center; background: var(--navy); color: var(--on-navy); overflow: hidden; }
.hero-title { font-size: var(--t-h1); max-width: 12ch; margin-bottom: var(--sp-6); }
.hero-title em { font-style: normal; color: var(--yellow); }
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-title .word > span { display: inline-block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
html.ready .hero-title .word > span { transform: none; }
.hero-lead { color: var(--on-navy-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-8); }
.hero-strip { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-8); margin-top: var(--sp-12); padding-top: var(--sp-5); border-top: var(--hairline) solid var(--line-navy); font-size: var(--t-small); color: var(--on-navy-soft); }
.hero-strip b { color: var(--on-navy); font-weight: 700; }
.status { display: inline-flex; align-items: center; gap: var(--sp-2); }
.status-dot { width: .6rem; height: .6rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(76, 203, 126, .6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(76, 203, 126, .6); } 70% { box-shadow: 0 0 0 10px rgba(76, 203, 126, 0); } 100% { box-shadow: 0 0 0 0 rgba(76, 203, 126, 0); } }
.mascot-inline { margin: 0 0 var(--sp-8); width: min(60vw, 320px); }

/* numbers */
.numbers { padding: var(--sp-10) 0; background: var(--yellow); color: var(--ink); }
.numbers dl { margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.numbers div { border-left: 2px solid var(--ink); padding-left: var(--sp-4); }
.numbers dt { font-size: var(--t-num); font-weight: 900; font-variation-settings: var(--wide); line-height: .9; letter-spacing: -.03em; }
.numbers dt small { font-size: .5em; vertical-align: top; }
.numbers dd { margin: var(--sp-2) 0 0; font-size: var(--t-small); font-weight: 600; }

/* services */
.services-grid { list-style: none; margin: var(--sp-8) 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--ink); }
.services-grid li { border-bottom: var(--hairline) solid var(--line-ink); }
.services-grid li:nth-child(odd) { border-right: var(--hairline) solid var(--line-ink); }
.services-grid a { display: grid; grid-template-columns: 2.4rem 1fr auto; gap: var(--sp-3); align-items: start; padding: var(--sp-5) var(--sp-4) var(--sp-5) 0; text-decoration: none; min-height: 100%; transition: background var(--d-fast); }
.services-grid li:nth-child(even) a { padding-left: var(--sp-4); }
.services-grid a:hover { background: var(--yellow-tint); }
.services-grid a:hover .ico-arrow { transform: translate(4px, -4px); }
.services-grid .n { font-size: var(--t-small); font-weight: 700; color: var(--yellow-ink); padding-top: .35rem; font-variant-numeric: tabular-nums; }
.services-grid h3 { font-size: var(--t-h3); margin-bottom: var(--sp-2); }
.services-grid p { margin: 0; font-size: var(--t-small); color: var(--ink-soft); }
.services-grid .ico-arrow { width: 1.2rem; height: 1.2rem; margin-top: .3rem; color: var(--ink); transition: transform var(--d-fast) var(--ease-out); }

/* marquee */
.marquee { padding: var(--sp-4) 0; border-top: var(--hairline) solid var(--line-ink); border-bottom: var(--hairline) solid var(--line-ink); overflow: hidden; background: var(--paper); }
.marquee-track { display: flex; width: max-content; gap: var(--sp-8); font-size: var(--t-small); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); animation: marquee 60s linear infinite; }
.marquee-track span::after { content: "·"; margin-left: var(--sp-8); color: var(--yellow-ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* team band */
.team { padding: 0; }
.team figure { margin: 0; position: relative; }
.team img { width: 100%; height: clamp(320px, 58vh, 720px); object-fit: cover; object-position: 50% 60%; }
.team figcaption { position: absolute; left: var(--safe); bottom: var(--sp-6); right: var(--safe); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-3); color: var(--white); font-size: var(--t-small); text-shadow: 0 1px 8px rgba(0, 0, 0, .6); }
.team figcaption b { font-size: var(--t-h3); font-weight: 800; font-variation-settings: var(--wide); text-transform: uppercase; }

/* urgence */
.urgence .tag { display: inline-block; margin-bottom: var(--sp-5); padding: .4em .8em; background: var(--coral); color: var(--ink); font-size: var(--t-label); font-weight: 800; letter-spacing: var(--track-label); text-transform: uppercase; }
.urgence-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-10); align-items: center; margin-top: var(--sp-8); }
.urgence figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.urgence img { width: 100%; height: 100%; object-fit: cover; }
.urgence-copy p { color: var(--on-navy-soft); }
.phone-big { display: inline-block; margin: var(--sp-6) 0 var(--sp-2); font-size: var(--t-phone); font-weight: 900; font-variation-settings: var(--wide); letter-spacing: -.02em; line-height: 1; white-space: nowrap; color: var(--yellow); text-decoration: none; transition: color var(--d-fast); }
.phone-big:hover { color: var(--white); }
.phone-note { font-size: var(--t-small); color: var(--on-navy-soft); margin: 0; }

/* méthode */
.steps { list-style: none; counter-reset: step; margin: var(--sp-8) 0 0; padding: 0; display: grid; gap: 0; border-top: 2px solid var(--ink); }
.steps li { counter-increment: step; display: grid; grid-template-columns: 4.5rem 1fr; gap: var(--sp-6); padding: var(--sp-6) 0; border-bottom: var(--hairline) solid var(--line-ink); }
.steps li::before { content: "0" counter(step); font-size: var(--t-num); font-weight: 900; font-variation-settings: var(--wide); line-height: .9; color: var(--yellow-ink); }
.steps h3 { font-size: var(--t-h3); margin-bottom: var(--sp-2); }
.steps p { margin: 0; color: var(--ink-soft); }
.methode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); align-items: start; }
.methode-grid figure { margin: 0; position: sticky; top: calc(var(--header-h) + var(--sp-6)); aspect-ratio: 3 / 4; overflow: hidden; }
.methode-grid img { width: 100%; height: 100%; object-fit: cover; }

/* réalisations */
.cats { list-style: none; margin: var(--sp-6) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.cats li { padding: .45rem .8rem; border: var(--hairline) solid var(--line-navy-strong); font-size: var(--t-small); font-weight: 600; }
.gallery { display: flex; gap: var(--sp-4); margin-top: var(--sp-8); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: var(--sp-2); -webkit-overflow-scrolling: touch; }
.gallery::-webkit-scrollbar { display: none; }
.gallery figure { flex: none; width: clamp(240px, 30vw, 380px); margin: 0; scroll-snap-align: start; }
.gallery figure.tall { width: clamp(180px, 20vw, 260px); }
.gallery img { width: 100%; height: clamp(280px, 40vh, 420px); object-fit: cover; }
.gallery figcaption { margin-top: var(--sp-2); font-size: var(--t-label); letter-spacing: var(--track-label); text-transform: uppercase; font-weight: 700; color: var(--on-navy-soft); }

/* avis */
.avis-head { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-8); align-items: end; margin-bottom: var(--sp-8); }
.rating { font-size: var(--t-rating); font-weight: 900; font-variation-settings: var(--wide); line-height: .85; letter-spacing: -.04em; }
.rating small { font-size: .3em; font-weight: 700; letter-spacing: 0; }
.stars { color: var(--yellow-ink); font-size: 1.2rem; letter-spacing: .1em; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.review-grid blockquote { margin: 0; padding: var(--sp-6); background: var(--white); border-top: 3px solid var(--yellow); }
.review-grid p { margin: 0 0 var(--sp-4); font-size: var(--t-quote); line-height: 1.4; }
.review-grid footer { display: flex; justify-content: space-between; gap: var(--sp-3); font-size: var(--t-small); font-weight: 700; }
.review-grid footer span { color: var(--ink-soft); font-weight: 500; }

/* tarifs */
.tarifs-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-10); align-items: start; }
.promise { font-size: var(--t-lead); line-height: 1.4; font-weight: 600; max-width: 40ch; }
.promise em { font-style: normal; background: var(--yellow); padding: 0 .15em; }
.words { list-style: none; margin: var(--sp-6) 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.words li { padding: var(--sp-4); background: var(--white); font-weight: 800; font-variation-settings: var(--wide); text-transform: uppercase; font-size: var(--t-small); letter-spacing: .04em; }
.tarifs .btn { margin-top: var(--sp-6); }

/* zones */
.zones .chips { list-style: none; margin: var(--sp-6) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.zones .chips li { padding: .45rem .8rem; border: var(--hairline) solid var(--line-ink-strong); font-size: var(--t-small); font-weight: 600; }
.zones .chips li.brabant { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--sp-12); align-items: start; }
.contact-phone { display: inline-block; margin: var(--sp-4) 0 var(--sp-1); font-size: var(--t-phone); font-weight: 900; font-variation-settings: var(--wide); letter-spacing: -.02em; line-height: 1; white-space: nowrap; color: var(--yellow); text-decoration: none; }
.contact-phone:hover { color: var(--white); }
.contact-list { list-style: none; margin: var(--sp-6) 0 0; padding: 0; display: grid; gap: var(--sp-3); }
.contact-list li { display: grid; grid-template-columns: 7rem 1fr; gap: var(--sp-3); padding: var(--sp-3) 0; border-bottom: var(--hairline) solid var(--line-navy); font-size: var(--t-small); }
.contact-list dt, .contact-list .k { color: var(--on-navy-soft); text-transform: uppercase; letter-spacing: var(--track-label); font-size: var(--t-label); font-weight: 700; padding-top: .2rem; }
.contact-list a { text-decoration: none; font-weight: 700; border-bottom: var(--hairline) solid var(--line-navy-strong); }
.contact-list a:hover { border-color: var(--yellow); }
.contact-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.addr { font-style: normal; line-height: 1.5; }
.addr b { display: block; color: var(--yellow); }
.addresses { display: grid; gap: var(--sp-6); }

/* footer */
.site-footer { background: var(--navy-deep); color: var(--on-navy-soft); padding: var(--sp-10) 0; font-size: var(--t-small); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-4) var(--sp-8); }
.footer-grid a { text-decoration: none; color: var(--on-navy); }
.footer-grid a:hover { color: var(--yellow); }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* sticky call bar (phones) */
.sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky); gap: var(--sp-2); padding: .6rem var(--safe) calc(.6rem + env(safe-area-inset-bottom, 0px)); background: var(--navy-glass); backdrop-filter: blur(12px); border-top: var(--hairline) solid var(--line-navy); }
.sticky-cta .btn-yellow { flex: 1; justify-content: center; }

/* reveals */
html.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity var(--d-reveal) var(--ease-out), transform var(--d-reveal) var(--ease-out); }
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 999px) {
  .nav-desktop, .header-actions .btn { display: none; }
  .menu-btn { display: flex; }
  .content > section > .wrap { width: min(100% - 2 * var(--safe), var(--max)); margin-inline: auto; padding-left: 0; }
  .hero { padding-top: calc(var(--header-h) + var(--sp-8)); }
  .site-footer { padding-bottom: 6.5rem; }
  .sticky-cta { display: flex; }
}
@media (max-width: 799px) {
  .numbers dl { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid li:nth-child(odd) { border-right: 0; }
  .services-grid li:nth-child(even) a { padding-left: 0; }
  .urgence-grid, .methode-grid, .review-grid, .tarifs-grid, .contact-grid { grid-template-columns: 1fr; }
  .methode-grid figure { position: static; aspect-ratio: 4 / 3; }
  .avis-head { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: var(--sp-1); }
}
@media (max-width: 599px) {
  .hero-title { font-size: clamp(2.1rem, 10.5vw, 3rem); }
  .display { font-variation-settings: "wdth" 104; }
  .hero-cta .btn, .contact-ctas .btn, .tarifs .btn { width: 100%; justify-content: center; }
  .words { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee-track, .cable path, .status-dot { animation: none; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .hero-title .word > span { transform: none; }
}
html.no-anim .marquee-track, html.no-anim .cable path, html.no-anim .status-dot { animation: none; }
html.no-anim [data-reveal] { opacity: 1; transform: none; }
html.no-anim .hero-title .word > span { transform: none; }
