/* ==========================================================================
   SG CARROSSERIE — style.css
   Charte : Orange #D7632A · Noir #000000 · Blanc #FFFFFF
   ========================================================================== */

:root {
  --orange: #D7632A;
  --orange-light: #E88A5C;
  --orange-dark: #B84F1F;
  --black: #000000;
  --surface: #111010;
  --surface-2: #1a1817;
  --white: #FFFFFF;
  --grey: #b7afa9;
  --line: rgba(255, 255, 255, 0.09);

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- Typo utilitaires ---------- */
.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-head {
  padding: 0 var(--pad);
  max-width: 1200px;
  margin: 0 auto clamp(2.2rem, 5vw, 4rem);
}

section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(215, 99, 42, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--orange-light);
  box-shadow: 0 14px 40px rgba(215, 99, 42, 0.5);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  transform: translateY(-3px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
/* Quand le menu mobile est ouvert, le flou du header doit être coupé :
   backdrop-filter transforme le header en conteneur et piège le menu plein écran */
.header.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.95rem var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.brand-sg { color: var(--orange); }
.brand-logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 1120px) {
  .brand-logo { height: 38px; }
}

.nav {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  flex-wrap: nowrap;
}
.nav a { white-space: nowrap; }
.nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey);
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.btn-phone {
  background: var(--orange);
  color: var(--white);
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
}
.btn-phone:hover { background: var(--orange-light); transform: translateY(-2px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--pad) 3rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }

.hero-glow {
  position: absolute;
  top: -20%; right: -15%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(215, 99, 42, 0.28) 0%, rgba(215, 99, 42, 0.06) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}
.hero-spray {
  position: absolute;
  bottom: -10%; left: -10%;
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(215, 99, 42, 0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

/* Photo de l'entrepôt dans la forme "tache de peinture" */
.hero-visual { min-width: 0; }
.splash-frame {
  position: relative;
  aspect-ratio: 740 / 574;
  filter: drop-shadow(0 18px 45px rgba(215, 99, 42, 0.28));
}
/* Couche "peinture à la bombe" : la forme complète avec tous les points du spray, en orange */
.splash-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--orange-light), var(--orange) 45%, var(--orange-dark));
  -webkit-mask-image: url("assets/splash-mask.png");
  mask-image: url("assets/splash-mask.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
/* La photo, découpée dans le coeur de la forme, laisse dépasser le contour sprayé */
.splash-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url("assets/splash-core.png");
  mask-image: url("assets/splash-core.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; }
  /* photo élargie et centrée entre le bouton et les badges */
  .hero-visual {
    width: calc(100% + var(--pad));
    max-width: 560px;
    margin: 1.6rem auto 0.5rem;
    margin-left: calc(var(--pad) / -2);
  }
}
@media (max-width: 600px) {
  .hero-visual { margin-left: calc(var(--pad) / -2); margin-right: calc(var(--pad) / -2); width: calc(100% + var(--pad)); max-width: none; }
}

.hero-eyebrow {
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  border-left: 3px solid var(--orange);
  padding-left: 0.9rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 12vw, 8.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.hero-title .line { display: block; }
.hero-title .dot { color: var(--orange); }
.line-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.line-accent .dot {
  color: var(--orange);
  -webkit-text-stroke: 0;
}

.hero-sub {
  max-width: 520px;
  color: var(--grey);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 1.8rem 0 2.4rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-pills {
  max-width: 1200px;
  margin: auto auto 0;
  width: 100%;
  margin-top: clamp(2.2rem, 5vh, 4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 0.8rem;
}
.pill {
  padding: 0.7rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--grey);
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pill:hover {
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.pill-star {
  border-color: rgba(215, 99, 42, 0.6);
  color: var(--white);
}
.pill .star { color: var(--orange); }
.pills-note {
  max-width: 1200px;
  margin: 0.85rem auto 0;
  width: 100%;
  text-align: center;
  font-size: 0.76rem;
  color: var(--grey);
  opacity: 0.75;
}

/* ==========================================================================
   MARQUEE prestations
   ========================================================================== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 1.05rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--grey);
}
.marquee-track i { color: var(--orange); font-style: normal; font-weight: 700; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ==========================================================================
   SERVICES — cartes empilées au scroll
   ========================================================================== */
.services { background: var(--black); }

.stack {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  gap: 3.2rem;
}
.stack-card {
  position: sticky;
  /* top ajusté en JS par carte pour l'effet d'empilement */
  top: 100px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  display: grid;
  grid-template-columns: minmax(90px, 160px) 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.55);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  transform-origin: center top;
  will-change: transform;
}
.stack-card:hover { border-color: rgba(215, 99, 42, 0.5); }

.sc-num {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--orange);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-right: 2px solid var(--orange);
  padding-right: 0.4rem;
  justify-self: start;
  align-self: start;
  line-height: 1;
  padding-block: 0.1rem;
}
.sc-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
}
.sc-body p { color: var(--grey); max-width: 58ch; }

.sc-list {
  margin-top: 1.3rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.sc-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}
.sc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  background: var(--orange);
  transform: rotate(45deg);
}

/* ==========================================================================
   AVANT / APRÈS — comparateur signature
   ========================================================================== */
.ba { background: var(--surface); border-block: 1px solid var(--line); }

.ba-compare {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}
.ba-before-wrap .ba-img { width: 100vw; max-width: 760px; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  z-index: 3;
  width: 44px;
  margin-left: -22px;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  outline-offset: 4px;
}
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(215, 99, 42, 0.8);
}
.ba-knob {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}
.ba-handle:hover .ba-knob,
.ba-handle:focus-visible .ba-knob { transform: scale(1.12); }

.ba-tag {
  position: absolute;
  bottom: 1rem;
  z-index: 4;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-tag-left { left: 1rem; }
.ba-tag-right { right: 1rem; color: var(--orange-light); }

.ba-note {
  text-align: center;
  color: var(--grey);
  font-size: 0.9rem;
  margin-top: 1.6rem;
  padding: 0 var(--pad);
}
.ba-note a { color: var(--orange-light); }

/* ==========================================================================
   ATELIER / À PROPOS
   ========================================================================== */
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-txt h2 { margin-bottom: 1.4rem; }
.about-txt p { color: var(--grey); margin-bottom: 1rem; max-width: 60ch; }
.about-txt strong { color: var(--white); }

.about-facts { margin-top: 2rem; display: grid; gap: 0.9rem; }
.fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--grey);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.fact:hover { border-color: rgba(215, 99, 42, 0.5); transform: translateX(4px); }
.fact-k {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.about-visual {
  background: radial-gradient(circle at 50% 45%, rgba(215, 99, 42, 0.14), transparent 70%), var(--black);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  min-height: 320px;
}
.about-visual img { width: 100%; max-width: 340px; }

/* ==========================================================================
   ZONE D'INTERVENTION
   ========================================================================== */
.zone { background: var(--surface); border-block: 1px solid var(--line); }
.zone-badges {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.zb {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--grey);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.zb:hover {
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}
.zb-main {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.zb-etc { border-style: dashed; }

/* ==========================================================================
   AVIS
   ========================================================================== */
.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.review {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.review:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 99, 42, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.stars { color: var(--orange); letter-spacing: 0.2em; margin-bottom: 0.9rem; }
.review p { color: var(--grey); font-size: 0.95rem; margin-bottom: 1rem; }
.review-author { font-weight: 700; font-size: 0.88rem; }
.reviews-link { text-align: center; margin-top: 2.2rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--surface); border-top: 1px solid var(--line); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  gap: 0.9rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover, .faq-item[open] { border-color: rgba(215, 99, 42, 0.5); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { padding: 0 1.4rem 1.3rem; }
.faq-a p { color: var(--grey); font-size: 0.97rem; max-width: 65ch; }

/* ==========================================================================
   PAGES LÉGALES (mentions, confidentialité)
   ========================================================================== */
/* Header simplifié : pas de burger, juste un lien retour qui passe
   à la ligne plutôt que de chevaucher le logo sur petit écran */
.header-simple .header-inner {
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
.header-simple .brand { flex-shrink: 0; }
.back-link {
  margin-left: auto;
  color: var(--grey);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--orange-light); }
@media (max-width: 480px) {
  .back-link { font-size: 0.78rem; margin-left: 0; }
}

.legal-page { padding: clamp(6rem, 10vw, 8rem) var(--pad) clamp(4rem, 8vw, 6rem); }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.4rem;
}
.legal-updated { color: var(--grey); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal-wrap h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin: 2.2rem 0 0.8rem;
}
.legal-wrap p { color: var(--grey); margin-bottom: 0.9rem; max-width: 68ch; }
.legal-wrap strong { color: var(--white); }
.legal-wrap a { color: var(--orange-light); }
.legal-list { list-style: none; display: grid; gap: 0.5rem; margin: 1rem 0 1.4rem; }
.legal-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--grey);
  font-size: 0.95rem;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}
.legal-note {
  font-size: 0.85rem;
  color: var(--grey);
  border-left: 3px solid var(--orange);
  padding: 0.8rem 1rem;
  background: rgba(215, 99, 42, 0.06);
  border-radius: 0 10px 10px 0;
}
.legal-back { margin-top: 3rem; }
.contact { background: var(--surface); border-top: 1px solid var(--line); }
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.6rem; }

.contact-tel {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--orange);
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s ease, transform 0.2s ease;
}
.contact-tel:hover { color: var(--orange-light); transform: translateX(4px); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  margin-top: 0.9rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1fbd5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45);
}
.contact-mail {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  margin: 0.6rem 0 1.4rem;
}
.contact-mail:hover { color: var(--orange-light); }
.contact-addr { font-style: normal; color: var(--grey); margin-bottom: 1.2rem; }

.contact-socials { display: flex; gap: 1.2rem; margin-bottom: 2rem; }
.contact-socials a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.contact-socials a:hover { color: var(--orange-light); }

.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td {
  text-align: left;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}
.hours th { color: var(--white); font-weight: 700; padding-right: 1rem; }
.hours td { color: var(--grey); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  height: 100%;
}
.contact-map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem var(--pad) 1.6rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto 2.2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--grey);
  text-transform: none;
  margin-top: 0.4rem;
}
.footer-col { display: grid; gap: 0.5rem; align-content: start; font-size: 0.9rem; color: var(--grey); }
.footer-col a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange-light); }
.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: rgba(183, 175, 169, 0.6);
}
.footer-legal a { color: inherit; }

/* ---------- Bouton d'appel flottant ---------- */
.fab-call {
  display: none;
  position: fixed;
  right: 1.1rem; bottom: 1.1rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  place-items: center;
  box-shadow: 0 10px 34px rgba(215, 99, 42, 0.5);
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 34px rgba(215, 99, 42, 0.5); }
  50% { box-shadow: 0 10px 34px rgba(215, 99, 42, 0.9); }
}

/* ==========================================================================
   REVEAL au scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; }
  .about-visual { order: -1; max-width: 460px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-left: 0;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.25rem; color: var(--white); }
  .burger { display: flex; margin-left: auto; z-index: 110; }
  .btn-phone { display: none; }
  .fab-call { display: grid; }
}

@media (max-width: 780px) {
  .pill { font-size: 0.74rem; padding: 0.55rem 1rem; }
  .stack-card { grid-template-columns: 1fr; top: 84px; }
  .sc-num {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: 0;
    border-bottom: 2px solid var(--orange);
    padding: 0 0 0.3rem;
  }
  .ba-compare { aspect-ratio: 3 / 4; }
}

@media (max-width: 420px) {
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   ACCESSIBILITÉ — mouvement réduit
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .fab-call { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
