/* ===================================================================
   CARROSSERIE REDLINE — feuille de style
   Thème : dark premium + rouge racing
   =================================================================== */

:root {
  --bg:        #0a0a0b;
  --bg-2:      #101013;
  --surface:   #141417;
  --surface-2: #1b1b20;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.14);

  --red:       #e30613;
  --red-bright:#ff2a2a;
  --red-soft:  rgba(227,6,19,.14);

  --text:      #f4f4f6;
  --muted:     #a0a0a8;
  --muted-2:   #6e6e76;

  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1200px;
  --radius:    16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,svg,iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input,select,textarea { font: inherit; }
em { font-style: normal; color: var(--red-bright); }
::selection { background: var(--red); color: #fff; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ---------- Typo helpers ---------- */
.section__title,
.hero__title,
h2,h3,h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 500; letter-spacing: .03em; text-transform: uppercase;
  font-size: .92rem; padding: .85em 1.6em; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s, color .3s;
  will-change: transform; position: relative; white-space: nowrap;
}
.btn--lg { padding: 1.05em 2em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--red); color: #fff;
  box-shadow: 0 8px 30px -8px rgba(227,6,19,.6);
}
.btn--primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(255,42,42,.7); }
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--red); color: #fff; transform: translateY(-2px); background: var(--red-soft); }

/* ===================================================================
   CUSTOM CURSOR (desktop only)
   =================================================================== */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  * { cursor: none; }
  .cursor {
    display: block; position: fixed; top: 0; left: 0; z-index: 9999;
    width: 40px; height: 40px; border: 1.5px solid rgba(255,42,42,.7); border-radius: 50%;
    transform: translate(-50%,-50%); pointer-events: none;
    transition: width .25s, height .25s, background .25s, border-color .25s;
  }
  .cursor-dot {
    display: block; position: fixed; top: 0; left: 0; z-index: 10000;
    width: 6px; height: 6px; background: var(--red-bright); border-radius: 50%;
    transform: translate(-50%,-50%); pointer-events: none;
  }
  .cursor.is-hover { width: 64px; height: 64px; background: var(--red-soft); border-color: var(--red-bright); }
  .cursor.is-label::after {
    content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center;
    font: 600 .6rem var(--font-head); letter-spacing: .08em; text-transform: uppercase; color: #fff;
  }
}

/* ===================================================================
   PRELOADER
   =================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 99999; background: var(--bg);
  display: grid; place-content: center; gap: 24px; justify-items: center;
  transition: opacity .6s ease, visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem,7vw,3.4rem); letter-spacing: -.02em; }
.preloader__red { color: var(--red); }
.preloader__line { color: #fff; }
.preloader__bar { width: 180px; height: 3px; background: var(--surface-2); border-radius: 4px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--red); border-radius: 4px; animation: load 1.4s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: padding .35s var(--ease), background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  padding: 10px 0; background: rgba(10,10,11,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__top { font-family: var(--font-head); font-weight: 500; font-size: .62rem; letter-spacing: .42em; color: var(--muted); padding-left: 2px; }
.brand__main { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: .02em; color: #fff; }
.brand__red { color: var(--red); }

.nav { display: flex; gap: 4px; }
.nav__link {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem; letter-spacing: .02em;
  color: var(--muted); padding: 8px 14px; border-radius: 100px; position: relative;
  transition: color .25s;
}
.nav__link:hover { color: #fff; }
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 500;
  font-size: .92rem; color: var(--text); transition: color .25s;
}
.header__phone:hover { color: var(--red-bright); }
.header__phone svg { color: var(--red); }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center; gap: 40px; padding: 80px 28px 40px;
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 2rem; color: #fff; padding: 8px 0;
  border-bottom: 1px solid var(--line); transition: color .25s, padding-left .25s;
}
.mobile-menu__nav a:hover { color: var(--red); padding-left: 10px; }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 12px; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.hero__glow--1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(227,6,19,.5), transparent 70%); top: -120px; right: -100px; }
.hero__glow--2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(227,6,19,.28), transparent 70%); bottom: -160px; left: -120px; }
.hero__beams { position: absolute; inset: 0; overflow: hidden; }
.hero__beams span {
  position: absolute; top: -20%; height: 140%; width: 1px;
  background: linear-gradient(transparent, rgba(255,42,42,.55), transparent);
  animation: beam 5s linear infinite;
}
.hero__beams span:nth-child(1) { left: 22%; animation-delay: 0s; }
.hero__beams span:nth-child(2) { left: 54%; animation-delay: 1.6s; }
.hero__beams span:nth-child(3) { left: 78%; animation-delay: 3.1s; }
@keyframes beam { 0% { transform: translateY(-30%); opacity: 0; } 30%,70% { opacity: 1; } 100% { transform: translateY(30%); opacity: 0; } }
.hero__car { position: absolute; bottom: 4%; left: 50%; transform: translateX(-50%); width: min(90%, 1000px); opacity: .5; }

.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head);
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem;
  color: var(--muted); padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(255,255,255,.02); margin-bottom: 28px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red-bright); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .4; transform: scale(.8); } }

.hero__title {
  font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 700; line-height: 1; text-transform: uppercase;
  letter-spacing: -.02em; margin-bottom: 26px;
}
.hero__title span { display: block; overflow: hidden; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 620px; margin-bottom: 38px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero__trust { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1; }
.hero__trust span { font-size: .82rem; color: var(--muted); margin-top: 4px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll span { width: 26px; height: 42px; border: 1px solid var(--line-2); border-radius: 100px; position: relative; }
.hero__scroll span::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--red); border-radius: 4px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,16px); } }

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); padding: 22px 0; overflow: hidden; }
.marquee__track { display: flex; gap: 40px; align-items: center; width: max-content; animation: scrollx 38s linear infinite; }
.marquee__track span { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; letter-spacing: .06em; color: var(--muted-2); }
.marquee__track span:nth-child(even) { color: var(--red); font-size: .9rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ===================================================================
   SECTIONS (commun)
   =================================================================== */
.section { padding: clamp(64px, 10vw, 128px) 0; position: relative; }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 720px; margin-bottom: 60px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__eyebrow { font-family: var(--font-head); font-weight: 500; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; color: var(--red); margin-bottom: 16px; }
.section__title { font-size: clamp(2rem, 5vw, 3.6rem); text-transform: uppercase; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }

/* ===================================================================
   SERVICES / BENTO
   =================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
  transform-style: preserve-3d;
}
.card--lg { grid-column: span 2; }
.card--accent { background: linear-gradient(160deg, rgba(227,6,19,.16), var(--surface) 60%); border-color: rgba(227,6,19,.3); }
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card__glow {
  position: absolute; width: 280px; height: 280px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,42,42,.22), transparent 65%);
  opacity: 0; transition: opacity .4s; left: var(--mx,50%); top: var(--my,50%);
  transform: translate(-50%,-50%);
}
.card:hover .card__glow { opacity: 1; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red-bright); margin-bottom: 22px; position: relative; z-index: 1;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; position: relative; z-index: 1; }
.card p { color: var(--muted); font-size: .98rem; position: relative; z-index: 1; }
.card__tag {
  position: absolute; top: 20px; right: 20px; font-family: var(--font-head); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--red);
  padding: 5px 12px; border-radius: 100px;
}

.services__extra { display: flex; flex-wrap: wrap; gap: 14px 36px; margin-top: 40px; justify-content: center; color: var(--muted); font-size: .95rem; }
.services__extra span { display: inline-flex; align-items: center; }

/* ===================================================================
   AVANT / APRÈS
   =================================================================== */
.ba {
  position: relative; max-width: 920px; margin: 0 auto; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  user-select: none; touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; }
.ba__img--before { width: 50%; overflow: hidden; border-right: 2px solid var(--red); }
.ba__placeholder { position: absolute; inset: 0; display: grid; place-items: center; }
.ba__placeholder span { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem,6vw,4rem); letter-spacing: .1em; color: rgba(255,255,255,.85); }
.ba__placeholder--after  { background: linear-gradient(135deg,#16181d,#23262e); }
.ba__placeholder--after span { color: rgba(255,255,255,.9); }
.ba__placeholder--before { background: repeating-linear-gradient(45deg,#1a1410,#1a1410 12px,#221812 12px,#221812 24px); }
.ba__placeholder--before::after { content: "rayures · choc · ternissure"; position: absolute; bottom: 16px; font: .8rem var(--font-body); color: var(--muted); }
.ba__placeholder--before span { color: rgba(255,120,120,.85); }
.ba__img--before .ba__placeholder--before { width: 200%; }

.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--red); transform: translateX(-50%); pointer-events: none; }
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; box-shadow: 0 6px 24px -4px rgba(227,6,19,.7);
}
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.ba__note { text-align: center; color: var(--muted-2); font-size: .85rem; margin-top: 20px; font-style: italic; }

/* ===================================================================
   STATS
   =================================================================== */
.stats { padding: clamp(48px,7vw,80px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem,5vw,3.4rem); color: #fff; line-height: 1; }
.stat__suffix { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem,5vw,3.4rem); color: var(--red); }
.stat__label { display: block; margin-top: 10px; color: var(--muted); font-size: .9rem; }

/* ===================================================================
   PROCESS / STEPS
   =================================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 32px 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); transition: border-color .35s, transform .35s var(--ease); }
.step:hover { border-color: rgba(227,6,19,.4); transform: translateY(-6px); }
.step__num { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--red); opacity: .35; line-height: 1; }
.step h3 { font-size: 1.25rem; margin: 14px 0 10px; }
.step p { color: var(--muted); font-size: .95rem; }
.step::after { content: "→"; position: absolute; top: 38px; right: -16px; color: var(--red); font-size: 1.2rem; opacity: .5; }
.step:last-child::after { display: none; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery__grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 18px; }
.shot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot__ph {
  width: 100%; height: 100%; position: relative; transition: transform .6s var(--ease);
  background: linear-gradient(135deg,#15171c,#23262e);
}
.shot__ph--2 { background: linear-gradient(135deg,#1c1410,#2a1d16); }
.shot__ph--3 { background: linear-gradient(135deg,#101418,#1a2128); }
.shot__ph--4 { background: linear-gradient(135deg,#1a0d0d,#2a1414); }
.shot__ph--5 { background: linear-gradient(135deg,#14161b,#202229); }
.shot__ph::before {
  content: attr(data-label); position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; color: #fff; font-size: 1.05rem;
}
.shot__ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,.55)); }
.shot:hover .shot__ph { transform: scale(1.06); }

/* ===================================================================
   AVIS
   =================================================================== */
.avis__stars { color: var(--red); font-size: clamp(1.4rem,3vw,2rem); margin-left: 14px; -webkit-text-fill-color: var(--red); letter-spacing: 2px; }
.avis__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; transition: border-color .35s, transform .35s var(--ease); }
.quote:hover { border-color: var(--line-2); transform: translateY(-4px); }
.quote__stars { color: var(--red); letter-spacing: 3px; margin-bottom: 16px; }
.quote p { color: var(--text); font-size: 1.02rem; margin-bottom: 22px; }
.quote footer { display: flex; flex-direction: column; }
.quote strong { font-family: var(--font-head); font-size: 1.05rem; }
.quote span { color: var(--muted); font-size: .85rem; }

/* ===================================================================
   CTA BAND
   =================================================================== */
.ctaband { position: relative; padding: clamp(64px,10vw,120px) 0; text-align: center; overflow: hidden; background: var(--bg-2); border-block: 1px solid var(--line); }
.ctaband__glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(227,6,19,.32), transparent 70%); filter: blur(60px); }
.ctaband__inner { position: relative; z-index: 1; }
.ctaband h2 { font-size: clamp(2rem,5vw,3.4rem); text-transform: uppercase; margin-bottom: 16px; }
.ctaband p { color: var(--muted); font-size: 1.1rem; margin-bottom: 32px; }
.ctaband__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__text { color: var(--muted); margin: 18px 0 32px; max-width: 420px; }
.contact__list { display: flex; flex-direction: column; gap: 22px; }
.contact__list li { display: flex; gap: 16px; }
.contact__ic { font-size: 1.3rem; flex-shrink: 0; }
.contact__list strong { font-family: var(--font-head); font-weight: 600; }
.contact__list a:hover { color: var(--red-bright); }

.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .85rem; letter-spacing: .04em; margin-bottom: 8px; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 13px 16px; color: var(--text); transition: border-color .25s, box-shadow .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.field textarea { resize: vertical; }
.contact__legal { color: var(--muted-2); font-size: .8rem; margin-top: 16px; text-align: center; }

.contact__map { margin-top: 64px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); filter: grayscale(.3) contrast(1.05); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 72px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer__brand .brand__main { font-size: 1.6rem; margin-bottom: 16px; display: inline-block; }
.footer__brand p { color: var(--muted); font-size: .95rem; max-width: 320px; }
.footer__col h4 { font-family: var(--font-head); font-weight: 600; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; color: #fff; }
.footer__col a, .footer__col span { display: block; color: var(--muted); font-size: .92rem; margin-bottom: 10px; transition: color .25s; }
.footer__col a:hover { color: var(--red-bright); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 24px 0; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .85rem; }
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--red-bright); }

/* ===================================================================
   STICKY MOBILE CALL BAR
   =================================================================== */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; padding: 10px 12px; gap: 10px; background: rgba(10,10,11,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.callbar__btn { flex: 1; text-align: center; padding: 14px; border-radius: 12px; font-family: var(--font-head); font-weight: 600; letter-spacing: .03em; }
.callbar__btn--call { background: var(--surface-2); color: #fff; border: 1px solid var(--line-2); }
.callbar__btn--quote { background: var(--red); color: #fff; }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-line > * , .hero__title .reveal-line { }
.hero__title span span { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__beams, .marquee__track, .hero__scroll span::after, .hero__eyebrow .dot { animation: none !important; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .card--lg { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step::after { display: none; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .gallery__grid { grid-template-columns: repeat(2,1fr); }
  .avis__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header__phone { display: none; }
  .bento { grid-template-columns: 1fr; }
  .card--lg { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .shot--tall, .shot--wide { grid-row: span 1; grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__trust { gap: 26px; }
  .callbar { display: flex; }
  body { padding-bottom: 72px; }
  .hero__scroll { display: none; }
}
