/* ============================================================
   Barber Republic MTL — feuille de style principale
   Direction : Streetwear Luxe · noir profond + or métallique
   ============================================================ */

/* ---------- Réinitialisation ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Variables ---------- */
:root {
  --ink: #0a0a0a;
  --ink-2: #121110;
  --ink-3: #1a1815;
  --gold: #D4AF37;
  --gold-soft: #c9a94a;
  --gold-deep: #9c7d28;
  --paper: #f4f1ea;
  --text: #ece9e2;
  --text-mut: rgba(236, 233, 226, 0.62);
  --text-faint: rgba(236, 233, 226, 0.4);
  --line: rgba(255, 255, 255, 0.09);
  --gold-line: rgba(212, 175, 55, 0.28);
  --maxw: 1280px;
  --ff-display: "Anton", sans-serif;
  --ff-body: "Archivo", sans-serif;
  --ff-label: "Barlow Condensed", sans-serif;
}

/* ---------- Base ---------- */
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

.section { padding: 130px 0; }

/* Sections à fond alternatif */
.bg-alt { background: var(--ink-2); }

/* ---------- Typographie utilitaire ---------- */
.eyebrow {
  font-family: var(--ff-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h2.display {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 22px 0 0;
}
h2.display .gold { color: var(--gold); }

/* Titre galerie centré */
.gallery-title { text-align: center; }

.lead { color: var(--text-mut); font-size: 18px; line-height: 1.7; font-weight: 400; }

/* ---------- Boutons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #15120a;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 17px 38px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-gold:hover { background: #e6c14e; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.32);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   EN-TÊTE / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  padding: 18px 40px;
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--ff-display);
  font-size: 23px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.logo .gold { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a.link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s ease;
}
.nav a.link:hover { color: var(--gold); }
.nav .btn-gold { padding: 13px 26px; font-size: 13px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--text); transition: 0.3s ease; }

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 34px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.02em;
}
.mobile-menu a.gold { color: var(--gold); }

/* ============================================================
   HÉRO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; background: #0a0a0a; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: grayscale(0.25) brightness(0.78) contrast(1.05); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.7) 44%, rgba(8,8,8,0.25) 100%),
    linear-gradient(0deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0) 42%);
}
.hero-inner { position: relative; flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 150px 40px 40px; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 12vw, 150px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0.006em;
  margin: 24px 0 0;
  text-shadow: 0 6px 50px rgba(0,0,0,0.45);
}
.hero h1 .gold { color: var(--gold); }
.hero p.lead { max-width: 500px; margin: 34px 0 40px; color: rgba(255,255,255,0.74); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 18px; }

.marquee {
  position: relative;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 46px;
  white-space: nowrap;
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.46);
  animation: scroll-x 28s linear infinite;
  padding-left: 46px;
}
.marquee-track .dot { color: var(--gold); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   À PROPOS
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-copy h2 { margin-bottom: 28px; }
.about-copy p + p { margin-top: 20px; }
.about-lead-first { margin-top: 28px; }
.about-sign {
  margin-top: 36px;
  font-family: var(--ff-label);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.about-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 160px; gap: 18px; }
.about-images .photo { width: 100%; height: 100%; }
.about-images .tall { grid-row: 1 / 3; height: 100%; }
.about-images .photo { position: relative; overflow: hidden; background: #161513; }
.about-images .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) contrast(1.02); transition: filter 0.6s ease, transform 0.6s ease; }
.about-images .photo:hover img { filter: grayscale(0); transform: scale(1.04); }

.stats { display: flex; gap: 0; margin-top: 70px; border-top: 1px solid var(--line); }
.stat { flex: 1; padding: 34px 24px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--ff-display); font-size: 52px; line-height: 1; color: #fff; }
.stat .num .gold { color: var(--gold); }
.stat .lbl { font-family: var(--ff-label); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mut); margin-top: 10px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.services-head .lead { max-width: 360px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--ink-2);
  color: inherit;
  isolation: isolate;
}
/* Photo plein cadre révélée au survol */
.service-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.6s ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05) brightness(0.82);
}
.service-photo.crop-action img { object-position: 38% 72%; }
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,8,8,0.78) 0%, rgba(8,8,8,0.15) 45%, rgba(8,8,8,0.35) 100%);
}
/* Légende qui apparaît sur la photo */
.service-cap {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.12s, transform 0.6s ease 0.12s;
  pointer-events: none;
}
.service-cap .cap-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
}
.service-cap .cap-arrow {
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
/* Contenu texte par défaut */
.service-content {
  position: relative;
  z-index: 1;
  padding: 44px 38px 48px;
  transition: opacity 0.5s ease;
}
.service-content .idx { font-family: var(--ff-label); font-size: 14px; letter-spacing: 0.2em; color: var(--gold); }
.service-content h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 22px 0 14px;
}
.service-content p { color: var(--text-mut); font-size: 15.5px; line-height: 1.6; margin: 0; }
.service-content .arrow {
  margin-top: 26px;
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.35s ease;
}
/* États au survol / focus */
.service:hover .service-content,
.service:focus-visible .service-content { opacity: 0; }
.service:hover .service-photo,
.service:focus-visible .service-photo { opacity: 1; transform: scale(1); }
.service:hover .service-cap,
.service:focus-visible .service-cap { opacity: 1; transform: translateY(0); }
.service:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

/* Appareils tactiles : photo toujours visible avec texte superposé sur dégradé sombre */
@media (hover: none), (max-width: 760px) {
  .service { min-height: 320px; }
  .service-photo { opacity: 1; transform: none; }
  .service-photo img { filter: grayscale(0.25) contrast(1.05) brightness(0.5); }
  .service-photo::after {
    background: linear-gradient(0deg, rgba(8,8,8,0.93) 0%, rgba(8,8,8,0.4) 55%, rgba(8,8,8,0.62) 100%);
  }
  .service-content { opacity: 1; }
  .service-content p { color: rgba(236,233,226,0.86); }
  .service-content .arrow { opacity: 1; transform: none; }
  .service-cap { display: none; }
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-head { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-grid .gphoto { position: relative; overflow: hidden; background: #161513; }
.gallery-grid .gphoto img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) contrast(1.03); transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1), filter 0.7s ease; }
.gallery-grid .gphoto::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,8,0.35), rgba(8,8,8,0) 50%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.gallery-grid .gphoto:hover img { transform: scale(1.06); filter: grayscale(0); }
.gallery-grid .gphoto:hover::after { opacity: 1; }
.g-w2 { grid-column: span 2; }
.g-h2 { grid-row: span 2; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testi-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 30px; }
.testi-rating { font-family: var(--ff-display); font-size: 44px; color: #fff; line-height: 1; }
.testi-rating .gold { color: var(--gold); font-size: 28px; }
.testi-rating .sub { font-family: var(--ff-label); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mut); display: block; margin-top: 8px; }

/* Colonnes animées : défilement vertical continu avec fondu haut/bas */
.testi-cols {
  display: flex;
  justify-content: center;
  gap: 22px;
  max-height: 720px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.testi-col { flex: 1; max-width: 380px; }

/* Vitesses de défilement différentes par colonne pour un effet naturel */
.testi-col:nth-child(1) .testi-track { --dur: 26s; }
.testi-col:nth-child(2) .testi-track { --dur: 32s; }
.testi-col:nth-child(3) .testi-track { --dur: 29s; }

.testi-track {
  display: flex;
  flex-direction: column;
  animation: testi-scroll var(--dur, 28s) linear infinite;
  will-change: transform;
}
.testi-track .testi-card { margin-bottom: 22px; }
@keyframes testi-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; }
}
@media (max-width: 1024px) { .testi-col.col-lg { display: none; } }
@media (max-width: 768px) { .testi-col.col-md { display: none; } .testi-col { max-width: 460px; } }
.testi-card {
  border: 1px solid var(--line);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(255,255,255,0.022), rgba(255,255,255,0));
}
.testi-stars { color: var(--gold); letter-spacing: 0.15em; font-size: 15px; margin-bottom: 22px; }
.testi-card blockquote { margin: 0; font-size: 17px; line-height: 1.7; color: var(--text); font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: grid; place-items: center;
  font-family: var(--ff-label); font-size: 15px; letter-spacing: 0.08em; color: var(--gold);
}
.testi-author .name { font-weight: 700; font-size: 15px; color: #fff; }
.testi-author .since { font-family: var(--ff-label); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 28px 0;
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 26px; flex-shrink: 0; transition: transform 0.35s ease; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { margin: 0 0 28px; color: var(--text-mut); font-size: 16px; line-height: 1.7; max-width: 560px; }

/* ============================================================
   APPEL À RÉSERVER
   ============================================================ */
.cta-band { position: relative; padding: 0; background: var(--ink-2); }
.cta-split { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 660px; }
.cta-photo { position: relative; overflow: hidden; background: #161513; }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(0.28) contrast(1.04); }
.cta-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,0) 60%, rgba(18,17,16,0.55) 100%); pointer-events: none; }
.cta-content { background: var(--ink-2); padding: 96px 84px; display: flex; flex-direction: column; justify-content: center; }
.cta-content .eyebrow { margin-bottom: 24px; }
.cta-content h2 { margin: 0; font-size: clamp(40px, 4.4vw, 58px); line-height: 0.98; }
.cta-content .lead { max-width: 440px; margin: 28px 0 40px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.cta-phone { margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); font-family: var(--ff-label); font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mut); }
.cta-phone .gold { color: var(--gold); }

@media (max-width: 900px) {
  .cta-split { grid-template-columns: 1fr; min-height: 0; }
  .cta-photo { min-height: 320px; }
  .cta-content { padding: 64px 24px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn-gold, .cta-actions .btn-ghost { justify-content: center; }
}

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-top: 90px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 70px; }
.footer-brand .logo { display: block; font-size: 30px; margin-bottom: 22px; }
.footer-brand p { color: var(--text-mut); font-size: 15.5px; max-width: 280px; }
.footer-col h4 { font-family: var(--ff-label); font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 22px; }
.footer-col li { margin-bottom: 13px; }
.footer-col a, .footer-col span { color: var(--text-mut); font-size: 15.5px; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .copy { font-size: 13.5px; color: var(--text-faint); }
.footer-bottom .credit { font-family: var(--ff-label); font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.footer-bottom .credit a { color: var(--gold-soft); }
.footer-bottom .credit a:hover { color: var(--gold); }

/* ============================================================
   BANNIÈRE DE TÉMOINS (cookies)
   ============================================================ */
.cookie {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 200;
  max-width: 520px;
  background: rgba(18,17,16,0.97);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-line);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(160%);
  transition: transform 0.5s cubic-bezier(0.7,0,0.2,1);
}
.cookie.show { transform: translateY(0); }
.cookie p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-mut); }
.cookie p .gold { color: var(--gold); }
.cookie-actions { display: flex; gap: 12px; }
.cookie .btn-gold { padding: 12px 26px; font-size: 12px; }
.cookie .btn-text { color: var(--text-mut); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; padding: 12px 18px; border: 1px solid var(--line); transition: 0.25s ease; }
.cookie .btn-text:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }

/* ============================================================
   ANIMATIONS AOS (repli si AOS absent)
   ============================================================ */
[data-aos] { transition-property: transform, opacity; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* La barre de navigation horizontale devient un menu hamburger dès la tablette */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
}

@media (max-width: 760px) {
  .section { padding: 86px 0; }
  .wrap { padding: 0 24px; }
  .header { padding: 20px 24px; }
  .header.scrolled { padding: 16px 24px; }
  .nav { display: none; }
  .burger { display: flex; }
  .hero-inner { padding: 130px 24px 36px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn-gold, .hero-cta .btn-ghost { width: 100%; justify-content: center; }
  .stats { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; border-bottom: 1px solid var(--line); padding: 26px 18px; }
  .stat:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-w2 { grid-column: span 2; }
  .g-h2 { grid-row: span 1; }
  .testi-cols { max-height: 620px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie { left: 16px; right: 16px; bottom: 16px; }
  .about-images { grid-template-rows: 180px 130px; }
}

/* Petits téléphones */
@media (max-width: 560px) {
  .eyebrow { font-size: 12px; letter-spacing: 0.18em; gap: 10px; flex-wrap: wrap; }
  .eyebrow::before, .eyebrow.center::after { width: 24px; }
  .hero p.lead { font-size: 16px; }
  .marquee-track { font-size: 14px; gap: 32px; }
  .services-head, .testi-head { margin-bottom: 44px; }
  .testi-rating { font-size: 36px; }
  .faq-q { font-size: 17px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn-gold, .cookie .btn-text { width: 100%; text-align: center; justify-content: center; }
  .about-images { grid-template-rows: 150px 110px; gap: 12px; }
}
