/* ============================================
   Nettoyage Après Décès Paris — Design System
   ============================================ */

:root {
  /* Cream / sand palette — warm, calming */
  --bg: #F5EFE6;
  --surface: #FAF7F2;
  --surface-2: #EFE7DA;
  --surface-3: #E5DBC9;

  /* Deep navy for text + headings */
  --ink: #1F2A3D;
  --ink-soft: #2E3A4F;
  --ink-muted: #54616F;
  --ink-faint: #8A95A2;

  /* Single accent — soft ochre */
  --ochre: #B8924B;
  --ochre-soft: #D4B677;
  --ochre-deep: #8F6E32;

  /* Status / utility */
  --line: rgba(31, 42, 61, 0.10);
  --line-strong: rgba(31, 42, 61, 0.18);
  --shadow-sm: 0 1px 2px rgba(31, 42, 61, 0.04), 0 2px 8px rgba(31, 42, 61, 0.04);
  --shadow-md: 0 4px 16px rgba(31, 42, 61, 0.06), 0 12px 32px rgba(31, 42, 61, 0.08);
  --shadow-lg: 0 8px 28px rgba(31, 42, 61, 0.10), 0 24px 64px rgba(31, 42, 61, 0.12);

  /* Type scale */
  --serif: 'Cormorant Garamond', 'Lora', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --container: 1200px;
  --container-narrow: 880px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: var(--body-scale, 16px);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--h1-scale, clamp(2.4rem, 4.5vw, 4rem)); font-weight: 500; }
h2 { font-size: var(--h2-scale, clamp(1.9rem, 3.2vw, 2.8rem)); }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--ochre-deep); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--ochre);
  display: inline-block;
}

.lead {
  font-size: var(--lead-scale, 1.18rem);
  line-height: 1.6;
  color: var(--ink-muted);
  font-weight: 400;
  text-wrap: pretty;
}

.mono {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: var(--section-py, clamp(64px, 9vw, 120px)) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ============================================
   TWEAKS — Tonalité Solennel (dark mode)
   The footer + cta-band use --ink as a dark bg;
   in solennel those need to become a contrasting
   warm cream panel against the navy base.
   ============================================ */
body[data-tonalite="solennel"] .site-footer,
body[data-tonalite="solennel"] .cta-band {
  background: #0E1119;
  color: rgba(242, 235, 218, 0.7);
}
body[data-tonalite="solennel"] .site-footer h4,
body[data-tonalite="solennel"] .cta-band h2 {
  color: #F2EBDA;
}
body[data-tonalite="solennel"] .photo img {
  filter: saturate(0.55) contrast(0.92) brightness(0.85);
}
body[data-tonalite="solennel"] .img-placeholder {
  background: var(--surface-2);
}
body[data-tonalite="solennel"] .img-placeholder span {
  background: var(--surface);
  color: var(--ink-muted);
}
body[data-tonalite="solennel"] .modal {
  background: var(--surface);
}
body[data-tonalite="solennel"] .faq-search input,
body[data-tonalite="solennel"] input,
body[data-tonalite="solennel"] textarea {
  background: var(--surface);
  color: var(--ink);
}
body[data-tonalite="solennel"] .stat-num {
  color: var(--ink);
}
body[data-tonalite="solennel"] .btn-secondary {
  background: var(--surface);
  color: var(--ink);
}
body[data-tonalite="solennel"] .btn-secondary:hover {
  background: var(--surface-2);
}

/* Solennel — header, brand, primary CTA, FAB phone all need
   contrast fixes since they normally rely on --ink as a dark
   color (which inverts to cream in this mode). */
body[data-tonalite="solennel"] .site-header {
  background: rgba(22, 27, 37, 0.92); /* dark navy with blur */
  border-bottom-color: rgba(242, 235, 218, 0.10);
}
body[data-tonalite="solennel"] .header-strip {
  background: #0E1119;
  color: rgba(242, 235, 218, 0.78);
}
body[data-tonalite="solennel"] .header-strip a {
  color: rgba(242, 235, 218, 0.92);
}
body[data-tonalite="solennel"] .header-strip a:hover {
  color: var(--ochre-soft);
}
body[data-tonalite="solennel"] .brand-text {
  color: var(--ink); /* warm cream — readable on dark header */
}
body[data-tonalite="solennel"] .brand-text small {
  color: var(--ink-muted);
}
body[data-tonalite="solennel"] .brand-mark {
  background: rgba(242, 235, 218, 0.06);
  border-color: rgba(242, 235, 218, 0.18);
  color: var(--ochre);
}
body[data-tonalite="solennel"] .site-nav a {
  color: var(--ink-soft);
}
body[data-tonalite="solennel"] .site-nav a:hover,
body[data-tonalite="solennel"] .site-nav a.active {
  color: var(--ink);
}
body[data-tonalite="solennel"] .btn-primary {
  background: var(--ochre); /* gold against the navy */
  color: #0E1119;
  border-color: var(--ochre);
}
body[data-tonalite="solennel"] .btn-primary:hover {
  background: var(--ochre-soft);
  border-color: var(--ochre-soft);
}
body[data-tonalite="solennel"] .fab-phone {
  background: var(--ochre);
  color: #0E1119;
}
body[data-tonalite="solennel"] .fab-phone:hover {
  background: var(--ochre-soft);
  color: #0E1119;
}
body[data-tonalite="solennel"] .nav-cta {
  background: var(--ochre);
  color: #0E1119;
  border-color: var(--ochre);
}
body[data-tonalite="solennel"] .nav-cta:hover {
  background: var(--ochre-soft);
  border-color: var(--ochre-soft);
}
/* Cards / panels that used --ink as a dark accent need to flip to a deeper navy */
body[data-tonalite="solennel"] .card[style*="--ink"],
body[data-tonalite="solennel"] [style*="background: var(--ink)"] {
  background: #0E1119 !important;
  color: var(--ink) !important;
}
/* Footer brand text already overrides to white — make sure it stays cream-on-dark */
body[data-tonalite="solennel"] .footer-grid .brand-text { color: var(--ink); }
body[data-tonalite="solennel"] .footer-grid .brand-text small { color: var(--ink-muted); }

/* ============================================
   TWEAKS — Voix Humaniste / Classique
   Adjust h1 weight + tracking per voice
   ============================================ */
body[data-voix="humaniste"] h1,
body[data-voix="humaniste"] h2,
body[data-voix="humaniste"] h3,
body[data-voix="humaniste"] h4 {
  font-weight: 400;
  letter-spacing: -0.025em;
}
body[data-voix="humaniste"] h1 { font-weight: 300; }
body[data-voix="humaniste"] .serif-italic {
  font-style: normal;
  color: var(--ochre-deep) !important;
  font-weight: 500;
}
body[data-voix="classique"] h1,
body[data-voix="classique"] h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
body[data-voix="classique"] h1 em,
body[data-voix="classique"] .serif-italic {
  font-weight: 400;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--header-bg, rgba(245, 239, 230, 0.92));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-strip {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.header-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.header-strip .pill {
  display: inline-flex; align-items: center; gap: 8px;
}
.header-strip .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #67d68b;
  box-shadow: 0 0 0 0 rgba(103, 214, 139, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(103, 214, 139, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(103, 214, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(103, 214, 139, 0); }
}
.header-strip a { color: rgba(255,255,255,0.92); }
.header-strip a:hover { color: var(--ochre-soft); }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: '';
  position: absolute; inset: -3px;
  border: 1px solid var(--ochre);
  border-radius: 50%;
  opacity: 0.6;
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.1;
  font-weight: 500;
}
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover { background: var(--surface-2); color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  background: var(--surface-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--surface);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--ochre-deep); border-color: var(--ochre-deep); color: var(--surface); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  width: 40px; height: 40px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-links { white-space: nowrap; }
.nav-links a { white-space: nowrap; }
@media (max-width: 1140px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ochre-deep);
  border-color: var(--ochre-deep);
  color: var(--surface);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover {
  background: var(--surface-2);
  border-color: var(--ink);
}
.btn-ochre {
  background: var(--ochre);
  color: white;
  border-color: var(--ochre);
}
.btn-ochre:hover {
  background: var(--ochre-deep);
  border-color: var(--ochre-deep);
  transform: translateY(-1px);
}
.btn-lg { padding: 18px 32px; font-size: 1rem; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============================================
   CARDS / SHARED
   ============================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-quiet {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.process-with-photo {
  margin-top: 32px;
}
.process-with-photo .process-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 880px) {
  .process-with-photo {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}
.img-placeholder {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 24px;
  text-align: center;
}

/* Real photo wrapper — desaturated, soft-toned to match palette */
.photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  isolation: isolate;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) contrast(0.96);
  transition: filter 0.4s ease;
}
.photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31, 42, 61, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}
.photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 18px 22px;
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 14px,
      rgba(31, 42, 61, 0.035) 14px,
      rgba(31, 42, 61, 0.035) 15px
    );
  pointer-events: none;
}
.img-placeholder span {
  position: relative;
  z-index: 1;
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
}

/* Tag / chip */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.tag-ochre {
  background: rgba(184, 146, 75, 0.14);
  border-color: rgba(184, 146, 75, 0.35);
  color: var(--ochre-deep);
}

/* Divider with little ornament */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ochre);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin: 36px 0;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--line-strong);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  margin-top: 80px;
}
.site-footer h4 {
  color: white;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid .brand-text { color: white; }
.footer-grid .brand-text small { color: rgba(255,255,255,0.5); }
.footer-grid .brand-mark {
  background: rgba(255,255,255,0.08);
  color: white;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 11px; }
.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color 0.15s;
}
.footer-list a:hover { color: var(--ochre-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .certs {
  display: flex; gap: 18px; align-items: center;
  flex-wrap: wrap;
}
.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}

/* ============================================
   FLOATING ACTION BUTTONS (Phone + Devis)
   ============================================ */
.fab-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}
.fab-phone {
  background: var(--ink);
  color: white;
}
.fab-phone:hover {
  background: var(--ochre-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.fab-quote {
  background: var(--ochre);
  color: white;
  border-color: var(--ochre);
}
.fab-quote:hover {
  background: var(--ochre-deep);
  border-color: var(--ochre-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.fab-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.fab-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.fab-label small {
  font-size: 0.66rem;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .fab-stack { right: 12px; bottom: 12px; }
  .fab { padding: 12px 16px; font-size: 0.88rem; }
  .fab-label small { display: none; }
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--surface);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-header {
  padding: 28px 32px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.modal-close {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--surface-2); }
.modal-body { padding: 28px 32px; }

/* Step indicator */
.step-rail {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--surface-3);
  transition: background 0.3s;
}
.step-dot.active { background: var(--ochre); }
.step-dot.done { background: var(--ink); }

.step-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  margin-bottom: 4px;
}

/* Form controls */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: white;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(184, 146, 75, 0.15);
}
.field textarea { min-height: 100px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) { .option-grid { grid-template-columns: 1fr; } }
.option-card {
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.92rem;
  color: var(--ink);
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.option-card:hover { border-color: var(--ochre); }
.option-card.selected {
  border-color: var(--ochre);
  background: rgba(184, 146, 75, 0.08);
  box-shadow: 0 0 0 1px var(--ochre);
}
.option-card .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.option-card.selected .check {
  background: var(--ochre);
  border-color: var(--ochre);
}
.option-card.selected .check::after {
  content: '';
  width: 6px; height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  gap: 12px;
}
.rgpd-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 6px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* Success state */
.success-state {
  text-align: center;
  padding: 32px 8px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(184, 146, 75, 0.15);
  color: var(--ochre-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header {
  padding: 80px 0 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,75,0.08), transparent 70%);
  pointer-events: none;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--ink-muted); }
.breadcrumbs a:hover { color: var(--ochre-deep); }
.breadcrumbs .sep { color: var(--ink-faint); }
.breadcrumbs .current { color: var(--ink); }

/* ============================================
   ACCORDION (FAQ)
   ============================================ */
.accordion-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.accordion-trigger:hover { color: var(--ochre-deep); }
.accordion-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: var(--ink-soft);
}
.accordion-item.open .accordion-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
  transform: rotate(45deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ink-muted);
  line-height: 1.7;
}
.accordion-item.open .accordion-content {
  max-height: 600px;
  padding: 0 0 24px 0;
  padding-right: 56px;
}

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  padding: calc(var(--section-py, 96px) * 0.85) 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184,146,75,0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(31,42,61,0.04), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-eyebrow-row {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero h1 {
  font-size: var(--h1-scale, clamp(2.6rem, 5vw, 4.4rem));
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--ochre-deep);
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-image {
  aspect-ratio: 4/5;
  width: 100%;
}

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr 1fr; gap: 20px; } }
.stat-row > div { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ink);
  line-height: 1;
  font-weight: 500;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   PILLARS (3-up)
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ochre-deep);
  margin-bottom: 18px;
  display: block;
}
.pillar h3 { font-size: 1.5rem; margin-bottom: 12px; }
.pillar p { color: var(--ink-muted); font-size: 0.96rem; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }
.service-cell {
  padding: 36px 32px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-cell:hover { background: var(--surface-2); }
.service-cell .num {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--ochre-deep);
  letter-spacing: 0.08em;
}
.service-cell h3 {
  font-size: 1.4rem;
  margin: 0;
}
.service-cell p {
  color: var(--ink-muted);
  font-size: 0.94rem;
  margin-bottom: 0;
}
.service-cell .arrow {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.86rem;
  color: var(--ink);
  display: flex; gap: 8px; align-items: center;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 880px) { .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  padding: 0 24px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 24px;
  width: 1px; height: calc(100% - 48px);
  background: var(--line);
}
@media (max-width: 880px) { .process-step:not(:last-child)::after { display: none; } }
.process-step .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--ochre);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 18px;
  display: block;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

/* ============================================
   ZONES MAP
   ============================================ */
.zones-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .zones-block { grid-template-columns: 1fr; } }
.zones-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.zones-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 6px 0;
}
.zones-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ochre);
}

.map-svg {
  width: 100%;
  aspect-ratio: 1.1/1;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonials-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testi-frame {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testi-quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--ochre);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 28px;
  font-style: italic;
  min-height: 140px;
}
.testi-author {
  font-size: 0.92rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.testi-author strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 8px;
}
.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.testi-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: all 0.18s;
}
.testi-arrow:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--surface-3);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: all 0.18s;
}
.testi-dot.active { background: var(--ochre); width: 28px; border-radius: 4px; }

/* ============================================
   REASSURANCE BAND
   ============================================ */
.reassure-band {
  background: var(--ink);
  color: white;
  padding: 28px 0;
}
.reassure-band .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.reassure-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.reassure-item .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(184,146,75,0.18);
  color: var(--ochre-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reassure-item strong {
  color: white;
  display: block;
  font-weight: 500;
}
.reassure-item small {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ============================================
   FAQ MINI
   ============================================ */
.faq-search {
  position: relative;
  margin-bottom: 32px;
}
.faq-search input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
}
.faq-search input:focus {
  outline: none;
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(184, 146, 75, 0.15);
}
.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  pointer-events: none;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-band {
  background: var(--ink);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184,146,75,0.12), transparent 60%);
}
.cta-band-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band h2 {
  color: white;
  margin-bottom: 18px;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--ochre-soft);
  font-weight: 400;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-band .btn-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.cta-band .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.cta-band .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}

/* ============================================
   GENERIC UTILITIES
   ============================================ */
.text-center { text-align: center; }
.muted { color: var(--ink-muted); }
.faint { color: var(--ink-faint); }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-muted); font-size: 1.08rem; }

/* Two-column generic content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* Definition list — for service detail */
.def-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px 28px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) { .def-list { grid-template-columns: 1fr; gap: 4px 0; } }
.def-list dt {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  padding-top: 4px;
}
.def-list dd {
  margin: 0;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .def-list dd { margin-bottom: 14px; }
}


/* ============================================
   BLOG
   ============================================ */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: flex-end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: var(--sans);
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.chip:hover {
  border-color: var(--ochre);
  color: var(--ink);
}
.chip-active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.chip-active:hover {
  background: var(--ink);
  color: white;
}
.chip sup {
  font-size: 0.65em;
  margin-left: 1px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 36px 0 56px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s var(--ease);
}
.blog-featured:hover {
  opacity: 0.92;
}
.blog-featured:hover h2 {
  color: var(--ochre-deep);
}
.blog-featured h2 {
  transition: color 0.2s var(--ease);
}
@media (max-width: 880px) {
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
  align-items: center;
}
.blog-meta sup {
  font-size: 0.65em;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px 32px;
  margin-top: 56px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease);
}
.blog-card:hover {
  transform: translateY(-3px);
}
.blog-card:hover h3 {
  color: var(--ochre-deep);
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-card-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.blog-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.2s var(--ease);
  margin: 0;
  letter-spacing: -0.005em;
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.blog-card .blog-meta {
  margin-top: 4px;
}

/* ============================================
   ARTICLE
   ============================================ */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-faint);
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.article-meta sup { font-size: 0.65em; }

.article-body {
  font-family: var(--sans);
  color: var(--ink-soft);
  line-height: 1.75;
}
.article-body > * + * {
  margin-top: 24px;
}
.article-body p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 56px !important;
  margin-bottom: 4px;
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
  margin-top: 40px !important;
  margin-bottom: 4px;
}
.article-body ul, .article-body ol {
  padding-left: 0;
  list-style: none;
}
.article-body ul li, .article-body ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--ochre);
}
.article-body ol {
  counter-reset: ol-counter;
}
.article-body ol li {
  counter-increment: ol-counter;
}
.article-body ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ochre-deep);
  font-weight: 500;
}
.article-body a {
  color: var(--ochre-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article-body strong {
  color: var(--ink);
  font-weight: 600;
}

.article-callout {
  display: flex;
  gap: 18px;
  padding: 24px 28px;
  background: var(--surface-2);
  border-left: 3px solid var(--ochre);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 36px 0 !important;
}
.article-callout-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ochre);
  color: white;
  display: grid;
  place-items: center;
}
.article-callout-icon svg {
  width: 16px;
  height: 16px;
}
.article-callout p {
  margin: 0 !important;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.6;
}
.article-callout-warning, .article-callout-urgence {
  border-left-color: var(--ochre-deep);
  background: rgba(166, 90, 51, 0.06);
}
.article-callout-warning .article-callout-icon,
.article-callout-urgence .article-callout-icon {
  background: var(--ochre-deep);
}

.article-quote {
  margin: 40px 0 !important;
  padding: 28px 36px;
  border-left: 2px solid var(--ochre);
  background: transparent;
}
.article-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 !important;
}
.article-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-faint);
}

/* ============================================
   SEO / Accessibility additions
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 16px;
  border-radius: var(--radius);
  z-index: 200;
  text-decoration: none;
  font-weight: 500;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--ochre); }

/* ============================================
   QUOTE MODAL — Photos uploader
   ============================================ */
.photo-uploader {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  flex-wrap: wrap;
}
.photo-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.photo-upload-btn:hover {
  border-color: var(--ochre);
  background: var(--surface);
}
.photo-counter {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-left: auto;
}

.photo-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.photo-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-preview .photo-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 20, 30, 0.85);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.photo-preview .photo-remove:hover {
  background: var(--ochre-deep);
}
.photo-preview .photo-size {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 8px;
  background: linear-gradient(transparent, rgba(15, 20, 30, 0.7));
  color: white;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-align: right;
}

.submit-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
@media (max-width: 520px) {
  .submit-options { grid-template-columns: 1fr; }
}
.submit-options .btn {
  justify-content: center;
}

/* ============================================
   MOBILE CRO — Conversion-first mobile UX
   ============================================ */

/* Mobile bottom CTA bar — hidden by default, shown on mobile */
.mobile-cta-bar { display: none; }

/* Mobile nav drawer — hidden by default */
.nav-drawer { display: none; }
.nav-drawer.open { display: flex; }
body.drawer-open { overflow: hidden; }

/* === MOBILE BREAKPOINT (≤880px) === */
@media (max-width: 880px) {

  /* --- Header strip : phone CTA visible, email cachée --- */
  .header-strip .pill-email { display: none; }
  .header-strip-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #d63540;
    color: white !important;
    padding: 5px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .header-strip-call:hover, .header-strip-call:focus { background: #b82a34; color: white; }

  /* --- Nav CTA dans le header : rouge urgent et plus grand --- */
  .nav-cta {
    background: #d63540;
    border-color: #d63540;
    padding: 11px 16px;
    font-size: 0.92rem;
  }
  .nav-cta:hover, .nav-cta:focus { background: #b82a34; border-color: #b82a34; color: white; }

  /* --- Cibles touch plus grandes --- */
  .nav-toggle { width: 48px; height: 48px; }

  /* --- Hero CTAs : APPELER en primaire urgent --- */
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-cta-row > * {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 1.05rem;
  }
  .hero-cta-row a[href^="tel:"] {
    order: -1;
    background: #d63540;
    color: white;
    border-color: #d63540;
    font-weight: 600;
    font-size: 1.18rem;
    box-shadow: 0 4px 16px rgba(214, 53, 64, 0.35);
    animation: callPulse 2.4s ease-in-out infinite;
  }
  .hero-cta-row a[href^="tel:"]:hover,
  .hero-cta-row a[href^="tel:"]:focus {
    background: #b82a34;
    border-color: #b82a34;
    color: white;
  }
  @keyframes callPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(214, 53, 64, 0.30); transform: translateY(0); }
    50% { box-shadow: 0 6px 24px rgba(214, 53, 64, 0.55), 0 0 0 6px rgba(214, 53, 64, 0.12); transform: translateY(-1px); }
  }

  /* --- CTA téléphone partout sur mobile (urgence visuelle) --- */
  .btn-secondary[href^="tel:"],
  .cta-band a[href^="tel:"].btn-ochre {
    background: #d63540;
    color: white;
    border-color: #d63540;
  }

  /* --- FAB stack masquée (remplacée par bottom bar) --- */
  .fab-stack { display: none; }

  /* --- Padding bottom du body pour la bottom bar --- */
  body { padding-bottom: 78px; }

  /* --- Mobile bottom CTA bar --- */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(31, 42, 61, 0.10);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    gap: 6px;
  }
  .mobile-cta-bar a,
  .mobile-cta-bar button {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 6px;
    border-radius: 12px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.1;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    min-height: 58px;
    transition: transform 0.15s, background 0.15s;
  }
  .mobile-cta-bar a:active,
  .mobile-cta-bar button:active { transform: scale(0.97); }
  .mobile-cta-call {
    flex: 2.2 !important;
    background: #d63540;
    color: white;
    flex-direction: row !important;
    text-align: left;
    animation: callPulseBar 2.4s ease-in-out infinite;
  }
  .mobile-cta-call:hover, .mobile-cta-call:focus { background: #b82a34; color: white; }
  .mobile-cta-call svg { flex-shrink: 0; }
  .mobile-cta-call span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 0.95rem;
  }
  .mobile-cta-call small {
    font-size: 0.74rem;
    font-weight: 500;
    opacity: 0.92;
    margin-top: 1px;
  }
  @keyframes callPulseBar {
    0%, 100% { box-shadow: inset 0 0 0 0 rgba(255,255,255,0); }
    50% { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.30); }
  }
  .mobile-cta-quote {
    background: var(--ink);
    color: white;
    flex-direction: column !important;
    gap: 2px !important;
    font-size: 0.78rem !important;
  }
  .mobile-cta-quote:hover, .mobile-cta-quote:focus { background: var(--ochre-deep); color: white; }
}

/* === MOBILE NAV DRAWER (full-screen overlay) === */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 130;
  flex-direction: column;
  overflow-y: auto;
  padding: 18px 18px calc(20px + env(safe-area-inset-bottom));
  -webkit-overflow-scrolling: touch;
}
.nav-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.nav-drawer-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-drawer-close:hover, .nav-drawer-close:focus { background: var(--surface-3); }

.nav-drawer-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 24px;
  background: #d63540;
  color: white;
  border-radius: var(--radius-lg);
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 4px;
  box-shadow: 0 6px 20px rgba(214, 53, 64, 0.32);
  min-height: 80px;
  animation: callPulseBar 2.5s ease-in-out infinite;
}
.nav-drawer-call:hover, .nav-drawer-call:focus { background: #b82a34; color: white; }
.nav-drawer-call svg { flex-shrink: 0; }
.nav-drawer-call span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.nav-drawer-call small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.92;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.nav-drawer-subcalls {
  display: flex;
  gap: 10px;
  margin: 14px 0 26px;
}
.nav-drawer-subcalls a,
.nav-drawer-subcalls button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  min-height: 50px;
}
.nav-drawer-quote {
  background: var(--ink);
  color: white;
}
.nav-drawer-quote:hover, .nav-drawer-quote:focus { background: var(--ochre-deep); color: white; }

.nav-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.nav-drawer-links li { margin: 0; }
.nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  font-size: 1.08rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--sans);
  min-height: 60px;
  transition: background 0.15s, color 0.15s;
}
.nav-drawer-links a::after {
  content: '›';
  font-size: 1.6rem;
  color: var(--ink-faint);
  margin-left: 8px;
  font-weight: 400;
  line-height: 1;
}
.nav-drawer-links a:hover, .nav-drawer-links a:focus, .nav-drawer-links a:active {
  background: var(--surface-2);
  color: var(--ochre-deep);
}

.nav-drawer-footer {
  margin-top: 28px;
  padding: 18px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  text-align: center;
}
.nav-drawer-footer .certs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.nav-drawer-footer .cert-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 4px 10px;
  font-size: 0.7rem;
  border-radius: 999px;
}
