/* =========================================================
   SAS Réalisons bois — Design system
   Style : épuré / contemporain, accent bois
   ========================================================= */

:root {
  /* Couleurs */
  --bg:        #faf9f7;
  --surface:   #ffffff;
  --surface-2: #f2efea;
  --ink:       #1c1b19;
  --muted:     #6f6a62;
  --line:      #e5e0d8;
  --accent:    #b06a3b;   /* bois chaud */
  --accent-ink:#8a5027;
  --forest:    #3a4a3f;   /* vert profond, touche secondaire */
  --white:     #ffffff;

  /* Typo */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-text: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Mesure & rythme */
  --container: 1180px;
  --gutter: 24px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(28,27,25,.06), 0 2px 8px rgba(28,27,25,.05);
  --shadow-md: 0 8px 30px rgba(28,27,25,.10);
  --shadow-lg: 0 20px 60px rgba(28,27,25,.18);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* Reset léger --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--alt { background: var(--surface-2); }
.eyebrow {
  font-family: var(--font-text);
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-ink); margin: 0 0 .8rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }

/* Boutons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: .98rem; line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-ink); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: rgba(255,255,255,.88); }
.btn--sm { padding: .6rem 1.05rem; font-size: .9rem; }

/* Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,249,247,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.05; }
.brand__name small { display: block; font-family: var(--font-text); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Navigation ---------------------------------------------------------- */
.nav { display: flex; align-items: center; gap: .35rem; }
.nav > li { position: relative; list-style: none; }
.nav a, .nav .nav-trigger {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .8rem; border-radius: 999px; color: var(--ink);
  font-size: .96rem; font-weight: 500; background: transparent; border: 0;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav a:hover, .nav .nav-trigger:hover, .nav [aria-expanded="true"] { background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--accent-ink); font-weight: 600; }
.nav .caret { width: 10px; height: 10px; transition: transform .25s var(--ease); }
.nav [aria-expanded="true"] .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; border-radius: var(--radius-sm); padding: .6rem .8rem; width: 100%; }
.dropdown a small { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; }
.dropdown a:hover { background: var(--surface-2); }

.header-cta { margin-left: .4rem; }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); position: relative;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero ---------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,18,15,.72) 0%, rgba(20,18,15,.45) 45%, rgba(20,18,15,.15) 100%); }
.hero__inner { position: relative; z-index: 1; padding-block: clamp(90px, 15vw, 170px); max-width: 44rem; color: #fff; }
.hero__inner .eyebrow { color: #f0d8c4; }
.hero__inner .eyebrow::before { background: #f0d8c4; }
.hero h1 { color: #fff; }
.hero__inner p { color: rgba(255,255,255,.9); font-size: 1.2rem; max-width: 42ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.6rem; }
.hero__stats div strong { font-family: var(--font-display); font-size: 1.9rem; display: block; color: #fff; }
.hero__stats div span { font-size: .85rem; color: rgba(255,255,255,.75); }

/* Page hero (pages produit, plus compact) */
.page-hero { background: var(--forest); color: #fff; }
.page-hero .container { padding-block: clamp(48px, 8vw, 84px); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 55ch; margin: 0; }
.page-hero .eyebrow { color: #d9c3a6; }
.page-hero .eyebrow::before { background: #d9c3a6; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: var(--muted); padding-block: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb li::after { content: "/"; margin-left: .4rem; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a:hover { color: var(--accent-ink); }

/* Grille de cartes ---------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--ink); font-size: .72rem; font-weight: 600; padding: .3rem .6rem; border-radius: 999px; letter-spacing: .03em; }
.card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .3rem; }
.card__body p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.card__price { font-weight: 600; color: var(--accent-ink); font-size: .95rem; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .8rem; }
.card__link { font-weight: 600; font-size: .92rem; color: var(--accent-ink); display: inline-flex; align-items: center; gap: .35rem; }
.card__link .arrow { transition: transform .25s var(--ease); }
.card:hover .card__link .arrow { transform: translateX(4px); }

/* Feature/atout row */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { padding: 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.feature .ico { width: 40px; height: 40px; color: var(--accent); margin-bottom: .8rem; }
.feature h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.feature p { color: var(--muted); font-size: .93rem; margin: 0; }

/* Specs / tarifs (pages produit) ------------------------------------- */
.product-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.spec-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.spec-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.spec-list li span:first-child { color: var(--muted); }
.spec-list li span:last-child { font-weight: 600; text-align: right; }

.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table caption { text-align: left; font-size: .85rem; color: var(--muted); padding: 0 0 .8rem; caption-side: top; }
.price-table th, .price-table td { padding: .85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
.price-table thead th { background: var(--surface-2); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: var(--surface-2); }
.price-table .price { font-weight: 700; color: var(--accent-ink); white-space: nowrap; }

.aside-card { position: sticky; top: calc(var(--header-h) + 20px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 1.25rem; }
.aside-card .tel { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent-ink); display: block; margin: .4rem 0 1rem; }
.aside-card ul { list-style: none; margin: 1.2rem 0 0; padding: 0; font-size: .92rem; color: var(--muted); }
.aside-card ul li { display: flex; gap: .6rem; padding: .35rem 0; }
.aside-card ul li::before { content: "✓"; color: var(--accent); font-weight: 700; }

.prose h2 { margin-top: 1.8rem; }
.prose ul { padding-left: 1.1rem; color: var(--muted); }
.prose ul li { margin-bottom: .4rem; }

/* Bandeau CTA --------------------------------------------------------- */
.cta-band { background: var(--forest); color: #fff; border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.4rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-band h2 { color: #fff; margin: 0; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.8); margin: .5rem 0 0; }

/* Galerie ------------------------------------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-btn { padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: .9rem; font-weight: 500; color: var(--muted); transition: all .2s var(--ease); }
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
/* Galerie — grille mosaïque (tuiles alignées + vedettes agrandies) */
.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 14px;
}
.masonry .shot {
  grid-column: span 1; grid-row: span 1;
  border-radius: var(--radius); overflow: hidden; position: relative;
  cursor: zoom-in; background: var(--surface-2);
}
.masonry .shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease), filter .3s var(--ease); }
.masonry .shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,15,.55), transparent 45%); opacity: 0; transition: opacity .3s var(--ease); }
.masonry .shot:hover img { transform: scale(1.05); }
.masonry .shot:hover::after { opacity: 1; }
.masonry .shot figcaption { position: absolute; bottom: 10px; left: 12px; right: 12px; color: #fff; font-size: .85rem; font-weight: 500; opacity: 0; transform: translateY(6px); transition: all .3s var(--ease); z-index: 1; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.masonry .shot:hover figcaption { opacity: 1; transform: translateY(0); }

/* Tuiles vedettes : rythme dynamique sans casser l'alignement */
.masonry .shot:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; }
.masonry .shot:nth-child(6n + 3) { grid-row: span 2; }
.masonry .shot:nth-child(6n + 5) { grid-column: span 2; }

/* Lightbox ------------------------------------------------------------ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,13,11,.92); display: flex; align-items: center; justify-content: center; padding: 3vw; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__cap { position: absolute; bottom: 4vh; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: .95rem; }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease); }
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 3vh; right: 3vw; }
.lb-prev { left: 2vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 2vw; top: 50%; transform: translateY(-50%); }

/* Modal devis --------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 210; display: flex; align-items: center; justify-content: center; padding: var(--gutter); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.modal.open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15,13,11,.55); backdrop-filter: blur(3px); }
.modal__panel { position: relative; background: var(--surface); border-radius: var(--radius); width: min(560px, 100%); max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 4vw, 2.4rem); transform: translateY(12px) scale(.98); transition: transform .3s var(--ease); }
.modal.open .modal__panel { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); display: flex; align-items: center; justify-content: center; }
.modal__close:hover { background: var(--surface-2); }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .35rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: .95rem; background: var(--bg); color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176,106,59,.15); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Footer -------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: clamp(48px, 7vw, 72px) 2rem; font-size: .93rem; }
.site-footer a { color: rgba(255,255,255,.72); transition: color .2s var(--ease); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-grid h4 { color: #fff; font-family: var(--font-text); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: .5rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { max-width: 34ch; margin-top: .8rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .85rem; color: rgba(255,255,255,.5); }

/* Reveal on scroll ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* Placeholder image (avant photos réelles) --------------------------- */
.ph { background:
    linear-gradient(135deg, #e9e1d5 0%, #d8cbb8 100%);
  position: relative;
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #a08c72; font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-align: center; padding: 1rem;
}

/* Utilitaires */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.5rem; }
.hide { display: none !important; }

/* Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .masonry { grid-auto-rows: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  /* Drawer mobile */
  .nav.mobile {
    display: block; position: fixed; inset: var(--header-h) 0 0 auto; width: min(360px, 88vw);
    background: var(--surface); border-left: 1px solid var(--line); box-shadow: var(--shadow-lg);
    padding: 1rem; overflow-y: auto; transform: translateX(100%); transition: transform .35s var(--ease); z-index: 99;
  }
  body.menu-open .nav.mobile { transform: translateX(0); }
  .nav.mobile > li { width: 100%; }
  .nav.mobile a, .nav.mobile .nav-trigger { width: 100%; border-radius: var(--radius-sm); padding: .8rem .9rem; }
  .nav.mobile .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: .2rem 0 .5rem 1rem; padding: 0 0 0 .3rem;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .nav.mobile .nav-item.open .dropdown { max-height: 600px; }
  .nav.mobile .header-cta { display: block; margin: 1rem 0 0; }
  .nav.mobile .header-cta .btn { width: 100%; }
  .menu-scrim { position: fixed; inset: var(--header-h) 0 0 0; background: rgba(15,13,11,.4); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; z-index: 98; }
  body.menu-open .menu-scrim { opacity: 1; visibility: visible; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--3, .grid--4, .grid--2, .features { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 148px; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.2rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* Champ anti-spam honeypot : masqué aux humains, laissé vide */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
