/* =========================================================
   Exclusive Transports — feuille de style
   Palette noir / blanc, police condensée (Bebas Neue) + Barlow
   ========================================================= */

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #181818;
  --line: #262626;
  --white: #ffffff;
  --grey: #d7d7d7;
  --grey-2: #8a8a8a;
  --grey-3: #5a5a5a;

  --display: "Bebas Neue", "Oswald", Impact, "Arial Narrow", sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--grey);
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 400; color: var(--white); line-height: .95; letter-spacing: .01em; text-wrap: balance; }
h1 { font-size: clamp(48px, 7vw, 104px); }
h2 { font-size: clamp(40px, 5.2vw, 72px); }
h3 { font-size: clamp(28px, 2.6vw, 36px); }
h4 { font-size: 22px; letter-spacing: .06em; }
p { margin: 0; }
strong { font-weight: 600; }
:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section-dark { background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--grey-2); margin-bottom: 18px;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--grey-2); vertical-align: middle; margin-right: 12px; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-bottom: 18px; }
.lede { font-size: 19px; color: var(--grey); max-width: 62ch; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 500; font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid var(--white); border-radius: 0;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-solid { background: var(--white); color: var(--black); }
.btn-solid:hover { background: var(--grey); border-color: var(--grey); }
.btn-outline { background: transparent; color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--white);
  padding-bottom: 4px; border-bottom: 1px solid var(--grey-3); transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.link-arrow::after { content: "→"; font-size: 16px; }
.link-arrow:hover { border-color: var(--white); gap: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  background: linear-gradient(to bottom, rgba(10,10,10,.85), rgba(10,10,10,0));
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(10,10,10,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.site-header .brand { margin-left: -28px; }
.brand-logo { height: 56px; width: auto; flex: none; }
.brand-name { font-family: var(--display); font-size: 24px; letter-spacing: .08em; color: var(--white); line-height: 1; white-space: nowrap; }
.brand-name em { font-style: normal; color: var(--grey-2); }

.nav { display: flex; gap: 26px; }
.nav-link {
  font-size: 12.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--grey);
  position: relative; padding: 6px 0; white-space: nowrap; transition: color .2s;
}
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--white); transition: right .3s var(--ease); }
.nav-link:hover, .nav-link.is-active { color: var(--white); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }

.header-phone { padding: 12px 18px; flex: none; }

.burger { display: none; width: 44px; height: 44px; background: none; border: 0; padding: 8px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.burger span { display: block; height: 2px; background: var(--white); transition: transform .3s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 16px var(--gutter) 28px;
  background: rgba(10,10,10,.97); border-bottom: 1px solid var(--line);
}
.mobile-nav a:not(.btn) { padding: 14px 0; font-family: var(--display); font-size: 30px; letter-spacing: .06em; color: var(--white); border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 18px; }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 860px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,.85) 0%, rgba(10,10,10,.45) 45%, rgba(10,10,10,.15) 100%),
    linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,.35) 40%, rgba(10,10,10,.2) 100%);
}
.hero-content { position: relative; z-index: 1; padding: calc(var(--header-h) + 80px) 0 60px; max-width: 900px; margin-left: max(var(--gutter), (100% - var(--container)) / 2); }
.hero h1 { margin-bottom: 24px; }
.hero-text { font-size: 19px; max-width: 58ch; color: var(--grey); margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-strip {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); background: rgba(10,10,10,.6); backdrop-filter: blur(6px);
}
.hero-strip li { padding: 22px var(--gutter); border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.hero-strip li:last-child { border-right: 0; }
.hero-strip strong { font-family: var(--display); font-weight: 400; font-size: 26px; letter-spacing: .04em; color: var(--white); line-height: 1; }
.hero-strip span { font-size: 13px; color: var(--grey-2); letter-spacing: .04em; }

/* ---------- Accueil = contact ---------- */
.hero-contact {
  min-height: 0; justify-content: flex-start;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,.07), transparent 70%),
    linear-gradient(to bottom, #141414, var(--black) 70%);
}
.hero-contact .hero-grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(40px, 6vw, 96px); align-items: start; padding: calc(var(--header-h) + 56px) 0 64px; }
.hero-contact .hero-content { padding: 0; margin: 0; max-width: none; }
.hero-contact h1 { font-size: clamp(36px, 4.2vw, 58px); }
.hero-contact h1 { margin-bottom: 18px; }
.hero-contact .lede { margin-bottom: 30px; }
.hero-contact .contact-list { margin-top: 32px; }
.hero-contact .socials { margin-top: 28px; }
.hero-contact .hero-strip { background: var(--black-2); backdrop-filter: none; }

.hero-form { background: var(--black-2); border: 1px solid var(--line); padding: clamp(24px, 3vw, 40px); }
.hero-form .contact-form { background: none; border: 0; padding: 0; }
.form-title { font-family: var(--display); font-size: 30px; letter-spacing: .03em; color: var(--white); line-height: 1; }
.form-sub { font-size: 14px; color: var(--grey-2); margin: 8px 0 26px; }

/* séquence d'entrée : le formulaire arrive après le texte */
.hero-form { transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: .7s; }
.js .hero:not(.is-loaded) .hero-form { opacity: 0; transform: translateY(22px); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.service { background: var(--black); display: flex; flex-direction: column; }
.service-media { aspect-ratio: 4 / 5; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; filter: grayscale(.25) contrast(1.05); }
.service:hover .service-media img { transform: scale(1.05); filter: grayscale(0); }
.service-body { padding: 28px 26px 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.service-body p { font-size: 15.5px; color: var(--grey-2); flex: 1; }
.service-body .link-arrow { align-self: flex-start; }

.cta-band {
  margin-top: 2px; padding: 28px clamp(20px, 3vw, 40px); border: 1px solid var(--line); background: var(--black-2);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band strong { display: block; font-family: var(--display); font-weight: 400; font-size: 28px; letter-spacing: .03em; color: var(--white); line-height: 1.05; }
.cta-band span { font-size: 15px; color: var(--grey-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.contact-call { margin-top: 32px; }

/* Bouton d'appel flottant, mobile uniquement */
.call-fab {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  align-items: center; justify-content: center; gap: 10px; padding: 16px;
  background: var(--white); color: var(--black); font-weight: 600; font-size: 14px; letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

/* ---------- À propos ---------- */
.about { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.35); pointer-events: none; }
.about-body h2 { margin-bottom: 24px; font-size: clamp(36px, 4.2vw, 58px); }
.about-body p + p { margin-top: 14px; }
.checks { margin: 30px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; color: var(--grey); font-size: 16px; }
.checks li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 4px; border: 1px solid var(--white); background: linear-gradient(135deg, var(--white) 0 50%, transparent 50%); }

/* ---------- Galerie : deux bandeaux défilants ---------- */
.gallery { display: flex; flex-direction: column; gap: 14px; width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; will-change: transform; }
.marquee-left .marquee-track { animation: marquee-left 75s linear infinite; }
.marquee-right .marquee-track { animation: marquee-right 75s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.gallery figure { margin: 0; position: relative; flex: none; width: clamp(200px, 20vw, 300px); aspect-ratio: 3 / 4; overflow: hidden; cursor: zoom-in; background: var(--black-3); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 48px 18px 18px;
  background: linear-gradient(to top, rgba(10,10,10,.92), rgba(10,10,10,0));
  display: flex; flex-direction: column; gap: 2px;
}
.gallery figcaption span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--grey-2); }
.gallery figcaption strong { font-family: var(--display); font-weight: 400; font-size: 24px; letter-spacing: .04em; color: var(--white); line-height: 1; }

/* ---------- Vidéos (format vertical) ---------- */
.videos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.video-card { margin: 0; position: relative; background: var(--black); border: 1px solid var(--line); overflow: hidden; }
.video-card video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: var(--black); }
.video-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(10,10,10,.92), rgba(10,10,10,0));
  display: flex; flex-direction: column; gap: 2px; pointer-events: none;
}
.video-card figcaption span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--grey-2); }
.video-card figcaption strong { font-family: var(--display); font-weight: 400; font-size: 22px; letter-spacing: .04em; color: var(--white); line-height: 1; }
@media (max-width: 1100px) { .videos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) {
  .videos { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 6px; margin-right: calc(-1 * var(--gutter)); padding-right: var(--gutter); }
  .video-card { flex: 0 0 68vw; scroll-snap-align: start; }
}

/* ---------- Zone ---------- */
.zone { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.zone-body h2 { margin-bottom: 22px; font-size: clamp(36px, 4.2vw, 58px); }
.zone-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 32px 0 36px; }
.zone-cols h4 { margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.zone-cols li { padding: 5px 0; color: var(--grey); font-size: 15.5px; }
.zone-media { aspect-ratio: 4 / 5; overflow: hidden; }
.zone-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Expertise / FAQ ---------- */
.seo-grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.seo-text h3 { font-size: 28px; margin: 0 0 10px; }
.seo-text h3 + p { margin-bottom: 30px; font-size: 16px; color: var(--grey); }
.faq { border-top: 1px solid var(--line); }
.faq h3 { font-size: 28px; padding: 22px 0 6px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative; font-weight: 500; font-size: 17px; color: var(--white); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--display); font-size: 28px; color: var(--grey-2); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--white); }
.faq details p { padding: 0 0 20px; font-size: 15.5px; color: var(--grey-2); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-info h2 { margin-bottom: 18px; font-size: clamp(36px, 4.2vw, 58px); }
.contact-list { margin: 36px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.contact-list dt { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 6px; }
.contact-list dd { margin: 0; color: var(--white); font-size: 16px; line-height: 1.5; }
.contact-list dd a:hover { text-decoration: underline; }
.socials { display: flex; gap: 10px; margin-top: 36px; }
.socials a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); color: var(--grey); transition: border-color .2s, color .2s; }
.socials a:hover { border-color: var(--white); color: var(--white); }

.contact-form { background: var(--black-2); border: 1px solid var(--line); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field span { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--grey-2); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--white);
  background: var(--black); border: 1px solid var(--line); padding: 13px 14px; border-radius: 0;
  transition: border-color .2s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--grey-2) 50%), linear-gradient(135deg, var(--grey-2) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--grey-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--white); }
.field input.is-invalid { border-color: #c0392b; }
.form-note { font-size: 14px; color: var(--white); padding: 12px 14px; border: 1px solid var(--grey-3); }
.form-hint { font-size: 14px; color: var(--grey-2); text-align: center; }
.form-hint a { color: var(--white); border-bottom: 1px solid var(--grey-3); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--black-2); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-about p { margin-top: 22px; max-width: 48ch; font-size: 15px; color: var(--grey-2); }
.site-footer h4 { margin-bottom: 16px; }
.footer-links li { padding: 5px 0; font-size: 15px; color: var(--grey-2); }
.footer-links a:hover { color: var(--white); }
.footer-legal { margin-top: 10px; font-size: 13px; color: var(--grey-3); line-height: 1.5; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--grey-3); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(5,5,5,.96); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(92vw, 1100px); max-height: 92vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox img { max-width: 100%; max-height: 82vh; width: auto; height: auto; object-fit: contain; }
.lightbox figcaption { font-family: var(--display); font-size: 24px; letter-spacing: .06em; color: var(--white); }
.lightbox button {
  position: absolute; background: none; border: 1px solid var(--line); color: var(--white);
  font-size: 34px; line-height: 1; width: 52px; height: 52px; cursor: pointer; display: grid; place-items: center;
  transition: border-color .2s;
}
.lightbox button:hover { border-color: var(--white); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Animations ---------- */
/* Texte lettre par lettre (titres) */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split .c { display: inline-block; transform: translateY(110%); opacity: 0; }
.split.is-visible .c { transform: translateY(0); opacity: 1; transition: transform .7s var(--ease), opacity .4s linear; transition-delay: var(--d, 0s); }

/* Apparition au scroll : flou + glissement (comme le site de référence) */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(28px); filter: blur(12px); }

/* Hero : séquence au chargement */
.hero-bg { transform: scale(1.08); transition: transform 2.4s var(--ease); }
.js .hero.is-loaded .hero-bg { transform: scale(1); }
.hero .eyebrow, .hero-text, .hero-actions, .hero-strip li { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .hero:not(.is-loaded) .eyebrow,
.js .hero:not(.is-loaded) .hero-text,
.js .hero:not(.is-loaded) .hero-actions,
.js .hero:not(.is-loaded) .hero-strip li { opacity: 0; transform: translateY(22px); }
.hero .eyebrow { transition-delay: .2s; }
.hero-text { transition-delay: 1s; }
.hero-actions { transition-delay: 1.2s; }
.hero-strip li:nth-child(1) { transition-delay: 1.3s; }
.hero-strip li:nth-child(2) { transition-delay: 1.4s; }
.hero-strip li:nth-child(3) { transition-delay: 1.5s; }
.hero-strip li:nth-child(4) { transition-delay: 1.6s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .reveal:not(.is-visible) { opacity: 1; transform: none; filter: none; }
  .split .c { transform: none; opacity: 1; }
  .js .hero:not(.is-loaded) .eyebrow, .js .hero:not(.is-loaded) .hero-text, .js .hero:not(.is-loaded) .hero-actions, .js .hero:not(.is-loaded) .hero-strip li, .js .hero:not(.is-loaded) .hero-form { opacity: 1; transform: none; }
  .hero-bg { transform: none; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .brand-logo { height: 48px; }
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 20px; }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .nav, .header-phone { display: none; }
  .site-header .brand { margin-left: -4px; }
  .burger { display: flex; }
  .hero { min-height: min(78vh, 700px); }
  .hero-content { padding-top: calc(var(--header-h) + 56px); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip li:nth-child(2) { border-right: 0; }
  .hero-strip li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about, .zone, .contact, .seo-grid, .hero-contact .hero-grid { grid-template-columns: 1fr; }
  .hero-contact .hero-grid { padding-top: calc(var(--header-h) + 36px); }
  .zone-media { order: -1; }
  .about-media, .zone-media { aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .brand-logo { height: 42px; }
  .services-grid { grid-template-columns: 1fr; }
  .field-row, .zone-cols, .contact-list { grid-template-columns: 1fr; }
  .hero-actions .btn, .btn-row .btn, .contact-call { width: 100%; }
  .call-fab { display: flex; }
  .site-footer { padding-bottom: 90px; }
  .footer-grid { grid-template-columns: 1fr; }
  .lightbox button { width: 44px; height: 44px; font-size: 28px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-close { top: 8px; right: 8px; }
}

/* ---------- Page mentions légales ---------- */
.legal { padding-top: calc(var(--header-h) + 60px); max-width: 760px; }
.legal h1 { font-size: clamp(40px, 5.2vw, 64px); margin-bottom: 40px; }
.legal h2 { font-size: 30px; margin: 44px 0 14px; }
.legal p { margin-bottom: 12px; }
.legal dl { display: grid; grid-template-columns: max-content 1fr; gap: 8px 28px; margin: 0 0 12px; }
.legal dt { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--grey-2); padding-top: 4px; }
.legal dd { margin: 0; color: var(--white); }
@media (max-width: 600px) { .legal dl { grid-template-columns: 1fr; gap: 2px 0; } .legal dd { margin-bottom: 10px; } }
