/* ============================================================
   CryoCare — Feuille de styles principale
   Charte sarcelle | Echelle typo 1.25 | Grille 8px
   ============================================================ */

/* ---------- 1. Variables ---------- */
:root {
  /* Couleurs */
  --primary: #265F65;
  --primary-dark: #1A4A50;
  --primary-light: #4E8B92;
  --accent: #5FA0A6;
  --glacier: #E8F1F2;
  --sand: #F5F3EE;
  --text: #1A2426;
  --text-soft: #5A6B6E;
  --text-muted: #8A9698;
  --alert: #C25B4A;
  --success: #4A8060;
  --white: #FFFFFF;
  --border: #DDE5E6;

  /* Typo (échelle 1.25) */
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-20: 1.25rem;
  --fs-25: 1.563rem;
  --fs-31: 1.953rem;
  --fs-39: 2.441rem;
  --fs-49: 3.052rem;
  --fs-61: 3.815rem;

  /* Espacement (base 8) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Ombres */
  --shadow-soft: 0 4px 12px rgba(38, 95, 101, 0.08);
  --shadow-medium: 0 8px 24px rgba(38, 95, 101, 0.12);
  --shadow-strong: 0 16px 40px rgba(38, 95, 101, 0.18);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;

  /* Layout */
  --container: 1200px;
  --container-wide: 1440px;
  --header-h: 112px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--fs-16);
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { padding: 0; list-style: none; }
ul.bulleted { padding-left: var(--sp-3); list-style: disc; }
ul.bulleted li { margin-bottom: var(--sp-1); }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--sp-2);
  color: var(--text);
}
h1 { font-size: var(--fs-39); }
h2 { font-size: var(--fs-31); margin-bottom: var(--sp-3); }
h3 { font-size: var(--fs-25); font-weight: 700; }
h4 { font-size: var(--fs-20); font-weight: 700; }

p { margin: 0 0 var(--sp-2); max-width: 65ch; }

@media (min-width: 768px) {
  h1 { font-size: var(--fs-49); }
  h2 { font-size: var(--fs-39); }
  h3 { font-size: var(--fs-31); }
}

/* ---------- 3. Conteneur ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-3); }
@media (min-width: 768px) { .container { padding: 0 var(--sp-6); } }
@media (min-width: 1200px) { .container { padding: 0 var(--sp-8); } }

/* ---------- 4. Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  min-height: 48px;
  padding: 12px 24px;
  font-size: var(--fs-16);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-medium); color: var(--white); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-secondary:hover { background: var(--glacier); }
.btn-ghost { color: var(--primary); padding: 12px 16px; }
.btn-ghost:hover { background: var(--glacier); }
.btn-large { min-height: 56px; padding: 16px 32px; font-size: var(--fs-20); }
.btn-block { width: 100%; }

/* ---------- 5. Header sticky ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
@media (min-width: 1200px) {
  .header-inner { padding: 0 var(--sp-6); }
}

/* Logo */
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo { height: 96px !important; width: 96px !important; display: block; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-tag { font-size: 11px; letter-spacing: 0.18em; color: var(--text-soft); text-transform: uppercase; }
@media (max-width: 1023px) { .brand-logo { height: 72px !important; width: 72px !important; } }
/* Logo footer — bandeau pleine largeur en haut du footer */
.footer-brand { text-align: center; padding-bottom: var(--sp-4); margin-bottom: var(--sp-6); border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-logo { height: 140px !important; width: 140px !important; display: inline-block; object-fit: contain; }
@media (max-width: 768px) { .footer-logo { height: 96px !important; width: 96px !important; } }

/* Nav desktop */
.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav { display: flex; align-items: center; gap: var(--sp-1); flex: 1; justify-content: center; }
}
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 500;
  font-size: var(--fs-16);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.main-nav > li > a:hover, .main-nav > li > a.active { background: var(--glacier); color: var(--primary); }
.main-nav .caret { font-size: 10px; opacity: 0.6; }

/* Dropdown desktop */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 8px;
  margin-top: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-medium);
  /* visuellement décalé via translate, sans créer de gap "no man's land" */
  transform: translateY(8px);
}
/* Zone invisible qui empêche le hover de se perdre entre le bouton et le menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: var(--fs-14);
  font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--glacier); color: var(--primary); }
.dropdown-menu .submenu-title {
  padding: 8px 14px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dropdown-menu .divider { height: 1px; background: var(--border); margin: 6px 0; }
.dropdown-wide { min-width: 480px; }
.dropdown-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

/* Header right (CTA + tel) */
.header-right { display: flex; align-items: center; gap: var(--sp-2); }
.header-tel {
  display: none;
  font-weight: 700;
  font-size: var(--fs-14);
  color: var(--primary);
}
.header-tel:hover { color: var(--primary-dark); }
@media (min-width: 1200px) { .header-tel { display: inline-flex; align-items: center; gap: 6px; } }

/* Burger */
.burger {
  display: flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--glacier);
  border-radius: var(--r-sm);
}
.burger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform var(--t-base); }
@media (min-width: 1024px) { .burger { display: none; } }

/* Nav mobile */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: var(--sp-3);
}
.mobile-nav.is-open { display: block; }
.mobile-nav details { border-bottom: 1px solid var(--border); }
.mobile-nav summary { list-style: none; cursor: pointer; padding: 16px 0; font-weight: 600; font-size: var(--fs-20); color: var(--text); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: '+'; font-size: 24px; color: var(--primary); }
.mobile-nav details[open] summary::after { content: '−'; }
.mobile-nav details ul { padding: 0 0 16px; }
.mobile-nav details ul li a { display: block; padding: 10px 16px; color: var(--text-soft); border-radius: var(--r-sm); }
.mobile-nav details ul li a:hover { background: var(--glacier); color: var(--primary); }
.mobile-nav .mobile-cta { margin-top: var(--sp-3); }
.mobile-nav .mobile-cta a { display: flex; padding: 14px 0; font-size: var(--fs-20); font-weight: 600; color: var(--primary); }

/* ---------- 6. Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--glacier) 0%, var(--white) 100%);
  padding: var(--sp-8) 0;
}
@media (min-width: 768px) { .hero { padding: var(--sp-12) 0; } }
.hero-grid { display: grid; gap: var(--sp-6); align-items: center; grid-template-columns: 1fr; }
.hero-grid > * { min-width: 0; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-8); } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--glacier); border: 1px solid var(--accent); border-radius: var(--r-pill); color: var(--primary); font-size: var(--fs-14); font-weight: 600; margin-bottom: var(--sp-2); }
.hero-title { color: var(--text); margin-bottom: var(--sp-3); }
.hero-subtitle { font-size: var(--fs-20); color: var(--text-soft); max-width: 580px; margin-bottom: var(--sp-3); }
.hero-paragraph { font-size: var(--fs-16); color: var(--text); max-width: 580px; margin-bottom: var(--sp-4); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-3); }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-14); color: var(--text-soft); }
.hero-trust li svg { color: var(--primary); flex-shrink: 0; }

/* Hero image */
.hero-visual { position: relative; }
.hero-visual .placeholder { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: var(--r-lg); display: grid; place-items: center; color: var(--white); box-shadow: var(--shadow-strong); position: relative; overflow: hidden; }
.hero-visual .placeholder::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 40%); }
.hero-visual .placeholder svg { width: 96px; height: 96px; opacity: 0.9; position: relative; z-index: 1; }
.hero-visual img { border-radius: var(--r-lg); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-strong); }

/* ---------- 7. Sections génériques ---------- */
section { padding: var(--sp-8) 0; }
@media (min-width: 768px) { section { padding: var(--sp-12) 0; } }

.section-eyebrow { display: inline-block; padding: 4px 12px; background: var(--glacier); color: var(--primary); border-radius: var(--r-pill); font-size: var(--fs-14); font-weight: 600; margin-bottom: var(--sp-2); letter-spacing: 0.02em; }
.section-title { margin-bottom: var(--sp-2); max-width: 800px; }
.section-subtitle { font-size: var(--fs-20); color: var(--text-soft); max-width: 720px; margin-bottom: var(--sp-6); }
.section-alt { background: var(--glacier); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark .section-title, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-subtitle, .section-dark p { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.text-center .section-title, .text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- 8. Cards ---------- */
.card-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .card-grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .card-grid-5 { grid-template-columns: repeat(5, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); border-color: var(--accent); }
.card-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--glacier); color: var(--primary); display: grid; place-items: center; margin-bottom: var(--sp-2); }
.card-icon svg { width: 24px; height: 24px; }
.card-title { font-size: var(--fs-20); margin-bottom: var(--sp-1); }
.card-text { color: var(--text-soft); font-size: var(--fs-16); margin: 0; }
.card-link { margin-top: var(--sp-2); color: var(--primary); font-weight: 600; font-size: var(--fs-14); display: inline-flex; align-items: center; gap: 4px; }
.card-link::after { content: '→'; transition: transform var(--t-fast); }
.card:hover .card-link::after { transform: translateX(4px); }
.card.linked-card { padding: 0; overflow: hidden; }
.card.linked-card a.card-cover { display: block; padding: var(--sp-4); color: inherit; height: 100%; }

/* Step card */
.step-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 768px) { .step-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.step { text-align: left; padding: var(--sp-3); background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); position: relative; }
.step-num { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--white); font-weight: 800; margin-bottom: var(--sp-2); font-size: var(--fs-20); }
.step-title { font-size: var(--fs-20); margin-bottom: 8px; }
.step-text { color: var(--text-soft); font-size: var(--fs-16); margin: 0; }

/* Pricing */
.pricing-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 768px) { .pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; } }
.price-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-4); text-align: left; transition: all var(--t-base); }
.price-card.featured { border-color: var(--primary); position: relative; box-shadow: var(--shadow-medium); }
.price-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--white); padding: 4px 14px; border-radius: var(--r-pill); font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.price-name { font-size: var(--fs-20); font-weight: 700; margin-bottom: 8px; }
.price-amount { font-size: var(--fs-49); font-weight: 800; color: var(--primary); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.price-amount sub { font-size: var(--fs-16); font-weight: 500; color: var(--text-soft); margin-left: 4px; }
.price-text { color: var(--text-soft); margin-bottom: var(--sp-3); font-size: var(--fs-14); }
.price-features { margin-bottom: var(--sp-3); }
.price-features li { padding: 6px 0; padding-left: 24px; position: relative; font-size: var(--fs-14); }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }

/* ---------- 9. Encadrés ---------- */
.notice { padding: var(--sp-3); border-radius: var(--r-md); margin: var(--sp-3) 0; font-size: var(--fs-16); }
.notice-medical {
  background: var(--glacier);
  border-left: 4px solid var(--primary);
  display: flex; gap: var(--sp-2); align-items: flex-start;
}
.notice-medical svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.notice-info {
  background: var(--sand);
  border-left: 4px solid var(--primary-light);
}
.notice-warning {
  background: #FCEEEC;
  border-left: 4px solid var(--alert);
}
.notice strong { color: var(--text); }

/* Reassurance bar */
.reassurance-bar { background: var(--white); padding: var(--sp-3); border-radius: var(--r-md); display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; justify-content: center; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }
.reassurance-bar li { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-14); color: var(--text-soft); }
.reassurance-bar li svg { color: var(--primary); }

/* ---------- 10. Témoignage ---------- */
.testimonial { max-width: 760px; margin: 0 auto; background: var(--white); padding: var(--sp-6); border-radius: var(--r-lg); border: 1px solid var(--border); }
.testimonial blockquote { margin: 0 0 var(--sp-3); font-size: var(--fs-20); line-height: 1.5; color: var(--text); position: relative; padding-left: var(--sp-3); border-left: 3px solid var(--accent); font-style: italic; }
.testimonial blockquote::before { content: '"'; position: absolute; top: -10px; left: -8px; font-size: 60px; color: var(--accent); opacity: 0.3; line-height: 1; }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-2); }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--glacier); color: var(--primary); display: grid; place-items: center; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { display: block; }
.testimonial-author span { color: var(--text-soft); font-size: var(--fs-14); }

/* ---------- 11. Accordéon FAQ ---------- */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item summary { padding: var(--sp-2) 0; cursor: pointer; font-weight: 600; font-size: var(--fs-20); color: var(--text); list-style: none; display: flex; justify-content: space-between; gap: var(--sp-2); align-items: center; }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after { content: '+'; font-size: 28px; color: var(--primary); font-weight: 400; transition: transform var(--t-base); flex-shrink: 0; }
.accordion-item[open] summary::after { content: '−'; }
.accordion-item .accordion-body { padding: 0 0 var(--sp-3); color: var(--text-soft); font-size: var(--fs-16); }
.accordion-item .accordion-body p { margin-bottom: var(--sp-1); }

/* ---------- 12. Formulaires ---------- */
.form-card { max-width: 640px; margin: 0 auto; background: var(--white); padding: var(--sp-6); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.form-row { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-2); }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-2); }
.field label { font-weight: 600; font-size: var(--fs-14); color: var(--text); }
.field label .req { color: var(--alert); }
.field input, .field select, .field textarea { font-family: inherit; font-size: var(--fs-16); padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--white); color: var(--text); transition: border-color var(--t-fast); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(38, 95, 101, 0.15); }
.field textarea { min-height: 120px; resize: vertical; }
.field .help { font-size: var(--fs-12); color: var(--text-muted); }
.field-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.field-checkbox input { width: auto; margin-top: 4px; }
.field-checkbox label { font-weight: 400; font-size: var(--fs-14); color: var(--text-soft); }
.radio-group { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
#formulaire { scroll-margin-top: 130px; }
.form-alert { background: #FBEDEA; border: 1.5px solid var(--alert); border-radius: var(--r-sm); color: #8C3A2C; font-size: var(--fs-14); font-weight: 500; padding: 12px 14px; margin-bottom: var(--sp-3); }
.form-alert[hidden] { display: none; }
.champ-cache { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.radio-group label { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--glacier); border-radius: var(--r-pill); font-weight: 500; font-size: var(--fs-14); cursor: pointer; }
.radio-group input { width: auto; }

/* ---------- 13. Disponibilité ---------- */
.availability { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; }
@media (min-width: 768px) { .availability-2 { grid-template-columns: repeat(2, 1fr); } }
.machine-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-4); }
.machine-card.dispo { border-color: var(--success); }
.machine-card.indispo { border-color: var(--alert); }
.status-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--r-pill); font-weight: 700; font-size: var(--fs-14); }
.status-dispo { background: rgba(74, 128, 96, 0.1); color: var(--success); }
.status-indispo { background: rgba(194, 91, 74, 0.1); color: var(--alert); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }
.machine-name { font-size: var(--fs-25); font-weight: 700; margin-top: var(--sp-2); margin-bottom: var(--sp-1); }
.machine-info { color: var(--text-soft); margin-bottom: var(--sp-3); }
.machine-update { font-size: var(--fs-12); color: var(--text-muted); margin-top: var(--sp-2); }

/* ---------- 14. Breadcrumb ---------- */
.breadcrumb { background: var(--glacier); padding: var(--sp-2) 0; font-size: var(--fs-14); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; color: var(--text-soft); }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--text-muted); margin-left: 6px; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--primary); font-weight: 600; }

/* ---------- 15. Footer ---------- */
.site-footer { background: var(--primary); color: var(--white); padding: var(--sp-8) 0 var(--sp-3); margin-top: var(--sp-8); }
.footer-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; margin-bottom: var(--sp-6); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { color: var(--white); font-size: var(--fs-16); font-weight: 700; margin-bottom: var(--sp-2); letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.8); font-size: var(--fs-14); }
.footer-col ul li a:hover { color: var(--white); text-decoration: underline; }
.footer-col p { color: rgba(255,255,255,0.8); font-size: var(--fs-14); margin-bottom: 8px; }
.footer-col .footer-tel { color: var(--white); font-weight: 700; font-size: var(--fs-20); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--sp-3); display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: space-between; align-items: center; font-size: var(--fs-12); color: rgba(255,255,255,0.7); }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* ---------- 16. Banner CTA ---------- */
.cta-banner { background: var(--primary); color: var(--white); padding: var(--sp-8) 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--sp-2); }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: var(--fs-20); max-width: 640px; margin: 0 auto var(--sp-4); }
.cta-banner .btn-primary { background: var(--white); color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--glacier); color: var(--primary-dark); }
.cta-banner-soft { background: var(--glacier); color: var(--text); }
.cta-banner-soft h2, .cta-banner-soft p { color: var(--text); }
.cta-banner-soft p { color: var(--text-soft); }

/* ---------- 17. Map (zone) ---------- */
.map-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-4); }
.zone-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-2); }
.zone-list a { display: inline-block; padding: 6px 14px; background: var(--glacier); color: var(--primary); border-radius: var(--r-pill); font-size: var(--fs-14); font-weight: 500; }
.zone-list a:hover { background: var(--primary); color: var(--white); }

/* ---------- 18. Page hero (compact) ---------- */
.page-hero { background: var(--glacier); padding: var(--sp-6) 0 var(--sp-4); }
@media (min-width: 768px) { .page-hero { padding: var(--sp-8) 0 var(--sp-6); } }
.page-hero h1 { margin-bottom: var(--sp-2); max-width: 800px; }
.page-hero .lead { font-size: var(--fs-20); color: var(--text-soft); max-width: 720px; margin: 0; }

/* ---------- 19. Prose (texte long) ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose > * { margin-bottom: var(--sp-2); }
.prose h2 { margin-top: var(--sp-6); }
.prose h3 { margin-top: var(--sp-4); }
.prose ul.bulleted li { margin-bottom: 8px; }
.prose .lead { font-size: var(--fs-20); color: var(--text-soft); margin-bottom: var(--sp-4); }

/* ---------- 20. Slogan ---------- */
.slogan { font-style: italic; font-size: var(--fs-25); color: var(--primary); text-align: center; max-width: 720px; margin: var(--sp-4) auto; padding: var(--sp-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- 21. Accessibilité ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: var(--white); padding: 8px 16px; z-index: 200; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- 22. Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.muted { color: var(--text-soft); }
.small { font-size: var(--fs-14); }
.no-list { list-style: none; padding: 0; }
.divider { height: 1px; background: var(--border); border: 0; margin: var(--sp-4) 0; }

/* ---------- 23. Print ---------- */
@media print {
  .site-header, .site-footer, .cta-banner, .burger, .mobile-nav { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
