/* =================================================================
   VTCAF — styles.css
   Direction artistique inspirée du logo :
   bleu nuit pétrole + chrome argent + accent rouge "paille-en-queue".
   -----------------------------------------------------------------
   POUR MODIFIER LES COULEURS : voir le bloc :root ci-dessous.
   ================================================================= */

:root {
  /* Couleurs marque ------------------------------------------------ */
  --abyss:      #0A1219;   /* fond le plus sombre */
  --ink:        #0E1A24;   /* bleu nuit (header, footer) */
  --ink-2:      #13242F;   /* surfaces sombres secondaires */
  --teal:       #1E5F6E;   /* pétrole (vague du logo) */
  --teal-2:     #2A7F8E;
  --teal-bright:#3FA3B5;   /* éclat de la vague */
  --chrome:     #C9D2D6;   /* argent / chrome */
  --steel:      #8DA0AA;   /* gris bleuté */
  --paille:     #B23A2E;   /* rouge paille-en-queue (accent / signature) */

  /* Neutres -------------------------------------------------------- */
  --bone:   #F5F3EE;       /* fond clair chaud */
  --paper:  #FFFFFF;       /* cartes */
  --link-line: rgba(14,26,36,.10); /* filets / bordures sur fond clair */
  --mist:   #51626B;       /* texte secondaire */
  --night-mist: #9FB2BC;   /* texte secondaire sur fond sombre */

  /* Typo ----------------------------------------------------------- */
  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rayons / ombres ------------------------------------------------ */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(10,18,25,.06);
  --shadow:    0 14px 38px -16px rgba(10,18,25,.28);
  --shadow-lg: 0 30px 70px -30px rgba(10,18,25,.45);

  --maxw: 1140px;
  --header-h: 70px;
}

/* ---------------- Reset léger ---------------- */
* { box-sizing: border-box; }
/* Garantit que l'attribut "hidden" masque toujours, même sur .field/.lightbox/.cond */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.01em; margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 820px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--paille); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 10px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* Focus visible clavier */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------------- Eyebrow + accent "paille-en-queue" ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal-2);
  margin: 0 0 14px;
}
.eyebrow.center { display: flex; justify-content: center; }
.eyebrow .tail {
  width: 30px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--paille));
  position: relative;
}
.eyebrow .tail::after {
  content: ""; position: absolute; right: -1px; top: -1px; width: 4px; height: 4px;
  border-radius: 50%; background: var(--paille);
}

/* ---------------- Boutons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: #fff; box-shadow: var(--shadow);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.10); color: #fff;
  border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-ghost.dark { color: var(--ink); border-color: var(--link-line); background: var(--paper); }
.btn-ghost.dark:hover { border-color: var(--teal-2); color: var(--teal-2); }
.btn-outline {
  background: transparent; color: var(--teal); border-color: var(--teal-2);
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-wa { background: #25D366; color: #06351a; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(37,211,102,.7); }
.btn-block { width: 100%; }
.btn-mini { background: var(--teal-2); color: #fff; padding: 8px 16px; font-size: .85rem; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: rgba(10,18,25,.72);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
.header-inner { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-logo { width: 46px; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.25rem; letter-spacing: .02em; }
.brand-text small { color: var(--night-mist); font-size: .68rem; letter-spacing: .04em; }

.main-nav { display: flex; gap: 4px; }
.main-nav a {
  color: #e7eef1; font-weight: 600; font-size: .92rem; padding: 9px 13px; border-radius: 9px;
  position: relative; transition: color .2s, background .2s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.main-nav a.active { color: var(--teal-bright); }

.header-wa { padding: 10px 16px; font-size: .9rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  padding-top: var(--header-h); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,18,25,.55) 0%, rgba(10,18,25,.15) 35%, rgba(10,18,25,.55) 75%, rgba(10,18,25,.95) 100%),
    linear-gradient(90deg, rgba(10,18,25,.78) 0%, rgba(10,18,25,.25) 55%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 120px; max-width: 720px; }
.hero .eyebrow { color: #d9eef2; }
.hero-title {
  color: #fff; font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  margin-bottom: 18px;
}
.hero-sub {
  color: #e3edf0; font-size: clamp(1rem, 2.4vw, 1.22rem); max-width: 560px; margin: 0 0 30px;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0;
}
.hero-badges li {
  font-size: .82rem; font-weight: 600; color: #eaf3f5;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(4px);
}
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; }
.hero-wave path { fill: var(--bone); }

/* ---------------- Sections ---------------- */
.section { padding: 76px 0; }
.section-title { font-size: clamp(1.9rem, 4.4vw, 2.9rem); font-weight: 800; margin-bottom: 14px; }
.section-title.center { text-align: center; }
.section-lead { color: var(--mist); font-size: 1.06rem; max-width: 620px; margin: 0 0 40px; }
.section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------------- Bénéfices ---------------- */
.benefits-section { padding: 56px 0; background: var(--bone); }
.benefits {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.benefit {
  background: var(--paper); border: 1px solid var(--link-line); border-radius: var(--r);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit .ic {
  width: 30px; height: 30px; stroke: var(--teal-2); fill: none; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round; margin-bottom: 12px;
}
.benefit h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 4px; }
.benefit p { margin: 0; color: var(--mist); font-size: .94rem; }

/* ---------------- Estimateur ---------------- */
.estimate-section { background: var(--paper); }
.estimate-card {
  background: var(--bone); border: 1px solid var(--link-line); border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 36px); box-shadow: var(--shadow);
}
.fieldset { border: 0; padding: 0; margin: 0 0 26px; }
.fieldset legend {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink);
  padding: 0; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; width: 100%;
}
.fieldset legend::after { content: ""; flex: 1; height: 1px; background: var(--link-line); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.req { color: var(--paille); }
.opt { color: var(--steel); font-weight: 500; font-size: .82em; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid #d7dde0; border-radius: var(--r-sm);
  background: var(--paper); transition: border-color .18s, box-shadow .18s;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--steel); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal-2); box-shadow: 0 0 0 3px rgba(42,127,142,.16); outline: none;
}
.field textarea { resize: vertical; }
.field.invalid input, .field.invalid select { border-color: var(--paille); }
.hint { font-size: .82rem; color: var(--mist); margin: 2px 0 0; }
.err { color: var(--paille); font-size: .82rem; margin: 0; min-height: 0; }
.err:not(:empty) { margin-top: 2px; }

.check { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; margin-top: 8px; cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--teal-2); flex: none; }

.estimate-actions { display: flex; justify-content: center; margin-top: 6px; }

/* Carte résultat */
.result-card {
  margin-top: 26px; background: var(--ink); color: #fff;
  border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  animation: rise .35s ease;
}
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.result-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12); flex-wrap: wrap;
}
.result-label { color: var(--night-mist); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.result-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 6vw, 2.6rem); color: var(--teal-bright); }
.result-detail { margin: 16px 0; display: grid; gap: 8px; }
.result-detail .row { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; color: #dbe6ea; }
.result-detail .row span:last-child { font-weight: 700; color: #fff; }
.result-note { font-size: .8rem; color: var(--night-mist); margin: 0 0 18px; line-height: 1.5; }

/* ---------------- Cartes génériques ---------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--link-line); border-radius: var(--r);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card.svc { position: relative; overflow: hidden; }
.card.svc::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--teal-bright), var(--teal)); opacity: 0; transition: opacity .2s;
}
.card.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card.svc:hover::before { opacity: 1; }
.card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 6px; }
.card p { margin: 0; color: var(--mist); font-size: .95rem; }
.services-section { background: var(--bone); }

/* ---------------- Galerie ---------------- */
.media-section { background: var(--paper); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery img {
  width: 100%; height: 260px; object-fit: cover; cursor: zoom-in;
  transition: transform .5s ease; background: var(--bone);
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
.gallery figure:first-child img { height: 100%; min-height: 380px; }

/* ---------------- Vidéo YouTube ---------------- */
.video-section { background: var(--bone); }
.video-wrap {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); background: var(--ink);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 24px;
  color: var(--night-mist);
  background: radial-gradient(circle at 50% 30%, var(--ink-2), var(--ink));
}
.video-fallback strong { color: #fff; font-family: var(--font-display); font-size: 1.2rem; }
.video-cta { text-align: center; margin-top: 18px; }

/* ---------------- Avis ---------------- */
.reviews-section { background: var(--paper); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.review {
  background: var(--bone); border: 1px solid var(--link-line); border-radius: var(--r);
  padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px;
}
.review .stars { color: #E8A33D; font-size: 1.05rem; letter-spacing: 2px; }
.review .stars .off { color: #d4d9db; }
.review p { margin: 0; color: var(--ink); font-size: .96rem; }
.review .meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.review .name { font-weight: 700; font-size: .9rem; }
.review .date { color: var(--steel); font-size: .8rem; }
.reviews-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Paiement ---------------- */
.payment-section { background: var(--ink); color: #fff; }
.payment-section .section-title { color: #fff; }
.payment-section .section-lead { color: var(--night-mist); }
.pay-options {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.pay-options li {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 11px 20px; font-weight: 600; font-size: .92rem;
}
.pay-options li svg { width: 17px; height: 17px; stroke: var(--teal-bright); fill: none; stroke-width: 1.8; }
.payment-section .pay-note { font-size: .9rem; opacity: .72; margin: 26px auto 0; max-width: 540px; }

/* ---------------- FAQ ---------------- */
.faq-section { background: var(--bone); }
.faq { display: grid; gap: 12px; }
.qa {
  background: var(--paper); border: 1px solid var(--link-line); border-radius: var(--r-sm);
  overflow: hidden; transition: box-shadow .2s;
}
.qa[open] { box-shadow: var(--shadow-sm); }
.qa summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-2);
  transition: transform .25s; line-height: 1;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa-body { padding: 0 22px 20px; }
.qa-body p { margin: 0; color: var(--mist); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--abyss); color: #cdd9de; padding: 56px 0 24px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; align-items: start;
}
.footer-brand img { width: 56px; height: auto; margin-bottom: 12px; }
.footer-sign { font-family: var(--font-display); color: #fff; font-weight: 600; font-size: 1.05rem; margin: 0; }
.footer-col h3 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-body); }
.footer-link { display: block; color: #cdd9de; margin-bottom: 9px; transition: color .2s; font-size: .94rem; }
.footer-link:hover { color: var(--teal-bright); }
.footer-meta { margin: 0 0 8px; font-size: .9rem; color: var(--steel); }
.footer-bottom {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; color: var(--steel);
}

/* ---------------- WhatsApp flottant ---------------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.7);
  transition: transform .2s; animation: pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------------- Bannière PWA ---------------- */
.install-banner {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 95;
  display: flex; align-items: center; gap: 16px;
  background: var(--ink); color: #fff; padding: 12px 12px 12px 20px; border-radius: 999px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12);
  font-weight: 600; font-size: .92rem; max-width: calc(100% - 90px);
}
.install-banner > div { display: flex; align-items: center; gap: 6px; }
.btn-close { background: none; border: 0; color: var(--night-mist); font-size: 1.5rem; line-height: 1; padding: 0 6px; }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(8,14,19,.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: fade .2s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: none; border: 0; color: #fff;
  font-size: 2.4rem; line-height: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:first-child { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 760px) {
  .header-wa { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0; padding: 10px 16px 18px;
    background: rgba(10,18,25,.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-130%); transition: transform .3s ease; visibility: hidden;
  }
  .main-nav.open { transform: translateY(0); visibility: visible; }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
  .hero { min-height: 88vh; }
  .hero-content { padding-bottom: 90px; }
  .hero-cta .btn { flex: 1; }
}

@media (max-width: 560px) {
  .section { padding: 54px 0; }
  .benefits, .cards, .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure:first-child { grid-column: span 1; }
  .gallery img, .gallery figure:first-child img { height: 220px; min-height: 220px; }
  .grid-2 { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .reviews-actions .btn, .hero-cta .btn { width: 100%; }
}

/* ---------------- Préférence : animations réduites ---------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .gallery figure:hover img { transform: none; }
}
