/* =========================================================
   CURAGE EGOUT — Design System « SOBRE · SIMPLE · ARCHITECTURAL »
   Esthétique éditoriale suisse / studio d'architecture.
   Tokens only — aucune couleur en dur.
   ========================================================= */

:root {
  /* Couleurs neutres claires */
  --bg: #FAFAF8;
  --surface: #F2F3F0;
  --ink: #1A1C1A;
  --muted: #5E665E;
  --line: #E5E8E3;
  --accent: #4A5D52;
  --accent-ink: #FAFAF8;

  /* Typo */
  --font-title: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Échelle d'espacement */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Rayons faibles */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;

  /* Filets & ombres subtiles */
  --border: 1px solid var(--line);
  --shadow-sm: 0 1px 2px rgba(26, 28, 26, 0.04);
  --shadow-md: 0 6px 24px rgba(26, 28, 26, 0.06);

  /* Layout */
  --container: 1140px;
  --header-h: 76px;

  /* Transitions douces */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 160ms var(--ease);
  --t: 280ms var(--ease);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* ===================== LAYOUT ===================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-8); }
.section--surface { background: var(--surface); }

.section-head { max-width: 680px; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; text-align: center; }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* Titres */
.h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }
.muted { color: var(--muted); }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand svg { width: 30px; height: 30px; }
.brand .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

.main-nav ul { display: flex; align-items: center; gap: var(--sp-1); }
.main-nav a {
  display: inline-block;
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--r-xs);
  transition: color var(--t-fast), background var(--t-fast);
}
.main-nav a:hover { color: var(--ink); background: var(--surface); }
.main-nav a.active {
  color: var(--ink);
  font-weight: 600;
}
.main-nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 18px;
  background: var(--accent);
  margin: 2px auto 0;
}

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

/* Burger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: var(--border);
  border-radius: var(--r-sm);
}
.nav-toggle span {
  position: relative;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: background var(--t-fast);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: var(--ink);
  transition: transform var(--t);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  white-space: nowrap;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--ink); color: var(--accent-ink); }

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

.btn-call { background: var(--ink); color: var(--accent-ink); }
.btn-call:hover { background: var(--accent); color: var(--accent-ink); }

.btn-sm { padding: 10px 16px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* Lien fléché */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===================== BADGES / CHIPS ===================== */
.badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border: var(--border);
  border-radius: 100px;
  background: var(--bg);
}
.badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ===================== HERO ===================== */
.hero { padding-block: var(--sp-9) var(--sp-8); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero-copy .h1 { margin-block: var(--sp-4) var(--sp-5); }
.hero-copy .lead { max-width: 48ch; margin-bottom: var(--sp-6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.hero-badges { margin-top: var(--sp-2); }

.hero-figure { position: relative; }

/* ===================== BLOCS IMAGE ===================== */
.media-frame {
  border: var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  background: var(--bg);
}
.media-frame img {
  width: 100%;
  border-radius: var(--r-xs);
  filter: grayscale(18%) contrast(0.98);
  display: block;
}
.media-16x9 img { aspect-ratio: 16 / 9; object-fit: cover; }
.media-3x2 img { aspect-ratio: 3 / 2; object-fit: cover; }

.media-caption {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: var(--sp-3);
  padding-inline: var(--sp-1);
}
.media-caption::before { content: ""; width: 18px; height: 1px; background: var(--accent); }

/* ===================== REASSURANCE ===================== */
.reassure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg);
}
.reassure-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border-right: var(--border);
}
.reassure-item:last-child { border-right: none; }
.reassure-item svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.reassure-item h3 { font-size: 0.98rem; margin-bottom: 2px; }
.reassure-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.45; }

/* ===================== GRIDS ===================== */
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===================== CARTES MINIMALES ===================== */
.card {
  background: var(--bg);
  border: var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.card:hover { border-color: var(--ink); box-shadow: var(--shadow-md); }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .card-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: var(--border);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-5);
}
.service-card .card-icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.service-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: var(--sp-5); }
.service-card .link-arrow { margin-top: auto; }

.feature-card .card-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.feature-card .card-icon svg { width: 26px; height: 26px; color: var(--accent); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: var(--sp-2); }
.feature-card p { color: var(--muted); font-size: 0.9rem; }

/* ===================== LISTE À PUCES FINES ===================== */
.list-fine { display: grid; gap: var(--sp-3); }
.list-fine li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.95rem;
  color: var(--ink);
}
.list-fine li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5D52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ===================== SPLIT (texte + image) ===================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.split--reverse .split-media { order: -1; }

/* ===================== PROCESS / ÉTAPES ===================== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); counter-reset: step; }
.process-step {
  position: relative;
  padding-top: var(--sp-6);
  border-top: 2px solid var(--line);
}
.process-step .step-num {
  counter-increment: step;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.process-step .step-num::before { content: "0" counter(step); }
.process-step h3 { font-size: 1.05rem; margin-bottom: var(--sp-2); }
.process-step p { font-size: 0.9rem; color: var(--muted); }

/* ===================== STATS / COMPTEURS ===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: var(--border);
}
.stat { padding: var(--sp-6) var(--sp-4); text-align: center; border-right: var(--border); }
.stat:last-child { border-right: none; }
.stat .stat-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .stat-label { font-size: 0.85rem; color: var(--muted); margin-top: var(--sp-2); }

/* ===================== TABLE TARIFS ===================== */
.price-table-wrap { border: var(--border); border-radius: var(--r-md); overflow: hidden; background: var(--bg); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: var(--border);
  font-size: 0.95rem;
}
.price-table thead th {
  font-family: var(--font-title);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: var(--surface);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--surface); }
.price-table .price-val { font-family: var(--font-title); font-weight: 700; color: var(--accent); white-space: nowrap; }
.price-table td .svc-name { font-weight: 600; color: var(--ink); }
.price-table td .svc-desc { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

.price-note { font-size: 0.82rem; color: var(--muted); margin-top: var(--sp-4); display: flex; gap: var(--sp-2); align-items: flex-start; }
.price-note svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ===================== FAQ ===================== */
.faq { max-width: 800px; margin-inline: auto; border-top: var(--border); }
.faq details {
  border-bottom: var(--border);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq-icon {
  position: relative; flex-shrink: 0;
  width: 20px; height: 20px;
}
.faq summary .faq-icon::before, .faq summary .faq-icon::after {
  content: ""; position: absolute; background: var(--accent);
  transition: transform var(--t);
}
.faq summary .faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq summary .faq-icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq details[open] summary .faq-icon::after { transform: scaleY(0); }
.faq details p { padding: 0 0 var(--sp-5); color: var(--muted); max-width: 70ch; }

/* ===================== AVIS ===================== */
.review {
  background: var(--bg);
  border: var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review .stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: var(--sp-4); }
.review .stars svg { width: 16px; height: 16px; }
.review blockquote { font-size: 0.98rem; color: var(--ink); margin-bottom: var(--sp-5); line-height: 1.6; }
.review .review-author { margin-top: auto; font-size: 0.85rem; }
.review .review-author strong { font-family: var(--font-title); display: block; color: var(--ink); }
.review .review-author span { color: var(--muted); }

/* ===================== BANDE CTA ===================== */
.cta-band {
  background: var(--ink);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  color: var(--accent-ink);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.cta-band h2 { color: var(--accent-ink); font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p { color: rgba(250, 250, 248, 0.72); margin-top: var(--sp-3); }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: flex-end; }
.cta-band .btn-ghost { color: var(--accent-ink); border-color: rgba(250, 250, 248, 0.3); }
.cta-band .btn-ghost:hover { border-color: var(--accent-ink); background: rgba(250, 250, 248, 0.08); color: var(--accent-ink); }
.cta-band .btn-primary { background: var(--accent-ink); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--accent); color: var(--accent-ink); }

/* ===================== BREADCRUMB ===================== */
.breadcrumb { padding-block: var(--sp-5) 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); font-size: 0.82rem; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; gap: var(--sp-2); }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ===================== PAGE HERO (pages internes) ===================== */
.page-hero { padding-block: var(--sp-7) var(--sp-7); }
.page-hero .h1 { margin-block: var(--sp-4) var(--sp-4); max-width: 18ch; }
.page-hero .lead { max-width: 60ch; }

/* ===================== ZONES ===================== */
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.zone-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--t-fast);
}
.zone-item:hover { border-color: var(--accent); }
.zone-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ===================== FORMULAIRE ===================== */
.form { display: grid; gap: var(--sp-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.field { display: grid; gap: var(--sp-2); }
.field label { font-family: var(--font-title); font-weight: 600; font-size: 0.85rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 93, 82, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-aside { background: var(--surface); border-radius: var(--r-md); padding: var(--sp-6); }
.form-aside h3 { font-size: 1.1rem; margin-bottom: var(--sp-4); }
.form-consent { font-size: 0.8rem; color: var(--muted); }

.contact-line { display: flex; align-items: flex-start; gap: var(--sp-3); padding-block: var(--sp-3); }
.contact-line svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-line .cl-label { font-size: 0.78rem; color: var(--muted); }
.contact-line .cl-val { font-family: var(--font-title); font-weight: 600; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--surface); border-top: var(--border); padding-block: var(--sp-8) var(--sp-6); margin-top: var(--sp-9); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-7); }
.footer-brand .brand { margin-bottom: var(--sp-4); }
.footer-brand p { font-size: 0.88rem; color: var(--muted); max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: grid; gap: var(--sp-2); }
.footer-col a { color: var(--ink); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: var(--sp-2); font-size: 0.9rem; color: var(--ink); margin-bottom: var(--sp-2); }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-3);
  margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: var(--border);
  font-size: 0.8rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ===================== BARRE STICKY MOBILE ===================== */
.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg);
  border-top: var(--border);
  padding: var(--sp-2) var(--sp-3) calc(var(--sp-2) + env(safe-area-inset-bottom));
  gap: var(--sp-2);
  box-shadow: 0 -4px 16px rgba(26, 28, 26, 0.06);
}
.mobile-callbar .btn { flex: 1; }

/* ===================== REVEAL (scroll) ===================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .reassure { grid-template-columns: repeat(2, 1fr); }
  .reassure-item:nth-child(2) { border-right: none; }
  .reassure-item:nth-child(1), .reassure-item:nth-child(2) { border-bottom: var(--border); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform var(--t);
    padding: var(--sp-5);
    overflow-y: auto;
    border-top: var(--border);
  }
  .main-nav.is-open { transform: none; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: var(--sp-4) var(--sp-2); font-size: 1.05rem; border-bottom: var(--border); border-radius: 0; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { color: var(--accent); }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-call { display: none; }

  .hero-grid, .split, .cta-band { grid-template-columns: 1fr; gap: var(--sp-6); }
  .split--reverse .split-media { order: 0; }
  .cta-band .cta-actions { justify-content: flex-start; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: var(--border); }

  .mobile-callbar { display: flex; }
  body { padding-bottom: 72px; }
  .section { padding-block: var(--sp-8); }
  .site-footer { margin-top: var(--sp-8); }
}

@media (max-width: 560px) {
  .reassure { grid-template-columns: 1fr; }
  .reassure-item { border-right: none !important; border-bottom: var(--border); }
  .reassure-item:last-child { border-bottom: none; }
  .process { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding-inline: var(--sp-4); }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
