/* ==========================================================================
   CALNORYS — Feuille de styles unique
   1. Polices        5. En-tête / navigation
   2. Tokens         6. Sections & composants
   3. Base           7. Formulaire
   4. Utilitaires    8. Pied de page  9. Responsive  10. Impression
   ========================================================================== */

/* 1. POLICES ============================================================== */
/* Inter est auto-hébergée (aucun appel à un CDN tiers : conformité RGPD).
   Déposer les fichiers .woff2 dans src/assets/fonts/ — voir README.
   Tant qu'ils sont absents, la pile système prend le relais sans erreur. */
/* Décommenter APRÈS avoir déposé inter-variable.woff2 dans src/assets/fonts/.
   Tant que le bloc est commenté, la pile système est utilisée : aucune
   requête réseau, aucune erreur 404.
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-variable.woff2') format('woff2-variations');
}
*/

/* 2. TOKENS =============================================================== */
:root {
  /* Couleurs */
  --color-navy-primary: #071b33;
  --color-navy-secondary: #0b2948;
  --color-blue-primary: #008cff;
  --color-blue-electric: #00a8ff;
  --color-white: #ffffff;
  --color-background-light: #f4f8fc;
  --color-text-muted: #60758a;

  /* Dérivés (contrastes mesurés sur le rendu réel, WCAG AA)
     Le bleu vif #008CFF n'atteint que 3.39:1 avec du texte blanc : il est
     donc réservé aux éléments non textuels (liserés, icônes, focus, motifs)
     tandis que les SURFACES de boutons utilisent --color-blue-action. */
  --color-blue-action: #0072d6; /* 4.80:1 avec du blanc */
  --color-blue-deep: #0067bd; /* 5.71:1 sur blanc — texte de lien */
  --color-blue-hover: #005ba6; /* 6.89:1 avec du blanc */
  --color-blue-active: #00478a;
  --color-text-muted-aa: #586c80; /* 5.08:1 sur fond clair — petits textes */
  --color-border: #dbe5f0;
  --color-border-strong: #c2d3e5;
  --color-text: var(--color-navy-primary);
  --color-text-soft: #45596e; /* 7.1:1 sur blanc */
  --color-focus: #ffb020;
  --color-error: #b3261e;
  --color-error-bg: #fdf2f1;
  --color-success: #0f6b4a;
  --color-success-bg: #eefaf4;
  --overlay-navy: rgba(7, 27, 51, 0.72);

  /* Typographie */
  --font-sans: 'Inter', 'Manrope', 'Montserrat', -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --fs-body: 1.0625rem; /* 17px */
  --fs-small: 0.9375rem; /* 15px */
  --fs-micro: 0.875rem; /* 14px — plancher */
  --fs-lead: 1.1875rem; /* 19px */
  --fs-h1: clamp(2.125rem, 1.25rem + 3.4vw, 3.375rem); /* 34 → 54px */
  --fs-h2: clamp(1.75rem, 1.2rem + 2vw, 2.5rem); /* 28 → 40px */
  --fs-h3: clamp(1.1875rem, 1.05rem + 0.6vw, 1.375rem);
  --lh-body: 1.65;
  --lh-title: 1.14;
  --measure: 68ch;

  /* Espacement */
  --space-2xs: 0.375rem;
  --space-xs: 0.625rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: clamp(3.5rem, 2rem + 6vw, 6.5rem);

  /* Structure */
  --container: 1180px;
  --container-narrow: 820px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 78px;
  --header-h-compact: 62px;

  /* Ombres — discrètes, teintées navy */
  --shadow-xs: 0 1px 2px rgba(7, 27, 51, 0.06);
  --shadow-sm: 0 2px 8px rgba(7, 27, 51, 0.07);
  --shadow-md: 0 10px 30px -12px rgba(7, 27, 51, 0.22);
  --shadow-lg: 0 24px 60px -24px rgba(7, 27, 51, 0.35);

  /* Mouvement */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 140ms;
  --dur: 240ms;
}

/* 3. BASE ================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  /* `clip` (et non `hidden`) : empêche tout débordement horizontal —
     notamment le panneau de menu mobile hors écran — sans créer de
     conteneur de défilement, ce qui préserverait le header collant. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--space-sm);
  line-height: var(--lh-title);
  letter-spacing: -0.021em;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.03em;
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
  font-weight: 650;
  letter-spacing: -0.012em;
}

p {
  margin: 0 0 var(--space-sm);
  max-width: var(--measure);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-blue-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--dur-fast) var(--ease);
}

a:hover {
  color: var(--color-blue-hover);
}

/* Une règle de classe (ex. `.form-grid{display:grid}`) l'emporte sur le
   display:none de la feuille par défaut : sans ceci, l'attribut `hidden`
   posé par le script resterait sans effet. */
[hidden] {
  display: none !important;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  padding-left: 1.15rem;
}

li {
  margin-bottom: var(--space-2xs);
}

strong {
  font-weight: 650;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: var(--space-lg) 0;
}

/* Focus visible — jamais supprimé */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection {
  background: var(--color-blue-primary);
  color: var(--color-white);
}

/* Lien d'évitement */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  z-index: 200;
  background: var(--color-navy-primary);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}

.skip-link:focus {
  top: 0;
  color: var(--color-white);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 4. UTILITAIRES ========================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.125rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-2xl);
}

.section--tight {
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
}

.section--light {
  background: var(--color-background-light);
}

.section--dark {
  background: var(--color-navy-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section--dark p {
  color: #c3d4e5;
}

.section--bordered {
  border-top: 1px solid var(--color-border);
}

.section-head {
  max-width: 760px;
  margin-bottom: var(--space-lg);
}

.section-head p {
  font-size: var(--fs-lead);
  color: var(--color-text-soft);
}

/* Les règles composants (`.section-head p`, `.step p`, `.card p`…) ont la
   même spécificité que `.section--dark p` mais arrivent plus loin dans la
   feuille : sans ces surcharges, un texte sombre se retrouverait sur fond
   bleu nuit. Contrôlé par tools/contrast.py. */
.section--dark .section-head p,
.section--dark .step p,
.section--dark .card p,
.section--dark .benefit p,
.section--dark .lead,
.section--dark .hint {
  color: #c3d4e5;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center p {
  margin-inline: auto;
}

/* Sur-titre : petite capitale technique, marqueur récurrent de la marque */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-micro);
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-blue-deep);
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--color-blue-primary);
  flex: none;
}

.section--dark .eyebrow {
  color: var(--color-blue-electric);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--color-text-soft);
}

.section--dark .lead {
  color: #c3d4e5;
}

.text-muted {
  color: var(--color-text-muted-aa);
}

/* Boutons ---------------------------------------------------------------- */
.btn {
  --btn-bg: var(--color-blue-action);
  --btn-fg: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.btn:hover {
  --btn-bg: var(--color-blue-hover);
  color: var(--btn-fg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
  --btn-bg: var(--color-blue-active);
}

.btn[disabled],
.btn[aria-disabled='true'] {
  background: #b9c8d6;
  border-color: transparent;
  color: #f4f8fc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--secondary {
  --btn-bg: transparent;
  --btn-fg: var(--color-navy-primary);
  border-color: var(--color-border-strong);
}

.btn--secondary:hover {
  --btn-bg: var(--color-background-light);
  --btn-fg: var(--color-navy-primary);
  border-color: var(--color-blue-primary);
}

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost-light:hover {
  --btn-bg: rgba(255, 255, 255, 0.12);
  --btn-fg: var(--color-white);
  border-color: var(--color-white);
}

.btn--lg {
  min-height: 54px;
  padding: 0.9rem 1.85rem;
  font-size: 1.0625rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn .icon {
  width: 18px;
  height: 18px;
  flex: none;
}

/* Lien fléché */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 650;
  text-decoration: none;
  min-height: 44px;
}

.arrow-link .icon {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease);
}

.arrow-link:hover .icon {
  transform: translateX(3px);
}

/* Grilles ----------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(268px, 100%), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(232px, 100%), 1fr));
}

/* Icônes ------------------------------------------------------------------ */
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 140, 255, 0.09);
  color: var(--color-blue-deep);
  margin-bottom: var(--space-sm);
  flex: none;
}

.section--dark .icon-badge {
  background: rgba(0, 168, 255, 0.16);
  color: var(--color-blue-electric);
}

/* Motif « grille photovoltaïque » — signature graphique de la marque ------- */
.panel-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(0, 168, 255, 0.13) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 168, 255, 0.13) 1px, transparent 1px);
  background-size: 58px 38px;
  mask-image: radial-gradient(120% 90% at 78% 8%, #000 8%, transparent 68%);
  -webkit-mask-image: radial-gradient(120% 90% at 78% 8%, #000 8%, transparent 68%);
  pointer-events: none;
}

/* Révélation au défilement ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 5. EN-TÊTE ============================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--dur) var(--ease);
}

.site-header.is-compact {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: var(--header-h);
  transition: height var(--dur) var(--ease);
}

.site-header.is-compact .header-inner {
  height: var(--header-h-compact);
}

.brand {
  display: flex;
  align-items: center;
  min-height: 44px;
  flex: none;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.brand img {
  width: auto;
  height: 42px;
  transition: height var(--dur) var(--ease);
}

.site-header.is-compact .brand img {
  height: 34px;
}

.header-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--color-navy-secondary);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
}

.nav-link:hover {
  background: var(--color-background-light);
  color: var(--color-navy-primary);
}

/* État actif : couleur ET soulignement (jamais la couleur seule) */
.nav-link[aria-current='page'] {
  color: var(--color-blue-deep);
  box-shadow: inset 0 -3px 0 var(--color-blue-primary);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  min-height: 44px;
  padding: 0 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--color-navy-primary);
  font-size: var(--fs-small);
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--color-background-light);
  color: var(--color-navy-primary);
}

.header-phone .icon {
  width: 17px;
  height: 17px;
  color: var(--color-blue-deep);
}

/* Bouton hamburger */
/* Libellé du bouton de devis : long par défaut, court sur petit écran */
.cta-short {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy-primary);
  cursor: pointer;
}

.nav-toggle:hover {
  background: var(--color-background-light);
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded='true'] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded='true'] .icon-close {
  display: block;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 27, 51, 0.5);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.nav-backdrop.is-open {
  display: block;
  opacity: 1;
}

/* 6. HÉROS & SECTIONS ===================================================== */
.hero {
  position: relative;
  background: linear-gradient(
    168deg,
    var(--color-navy-primary) 0%,
    var(--color-navy-secondary) 62%,
    #0d3a63 100%
  );
  color: var(--color-white);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3rem, 2rem + 5vw, 5.5rem);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero p {
  color: #cadcec;
  font-size: var(--fs-lead);
  max-width: 56ch;
}

.hero .btn-row {
  margin-top: var(--space-lg);
}

.hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--fs-small);
  color: #a9c3da;
  max-width: 52ch;
}

.hero-trust .icon {
  width: 18px;
  height: 18px;
  color: var(--color-blue-electric);
  flex: none;
  margin-top: 3px;
}

/* Visuel du héros : illustration technique ou photographie */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--color-navy-secondary);
}

.hero-visual img,
.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Voile de lisibilité appliqué à toute photographie du héros */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 27, 51, 0.5) 0%,
    rgba(7, 27, 51, 0.08) 45%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.15rem 1.25rem;
  font-size: var(--fs-micro);
  font-weight: 600;
  color: #dceaf7;
  letter-spacing: 0.01em;
}

/* Bandeau contact rapide sous le héros */
.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 27, 51, 0.55);
}

.hero-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs) var(--space-lg);
  padding-block: 0.9rem;
}

.hero-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  min-height: 44px;
  font-size: var(--fs-small);
  color: #bed3e6;
  text-decoration: none;
}

a.hero-strip-item:hover {
  color: var(--color-white);
}

.hero-strip-item .icon {
  width: 17px;
  height: 17px;
  color: var(--color-blue-electric);
  flex: none;
}

/* En-tête des pages internes --------------------------------------------- */
.page-header {
  position: relative;
  background: var(--color-navy-primary);
  color: var(--color-white);
  overflow: hidden;
  padding-block: clamp(2.25rem, 1.5rem + 3.5vw, 4rem);
}

.page-header-inner {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--color-white);
  max-width: 20ch;
}

.page-header p {
  color: #c3d4e5;
  font-size: var(--fs-lead);
  max-width: 62ch;
  margin-top: var(--space-sm);
}

/* Fil d'Ariane */
.breadcrumb {
  margin-bottom: var(--space-md);
  font-size: var(--fs-micro);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4em;
  margin: 0;
  color: #8fabc4;
}

.breadcrumb li + li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #55779a;
  border-right: 1.5px solid #55779a;
  transform: rotate(45deg);
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #bed3e6;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* Cartes ------------------------------------------------------------------ */
.card {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: var(--space-2xs);
}

.card p {
  color: var(--color-text-soft);
  font-size: var(--fs-small);
  margin-bottom: 0;
}

.card-foot {
  margin-top: auto;
  padding-top: var(--space-sm);
}

.card--flat {
  box-shadow: none;
}

.card--flat:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* Carte service avec liseré bleu au survol */
.card--service {
  position: relative;
  overflow: hidden;
}

.card--service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-blue-primary),
    var(--color-blue-electric)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.card--service:hover::before,
.card--service:focus-within::before {
  transform: scaleX(1);
}

/* Blocs bénéfices --------------------------------------------------------- */
.benefit {
  display: flex;
  flex-direction: column;
}

.benefit h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-2xs);
}

.benefit p {
  font-size: var(--fs-small);
  color: var(--color-text-soft);
  margin: 0;
}

/* Types de sites : liste compacte ---------------------------------------- */
.site-type-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: var(--space-xs);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-type-list li {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin: 0;
  padding: 0.9rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  transition: border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}

.site-type-list li:hover {
  border-color: var(--color-blue-primary);
  background: #fbfdff;
}

.site-type-list .icon {
  width: 21px;
  height: 21px;
  color: var(--color-blue-deep);
  flex: none;
}

/* Lorsqu'une entrée est cliquable, le lien occupe toute la surface
   de la carte : la zone tactile correspond à ce que voit l'utilisateur. */
.site-type-list a {
  display: flex;
  align-items: center;
  gap: 0.75em;
  width: 100%;
  min-height: 44px;
  margin: -0.9rem -1rem;
  padding: 0.9rem 1rem;
  color: inherit;
  text-decoration: none;
}

.site-type-list a:hover {
  color: var(--color-blue-deep);
}

/* Étapes d'intervention — séquence réelle, donc numérotée ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.step {
  position: relative;
  margin: 0;
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-border-strong);
}

.step::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--color-blue-primary);
}

.step-num {
  display: block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-blue-deep);
  margin-bottom: var(--space-xs);
}

.step h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-2xs);
}

.step p {
  font-size: var(--fs-small);
  color: var(--color-text-soft);
  margin: 0;
}

.section--dark .step-num {
  color: var(--color-blue-electric);
}

.section--dark .step {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.section--dark .step::after {
  background: var(--color-blue-electric);
}

/* Bandeau d'appel à l'action --------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--color-navy-primary);
  color: var(--color-white);
  overflow: hidden;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl);
  max-width: 720px;
}

.cta-band h2 {
  color: var(--color-white);
}

.cta-band p {
  color: #c3d4e5;
  font-size: var(--fs-lead);
}

/* Encadré d'information --------------------------------------------------- */
.note {
  padding: var(--space-md);
  background: var(--color-background-light);
  border-left: 3px solid var(--color-blue-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-text-soft);
}

.note strong {
  color: var(--color-navy-primary);
}

/* Bloc « à compléter » réservé aux pages légales -------------------------- */
.todo-field {
  display: inline-block;
  padding: 0.1em 0.5em;
  background: #fff6e5;
  border: 1px dashed #d9a441;
  border-radius: var(--radius-sm);
  font-size: var(--fs-micro);
  font-weight: 600;
  color: #7a5410;
}

/* État vide --------------------------------------------------------------- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space-md);
  background: var(--color-background-light);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius);
}

.empty-state .icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.empty-state .icon-badge .icon {
  width: 28px;
  height: 28px;
}

.empty-state p {
  color: var(--color-text-soft);
  max-width: 54ch;
  margin-inline: auto;
}

/* Aperçu de réalisations (emplacements) ---------------------------------- */
.placeholder-card {
  display: flex;
  flex-direction: column;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius);
  background: var(--color-white);
  overflow: hidden;
}

.placeholder-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(
      135deg,
      #eef4fa 0 12px,
      #e4edf6 12px 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7d97b0;
}

.placeholder-thumb .icon {
  width: 34px;
  height: 34px;
}

.placeholder-card .placeholder-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.placeholder-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: var(--fs-micro);
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted-aa);
}

.placeholder-card p {
  font-size: var(--fs-small);
  color: var(--color-text-muted-aa);
  margin: 0;
}

/* Filtres de galerie ------------------------------------------------------ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  min-height: 44px;
  padding: 0 1.05rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy-secondary);
  font: inherit;
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.filter-btn:hover {
  border-color: var(--color-blue-primary);
  background: var(--color-background-light);
}

.filter-btn[aria-pressed='true'] {
  background: var(--color-navy-primary);
  border-color: var(--color-navy-primary);
  color: var(--color-white);
}

/* Galerie ----------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-md);
}

.gallery-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.2em 0.6em;
  border-radius: var(--radius-sm);
  background: var(--color-background-light);
  border: 1px solid var(--color-border);
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--color-text-soft);
}

/* Liste de contrôle ------------------------------------------------------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-text-soft);
}

.checklist .icon {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 3px;
  color: var(--color-blue-deep);
}

.section--dark .checklist li {
  color: #c3d4e5;
}

.section--dark .checklist .icon {
  color: var(--color-blue-electric);
}

/* Mise en page à deux colonnes -------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.split--center {
  align-items: center;
}

/* Formulaire large + colonne coordonnées, qui s'empilent sous 900 px */
.split--form {
  grid-template-columns: minmax(0, 1fr) minmax(min(300px, 100%), 0.62fr);
}

@media (max-width: 900px) {
  .split--form {
    grid-template-columns: 1fr;
  }
}

/* Ancres de service ------------------------------------------------------- */
.service-block {
  scroll-margin-top: calc(var(--header-h) + 2rem);
  padding-block: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.service-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

/* Contenu long (pages légales) -------------------------------------------- */
.prose h2 {
  margin-top: var(--space-xl);
  font-size: 1.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: var(--space-md);
  font-size: 1.125rem;
}

.prose p,
.prose li {
  color: var(--color-text-soft);
}

.prose ul {
  max-width: var(--measure);
}

/* Bloc coordonnées -------------------------------------------------------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-sm);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85em;
  margin: 0;
  min-width: 0;
}

.contact-list li > div {
  min-width: 0;
}

.contact-list .icon-badge {
  width: 42px;
  height: 42px;
  margin: 0;
}

.contact-list .icon-badge .icon {
  width: 20px;
  height: 20px;
}

.contact-list dt {
  font-size: var(--fs-micro);
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted-aa);
  margin-bottom: 0.1rem;
}

.contact-list dd {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* 7. FORMULAIRE =========================================================== */
.form-card {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--space-sm) var(--space-md);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field > label {
  font-size: var(--fs-small);
  font-weight: 650;
  color: var(--color-navy-primary);
}

.req {
  color: var(--color-error);
  margin-left: 0.15em;
}

.hint {
  font-size: var(--fs-micro);
  color: var(--color-text-muted-aa);
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font: inherit;
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}

.input::placeholder,
.textarea::placeholder {
  color: #93a7ba;
}

.input:hover,
.select:hover,
.textarea:hover {
  border-color: #a9bece;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--color-blue-primary);
  box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.16);
}

.textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%2360758A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

/* Erreur : bordure + icône + message (jamais la couleur seule) */
.input[aria-invalid='true'],
.select[aria-invalid='true'],
.textarea[aria-invalid='true'] {
  border-color: var(--color-error);
  border-width: 2px;
}

.error-msg {
  display: none;
  align-items: flex-start;
  gap: 0.4em;
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--color-error);
}

.error-msg.is-shown {
  display: flex;
}

.error-msg .icon {
  width: 15px;
  height: 15px;
  flex: none;
  margin-top: 2px;
  stroke-width: 2;
}

/* Case à cocher */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-background-light);
  cursor: pointer;
}

.checkbox input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--color-blue-primary);
  flex: none;
  cursor: pointer;
}

.checkbox span {
  font-size: var(--fs-small);
  color: var(--color-text-soft);
}

/* Champ fichier */
.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: var(--space-md);
  border: 2px dashed var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-background-light);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}

.file-drop:hover,
.file-drop.is-dragging {
  border-color: var(--color-blue-primary);
  background: #eef6ff;
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-drop .icon {
  width: 26px;
  height: 26px;
  color: var(--color-blue-deep);
}

.file-drop-title {
  font-size: var(--fs-small);
  font-weight: 650;
  color: var(--color-navy-primary);
}

.file-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.file-list li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0;
  padding: 0.5rem 0.7rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-micro);
}

.file-list .file-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text-muted-aa);
  cursor: pointer;
  flex: none;
}

.file-remove:hover {
  background: var(--color-error-bg);
  color: var(--color-error);
}

/* Honeypot — jamais visible, jamais focusable */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Messages d'état du formulaire */
.form-status {
  display: none;
  align-items: flex-start;
  gap: 0.75em;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: var(--fs-small);
}

.form-status.is-shown {
  display: flex;
}

.form-status .icon {
  width: 21px;
  height: 21px;
  flex: none;
  margin-top: 2px;
}

.form-status--success {
  background: var(--color-success-bg);
  border-color: #b7e3ce;
  color: var(--color-success);
}

.form-status--error {
  background: var(--color-error-bg);
  border-color: #f1c9c5;
  color: var(--color-error);
}

.form-status--info {
  background: #eef6ff;
  border-color: #bcdcfb;
  color: #0b4a7d;
}

.form-status strong {
  display: block;
  margin-bottom: 0.15rem;
}

.form-status a {
  color: inherit;
  font-weight: 650;
}

/* Bouton en cours d'envoi */
.spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn .btn-loading {
  display: none;
  align-items: center;
  gap: 0.55em;
}

.btn.is-loading .btn-label {
  display: none;
}

.btn.is-loading .btn-loading {
  display: inline-flex;
}

/* 8. PIED DE PAGE ========================================================= */
.site-footer {
  position: relative;
  background: var(--color-navy-primary);
  color: #b9cee2;
  overflow: hidden;
  font-size: var(--fs-small);
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(min(240px, 100%), 1.5fr) repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: var(--space-lg);
  padding-block: var(--space-xl) var(--space-lg);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: #a3bbd2;
  font-size: var(--fs-small);
  max-width: 38ch;
}

.footer-col h2 {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.15rem;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  min-height: 44px;
  color: #b9cee2;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-col .icon {
  width: 17px;
  height: 17px;
  color: var(--color-blue-electric);
  flex: none;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #b9cee2;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs) var(--space-md);
  padding-block: var(--space-sm) var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: var(--fs-micro);
  color: #8fabc4;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-links li {
  margin: 0;
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #8fabc4;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* 9. RESPONSIVE =========================================================== */
@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero p {
    max-width: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
    --header-h-compact: 60px;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .brand img {
    height: 36px;
  }

  .site-header.is-compact .brand img {
    height: 30px;
  }

  .header-phone span:not(.visually-hidden) {
    display: none;
  }

  .header-phone {
    padding: 0 0.55rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    width: min(340px, 88vw);
    margin: 0;
    padding: calc(var(--header-h) + 1.25rem) var(--space-md) var(--space-lg);
    background: var(--color-white);
    border-left: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--dur) var(--ease),
      visibility 0s linear var(--dur);
  }

  .header-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--dur) var(--ease), visibility 0s;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-link {
    min-height: 52px;
    padding: 0 0.9rem;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .nav-link[aria-current='page'] {
    box-shadow: inset 3px 0 0 var(--color-blue-primary);
    background: var(--color-background-light);
    border-radius: 0;
  }

  .nav-mobile-extra {
    margin-top: var(--space-md);
    display: grid;
    gap: var(--space-xs);
  }
}

@media (min-width: 901px) {
  .nav-mobile-extra {
    display: none;
  }
}

/* Palier intermédiaire : la barre de navigation doit tenir sur une ligne */
@media (min-width: 901px) and (max-width: 1180px) {
  .header-phone span:not(.visually-hidden) {
    display: none;
  }

  .header-phone {
    padding: 0 0.6rem;
  }

  .nav-link {
    padding: 0 0.6rem;
  }

  .brand img {
    height: 36px;
  }
}

@media (max-width: 640px) {
  :root {
    --measure: 100%;
  }

  .brand img,
  .site-header.is-compact .brand img {
    height: 32px;
  }

  .cta-long {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .btn-row .btn {
    width: 100%;
  }

  .hero .btn-row {
    margin-top: var(--space-md);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-strip-inner {
    gap: 0.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-type-list {
    grid-template-columns: 1fr;
  }

  .header-actions .btn {
    padding-inline: 0.9rem;
    font-size: var(--fs-small);
  }
}

@media (max-width: 460px) {
  /* Le numéro reste accessible : bandeau sous le héros, menu et pied de page */
  .header-phone {
    display: none;
  }

  .brand img,
  .site-header.is-compact .brand img {
    height: 28px;
  }

  .header-actions .btn {
    padding-inline: 0.85rem;
  }
}

/* 10. PRÉFÉRENCES & IMPRESSION =========================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nav-backdrop,
  .btn,
  .filters {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
