/* ============================================================
   SARL RAOULT — Feuille de style principale
   Base, composants partagés, sections, pages métier
   ============================================================ */

@import url('variables.css');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-total);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

/* Lien d'évitement (accessibilité) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: var(--space-3) var(--space-4);
  background: var(--forest-deep);
  color: var(--cream);
  z-index: 200;
}
.skip-link:focus { top: 0; }

/* Cachage visuel mais lisible aux lecteurs d'écran */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible accessible */
:focus-visible {
  outline: 3px solid var(--wood-fire);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 var(--space-4);
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}
h5 {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p { margin: 0 0 var(--space-4); }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

/* Eyebrow : petit label avant un titre */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ink-mute);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.text-mute { color: var(--ink-mute); }
.text-center { text-align: center; }

/* ============================================================
   CONTENEURS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

section {
  position: relative;
  padding: var(--space-9) 0;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.btn-arrow:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--forest-deep);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-wood {
  background: var(--wood-fire);
  color: var(--white);
}
.btn-wood:hover {
  background: var(--wood-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-water {
  background: var(--water-mid);
  color: var(--white);
}
.btn-water:hover {
  background: var(--water-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--ink-soft);
}

.btn-light {
  background: var(--cream);
  color: var(--forest-deep);
}
.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-urgent {
  background: var(--urgent);
  color: var(--white);
  animation: pulse-urgent 2s ease-in-out infinite;
}
.btn-urgent:hover {
  background: #b91c1c;
}

@keyframes pulse-urgent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(220, 38, 38, 0); }
}

/* ============================================================
   TOPBAR (barre fine en haut)
   ============================================================ */
.site-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--forest-deep);
  color: var(--cream);
  z-index: 101;
  font-size: 0.8rem;
}

.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--cream);
  transition: opacity 0.15s var(--ease);
}
.topbar-phone:hover { opacity: 0.8; }
.topbar-phone svg {
  width: 14px;
  height: 14px;
  color: var(--wood-warm);
}
.topbar-phone strong {
  color: var(--cream);
  font-weight: 600;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.topbar-links a {
  color: var(--cream);
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.15s var(--ease);
}
.topbar-links a:hover { opacity: 1; color: var(--wood-warm); }

.topbar-lang {
  padding: 0.1rem 0.5rem;
  border: 1px solid rgba(245, 242, 237, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============================================================
   HEADER (sous la topbar)
   ============================================================ */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--header-h);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: all 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(250, 248, 244, 0.97);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

/* Logo mark : carré orange avec R blanc (style nouvelle maquette) */
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--wood-fire);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--white);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 2px 4px rgba(140, 71, 8, 0.25);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text > span:first-child {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-primary a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: var(--space-2) 0;
  transition: color 0.2s var(--ease);
}

.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0;
  height: 2px;
  background: var(--wood-fire);
  transition: all 0.25s var(--ease);
  transform: translateX(-50%);
}

.nav-primary a:hover { color: var(--forest-deep); }
.nav-primary a:hover::after,
.nav-primary a.active::after { width: 100%; }
.nav-primary a.active { color: var(--forest-deep); font-weight: 600; }

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

/* Pill panier (style nouvelle maquette : bouton avec contour clair) */
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-deep);
  transition: all 0.2s var(--ease);
}
.cart-pill:hover {
  border-color: var(--forest-deep);
  transform: translateY(-1px);
}
.cart-pill svg {
  width: 16px;
  height: 16px;
}
.cart-pill .cart-count {
  color: var(--wood-fire);
  font-weight: 700;
}

/* Bouton CTA "Devis gratuit" sombre */
.btn-devis {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.25rem;
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease);
}
.btn-devis:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Bouton hamburger — Style maquette-1 : rond, fond sombre, icône claire */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--cream);
  transition: background 0.2s var(--ease);
}
.menu-toggle:hover {
  background: var(--wood-fire);
}
.menu-toggle svg { width: 22px; height: 22px; }

/* Backdrop sombre derrière le drawer (clic = fermer) */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 15, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  cursor: pointer;
}
.mobile-menu-backdrop.is-visible {
  opacity: 1;
}

/* Menu mobile — Drawer qui glisse depuis la droite (style maquette-1) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 88vw);
  background: var(--forest-deep);
  color: var(--cream);
  z-index: 99;
  padding: calc(var(--header-total) + var(--space-5)) var(--space-6) var(--space-7);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: none;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.25);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-section {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(245, 242, 237, 0.12);
}
.mobile-menu-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.mobile-menu-section h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-pale);
  opacity: 0.7;
  margin-bottom: var(--space-3);
}
.mobile-menu-section a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  padding: var(--space-3) 0;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 242, 237, 0.08);
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.mobile-menu-section a:last-child {
  border-bottom: none;
}
.mobile-menu-section a:hover,
.mobile-menu-section a:focus-visible {
  color: var(--wood-warm);
  padding-left: var(--space-3);
}

/* ============================================================
   HERO — Double activité (ratio 70/30 bois / vidange)
   Le bois prend 70% (entrée principale), vidange 30% (présent
   sans noyer le message).
   ============================================================ */
.hero {
  padding-top: var(--header-total);
  position: relative;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  min-height: 540px;
}

/* === Panneau Bois (70%) === */
.hero-bois {
  position: relative;
  background: var(--cream-warm);
  padding: var(--space-8) var(--space-7);
  overflow: hidden;
}

.hero-bois-content {
  /* Le contenu occupe désormais toute la largeur du panneau bois
     (configurateur élargi, photo retirée). */
  max-width: 900px;
}

.hero-bois .eyebrow {
  color: var(--wood-fire);
  font-weight: 700;
}
.hero-bois .eyebrow::before { background: var(--wood-fire); }

.hero-bois h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest-deep);
  margin-bottom: var(--space-4);
}
.hero-bois h1 em {
  font-style: italic;
  color: var(--wood-fire);
}

.hero-bois p.lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
  max-width: 480px;
}

/* Configurateur de devis (bloc blanc) */
.devis-config {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  /* Configurateur élargi : prend toute la largeur dispo du panneau bois */
  width: 100%;
}

.devis-config-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--space-3);
}

.devis-config-fields {
  display: grid;
  /* 4 champs (CP / Type / Longueur / Quantité) + bouton */
  grid-template-columns: 0.9fr 1.1fr 1fr 1fr auto;
  gap: var(--space-3);
  align-items: end;
}

.devis-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.devis-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.devis-field input,
.devis-field select {
  padding: 0.65rem 0.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  transition: all 0.2s var(--ease);
}
.devis-field input:focus,
.devis-field select:focus {
  outline: none;
  border-color: var(--wood-fire);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 102, 10, 0.12);
}

.devis-submit {
  padding: 0.7rem 1.1rem;
  background: var(--wood-fire);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.devis-submit:hover {
  background: var(--wood-dark);
  transform: translateY(-1px);
}

/* Bullets de réassurance sous le configurateur */
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-5);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.hero-bullets span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-bullets span::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* (hero-bois-visual supprimé : le configurateur est désormais
   pleine largeur sur le panneau bois. Le visuel pourra être réintroduit
   plus tard si nécessaire, par exemple en fond du panneau.) */

/* === Panneau Vidange (30%) === */
.hero-vidange {
  background: linear-gradient(180deg, var(--water-deep) 0%, #0a2d4a 100%);
  color: var(--cream);
  padding: var(--space-8) var(--space-6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-vidange .eyebrow {
  color: var(--water-pale);
}
.hero-vidange .eyebrow::before { background: var(--water-pale); }

.hero-vidange h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: var(--space-3);
}
.hero-vidange h2 em {
  font-style: italic;
  color: var(--water-pale);
}

.hero-vidange p {
  font-size: 0.95rem;
  color: rgba(245, 242, 237, 0.85);
  margin-bottom: var(--space-5);
}

.hero-vidange-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hero-vidange-actions .btn-light {
  width: 100%;
  justify-content: center;
}

.btn-urgence-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--water-mid);
  color: var(--cream);
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease);
  border: 1px solid rgba(245, 242, 237, 0.2);
}
.btn-urgence-direct svg { width: 16px; height: 16px; color: var(--urgent); }
.btn-urgence-direct:hover {
  background: var(--water-deep);
  border-color: var(--cream);
}

/* Tag "certifié SPANC" en bas du panneau */
.hero-vidange-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: 0.3rem 0.7rem;
  background: rgba(245, 242, 237, 0.1);
  border: 1px solid rgba(245, 242, 237, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--cream);
  width: max-content;
}

/* Visuel placeholder dans le panneau vidange */
.hero-vidange-visual {
  margin-top: auto;
  min-height: 160px;
  background: rgba(15, 61, 98, 0.6);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--water-pale);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: var(--space-5);
  background-image:
    repeating-linear-gradient(135deg, transparent 0, transparent 10px, rgba(255, 255, 255, 0.04) 10px, rgba(255, 255, 255, 0.04) 11px);
}

/* ============================================================
   STATS-ROW (bandeau 5 colonnes sous le hero)
   ============================================================ */
.stats-row {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: var(--space-7) 0;
}

.stats-row-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  text-align: center;
}

.stats-row-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--wood-fire);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stats-row-item .stat-label {
  font-size: 0.85rem;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* ============================================================
   PAGE HERO (pages secondaires)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--header-total) + var(--space-7));
  padding-bottom: var(--space-9);
  position: relative;
  overflow: hidden;
}

.page-hero-wood {
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--paper) 100%);
}

.page-hero-water {
  background: linear-gradient(180deg, var(--water-deep) 0%, var(--water-mid) 100%);
  color: var(--cream);
}
.page-hero-water h1,
.page-hero-water .eyebrow { color: var(--cream); }
.page-hero-water .eyebrow::before { background: var(--water-pale); }

.page-hero h1 {
  margin-bottom: var(--space-4);
  max-width: 900px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--wood-fire);
}
.page-hero-water h1 em { color: var(--water-pale); }

.page-hero p {
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 680px;
}
.page-hero-water p { color: rgba(245, 242, 237, 0.85); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-5);
}
.breadcrumb a {
  color: var(--ink-mute);
  transition: color 0.2s var(--ease);
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { opacity: 0.5; }
.page-hero-water .breadcrumb,
.page-hero-water .breadcrumb a { color: var(--water-pale); }

/* ============================================================
   SECTION INTRO ENTREPRISE
   ============================================================ */
.intro-section {
  padding: var(--space-10) 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.intro-marker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5rem;
  color: var(--wood-fire);
  line-height: 1;
}

.intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--space-5);
}
.intro-text h2 em {
  font-style: italic;
  color: var(--wood-fire);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* ============================================================
   RÉASSURANCE (bandeau 4 colonnes)
   ============================================================ */
.reassurance {
  padding: var(--space-7) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.reassurance-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest-deep);
  display: grid;
  place-items: center;
}
.reassurance-icon svg { width: 22px; height: 22px; }

.reassurance-item h4 {
  margin-bottom: var(--space-1);
  font-size: 1rem;
}
.reassurance-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* ============================================================
   SECTION-HEADER (titre + lien à droite)
   ============================================================ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.section-header-text { max-width: 720px; }

/* Sections univers */
.section-wood {
  background: var(--paper);
}

.section-water {
  background: var(--forest-deep);
  color: var(--cream);
}
.section-water h2,
.section-water h3 { color: var(--cream); }
.section-water .eyebrow { color: var(--forest-pale); }
.section-water .eyebrow::before { background: var(--forest-pale); }

/* ============================================================
   PRODUCT CARDS (catalogue)
   ============================================================ */
.products-grid {
  display: grid;
  /* 4 colonnes en desktop large, s'adapte automatiquement en dessous */
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

/* Sur les pages catalogue (avec sidebar filtres), on retombe sur 3 cols */
.catalog-grid .products-grid,
.catalog-layout .products-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-warm);
  overflow: hidden;
}
.product-img-svg {
  width: 100%; height: 100%;
}

.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 0.25rem 0.65rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.badge-stock { background: var(--success); color: var(--white); }
.badge-low { background: var(--warning); color: var(--white); }
.badge-out { background: var(--ink-mute); color: var(--white); }

.product-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--space-2);
}

.product-title {
  font-size: 1.25rem;
  margin: 0 0 var(--space-2);
}

.product-meta {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-3);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.82rem;
  margin-bottom: var(--space-4);
}
.stars {
  color: var(--wood-fire);
  letter-spacing: 0.05em;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  gap: var(--space-3);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1;
}
.product-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-mute);
  margin-top: 2px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.6rem 1rem;
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease);
}
.btn-buy:hover {
  background: var(--wood-fire);
  transform: scale(1.03);
}
.btn-buy svg { width: 14px; height: 14px; }

/* ============================================================
   SERVICES (assainissement)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.service-card {
  padding: var(--space-6);
  background: rgba(245, 242, 237, 0.05);
  border: 1px solid rgba(245, 242, 237, 0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.service-card:hover {
  background: rgba(245, 242, 237, 0.1);
  transform: translateY(-3px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(245, 242, 237, 0.1);
  display: grid;
  place-items: center;
  color: var(--water-soft);
  margin-bottom: var(--space-4);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(245, 242, 237, 0.75);
  margin-bottom: var(--space-4);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--water-pale);
  transition: gap 0.2s var(--ease);
}
.service-link:hover { gap: var(--space-3); }
.service-link svg { transition: transform 0.2s var(--ease); }

.service-card.urgent {
  border-color: var(--urgent);
  background: rgba(220, 38, 38, 0.08);
}
.service-card.urgent .service-icon {
  background: rgba(220, 38, 38, 0.2);
  color: var(--urgent);
}

/* Bandeau urgence */
.water-cta {
  margin-top: var(--space-7);
  text-align: center;
}

.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.65rem 1.2rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--cream);
}
.urgency-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--urgent);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

/* ============================================================
   ZONE D'INTERVENTION
   ============================================================ */
.zone-section {
  background: var(--cream);
  padding: var(--space-10) 0;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.zone-text h2 em {
  font-style: italic;
  color: var(--wood-fire);
}

.zone-towns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.town-tag {
  padding: 0.4rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.zone-map svg {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  background: var(--paper);
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials {
  background: var(--paper);
  padding: var(--space-10) 0;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}

.testimonials-header h2 em {
  font-style: italic;
  color: var(--wood-fire);
}

.google-rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.rating-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1;
}
.rating-info { display: flex; flex-direction: column; }
.rating-info .stars { font-size: 0.95rem; }
.rating-info small { color: var(--ink-mute); font-size: 0.75rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.testimonial-content {
  padding: var(--space-5);
}
.testimonial-content .stars {
  margin-bottom: var(--space-3);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--space-5);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.author-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--forest-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
}

.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 0.92rem; }
.author-info small { font-size: 0.78rem; color: var(--ink-mute); }

/* ============================================================
   ABOUT (page entreprise)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-10);
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-text h2 em { font-style: italic; color: var(--wood-fire); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.value-card {
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.value-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--wood-fire);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.engagement-item svg {
  width: 48px; height: 48px;
  margin: 0 auto var(--space-3);
  color: var(--forest-soft);
}
.engagement-item h4 { margin-bottom: var(--space-2); }
.engagement-item p { font-size: 0.92rem; color: var(--ink-mute); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.contact-channel {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.2s var(--ease);
}
.contact-channel:hover {
  border-color: var(--wood-fire);
  transform: translateX(4px);
}

.channel-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--wood-fire);
  display: grid;
  place-items: center;
}
.channel-icon svg { width: 22px; height: 22px; }

.channel-info h4 { margin-bottom: var(--space-1); font-size: 1.05rem; }
.channel-info p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.channel-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 2px;
}

/* Formulaire générique */
.form-wrap {
  background: var(--white);
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest-soft);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.req { color: var(--urgent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: var(--space-9) 0 var(--space-5);
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(245, 242, 237, 0.12);
}

.footer-brand .logo { color: var(--cream); margin-bottom: var(--space-4); }
.footer-brand .logo-mark { background: var(--cream); color: var(--forest-deep); }
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(245, 242, 237, 0.7);
  margin-bottom: var(--space-4);
  max-width: 360px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--wood-warm); }

.footer-col h5 {
  color: var(--cream);
  margin-bottom: var(--space-4);
  font-size: 0.85rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(245, 242, 237, 0.7);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(245, 242, 237, 0.5);
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 242, 237, 0.08);
  display: grid;
  place-items: center;
  transition: all 0.2s var(--ease);
}
.footer-social a:hover {
  background: var(--wood-fire);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; color: var(--cream); }

/* ============================================================
   CATALOGUE (bois-énergie)
   ============================================================ */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}

.catalog-count {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.catalog-count strong {
  color: var(--forest-deep);
  font-size: 1.05rem;
}

.sort-select {
  padding: 0.55rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}
.sort-select:hover { border-color: var(--forest-soft); }

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-6);
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-total) + var(--space-4));
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-height: calc(100vh - var(--header-total) - var(--space-7));
  overflow-y: auto;
}

.filter-group {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: var(--space-3);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.15s var(--ease);
}
.filter-option:hover { color: var(--ink); }
.filter-option input { cursor: pointer; accent-color: var(--forest-deep); }

.filter-reset {
  display: block;
  width: 100%;
  padding: var(--space-3);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  margin-top: var(--space-4);
}
.filter-reset:hover {
  border-color: var(--wood-fire);
  color: var(--wood-fire);
}

/* État vide / aucun résultat */
.catalog-empty {
  padding: var(--space-7);
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

/* ============================================================
   CONSEILS (catalogue bois)
   ============================================================ */
.advice-section {
  background: var(--cream);
  padding: var(--space-9) 0;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.advice-card {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.advice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.advice-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--cream-warm);
  color: var(--wood-fire);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.advice-icon svg { width: 28px; height: 28px; }

.advice-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
}

.advice-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   FAQ ACCORDÉON (intégré aux pages métier)
   ============================================================ */
.faq-section {
  background: var(--paper);
}

.faq-list {
  max-width: 880px;
  margin: var(--space-7) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s var(--ease);
}
.faq-item[open] {
  border-color: var(--forest-soft);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: var(--space-5);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--wood-fire);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   SECTION PROCESSUS (4 étapes)
   ============================================================ */
.section-process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
  position: relative;
}

.process-step {
  position: relative;
  padding: var(--space-5);
}

.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--wood-fire);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.process-step h4 { margin-bottom: var(--space-2); }
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   SERVICES DÉTAILLÉS (page assainissement)
   ============================================================ */
.services-grid-detail {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.service-features {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: rgba(245, 242, 237, 0.85);
  line-height: 1.4;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-soft);
  font-weight: 700;
}

/* ============================================================
   FICHE PRODUIT
   ============================================================ */
.product-page {
  padding-top: calc(var(--header-total) + var(--space-7));
  background: var(--paper);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}

.product-gallery {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.product-gallery svg { width: 100%; height: 100%; }

.product-info .product-cat {
  margin-bottom: var(--space-3);
  font-size: 0.82rem;
}

.product-info h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: var(--space-3);
}

.product-info .product-rating {
  margin: var(--space-3) 0 var(--space-4);
  font-size: 0.92rem;
}

.product-description {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.variant-selector {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.variant-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.variant-option:hover { border-color: var(--forest-soft); }
.variant-option input { position: absolute; opacity: 0; pointer-events: none; }
.variant-option:has(input:checked) {
  border-color: var(--wood-fire);
  background: var(--cream-warm);
}
.variant-name { font-weight: 500; }
.variant-price {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest-deep);
}

.product-buy-bar {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--cream);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.25rem;
}
.qty-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--forest-deep);
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.2rem;
  transition: background 0.15s var(--ease);
}
.qty-btn:hover { background: var(--cream-warm); }
.qty-value {
  min-width: 32px;
  text-align: center;
  font-weight: 600;
}

.product-shipping-info {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: rgba(74, 124, 89, 0.08);
  border-left: 3px solid var(--forest-soft);
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.product-shipping-info strong {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--forest-deep);
}

/* ============================================================
   PANIER (page panier.html)
   ============================================================ */
.cart-page {
  padding-top: calc(var(--header-total) + var(--space-7));
  background: var(--paper);
  min-height: 60vh;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.cart-items {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.cart-line {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.cart-line:last-child { border-bottom: none; }

.cart-line-img {
  aspect-ratio: 1;
  background: var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-line-img svg { width: 100%; height: 100%; }

.cart-line-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: var(--space-1);
}
.cart-line-variant {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-2);
}
.cart-line-qty {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.cart-line-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-2);
}
.cart-line-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-deep);
}
.cart-line-remove {
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-decoration: underline;
  cursor: pointer;
}
.cart-line-remove:hover { color: var(--danger); }

.cart-empty {
  padding: var(--space-9) var(--space-5);
  text-align: center;
}
.cart-empty svg {
  width: 64px; height: 64px;
  margin: 0 auto var(--space-4);
  color: var(--ink-mute);
  opacity: 0.6;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: var(--space-5);
  position: sticky;
  top: calc(var(--header-total) + var(--space-4));
}

.cart-summary h3 {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) 0;
  margin-top: var(--space-3);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest-deep);
}

.cart-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* ============================================================
   UPSELL
   ============================================================ */
.upsell-section {
  background: var(--cream);
  padding: var(--space-7) 0;
}

.upsell-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.upsell-item {
  background: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.upsell-info { flex: 1; }
.upsell-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--space-2);
}
.upsell-item h4 { margin-bottom: var(--space-2); font-size: 1.05rem; }
.upsell-item p {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.45;
}

.upsell-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.upsell-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-deep);
}
.upsell-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-page {
  padding-top: calc(var(--header-total) + var(--space-7));
  background: var(--paper);
  min-height: 80vh;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.checkout-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: var(--space-7);
}

.checkout-progress {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.checkout-progress-track {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.checkout-progress-bar {
  height: 100%;
  background: var(--wood-fire);
  width: 25%;
  transition: width 0.4s var(--ease);
}

.checkout-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.checkout-step-label {
  color: var(--ink-mute);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.checkout-step-label.current { color: var(--wood-fire); font-weight: 700; }
.checkout-step-label.done { color: var(--success); }

.checkout-step h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--space-3);
}
.checkout-step .lead {
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}

/* Récap latéral */
.checkout-recap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: sticky;
  top: calc(var(--header-total) + var(--space-4));
}
.checkout-recap h3 {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}

.recap-items {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.recap-items li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9rem;
}
.recap-items strong { display: block; }
.recap-items small { color: var(--ink-mute); }

.recap-line {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.recap-total {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0 0;
  margin-top: var(--space-2);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest-deep);
}

/* Créneaux de livraison */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.slot-option {
  display: block;
  padding: var(--space-4);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s var(--ease);
}
.slot-option input { position: absolute; opacity: 0; pointer-events: none; }
.slot-option:hover { border-color: var(--forest-soft); }
.slot-option:has(input:checked) {
  border-color: var(--wood-fire);
  background: var(--cream-warm);
}
.slot-date {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-1);
}
.slot-period { font-size: 0.82rem; color: var(--ink-mute); }

/* Questionnaire accessibilité (vrac) */
.access-question {
  background: var(--cream);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}
.access-question h4 {
  margin-bottom: var(--space-3);
  font-size: 1.05rem;
}
.access-question p {
  margin: 0 0 var(--space-3);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.radio-pair {
  display: flex;
  gap: var(--space-2);
}
.radio-pair label {
  flex: 1;
  display: block;
  padding: var(--space-3);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.radio-pair input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pair label:hover { border-color: var(--forest-soft); }
.radio-pair label:has(input:checked) {
  border-color: var(--wood-fire);
  background: var(--cream-warm);
}

.access-warning {
  background: rgba(217, 119, 6, 0.1);
  border-left: 3px solid var(--warning);
  padding: var(--space-4);
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-top: var(--space-4);
}
.access-warning strong { color: var(--warning); }

/* Paiement */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.payment-method input { position: absolute; opacity: 0; pointer-events: none; }
.payment-method:hover { border-color: var(--forest-soft); }
.payment-method:has(input:checked) {
  border-color: var(--wood-fire);
  background: var(--cream-warm);
}

.payment-logo {
  width: 56px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest-deep);
  flex-shrink: 0;
}
.payment-logo.alma { background: #f3f0ff; color: #6b3df7; }
.payment-logo.cb   { background: #e8eef5; color: #134e7c; }

.payment-info { flex: 1; }
.payment-info strong { display: block; }
.payment-info small { color: var(--ink-mute); }

/* ============================================================
   CONFIRMATION
   ============================================================ */
.confirmation-page {
  padding-top: calc(var(--header-total) + var(--space-9));
  padding-bottom: var(--space-9);
  background: var(--cream);
  min-height: 70vh;
}

.confirmation-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-9) var(--space-7);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--line);
}

.confirmation-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(46, 125, 79, 0.15);
  color: var(--success);
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-4);
}
.confirmation-icon svg { width: 40px; height: 40px; }

.confirmation-order {
  display: inline-block;
  margin: var(--space-3) 0 var(--space-5);
  padding: 0.5rem 1rem;
  background: var(--cream);
  font-family: monospace;
  font-size: 0.9rem;
  border-radius: var(--radius);
}

/* ============================================================
   TUNNEL VIDANGE (multi-étapes assainissement)
   ============================================================ */
.form-multistep {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}

.form-progress {
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.form-progress-bar {
  height: 100%;
  background: var(--water-mid);
  width: 0;
  transition: width 0.4s var(--ease);
}
.form-progress-text {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-5);
}

.form-step {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}
.form-step.active { display: block; }

.step-header {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-5);
}
.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--water-mid);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.step-header h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-1);
}
.step-header p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.95rem;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.radio-option {
  display: block;
  padding: var(--space-3) var(--space-4);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.radio-option:hover { border-color: var(--water-soft); }
.radio-option input { margin-right: var(--space-2); accent-color: var(--water-mid); }
.radio-option:has(input:checked) {
  border-color: var(--water-mid);
  background: var(--water-pale);
}

/* ============================================================
   FORMULAIRE INTERVENTION (demande-vidange)
   Style inspiré de maquette-3 : sections empilées + radio-cards
   + urgency-toggle + upload-zone (pas de tunnel multi-étapes).
   ============================================================ */
.form-intervention {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}

.form-section {
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line);
}
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.form-section--light {
  background: var(--cream);
  padding: var(--space-5);
  border-radius: var(--radius);
  border: none;
}

.form-section__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: var(--space-2);
}

.form-section__hint {
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-5);
}

.form-grid {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.form-grid--2 { grid-template-columns: 1fr 1fr; }

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--ink-soft);
}
.form-label .required { color: var(--urgent); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--water-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.12);
}
textarea.form-control { resize: vertical; min-height: 110px; }

.form-help {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: var(--space-2);
}

.form-intervention .form-field { margin-bottom: var(--space-4); }
.form-intervention .form-field:last-child { margin-bottom: 0; }

/* ---------- Radio cards (type d'intervention) ---------- */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }

.radio-card__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  height: 100%;
}
.radio-card:hover .radio-card__inner {
  border-color: var(--water-soft);
  transform: translateY(-1px);
}
.radio-card input:checked + .radio-card__inner {
  border-color: var(--water-mid);
  background: var(--water-pale);
  border-width: 2px;
}
.radio-card input:focus-visible + .radio-card__inner {
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.2);
}

.radio-card__icon {
  font-size: 1.6rem;
  line-height: 1;
}
.radio-card__label {
  font-weight: 600;
  color: var(--forest-deep);
  font-size: 0.95rem;
}

/* ---------- Toggle Urgence / Standard ---------- */
.urgency-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.urgency-option {
  position: relative;
  cursor: pointer;
}
.urgency-option input { position: absolute; opacity: 0; pointer-events: none; }

.urgency-option__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-5);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s var(--ease);
}
.urgency-option:hover .urgency-option__inner { border-color: var(--water-soft); }
.urgency-option input:checked + .urgency-option__inner {
  border-color: var(--water-mid);
  background: var(--water-pale);
}

.urgency-option--alert input:checked + .urgency-option__inner {
  border-color: var(--urgent);
  background: rgba(220, 38, 38, 0.06);
}
.urgency-option--alert .urgency-option__title { color: var(--urgent); }

.urgency-option__title {
  font-weight: 700;
  color: var(--forest-deep);
  font-size: 1.05rem;
}
.urgency-option__desc {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* ---------- Liste de checkboxes verticale ---------- */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  font-size: 0.92rem;
}
.checkbox-item:hover { border-color: var(--water-soft); background: var(--white); }
.checkbox-item input {
  margin-top: 2px;
  accent-color: var(--water-mid);
  flex-shrink: 0;
}
.checkbox-item:has(input:checked) {
  border-color: var(--water-mid);
  background: var(--water-pale);
}

/* ---------- Boîte d'info explicative ---------- */
.info-box {
  background: var(--cream);
  border-left: 4px solid var(--wood-fire);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-sm);
  margin: var(--space-5) 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.info-box strong {
  display: block;
  color: var(--forest-deep);
  margin-bottom: var(--space-1);
}

/* ---------- Zone d'upload photos (drag & drop) ---------- */
.upload-zone {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  background: var(--cream);
}
.upload-zone:hover,
.upload-zone--drag {
  border-color: var(--water-mid);
  background: var(--white);
}

.upload-zone__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.upload-zone__icon {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}
.upload-zone strong {
  color: var(--forest-deep);
  font-weight: 600;
}
.upload-zone__hint {
  font-size: 0.82rem;
  color: var(--ink-mute);
}

.upload-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.upload-preview {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.upload-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.upload-preview__remove {
  position: absolute;
  top: 6px; right: 6px;
  width: 24px; height: 24px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.upload-preview__remove:hover { background: var(--urgent); }
.upload-preview__name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bouton submit large */
.form-submit {
  margin-top: var(--space-6);
}
.form-submit .btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}
.form-submit__note {
  margin-top: var(--space-3);
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-align: center;
}

/* ============================================================
   ANIMATIONS (reveal au scroll)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   Note : responsive.css est chargé via <link> dans chaque HTML
   après style.css. Un @import en fin de fichier est ignoré par
   la spec CSS, c'est pourquoi on passe par <link>.
   ============================================================ */
