/* Garage Born Dépannage Auto — tableau de service */

@font-face { font-family: "Barlow"; src: url(/assets/fonts/barlow-latin-400-normal.woff2) format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Barlow"; src: url(/assets/fonts/barlow-latin-500-normal.woff2) format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Barlow"; src: url(/assets/fonts/barlow-latin-600-normal.woff2) format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Barlow"; src: url(/assets/fonts/barlow-latin-700-normal.woff2) format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url(/assets/fonts/barlow-condensed-latin-600-normal.woff2) format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url(/assets/fonts/barlow-condensed-latin-800-normal.woff2) format("woff2"); font-weight: 800; font-display: swap; }

:root {
  --ground: #0d0e10;
  --panel: #15171a;
  --panel-2: #1c1f23;
  --rule: #2b2f35;
  --rule-strong: #3c424a;
  --text: #f2efe9;
  --muted: #b3b7bd;
  --dim: #858a92;
  --orange: #ff6b1a;
  --orange-hot: #ff8a45;
  --on-orange: #160a02;
  --plate: #f4f1ea;
  --plate-ink: #121314;

  --font: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --wrap: 1240px;
  --gut: clamp(16px, 4vw, 40px);
  --r: 14px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --head-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--head-h) + 16px); color-scheme: dark; scrollbar-color: var(--rule-strong) var(--ground); }
body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font: 400 1.0625rem/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: color-mix(in srgb, var(--orange) 70%, transparent); text-underline-offset: .22em; text-decoration-thickness: 1.5px; }
a:hover { color: var(--orange-hot); }
::selection { background: var(--orange); color: var(--on-orange); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--ground); }
::-webkit-scrollbar-thumb { background: var(--rule-strong); border: 3px solid var(--ground); border-radius: 8px; }

h1, h2, h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: .95; letter-spacing: -.005em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.9rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); margin-bottom: .45em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); line-height: 1.05; font-weight: 800; }
p { margin: 0 0 1em; }
.num { font-variant-numeric: tabular-nums lining-nums; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ic { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--orange); color: var(--on-orange); padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.skip:focus { top: 12px; }
.skip:hover { color: var(--on-orange); }

/* ---------- Header ---------- */
.site-head { position: sticky; top: 0; z-index: 40; background: rgba(13, 14, 16, .97); border-bottom: 1px solid var(--rule); }
.head-row { display: flex; align-items: center; gap: 28px; min-height: var(--head-h); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand img { width: 72px; height: 60px; object-fit: contain; }
.brand-name { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.15rem; line-height: .95; letter-spacing: .01em; }
.brand:hover { color: var(--text); }
.nav { margin-left: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.nav a { display: block; padding: 10px 14px; font-family: var(--display); font-weight: 600; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; text-decoration: none; color: var(--muted); border-radius: 8px; transition: color .2s, background-color .2s; }
.nav a:hover { color: var(--text); background: var(--panel-2); }
.nav a[aria-current="page"] { color: var(--text); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 8px; }
.head-call { display: flex; align-items: center; gap: 10px; padding: 9px 16px 9px 14px; background: var(--orange); color: var(--on-orange); border-radius: 10px; text-decoration: none; line-height: 1.05; transition: background-color .2s; }
.head-call:hover { background: var(--orange-hot); color: var(--on-orange); }
.head-call small { display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.head-call b { font-family: var(--display); font-weight: 800; font-size: 1.35rem; }
.nav-toggle { display: none; margin-left: auto; width: 48px; height: 48px; align-items: center; justify-content: center; background: var(--panel-2); color: var(--text); border: 1px solid var(--rule); border-radius: 10px; cursor: pointer; }
.nav-toggle .ic { width: 24px; height: 24px; }
.nav-toggle .ic-close, .nav-toggle[aria-expanded="true"] .ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }

/* ---------- Buttons & links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 12px 22px; border-radius: 10px; font-family: var(--display); font-weight: 800; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .03em; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: background-color .2s, border-color .2s, color .2s, transform .2s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: var(--on-orange); }
.btn-primary:hover { background: var(--orange-hot); color: var(--on-orange); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--rule-strong); }
.btn-ghost:hover { border-color: var(--text); color: var(--text); }
.btn[disabled] { opacity: .55; cursor: progress; }

.btn-call { display: inline-grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 16px; padding: 16px 28px 16px 22px; background: var(--orange); color: var(--on-orange); border-radius: 12px; text-decoration: none; line-height: 1; box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .7); transition: background-color .2s, transform .25s var(--ease), box-shadow .25s; }
.btn-call:hover { background: var(--orange-hot); color: var(--on-orange); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .8); }
.btn-call .ic { width: 34px; height: 34px; grid-row: span 2; }
.btn-call small { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.btn-call b { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: .01em; margin-top: 4px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; color: var(--text); }
.link-arrow .ic { color: var(--orange); transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--text); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ---------- Lamps (status lights) ---------- */
.lamp { display: inline-block; width: 11px; height: 11px; border-radius: 50%; flex: none; vertical-align: middle; }
.lamp--beacon { background: var(--orange); animation: beacon 1.8s var(--ease) infinite; }
.lamp--on { background: var(--text); }
.lamp--off { background: transparent; box-shadow: inset 0 0 0 2px var(--dim); }
@keyframes beacon {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 26, .6); }
  70% { box-shadow: 0 0 0 11px rgba(255, 107, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0); }
}

/* ---------- Duty board ---------- */
.board { background: var(--panel); border: 1px solid var(--rule); border-radius: var(--r); }
.board-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 20px; padding: 14px 24px; border-bottom: 1px solid var(--rule); font-family: var(--display); font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.board-strip .live { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.board-strip time { color: var(--muted); }
.board-body { padding: clamp(24px, 3.4vw, 44px); }

.status { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.status li { display: grid; grid-template-columns: minmax(0, 13rem) 1fr; gap: 6px 20px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.status .label { font-family: var(--display); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.status .value { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1.1rem; }
.status .value [data-status-text] { font-variant-numeric: tabular-nums; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(20px, 3vw, 36px) clamp(48px, 7vw, 88px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.5rem); margin-bottom: .3em; }
.hero .board-body { padding-block: clamp(22px, 2.6vw, 34px); }
.hero .lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 44ch; margin-bottom: 28px; }
.hero .lede strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-block: 26px 28px; }
.hero .lede { margin-bottom: 20px; }
.hero-photo { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; background: var(--panel); min-height: 420px; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 86% 50%; }
.hero-photo figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 14px; background: rgba(13, 14, 16, .86); border-radius: 10px; font-size: .92rem; color: var(--muted); }
.hero-photo figcaption b { color: var(--text); font-weight: 600; }

.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border-top: 1px solid var(--rule); }
.facts div { padding: 18px 16px 4px 0; }
.facts div + div { padding-left: 18px; border-left: 1px solid var(--rule); }
.facts dt { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1; font-variant-numeric: tabular-nums; }
.facts dd { margin: 6px 0 0; color: var(--muted); font-size: .95rem; line-height: 1.35; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--panel { background: var(--panel); border-block: 1px solid var(--rule); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px clamp(24px, 5vw, 72px); align-items: end; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head h2 { margin: 0; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.12rem; max-width: 52ch; }
.lede { color: var(--muted); font-size: 1.15rem; max-width: 60ch; }

/* Two trades, ruled like a duty sheet */
.trades { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 2px solid var(--text); }
.trade { padding: 28px clamp(0px, 3vw, 40px) 8px 0; }
.trade + .trade { padding-left: clamp(20px, 3vw, 40px); border-left: 1px solid var(--rule); }
.trade h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.trade p { color: var(--muted); max-width: 48ch; }

.ruled { list-style: none; margin: 0 0 24px; padding: 0; border-top: 1px solid var(--rule); }
.ruled li { display: flex; gap: 12px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--rule); font-weight: 500; }
.ruled li::before { content: ""; width: 7px; height: 7px; flex: none; background: var(--orange); border-radius: 2px; transform: translateY(-2px); }

/* Road sign blades for towns */
.coverage { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.coverage .lede { margin-bottom: 1.2em; }
.signs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
.sign-group h3 { font-size: 1.05rem; letter-spacing: .08em; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.blades { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.blade { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 12px 9px 16px; background: var(--plate); color: var(--plate-ink); border-radius: 6px; box-shadow: inset 0 0 0 2px var(--plate), inset 0 0 0 4px var(--plate-ink); font-family: var(--display); font-weight: 800; font-size: clamp(1.1rem, 1.6vw, 1.3rem); text-transform: uppercase; letter-spacing: .01em; line-height: 1.1; }
.blade .ic { width: 22px; height: 22px; stroke-width: 2.6; }
.blade--home { background: var(--orange); color: var(--on-orange); box-shadow: inset 0 0 0 2px var(--orange), inset 0 0 0 4px var(--on-orange); }
.pmr-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--rule); color: var(--muted); }
.pmr-note .ic { color: var(--orange); margin-top: 3px; }

/* Reasons */
.reasons { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(24px, 4vw, 56px); border-top: 1px solid var(--rule); }
.reasons li { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; padding: 22px 0; border-bottom: 1px solid var(--rule); }
.reasons .ic { grid-row: span 2; color: var(--orange); width: 26px; height: 26px; margin-top: 2px; }
.reasons b { font-family: var(--display); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; line-height: 1.05; }
.reasons span { color: var(--muted); }

/* Prose split */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.split--media { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: center; }
.media { margin: 0; border-radius: var(--r); overflow: hidden; background: var(--panel); }
.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.media--wide img { aspect-ratio: 3 / 2; }
.prose { max-width: 68ch; }
.prose p { color: var(--muted); }
.prose strong { color: var(--text); font-weight: 600; }
.prose h2 + p { margin-top: .4em; }
.prose p + h2 { margin-top: 1.5em; }
.prose ul { padding-left: 1.2em; color: var(--muted); }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--orange); }
.prose .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Partners plate */
.partners { padding-block: clamp(48px, 6vw, 72px); background: var(--plate); color: var(--plate-ink); }
.partners h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 28px; }
.partner-logos { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 20px 28px; align-items: center; }
.partner-logos img { width: 100%; max-width: 150px; height: 64px; object-fit: contain; margin-inline: auto; }

/* Closing band */
.close-band { padding-block: clamp(64px, 9vw, 112px); }
.close-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px 48px; align-items: center; }
.close-grid h2 { margin-bottom: .3em; }
.close-grid p { color: var(--muted); font-size: 1.15rem; max-width: 50ch; margin: 0; }
.close-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }

/* ---------- Inner page head ---------- */
.page-head { padding-block: clamp(20px, 3vw, 36px) 0; }
.page-head .board-body { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 24px clamp(24px, 5vw, 64px); align-items: end; }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.page-head p { color: var(--muted); font-size: 1.15rem; margin: 0; max-width: 50ch; }

/* Service sheet (services page) */
.sheet { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(24px, 5vw, 72px); padding-block: clamp(40px, 5vw, 64px); border-top: 2px solid var(--text); }
.sheet:first-child { border-top: 0; padding-top: 0; }
.sheet-side h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.sheet-side p { color: var(--muted); }
.sheet-side .media { margin-top: 24px; }
.sheet-rows { list-style: none; margin: 0 0 28px; padding: 0; border-top: 1px solid var(--rule); }
.sheet-rows li { display: grid; grid-template-columns: minmax(0, 15rem) 1fr; gap: 6px 24px; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.sheet-rows b { font-family: var(--display); font-weight: 800; font-size: 1.35rem; text-transform: uppercase; line-height: 1.05; }
.sheet-rows span { color: var(--muted); }
.sheet-rows span strong { color: var(--text); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.urgent { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px 32px; align-items: center; }
.urgent h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: .3em; }
.urgent p { color: var(--muted); margin: 0; max-width: 52ch; }

.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { font-weight: 600; font-size: .98rem; }
.field .opt { color: var(--dim); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; font: inherit; color: var(--text);
  background: var(--panel-2); border: 1px solid var(--rule-strong); border-radius: 10px;
  transition: border-color .2s, background-color .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #545b64; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #202328; }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #ff5a4f; }
.field select { appearance: none; padding-right: 44px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b1a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; }
.chips { border: 0; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { margin-bottom: 8px; padding: 0; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span { display: inline-block; padding: 10px 16px; border: 1px solid var(--rule-strong); border-radius: 999px; font-weight: 600; font-size: .98rem; transition: all .2s; }
.chip input:hover + span { border-color: #6a717a; }
.chip input:checked + span { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.chip input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 3px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--muted); }
.consent input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--orange); flex: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.form-foot p { margin: 0; color: var(--dim); font-size: .92rem; }
.form-status { grid-column: 1 / -1; display: none; padding: 16px 18px; border-radius: 10px; font-weight: 500; }
.form-status.is-ok { display: block; background: #13261a; border: 1px solid #2f6b43; color: #cdebd6; }
.form-status.is-err { display: block; background: #2a1413; border: 1px solid #7a2f2a; color: #f3cfcb; }

.aside-stack { display: grid; gap: 16px; }
.aside-block { padding: 24px; }
.aside-block h2 { font-size: 1.6rem; margin-bottom: 14px; }
.perks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.perks li { display: flex; gap: 10px; color: var(--muted); }
.perks .ic { color: var(--orange); margin-top: 3px; }
.map { width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: 10px; display: block; filter: grayscale(.35) contrast(1.05); background: var(--panel-2); }

/* ---------- Legal prose ---------- */
.legal { max-width: 76ch; }
.legal h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 2.2em 0 .6em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--muted); }
.legal strong { color: var(--text); font-weight: 600; }
.legal dl { display: grid; grid-template-columns: minmax(0, 16rem) 1fr; margin: 0; border-top: 1px solid var(--rule); }
.legal dt, .legal dd { padding: 11px 0; border-bottom: 1px solid var(--rule); margin: 0; }
.legal dt { font-weight: 600; padding-right: 16px; }
.legal dd { color: var(--muted); }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--rule); background: #0a0b0c; padding-top: clamp(48px, 6vw, 72px); }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px clamp(24px, 4vw, 56px); }
.foot-brand img { width: 200px; height: auto; border-radius: 10px; margin-bottom: 16px; }
.foot-brand p { color: var(--muted); }
.foot-title { font-size: 1.6rem; letter-spacing: .02em; margin-bottom: 18px; }
.contact-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-lines li { display: flex; gap: 14px; align-items: flex-start; }
.contact-lines .ic { color: var(--orange); margin-top: 4px; }
.contact-lines small { display: block; color: var(--dim); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.contact-lines a { text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.big-link { font-family: var(--display); font-weight: 800; font-size: 1.8rem; line-height: 1.1; color: var(--text); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; vertical-align: top; padding: 11px 0; border-bottom: 1px solid var(--rule); }
.hours th { font-weight: 600; padding-right: 16px; }
.hours td { color: var(--muted); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--orange-hot); }
.hours tr.is-today th::after { content: " · aujourd'hui"; font-weight: 500; font-size: .85rem; }
.hours-note { display: flex; gap: 12px; align-items: center; margin-top: 16px; color: var(--muted); font-size: .95rem; }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: clamp(40px, 5vw, 64px); padding-block: 22px; border-top: 1px solid var(--rule); color: var(--dim); font-size: .92rem; }
.foot-legal p { margin: 0; }
.foot-legal a { color: var(--muted); }

/* ---------- Mobile call bar ---------- */
.callbar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .head-call small { display: none; }
  .nav a { padding: 10px 10px; }
  .partner-logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  :root { --head-h: 68px; }
  .head-row { gap: 14px; }
  .head-call { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; margin: 0; background: var(--ground); border-bottom: 1px solid var(--rule); padding: 8px var(--gut) 20px; display: none; }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav a { font-size: 1.6rem; padding: 14px 4px; border-bottom: 1px solid var(--rule); border-radius: 0; }
  .nav a[aria-current="page"] { color: var(--orange-hot); text-decoration: none; }

  .hero-grid, .coverage, .split, .split--media, .contact-grid, .sheet, .page-head .board-body, .section-head, .close-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-photo { min-height: 0; aspect-ratio: 4 / 3; }
  .trades { grid-template-columns: minmax(0, 1fr); }
  .trade, .trade + .trade { padding-left: 0; padding-right: 0; border-left: 0; }
  .trade + .trade { border-top: 1px solid var(--rule); }
  .foot-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .foot-brand { grid-column: 1 / -1; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
  .foot-brand img { width: 140px; margin: 0; }
  .urgent { grid-template-columns: minmax(0, 1fr); }
  .close-actions { flex-direction: row; flex-wrap: wrap; }

  .callbar { display: grid; grid-template-columns: 1.6fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(10, 11, 12, .97); border-top: 1px solid var(--rule); }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; border-radius: 10px; font-family: var(--display); font-weight: 800; font-size: 1.25rem; text-transform: uppercase; text-decoration: none; }
  .callbar-call { background: var(--orange); color: var(--on-orange); }
  .callbar-call:hover { color: var(--on-orange); }
  .callbar-quote { border: 1px solid var(--rule-strong); color: var(--text); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .brand-name { font-size: 1rem; }
  .brand img { width: 60px; height: 50px; }
  .board-strip { padding: 12px 16px; font-size: .95rem; }
  .board-body { padding: 22px 18px; }
  .status li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .facts { grid-template-columns: minmax(0, 1fr); }
  .facts div, .facts div + div { padding: 14px 0; border-left: 0; border-bottom: 1px solid var(--rule); display: flex; align-items: baseline; gap: 14px; }
  .facts dd { margin: 0; }
  .btn-call { width: 100%; padding: 14px 18px; }
  .btn-call .ic { width: 28px; height: 28px; }
  .hero-actions .btn { width: 100%; }
  .signs { grid-template-columns: minmax(0, 1fr); }
  .reasons { grid-template-columns: minmax(0, 1fr); }
  .sheet-rows li { grid-template-columns: minmax(0, 1fr); }
  .form { grid-template-columns: minmax(0, 1fr); }
  .partner-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: minmax(0, 1fr); }
  .legal dl { grid-template-columns: minmax(0, 1fr); }
  .legal dt { border-bottom: 0; padding-bottom: 0; }
  .close-actions .btn, .close-actions .btn-call { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
