/* === tokens.css === */
/* ============================================================
   Marseille Désinsectisation — Design Tokens
   Source: spec §2 Visual Language
   Loaded as critical CSS in <head>
   ============================================================ */

:root {
  /* ---------- Surfaces ---------- */
  --surface-cream: #f5f4ed;
  --surface-cream-2: #ecebe1;
  --surface-navy: #0f172a;
  --surface-navy-2: #1e293b;
  --surface-terracotta: #c46a4a;

  /* ---------- Ink (text) ---------- */
  --ink: #1e293b;
  --ink-muted: #475569; /* slate-600 — AA on cream surfaces */
  --ink-subtle: #64748b;
  --ink-light: #f5f4ed;
  --ink-light-muted: #cbd5e1;

  /* ---------- Accent (use ≤ 6 times site-wide) ---------- */
  --accent-amber: #f59e0b;
  --accent-amber-soft: #fbbf24;
  --accent-amber-deep: #b45309;

  /* ---------- Hairlines ---------- */
  --line-cream: rgba(30, 41, 59, 0.08);
  --line-navy: rgba(245, 244, 237, 0.10);
  --line-terracotta: rgba(245, 244, 237, 0.18);

  /* ---------- Type families ---------- */
  --font-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* ---------- Type scale (clamp() fluid) ---------- */
  --type-hero: clamp(48px, 7vw, 88px);
  --type-display: clamp(40px, 5.5vw, 64px);
  --type-section: clamp(36px, 4.5vw, 56px);
  --type-sub: clamp(24px, 2.6vw, 32px);
  --type-lead: clamp(18px, 1.8vw, 22px);
  --type-body: clamp(16px, 1.4vw, 18px);
  --type-small: 15px;
  --type-caption: 14px;
  --type-eyebrow: 11px;

  /* ---------- Line heights ---------- */
  --lh-tight: 1.05;
  --lh-display: 1.15;
  --lh-sub: 1.25;
  --lh-lead: 1.55;
  --lh-body: 1.65;
  --lh-tight-ui: 1.40;   /* captions and small UI text only */

  /* ---------- Spacing scale ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 160px;
  --space-12: 200px;

  /* ---------- Section padding ---------- */
  --section-py: clamp(40px, 6vw, 72px);

  /* ---------- Containers ---------- */
  --container: 1280px;
  --container-narrow: 1080px;
  --container-pad: 24px;

  /* ---------- Motion timings ---------- */
  --t-hover: 140ms;
  --t-reveal: 360ms;
  --t-drawer: 280ms;
  --t-counter: 1800ms;
  --easing-reveal: cubic-bezier(0.21, 1.02, 0.73, 1);
  --easing-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  /* ---------- Ring shadows (no drop shadows site-wide) ---------- */
  --ring-cream: 0 0 0 1px var(--line-cream);
  --ring-cream-2: 0 0 0 2px var(--line-cream);
  --ring-navy: 0 0 0 1px var(--line-navy);
  --ring-amber: 0 0 0 2px var(--accent-amber);
  --ring-light: 0 0 0 2px var(--ink-light);

  /* ---------- Radii ---------- */
  --r-1: 4px;
  --r-2: 8px;
  --r-3: 12px;
  --r-pill: 999px;

  /* ---------- Z-stack ----------
     Note: --z-overlay (70) is the DRAWER BACKDROP — intentionally below
     --z-drawer (80). It is NOT the topmost layer. Use --z-toast (90)
     for top-most ephemeral UI. */
  --z-header: 50;
  --z-utility: 60;
  --z-overlay: 70;  /* drawer backdrop, sits below the drawer */
  --z-drawer: 80;
  --z-toast: 90;
}

@media (max-width: 640px) {
  :root {
    --section-py: var(--space-6);
    --container-pad: 16px;
  }
}

/* === base.css === */
/* ============================================================
   Marseille Désinsectisation — Base
   Resets, body, type rules, link defaults, font-face
   ============================================================ */

/* ---------- Font-face ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-400.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-500.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}

/* ---------- Reset (modern, minimal) ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x: clip prevents horizontal page scroll WITHOUT making body a
   scroll container (which would break position: sticky descendants like
   the article devis sidebar). Fallback to hidden via @supports below. */
body { margin: 0; overflow-x: clip; }
@supports not (overflow: clip) {
  body { overflow-x: hidden; }
}
html:has(body) { overflow-x: hidden; }
body img, body picture, body svg, body video {
  display: block; max-width: 100%; height: auto;
}
body button { font: inherit; cursor: pointer; }
body input, body textarea, body select { font: inherit; }

/* ---------- Body ---------- */
body {
  font-family: var(--font-ui);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--surface-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga";
}

/* ---------- Display headings ---------- */
body h1, body h2, body h3, body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
}
body h1 { font-size: var(--type-hero); line-height: var(--lh-tight); letter-spacing: -0.02em; }
body h2 { font-size: var(--type-section); line-height: var(--lh-display); letter-spacing: -0.01em; }
body h3 { font-size: var(--type-sub); font-style: italic; line-height: var(--lh-sub); }
body h4 { font-size: var(--type-lead); font-style: italic; line-height: var(--lh-sub); }
body em, body i { font-family: var(--font-display); font-style: italic; }

/* ---------- Paragraphs / lead ---------- */
body p { margin: 0; }
body .lead { font-size: var(--type-lead); line-height: var(--lh-lead); color: var(--ink-muted); }

/* ---------- Eyebrows ---------- */
body .eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--type-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-block;
}
body [data-surface="navy"] .eyebrow,
body [data-surface="terracotta"] .eyebrow {
  color: var(--ink-light-muted);
}
body .eyebrow--accent { color: var(--accent-amber-deep); }

/* ---------- Captions ---------- */
body .caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--type-caption);
  line-height: var(--lh-tight-ui);
  color: var(--ink-muted);
}

/* ---------- Links ---------- */
body a { color: inherit; text-decoration: none; }
body a:hover, body a:focus-visible { text-decoration: none; }

/* ---------- Inline link with underline animation ---------- */
body .link-inline {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--t-hover) ease, border-color var(--t-hover) ease;
}
body .link-inline:hover { color: var(--accent-amber-deep); border-color: var(--accent-amber-deep); }
body [data-surface="navy"] .link-inline,
body [data-surface="terracotta"] .link-inline { color: var(--ink-light); }
body [data-surface="navy"] .link-inline:hover,
body [data-surface="terracotta"] .link-inline:hover { color: var(--accent-amber); border-color: var(--accent-amber); }

/* ---------- Selection ---------- */
body ::selection { background: var(--accent-amber); color: var(--surface-navy); }

/* ---------- Focus ring (a11y) ---------- */
body a:focus-visible,
body button:focus-visible,
body input:focus-visible,
body textarea:focus-visible,
body select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent-amber), 0 0 0 4px rgba(245,158,11,0.25);
  border-radius: var(--r-1);
}
@media (forced-colors: active) {
  body a:focus-visible,
  body button:focus-visible,
  body input:focus-visible,
  body textarea:focus-visible,
  body select:focus-visible {
    outline: 2px solid CanvasText;
    outline-offset: 2px;
    box-shadow: none;
  }
}

/* ---------- Container ---------- */
body .container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
body .container--narrow { max-width: var(--container-narrow); }

/* ---------- Section base ---------- */
body .section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
  overflow: hidden;
}
body [data-surface="cream"]      { background: var(--surface-cream);      color: var(--ink); }
body [data-surface="parchment"]  { background: var(--surface-cream-2);    color: var(--ink); }
body [data-surface="navy"]       { background: var(--surface-navy);       color: var(--ink-light); }
body [data-surface="terracotta"] { background: var(--surface-terracotta); color: var(--ink-light); }

/* ---------- Skip link ---------- */
body .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body .skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  padding: 12px 24px;
  background: var(--surface-navy);
  color: var(--ink-light);
  z-index: 1000;
}
body .skip-link:focus { left: 16px; top: 16px; }

/* === motion.css === */
/* ============================================================
   Marseille Désinsectisation — Motion
   Reveal animations, marquee, counter, drawer, hover
   ============================================================ */

/* ---------- Reveal (IntersectionObserver-driven) ---------- */
body [data-reveal] {
  opacity: 1;
  transform: none;
  will-change: auto;
}
body [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger via inline --reveal-delay: 0ms, 80ms, 160ms ... */

/* ---------- Marquee ---------- */
body .marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
body .marquee__track {
  display: inline-flex;
  gap: var(--space-8);
  padding-right: var(--space-8);
  white-space: nowrap;
  animation: marquee-loop 60s linear infinite;
  flex-shrink: 0;
  align-items: center;
}
body .marquee:hover .marquee__track,
body .marquee:focus-within .marquee__track { animation-play-state: paused; }

@keyframes marquee-loop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Counter ---------- */
body [data-counter] {
  font-variant-numeric: tabular-nums;
}

/* ---------- Hero parallax (DISABLED — caused jitter on scroll) ---------- */
body .hero__bg {
  will-change: auto;
  transform: none;
  transition: none;
}

/* ---------- Hover button breathing (subtle) ---------- */
body .btn { transition: box-shadow var(--t-hover) ease, background-color var(--t-hover) ease, color var(--t-hover) ease, border-color var(--t-hover) ease; }

/* ---------- Drawer animation ---------- */
body .drawer {
  transform: translateX(100%);
  transition: transform var(--t-drawer) var(--easing-drawer);
}
body .drawer.is-open { transform: translateX(0); }
body .drawer-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
body .drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Accordion ---------- */
body details.faq-item summary { list-style: none; cursor: pointer; }
body details.faq-item summary::-webkit-details-marker { display: none; }
body details.faq-item .faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}
body details.faq-item[open] .faq-item__panel { grid-template-rows: 1fr; }
body details.faq-item .faq-item__panel > div { overflow: hidden; }
body details.faq-item .faq-item__icon { transition: transform 220ms ease; }
body details.faq-item[open] .faq-item__icon:not(:has(.faq-item__icon-minus)) { transform: rotate(45deg); }

/* Two-icon plus/minus swap on the FAQ accordion */
body details.faq-item .faq-item__icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; }
body details.faq-item .faq-item__icon-plus,
body details.faq-item .faq-item__icon-minus { position: absolute; inset: 0; display: inline-flex; align-items: center; justify-content: center; transition: opacity 180ms ease, transform 220ms ease; }
body details.faq-item .faq-item__icon-minus { opacity: 0; transform: scale(0.8); }
body details.faq-item[open] .faq-item__icon-plus { opacity: 0; transform: scale(0.8); }
body details.faq-item[open] .faq-item__icon-minus { opacity: 1; transform: scale(1); }

/* ---------- Pulse on hover (urgence CTA) ---------- */
@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}
body .btn-pulse:hover { animation: pulse-soft 2s ease-in-out infinite; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  body [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  body .marquee__track { animation: none !important; }
  body .hero__bg { transform: none !important; transition: none !important; }
  body .btn-pulse:hover { animation: none !important; }
  body details.faq-item .faq-item__panel { transition: none !important; }
  body .drawer { transition: none !important; }
  body .btn { transition: none !important; }
  body [data-counter] { /* JS sets final value immediately */ }
}

/* === components.css === */
/* ============================================================
   COMPONENTS — Buttons
   Spec §3.1
   ============================================================ */

body .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 24px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: var(--r-2);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

body .btn-primary {
  background: var(--accent-amber);
  color: var(--surface-navy);
  border-color: var(--accent-amber);
}
body .btn-primary:hover { box-shadow: 0 0 0 2px var(--accent-amber-soft); background: var(--accent-amber-soft); }

body .btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
body .btn-ghost-light:hover { box-shadow: var(--ring-cream-2); }

body .btn-ghost-dark {
  background: transparent;
  color: var(--ink-light);
  border-color: var(--ink-light);
}
/* --ring-light: 2px ink-light ring — intentionally wider than --ring-navy (1px line-navy); different surface context */
body .btn-ghost-dark:hover { box-shadow: var(--ring-light); }

body .btn-lg {
  padding: 20px 32px;
  font-size: 18px;
  border-radius: var(--r-3);
}

body .btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   COMPONENTS — Cards
   Spec §3.2
   ============================================================ */

body .card-editorial {
  background: var(--surface-cream-2);
  padding: var(--space-6);
  border-radius: var(--r-3);
  transition: box-shadow var(--t-hover) ease;
}
body .card-editorial:hover { box-shadow: var(--ring-cream); }

body .card-pest {
  display: flex;
  flex-direction: column;
  background: var(--surface-cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--t-hover) ease, transform var(--t-hover) ease, border-color var(--t-hover) ease;
}
body .card-pest:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(30, 41, 59, 0.16);
  transform: translateY(-2px);
}
body .card-pest__img {
  aspect-ratio: 1 / 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body .card-pest__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body .card-pest__body {
  padding: var(--space-6) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
body .card-pest__eyebrow {
  font-family: var(--font-ui);
  font-size: var(--type-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin: 0 0 var(--space-2);
}
body .card-pest__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--type-sub);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
body .card-pest__tagline { font-size: 16px; color: var(--ink-muted); line-height: 1.5; margin: 0; }
body .card-pest__more {
  margin-top: var(--space-4);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body .card-pest:hover .card-pest__more { color: var(--accent-amber-deep); }
body .card-pest__threat { position: absolute; top: var(--space-4); right: var(--space-4); width: 12px; height: 12px; border-radius: 50%; z-index: 2; box-shadow: 0 0 0 3px var(--surface-cream); }
body .card-pest__threat--high { background: #dc2626; }
body .card-pest__threat--med  { background: var(--accent-amber); }
body .card-pest__threat--low  { background: var(--surface-navy); }

body .card-review {
  background: var(--surface-cream);
  color: var(--ink);
  padding: var(--space-7);
  border-radius: var(--r-3);
  position: relative;
  overflow: hidden;
}
body .card-review__quote-mark {
  position: absolute;
  top: 12px;
  left: var(--space-5);
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--surface-terracotta);
  line-height: 1;
  opacity: 0.5;
}
body .card-review__body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  margin-top: var(--space-6);
}
body .card-review__attribution {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-ui);
}
body .card-review__name { font-weight: 600; font-size: 14px; }
body .card-review__meta { font-size: 13px; color: var(--ink-muted); }
body .card-review__stars { color: var(--surface-terracotta); letter-spacing: 0.1em; }

/* ============================================================
   COMPONENTS — Accordion (FAQ)
   Spec §3.3
   ============================================================ */

body .faq-list { display: flex; flex-direction: column; }
body details.faq-item {
  border-top: 1px solid var(--line-cream);
  padding: var(--space-6) 0;
}
body details.faq-item:last-of-type { border-bottom: 1px solid var(--line-cream); }
body .faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--type-sub);
  color: var(--ink);
  list-style: none;
}
body .faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ink-muted);
}
body .faq-item__panel-inner {
  padding-top: var(--space-5);
  font-family: var(--font-ui);
  font-size: var(--type-body);
  line-height: var(--lh-body);
  color: var(--ink-muted);
  max-width: 64ch;
}

/* ============================================================
   COMPONENTS — Marquee items
   Spec §3.5
   ============================================================ */

body .marquee {
  height: 100px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
}
body .marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-5);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
body .marquee__item--serif {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 22px;
  font-weight: 500;
}
body .marquee__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-amber);
}

/* ============================================================
   COMPONENTS — Carousel (Témoignages)
   Spec §3.4
   ============================================================ */

body .carousel {
  position: relative;
  width: 100%;
}
body .carousel__viewport { overflow: hidden; }
body .carousel__track {
  display: flex;
  gap: var(--space-5);
  transition: transform var(--t-drawer) var(--easing-drawer);
}
body .carousel__slide {
  flex: 0 0 calc((100% - 2 * var(--space-5)) / 3);
  min-width: 0;
}
@media (max-width: 900px) {
  body .carousel__slide { flex: 0 0 100%; }
}
body .carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
body .carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--ink-light);
  cursor: pointer;
  padding: 0;
  transition: background var(--t-hover) ease;
}
body .carousel__dot.is-active { background: var(--ink-light); }
body .carousel__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--ink-light);
  color: var(--ink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 900px) {
  body .carousel__arrow { display: none; }
}

/* ============================================================
   COMPONENTS — Tarifs Matrix
   Spec §3.6
   ============================================================ */

body .tarifs-matrix {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1px;
  background: var(--line-cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  overflow: hidden;
}
/* role="row" wrappers participate in the parent grid via display:contents */
body .tarifs-matrix__row { display: contents; }
body .tarifs-matrix__cell {
  background: var(--surface-cream);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
  font-family: var(--font-ui);
  transition: background var(--t-hover) ease, min-height var(--t-hover) ease;
}
body .tarifs-matrix__head {
  background: var(--surface-cream-2);
  font-size: var(--type-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #334155; /* slate-700 — AA on cream-2 */
  font-weight: 600;
}
body .tarifs-matrix__pest {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
body .tarifs-matrix__pest svg { color: var(--accent-amber-deep); }
body .tarifs-matrix__price {
  font-size: 24px;
  color: var(--ink);
  text-align: center;
}
body .tarifs-matrix__price--quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-muted);
}
body .tarifs-matrix__cell:not(.tarifs-matrix__head):hover {
  background: var(--surface-cream-2);
  min-height: 120px;
  cursor: pointer;
}
body .tarifs-matrix__action {
  display: none;
  margin-top: var(--space-2);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--accent-amber-deep);
  text-align: center;
  letter-spacing: 0.05em;
}
body .tarifs-matrix__cell:hover .tarifs-matrix__action { display: block; }
@media (max-width: 768px) {
  body .tarifs-matrix { grid-template-columns: 1fr; }
  body .tarifs-matrix__head { display: none; }
  /* Restore display:contents at mobile too — only individual heads hide */
  body .tarifs-matrix__row { display: contents; }
}

/* ============================================================
   COMPONENTS — Devis Drawer
   Spec §3.7
   ============================================================ */

/* DEVIS DRAWER — closed by default, .is-open reveals */
body .drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
body .drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
body .drawer {
  /* intentional drop-shadow: overlay panel depth cue — ring insufficient at full-height */
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 480px;
  max-width: 100vw;
  background: var(--surface-cream);
  z-index: var(--z-drawer);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
  transform: translateX(100%);
  transition: transform var(--t-drawer) var(--easing-drawer);
}
body .drawer.is-open {
  transform: translateX(0);
}
@media (max-width: 600px) {
  body .drawer { width: 100vw; padding: var(--space-5); }
}
body .drawer__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}
body .drawer__close:hover { box-shadow: var(--ring-cream-2); }
body .drawer__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: var(--ink);
  margin-top: var(--space-5);
}
body .drawer__success {
  display: none;
  padding: var(--space-5);
  background: var(--surface-cream-2);
  border-radius: var(--r-2);
  text-align: center;
  color: var(--ink);
}
body .drawer.is-success .drawer__form { display: none; }
body .drawer.is-success .drawer__success { display: block; }

/* ============================================================
   COMPONENTS — Forms
   Spec §3.9
   ============================================================ */

body .field { display: flex; flex-direction: column; gap: var(--space-2); }
body .field__label {
  font-family: var(--font-ui);
  font-size: var(--type-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
body .field__input,
body .field__textarea,
body .field__select {
  height: 48px;
  padding: 0 var(--space-4);
  background: var(--surface-cream);
  border: 1px solid var(--ink);
  border-radius: var(--r-1);
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--ink);
  width: 100%;
}
body .field__textarea { height: auto; padding: var(--space-3) var(--space-4); resize: vertical; min-height: 96px; }
body .field--error .field__input,
body .field--error .field__textarea { border-color: var(--surface-terracotta); }
body .field__error {
  font-size: 13px;
  color: var(--surface-terracotta);
  display: none;
}
body .field--error .field__error { display: block; }

/* radio group as buttons */
body .radio-group { display: flex; flex-wrap: wrap; gap: var(--space-2); }
body .radio-group input { position: absolute; opacity: 0; pointer-events: none; }
body .radio-group label {
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t-hover) ease;
}
body .radio-group input:checked + label {
  background: var(--surface-navy);
  color: var(--ink-light);
  border-color: var(--surface-navy);
}

/* === Floating actions (sticky scroll-up + call menu) === */
.floating-actions {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: var(--z-utility, 950);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}
.floating-actions > * { pointer-events: auto; }

.floating-actions__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--ink-display, #0f1729);
  color: var(--accent-amber, #f4b53f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(15, 23, 41, 0.45), 0 2px 6px rgba(15, 23, 41, 0.18);
  cursor: pointer;
  position: relative;
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.floating-actions__btn:hover {
  background: var(--accent-amber, #f4b53f);
  color: var(--ink-display, #0f1729);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 41, 0.55), 0 3px 8px rgba(15, 23, 41, 0.22);
}
.floating-actions__btn:focus-visible {
  outline: 2px solid var(--accent-amber-deep, #b8732a);
  outline-offset: 3px;
}

/* Pulse halo on call button */
.floating-actions__btn--call .floating-actions__btn-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-amber, #f4b53f);
  opacity: 0;
  animation: floating-actions-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes floating-actions-pulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  80%  { transform: scale(1.6);  opacity: 0; }
  100% { transform: scale(1.6);  opacity: 0; }
}

/* Scroll-up button: hidden by default; revealed when [hidden] removed */
.floating-actions__btn--top[hidden] { display: none; }
.floating-actions__btn--top {
  background: var(--surface-cream-2, #f7f3e8);
  color: var(--ink-display, #0f1729);
  border: 1px solid var(--line-cream, #d8d5c8);
  width: 48px;
  height: 48px;
  animation: floating-actions-fade-in 220ms ease both;
}
.floating-actions__btn--top:hover {
  background: var(--ink-display, #0f1729);
  color: var(--surface-cream-2, #f7f3e8);
  border-color: var(--ink-display, #0f1729);
}
@keyframes floating-actions-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Call menu popover */
.floating-actions__call { position: relative; display: inline-flex; }
.floating-actions__menu {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  min-width: 260px;
  background: var(--surface-cream, #faf7eb);
  border: 1px solid var(--line-cream, #d8d5c8);
  border-radius: var(--r-3, 6px);
  box-shadow: 0 16px 48px rgba(15, 23, 41, 0.18), 0 0 0 1px rgba(15, 23, 41, 0.04);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.floating-actions__call.is-open .floating-actions__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-actions__menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-2, 4px);
  color: var(--ink-display, #0f1729);
  text-decoration: none;
  transition: background 180ms ease;
}
.floating-actions__menu-item:hover,
.floating-actions__menu-item:focus-visible {
  background: var(--surface-cream-2, #f7f3e8);
  outline: none;
}
.floating-actions__menu-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-display, #0f1729);
  color: var(--accent-amber, #f4b53f);
  flex-shrink: 0;
}
.floating-actions__menu-item--wa .floating-actions__menu-icon {
  background: #25D366;
  color: #fff;
}
.floating-actions__menu-text { display: flex; flex-direction: column; line-height: 1.25; }
.floating-actions__menu-text strong {
  font-family: var(--font-ui, sans-serif);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-display, #0f1729);
}
.floating-actions__menu-text span {
  font-size: 12px;
  color: var(--ink-muted, #5a5a55);
  margin-top: 1px;
}

/* Mobile: hide above mobile-call-bar (the bottom 60px-ish bar already shows phone+devis on home).
   Keep scroll-up + call menu but lift them above the bar. */
@media (max-width: 900px) {
  .floating-actions { bottom: 84px; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-actions__btn, .floating-actions__btn--top, .floating-actions__menu {
    transition: none;
    animation: none;
  }
  .floating-actions__btn--call .floating-actions__btn-pulse { display: none; }
}

/* === Floating actions (sticky scroll-up + call menu) === */
.floating-actions {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: var(--z-utility, 950);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}
.floating-actions > * { pointer-events: auto; }
.floating-actions__btn {
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: var(--ink-display, #0f1729);
  color: var(--accent-amber, #f4b53f);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(15,23,41,0.45), 0 2px 6px rgba(15,23,41,0.18);
  cursor: pointer; position: relative;
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease, color 240ms ease;
}
.floating-actions__btn:hover {
  background: var(--accent-amber, #f4b53f);
  color: var(--ink-display, #0f1729);
  transform: translateY(-2px);
}
.floating-actions__btn:focus-visible {
  outline: 2px solid var(--accent-amber-deep, #b8732a); outline-offset: 3px;
}
.floating-actions__btn--call .floating-actions__btn-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--accent-amber, #f4b53f);
  opacity: 0; pointer-events: none;
  animation: floating-actions-pulse 2.4s ease-out infinite;
}
@keyframes floating-actions-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}
.floating-actions__btn--top[hidden] { display: none; }
.floating-actions__btn--top {
  background: var(--surface-cream-2, #f7f3e8);
  color: var(--ink-display, #0f1729);
  border: 1px solid var(--line-cream, #d8d5c8);
  width: 48px; height: 48px;
  animation: floating-actions-fade-in 220ms ease both;
}
.floating-actions__btn--top:hover {
  background: var(--ink-display, #0f1729);
  color: var(--surface-cream-2, #f7f3e8);
  border-color: var(--ink-display, #0f1729);
}
@keyframes floating-actions-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.floating-actions__call { position: relative; display: inline-flex; }
.floating-actions__menu {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  min-width: 260px;
  background: var(--surface-cream, #faf7eb);
  border: 1px solid var(--line-cream, #d8d5c8);
  border-radius: var(--r-3, 6px);
  box-shadow: 0 16px 48px rgba(15,23,41,0.18), 0 0 0 1px rgba(15,23,41,0.04);
  padding: 8px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.floating-actions__call.is-open .floating-actions__menu {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.floating-actions__menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-2, 4px);
  color: var(--ink-display, #0f1729);
  text-decoration: none;
  transition: background 180ms ease;
}
.floating-actions__menu-item:hover,
.floating-actions__menu-item:focus-visible {
  background: var(--surface-cream-2, #f7f3e8); outline: none;
}
.floating-actions__menu-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-display, #0f1729);
  color: var(--accent-amber, #f4b53f);
  flex-shrink: 0;
}
.floating-actions__menu-item--wa .floating-actions__menu-icon {
  background: #25D366; color: #fff;
}
.floating-actions__menu-text { display: flex; flex-direction: column; line-height: 1.25; }
.floating-actions__menu-text strong {
  font-family: var(--font-ui, sans-serif);
  font-weight: 600; font-size: 14px;
  color: var(--ink-display, #0f1729);
}
.floating-actions__menu-text span {
  font-size: 12px; color: var(--ink-muted, #5a5a55); margin-top: 1px;
}
@media (max-width: 900px) {
  .floating-actions { bottom: 84px; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-actions__btn, .floating-actions__btn--top, .floating-actions__menu { transition: none; animation: none; }
  .floating-actions__btn--call .floating-actions__btn-pulse { display: none; }
}

/* Hide Featured Image on Single Posts */
.single-post .post-thumbnail, .single-post .featured-image, .single-post .wp-post-image, .single-post .entry-thumbnail, .single-post figure.wp-block-post-featured-image { display: none !important; height: 0 !important; visibility: hidden !important; }

/* === Mobile drawer — premium categorized navigation === */
body .mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--surface-cream, #faf7eb);
  z-index: var(--z-drawer, 1000);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0;
  overflow: hidden;
}
body .mobile-drawer.is-open { transform: translateX(0); }
body .mobile-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-cream, #e6e0cf);
  flex-shrink: 0;
}
body .mobile-drawer__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
body .mobile-drawer__brand-mark {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-display, #0f1729);
  color: var(--accent-amber, #f4b53f);
  border-radius: var(--r-2, 4px);
}
body .mobile-drawer__brand-mark img {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(0) invert(1);
}
body .mobile-drawer__brand-name { display: flex; flex-direction: column; line-height: 1; }
body .mobile-drawer__brand-name strong {
  font-family: var(--font-ui, sans-serif);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-display, #0f1729);
}
body .mobile-drawer__brand-name em {
  font-family: var(--font-display, serif); font-style: italic;
  font-size: 16px; color: var(--ink-muted, #5a5a55); margin-top: 2px;
}
body .mobile-drawer__close {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-cream, #e6e0cf);
  background: transparent; color: var(--ink-display, #0f1729);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background 200ms ease;
}
body .mobile-drawer__close:hover { background: var(--surface-cream-2, #f0ebd9); }
body .mobile-drawer__body {
  flex: 1 1 auto; overflow-y: auto;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  padding: 16px 20px 24px;
}
body .mobile-drawer__quick {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 22px;
  min-width: 0;
}
body .mobile-drawer__quick-call,
body .mobile-drawer__quick-wa {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-radius: var(--r-3, 8px);
  text-decoration: none;
  background: var(--ink-display, #0f1729);
  color: var(--accent-amber, #f4b53f);
  min-width: 0;
}
body .mobile-drawer__quick-wa { background: #25D366; color: #fff; }
body .mobile-drawer__quick-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
body .mobile-drawer__quick-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
body .mobile-drawer__quick-text strong {
  font-family: var(--font-ui, sans-serif);
  font-weight: 600; font-size: 12px; color: inherit;
  white-space: nowrap;
}
body .mobile-drawer__quick-text span {
  font-size: 10px; opacity: 0.85; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body .mobile-drawer__nav { display: flex; flex-direction: column; gap: 0; }
body .mobile-drawer__group { border-top: 1px solid var(--line-cream, #e6e0cf); }
body .mobile-drawer__group:last-of-type { border-bottom: 1px solid var(--line-cream, #e6e0cf); }
body .mobile-drawer__group > summary {
  list-style: none; cursor: pointer;
  padding: 18px 4px;
  display: flex; align-items: center; gap: 12px;
}
body .mobile-drawer__group > summary::-webkit-details-marker { display: none; }
body .mobile-drawer__group-eyebrow {
  font-family: var(--font-ui, sans-serif);
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-amber-deep, #b8732a);
  flex-shrink: 0; width: 78px;
}
body .mobile-drawer__group-title {
  flex: 1;
  font-family: var(--font-display, serif); font-style: italic;
  font-size: 19px; line-height: 1.1;
  color: var(--ink-display, #0f1729);
}
body .mobile-drawer__group-chev {
  display: inline-flex;
  color: var(--ink-muted, #5a5a55);
  transition: transform 240ms ease;
  flex-shrink: 0;
}
body .mobile-drawer__group[open] > summary > .mobile-drawer__group-chev { transform: rotate(180deg); }
body .mobile-drawer__group-body {
  padding: 4px 4px 18px;
  display: flex; flex-direction: column; gap: 16px;
  animation: mobile-drawer-fade-in 280ms ease both;
}
@keyframes mobile-drawer-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
body .mobile-drawer__group-overview {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--surface-cream-2, #f0ebd9);
  border-radius: var(--r-2, 4px);
  font-family: var(--font-ui, sans-serif);
  font-weight: 600; font-size: 13px;
  color: var(--ink-display, #0f1729);
  text-decoration: none;
}
body .mobile-drawer__group-overview span { color: var(--accent-amber-deep, #b8732a); }
body .mobile-drawer__group-overview:active { background: var(--line-cream, #e6e0cf); }
body .mobile-drawer__subgroup { display: flex; flex-direction: column; gap: 6px; }
body .mobile-drawer__subgroup-label {
  font-family: var(--font-ui, sans-serif);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted, #5a5a55);
  padding: 0 4px; margin-bottom: 4px;
}
body .mobile-drawer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
body .mobile-drawer__list > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(15, 23, 41, 0.05);
  text-decoration: none;
  font-family: var(--font-ui, sans-serif); font-size: 15px;
  color: var(--ink-display, #0f1729);
  position: relative;
  transition: padding-left 200ms ease, color 200ms ease;
}
body .mobile-drawer__list > li:last-child > a { border-bottom: none; }
body .mobile-drawer__list > li > a:active {
  padding-left: 12px; color: var(--accent-amber-deep, #b8732a);
}
body .mobile-drawer__list > li > a::after {
  content: "›"; color: var(--ink-muted, #5a5a55);
  font-size: 18px; margin-left: 8px; opacity: 0.5;
}
body .mobile-drawer__list--services > li > a {
  flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 12px 4px;
}
body .mobile-drawer__list--services > li > a::after { display: none; }
body .mobile-drawer__list--services > li > a strong {
  font-weight: 600; font-size: 15px;
  color: var(--ink-display, #0f1729);
}
body .mobile-drawer__list--services > li > a span {
  font-size: 12px; color: var(--ink-muted, #5a5a55);
}
body .mobile-drawer__list--compact > li > a { padding: 9px 4px; font-size: 14px; }
body .mobile-drawer__pages {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line-cream, #e6e0cf);
}
body .mobile-drawer__pages-label {
  font-family: var(--font-ui, sans-serif);
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-amber-deep, #b8732a);
  display: block; margin-bottom: 8px; padding: 0 4px;
}
body .mobile-drawer__list--pages > li > a {
  font-family: var(--font-display, serif); font-style: italic;
  font-size: 22px; padding: 10px 4px;
}
body .mobile-drawer__foot {
  flex-shrink: 0;
  padding: 16px 20px 22px;
  background: var(--surface-cream, #faf7eb);
  border-top: 1px solid var(--line-cream, #e6e0cf);
  display: flex; flex-direction: column; gap: 8px;
}
body .mobile-drawer__cta {
  width: 100%; padding: 14px 20px;
  font-size: 15px; font-weight: 600;
}
body .mobile-drawer__reassure {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted, #5a5a55);
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  body .mobile-drawer { transition: none; }
  body .mobile-drawer__group-body { animation: none; }
  body .mobile-drawer__group-chev { transition: none; }
}

/* === layout.css === */
/* ============================================================
   LAYOUT — Header (Tier 1 + Tier 2 + sticky behavior)
   Spec §5
   ============================================================ */

body .site-header { position: relative; z-index: var(--z-header); }

/* Tier 1 — utility bar */
body .header-tier1 {
  background: var(--surface-navy);
  color: var(--ink-light);
  font-family: var(--font-ui);
  font-size: 13px;
  height: 36px;
  display: flex;
  align-items: center;
  transition: transform var(--t-drawer) var(--easing-drawer), opacity var(--t-drawer) ease;
}
body .header-tier1__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
body .header-tier1__left,
body .header-tier1__right { display: flex; align-items: center; gap: var(--space-5); }
body .header-tier1 a:hover { color: var(--accent-amber-soft); }
body .header-tier1 .icon-inline { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; color: var(--accent-amber-soft); }

/* Tier 2 — main nav */
body .header-tier2 {
  background: var(--surface-cream);
  border-bottom: 1px solid var(--line-cream);
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: var(--z-utility);
  transition: backdrop-filter var(--t-drawer) ease, background var(--t-drawer) ease, box-shadow var(--t-drawer) ease;
}
body .header-tier2__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-7);
  width: 100%;
}
body .header-tier2__logo img { height: 48px; width: auto; }

body .header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
body .header-nav,
body .header-nav__item,
body .header-tier2__inner {
  position: static !important;
  /* Force no transform/filter — these properties create a new containing
     block for absolutely-positioned descendants. The megamenu must position
     relative to .header-tier2 (full viewport bar), NOT the trigger element,
     so it can center on the viewport. A rogue transform on the parent theme
     was making the menu open offset to the right of the trigger. */
  transform: none !important;
  filter: none !important;
  perspective: none !important;
  contain: none !important;
}
body .header-nav__link {
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
body .header-nav__link:hover { color: var(--accent-amber-deep); }

/* Sticky scrolled state */
body .site-header.is-scrolled .header-tier1 {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
body .site-header.is-scrolled .header-tier2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(15, 23, 42, 0.92);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: var(--z-utility);
  color: var(--ink-light);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
body .site-header.is-scrolled .header-nav,
body .site-header.is-scrolled .header-nav__link {
  color: var(--ink-light);
}
body .site-header.is-scrolled .header-nav__link:hover {
  color: var(--accent-amber-soft);
}
body .site-header.is-scrolled .header-burger {
  color: var(--ink-light);
}

/* ------------------------------------------------------------
   Header logo — sticky-state inversion
   Header sits on cream by default; when scrolled, the panel
   becomes dark navy. We invert the logo to white via CSS filter
   so the brand mark stays visible and proportions stay exact.
   ------------------------------------------------------------ */
body .header-tier2__logo {
  display: inline-flex;
  align-items: center;
}
body .header-tier2__logo img {
  display: block;
  transition: filter 280ms ease;
}
body .site-header.is-scrolled .header-tier2__logo img {
  filter: brightness(0) invert(1);
}

/* Mega menu */
body .megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 880px;
  max-width: 95vw;
  background: var(--surface-cream);
  border-radius: var(--r-3);
  box-shadow: 0 16px 48px rgba(15,23,42,0.12);
  border: 1px solid var(--line-cream);
  padding: var(--space-7);
  display: grid;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease 220ms, transform 200ms ease 220ms;
  list-style: none;
  margin: 0;
}
body .megamenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 22px;
}
body .megamenu > li { margin: 0; padding: 0; list-style: none; }
body .megamenu--pests   { grid-template-columns: repeat(3, 1fr); }
body .megamenu--pests-full {
  width: 1080px;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4) var(--space-6);
  padding: var(--space-6);
}
body .megamenu--services{ grid-template-columns: repeat(2, 1fr); }
body .megamenu--zones {
  width: 1120px;
  max-height: min(70vh, 680px);
  overflow-y: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4) var(--space-6);
  padding: var(--space-6);
}
body .header-nav__item:hover .megamenu,
body .header-nav__item:focus-within .megamenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 180ms ease 0ms, transform 180ms ease 0ms;
}
body .megamenu__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
body .megamenu__title { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--ink); text-align: center; }
body .megamenu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink);
  text-align: center;
}
body .megamenu__link span { font-size: 13px; color: var(--ink-muted); }
/* Center cells within the grid when the last row has fewer items than columns. */
body .megamenu--zones,
body .megamenu--pests-full { justify-items: center; }
@media (max-width: 1180px) {
  body .megamenu--pests-full { width: 94vw; grid-template-columns: repeat(3, 1fr); }
  body .megamenu--zones { width: 94vw; grid-template-columns: repeat(3, 1fr); }
}
body .megamenu__link:hover { color: var(--accent-amber-deep); }

/* Mobile drawer */
body .header-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
body .mobile-drawer {
  position: fixed;
  inset: 0;
  width: auto;
  background: var(--surface-cream);
  padding: var(--space-7);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform var(--t-drawer) var(--easing-drawer);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  overflow-y: auto;
  overscroll-behavior: contain;
}
body .mobile-drawer.is-open { transform: translateX(0); }
body .mobile-drawer__close { position: absolute; top: var(--space-5); right: var(--space-5); width: 40px; height: 40px; border: 1px solid var(--line-cream); background: transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
body .mobile-drawer__nav { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-9); }
body .mobile-drawer__nav a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  padding: 8px 0;
}
body .mobile-drawer__phone { margin-top: auto; }

@media (max-width: 900px) {
  body .header-nav { display: none; }
  body .header-tier1 { display: none; }
  body .header-burger { display: inline-flex; }
  body .header-tier2__inner { grid-template-columns: 1fr auto; }
  body .header-tier2__cta { display: none; }
}

/* ============================================================
   LAYOUT — Footer
   Spec §6 + Act 12 footer block
   ============================================================ */

body .site-footer {
  background: var(--surface-navy);
  color: var(--ink-light);
  padding: var(--space-11) 0 var(--space-6);
  font-family: var(--font-ui);
}
body .site-footer__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-7);
}
@media (max-width: 900px) { body .site-footer__cols { grid-template-columns: 1fr 1fr; gap: var(--space-6); } }
@media (max-width: 600px) { body .site-footer__cols { grid-template-columns: 1fr; } }
body .site-footer__brand img { height: 56px; margin-bottom: var(--space-4); }
/* Footer surface is always navy — invert the light logo so the wordmark is legible. */
body .site-footer__brand img.site-footer__logo { filter: brightness(0) invert(1); }
body .site-footer__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-light);
  margin: 0 0 var(--space-4);
}
body .site-footer__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
body .site-footer__links a {
  font-size: 15px;
  color: var(--ink-light-muted);
  transition: color var(--t-hover) ease;
}
body .site-footer__links a:hover { color: var(--ink-light); }
body .site-footer__rating {
  margin-top: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-navy);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--ink-light);
}
body .site-footer__rating .star { color: var(--accent-amber); }
body .site-footer__newsletter {
  margin-top: var(--space-9);
  padding-top: var(--space-7);
  border-top: 1px solid var(--line-navy);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: end;
}
body .site-footer__newsletter form { display: flex; gap: var(--space-3); align-items: stretch; }
body .site-footer__newsletter input[type=email] {
  height: 48px;
  padding: 0 var(--space-4);
  background: transparent;
  border: 1px solid var(--ink-light-muted);
  color: var(--ink-light);
  border-radius: var(--r-1);
  width: 280px;
}
body .site-footer__bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-light-muted);
}
body .site-footer__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-light-muted);
}
body .site-footer__social { display: flex; gap: var(--space-3); }
body .site-footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-navy);
  border-radius: 50%;
  color: var(--ink-light);
}

/* Mobile sticky call bar */
body .mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface-navy);
  padding: 12px 16px;
  z-index: var(--z-utility);
  border-top: 1px solid var(--line-navy);
}
@media (max-width: 900px) {
  body .mobile-call-bar { display: flex; gap: 8px; }
  body .mobile-call-bar .btn { flex: 1; }
}

/* === sections.css === */
/* ============================================================
   SECTIONS â€” per-act overrides for the home-page narrative.
   Reusable rules live in components.css / layout.css. This file
   is page-specific to the 12-act front-page only.
   Scoped under body so legacy templates stay untouched.
   ============================================================ */

/* ---------- Section heading shared across acts ---------- */
body .section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 60ch;
}
body .section-head .eyebrow { color: var(--ink-muted); }
body [data-surface="navy"] .section-head .eyebrow,
body [data-surface="terracotta"] .section-head .eyebrow {
  color: var(--ink-light-muted);
}

/* ============================================================
   ACT 1 â€” Hero
   Full-viewport navy stage with parallax visual + asymmetric
   text block + proof pills.
   ============================================================ */
body .hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
body .hero__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
body .hero__bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 40%;
}
body .hero__overlay {
  position: absolute;
  inset: 0;
  /* Editorial overlay — heavy at top + bottom for text readability,
     transparent in middle so the brand photo actually shows. Was 85-95%
     opacity (basically a black wall). Now ~40-55%. */
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(15, 23, 42, 0.40) 38%,
    rgba(15, 23, 42, 0.45) 62%,
    rgba(15, 23, 42, 0.78) 100%
  );
}
body .hero__kinetic {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: rgba(245, 244, 237, 0.24);
  overflow: hidden;
}
body .hero__kinetic-svg {
  position: absolute;
  width: clamp(280px, 42vw, 560px);
  height: auto;
  right: clamp(-120px, -7vw, -48px);
  top: clamp(82px, 12vw, 180px);
  /* Parallax disabled — was: translateY(var(--parallax-layer-y, 0)) rotate(-8deg) */
  transform: rotate(-8deg);
  opacity: 0.7;
}
body .hero__kinetic-word {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 5vw, 72px);
  line-height: 1;
  color: rgba(245, 244, 237, 0.18);
  /* Parallax disabled */
  transform: none;
  white-space: nowrap;
}
body .hero__kinetic-word--one { right: 10vw; top: 18vh; }
body .hero__kinetic-word--two { right: 4vw; bottom: 28vh; }
body .hero__kinetic-word--three { left: 7vw; bottom: 16vh; }
body .hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--space-11) 0;
  max-width: 1280px;
}
body .hero h1 {
  color: var(--ink-light);
  margin: var(--space-4) 0 var(--space-5);
  font-size: clamp(1.875rem, 4vw + 1rem, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: normal;
}
body .hero h1 em {
  font-style: italic;
  color: var(--accent-amber-soft);
  white-space: nowrap;
  display: inline-block;
}
body .hero .lead {
  color: rgba(245, 244, 237, 0.85);
  font-size: var(--type-lead);
  line-height: var(--lh-lead);
}
body .hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
body .hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-7);
}
body .hero__proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(245, 244, 237, 0.25);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  color: var(--ink-light);
  font-size: 14px;
  background: rgba(15, 23, 42, 0.4);
}
body .hero__proof-pill strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
}
/* Tablet/laptop hero composition fix */
@media (max-width: 1024px) {
  body .hero__inner {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    max-width: 100%;
  }
  body .hero__bg { object-position: center 30%; }
}
@media (max-width: 768px) {
  body .hero {
    min-height: auto;
    padding: var(--space-7) 0 var(--space-6);
  }
  body .hero__inner { padding: var(--space-7) 0 var(--space-6); }
  body .hero__bg { object-position: center 25%; }
  body .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.75) 0%,
      rgba(15, 23, 42, 0.55) 50%,
      rgba(15, 23, 42, 0.75) 100%
    );
  }
  body .hero__ctas { flex-direction: column; align-items: stretch; }
  body .hero__ctas .btn { width: 100%; }
  body .hero__proof-pill { font-size: 13px; padding: 8px 12px; }
}

/* ============================================================
   ACT 2 â€” Trust ribbon
   Edge-to-edge marquee strip, parchment surface, no padding-x.
   ============================================================ */
body .section--ribbon {
  padding: 0;
  overflow-x: hidden;
  background: var(--surface-cream-2);
  border-top: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
}

/* ============================================================
   ACT 3 â€” Notre mÃ©tier
   5/7 magazine grid, image right on desktop.
   ============================================================ */
body .metier-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-9);
  align-items: center;
}
body .metier-grid__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-3);
}
@media (max-width: 900px) {
  body .metier-grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
}

/* ============================================================
   ACT 4 â€” Catalogue
   Clean 3Ã—2 editorial grid; rich cards with engraved pest plates.
   ============================================================ */
body .catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
body .catalogue-grid__card { color: inherit; }
/* legacy span modifiers â€” neutralised under the new symmetric grid */
body .catalogue-grid__card--large,
body .catalogue-grid__card--small { grid-column: auto; }
@media (max-width: 900px) {
  body .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body .catalogue-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) {
  body .catalogue-grid[data-horizontal-wheel] {
    display: grid;
  }
}

/* ============================================================
   ACT 4.5 — Sous-services
   2-column grid for specialized interventions.
   ============================================================ */
body .sub-services-grid {
  display: grid;
  /* Two cards side-by-side on tablet+ desktop, single column on mobile.
     The 540px floor stops the cards from squishing on awkward narrow widths
     before they collapse to single column. */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-7);
}
@media (max-width: 768px) {
  body .sub-services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}
body .sub-service-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--surface-cream-2);
  border-radius: var(--r-3);
  overflow: hidden;
  box-shadow: var(--ring-cream);
  text-decoration: none;
  color: var(--ink-dark);
  transition: transform 0.4s var(--ease-out-quint), box-shadow 0.4s var(--ease-out-quint);
  position: relative;
  gap: 0;
  padding: 0;
  height: 100%;
}
.card-pest__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: transparent;
}
body .sub-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--card-accent, var(--ink-dark));
  opacity: 0.8;
}
body .sub-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.06), var(--ring-cream);
}
body .sub-service-card__body {
  flex: 1;
  padding: var(--space-7) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  body .sub-service-card__body { padding: var(--space-6) var(--space-7); }
}
body .sub-service-card__img {
  flex: 0 0 auto;
  /* Cinematic 16:10 banner on top of each card — same proportion regardless
     of viewport so both cards align visually. */
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
body .sub-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-quint);
}
body .sub-service-card:hover .sub-service-card__img img {
  transform: scale(1.05);
}

body .sub-service-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: var(--space-3);
}
body .sub-service-card__desc {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}
body .sub-service-card__cta {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--card-accent, var(--ink-dark));
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body .sub-services-extra a {
  color: var(--ink-dark);
  text-decoration: underline;
  text-decoration-color: var(--ink-muted);
  text-underline-offset: 2px;
}
body .sub-services-extra a:hover {
  color: var(--accent-amber);
  text-decoration-color: var(--accent-amber);
}
@media (max-width: 900px) {
  body .sub-services-grid { grid-template-columns: 1fr; }
  body .sub-service-card { padding: var(--space-5); }
}
/* ============================================================
   ACT 5 â€” MÃ©thode
   4 horizontal steps with Cormorant numerals on navy surface.
   ============================================================ */
body .methode-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
body .methode-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-5);
  border-left: 1px solid var(--line-navy);
}
body .methode-step__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--ink-light);
}
body .methode-step__icon { color: var(--accent-amber); }
body .methode-step__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-light);
}
body .methode-step__desc {
  color: var(--ink-light-muted);
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  body .methode-list { grid-template-columns: 1fr; }
}

/* ============================================================
   ACT 6 â€” Ã‰quipement
   Full-bleed image with overlay caption + check list.
   ============================================================ */
body .equipement-figure {
  position: relative;
  margin: 0;
  padding: 0;
}
body .equipement-figure img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  border-radius: var(--r-3);
  display: block;
}
body .equipement-figure__caption {
  position: absolute;
  bottom: var(--space-7);
  left: var(--space-7);
  width: 480px;
  max-width: calc(100% - var(--space-9));
  background: var(--surface-cream-2);
  padding: var(--space-6);
  border-radius: var(--r-3);
  box-shadow: var(--ring-cream);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
body .equipement-figure__list {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
body .equipement-figure__list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--ink);
}
body .equipement-figure__list svg {
  color: var(--accent-amber-deep);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  body .equipement-figure img {
    height: 50vh;
    border-radius: 0;
  }
  body .equipement-figure__caption {
    position: static;
    width: auto;
    margin: -32px var(--space-4) 0;
  }
}

/* ============================================================
   ACT 7 â€” Tarifs (TEASER cards: 6 starting prices)
   Full grid lives at /tarifs-desinsectisation/. Home shows entry-
   level pricing only. Responsive: 3-col â†’ 2-col â†’ 1-col stack.
   ============================================================ */
.section--tarifs .container { max-width: var(--container-narrow, 980px); }
.section--tarifs .caption {
  font-size: var(--type-caption);
  color: var(--ink-muted);
  line-height: var(--lh-tight-ui);
}
.section--tarifs .link-inline {
  color: var(--accent-amber-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tarifs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: var(--space-6);
}
.tarifs-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1.2rem, 2vw, 1.6rem) clamp(1rem, 1.5vw, 1.3rem);
  background: var(--surface-cream-2, #f7f3e8);
  border: 1px solid var(--line-cream, #d8d5c8);
  border-radius: var(--r-3, 6px);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
  position: relative;
  overflow: hidden;
}
.tarifs-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-amber-soft, #fde9b5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.tarifs-card:hover,
.tarifs-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent-amber-deep, #b8732a);
  box-shadow: 0 8px 24px -8px rgba(15, 23, 41, 0.18), 0 0 0 1px rgba(184, 115, 42, 0.15);
  outline: none;
}
.tarifs-card:hover::before,
.tarifs-card:focus-visible::before { opacity: 0.4; }
.tarifs-card > * { position: relative; z-index: 1; }
.tarifs-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-display, #1a1a1a);
  color: var(--accent-amber, #f4b53f);
}
.tarifs-card__icon svg { color: var(--accent-amber, #f4b53f); }
.tarifs-card__pest {
  font-family: var(--font-display, serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink-display, #1a1a1a);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.tarifs-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line-cream, #d8d5c8);
  border-bottom: 1px solid var(--line-cream, #d8d5c8);
}
.tarifs-card__from {
  font-size: 11px;
  color: var(--ink-muted, #5a5a55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tarifs-card__amount {
  font-family: var(--font-display, serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--ink-display, #1a1a1a);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tarifs-card__surface {
  font-size: 12px;
  color: var(--ink-muted, #5a5a55);
  margin-top: 4px;
}
.tarifs-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-amber-deep, #b8732a);
  letter-spacing: 0.02em;
  margin-top: auto;
}
.tarifs-card__cta svg { transition: transform 280ms ease; }
.tarifs-card:hover .tarifs-card__cta svg,
.tarifs-card:focus-visible .tarifs-card__cta svg { transform: translateX(4px); }
@media (max-width: 900px) {
  .tarifs-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tarifs-cards { grid-template-columns: 1fr; gap: var(--space-3); }
  .tarifs-card { padding: var(--space-4); }
  .tarifs-card__icon { width: 40px; height: 40px; }
}

/* ============================================================
   ACT 8 â€” TÃ©moignages
   Terracotta surface, head row with carousel badge on the right.
   ============================================================ */
body .temoignages-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--space-5);
  margin-bottom: var(--space-9);
}
body .temoignages-head__badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(245, 244, 237, 0.3);
  border-radius: var(--r-2);
}
@media (max-width: 700px) {
  body .temoignages-head { grid-template-columns: 1fr; }
  body .temoignages-head__badge { align-items: flex-start; }
}

/* ============================================================
   ACT 9 â€” Zone d'intervention
   Marseille SVG paired with two columns of city names + CTA pill.
   ============================================================ */
body .zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}
body .zone-grid__map svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-3);
  display: block;
  filter: drop-shadow(0 12px 36px rgba(15, 23, 42, 0.10));
}
/* Clickable arrondissement pins */
body .zone-map__pin {
  cursor: pointer;
  outline: none;
}
body .zone-map__pin:focus-visible .zone-map__dot {
  stroke: var(--accent-amber-deep, #b8732a);
  stroke-width: 2.5;
}
body .zone-map__pin .zone-map__dot,
body .zone-map__pin .zone-map__halo,
body .zone-map__pin .zone-map__num {
  transition: transform 220ms cubic-bezier(.32,.72,0,1),
              fill 200ms ease,
              opacity 220ms ease;
  transform-origin: center;
  transform-box: fill-box;
}
body .zone-map__pin:hover .zone-map__dot,
body .zone-map__pin:focus-visible .zone-map__dot {
  fill: var(--ink, #1d2433);
  stroke: var(--accent-amber, #f4b53f);
  stroke-width: 2;
  transform: scale(1.22);
}
body .zone-map__pin:hover .zone-map__halo,
body .zone-map__pin:focus-visible .zone-map__halo {
  opacity: 0.42;
  transform: scale(1.18);
}
body .zone-map__pin:hover .zone-map__num,
body .zone-map__pin:focus-visible .zone-map__num {
  fill: var(--accent-amber, #f4b53f);
}
/* Subtle pulse on the FIRST pin (1er) — visual hint to "click these" */
@keyframes zoneMapHaloPulse {
  0%   { opacity: 0.18; transform: scale(1); }
  50%  { opacity: 0.40; transform: scale(1.18); }
  100% { opacity: 0.18; transform: scale(1); }
}
body .zone-map__pin--pulse .zone-map__halo {
  animation: zoneMapHaloPulse 2.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
body .zone-map__pin--pulse:hover .zone-map__halo,
body .zone-map__pin--pulse:focus-visible .zone-map__halo { animation: none; }
@media (prefers-reduced-motion: reduce) {
  body .zone-map__pin .zone-map__dot,
  body .zone-map__pin .zone-map__halo,
  body .zone-map__pin .zone-map__num { transition: none; transform: none; }
  body .zone-map__pin--pulse .zone-map__halo { animation: none; }
}
body .zone-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  margin-top: var(--space-6);
}
body .zone-cols__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  margin: 0 0 var(--space-3);
}
body .zone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--ink-muted);
}
/* Clickable zone list — used for both arrondissements + metropole */
body .zone-list--clickable .zone-list__link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: var(--r-2, 4px);
  text-decoration: none;
  color: var(--ink, #1d2433);
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
  position: relative;
}
body .zone-list--clickable .zone-list__link::after {
  content: "›";
  margin-left: auto;
  color: var(--accent-amber-deep, #b8732a);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 16px;
}
body .zone-list--clickable .zone-list__link:hover,
body .zone-list--clickable .zone-list__link:focus-visible {
  background: var(--surface-cream-2, #f7f3e8);
  color: var(--ink-display, #0f1729);
  padding-left: 12px;
  outline: none;
}
body .zone-list--clickable .zone-list__link:hover::after,
body .zone-list--clickable .zone-list__link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}
body .zone-list__num {
  font-family: var(--font-display, serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-amber-deep, #b8732a);
  font-size: 16px;
  min-width: 32px;
  flex-shrink: 0;
}
body .zone-list__num sup { font-size: 0.65em; vertical-align: super; }
body .zone-list__name {
  font-family: var(--font-ui, sans-serif);
  font-size: 14px;
  line-height: 1.35;
}
body .zone-pill {
  margin-top: var(--space-7);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 20px;
  background: var(--surface-cream-2);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-weight: 500;
  cursor: pointer;
}
body .zone-pill:hover { box-shadow: var(--ring-cream-2); }
@media (max-width: 900px) {
  body .zone-grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  body .zone-grid__map svg {
    max-width: 540px;
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  body .zone-cols { grid-template-columns: 1fr; }
  body .zone-grid__map svg {
    max-width: 100%;
    border-radius: var(--r-2);
    filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.08));
  }
}

/* ============================================================
   ACT 10 â€” B2B / Ã‰co
   Editorial 2-col split: cream B2B column + deep-green eco column.
   The eco panel carries real density: 3 numbered commitments +
   3 certification badges + lead â€” no more empty placeholder green.
   ============================================================ */
body .b2b-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
body .b2b-grid__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
body .b2b-grid__col--b2b {
  padding: clamp(0.5rem, 1vw, 1rem) 0;
}
body .b2b-grid__col--eco {
  background: linear-gradient(160deg, #064e3b 0%, #052e16 100%);
  color: var(--ink-light);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
body .b2b-grid__col--eco::before {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, rgba(16,185,129,0) 70%);
  pointer-events: none;
}
body .b2b-grid__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--type-section);
  line-height: var(--lh-display);
  margin: 0;
  color: var(--ink);
}
body .b2b-grid__title--light { color: var(--ink-light); }
body .b2b-grid__title em { font-style: italic; }
body .b2b-grid__eyebrow-light { color: rgba(245, 244, 237, 0.78); }
body .b2b-grid__lead {
  font-size: var(--type-lead);
  line-height: var(--lh-lead);
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0;
}
body .b2b-grid__lead--light { color: rgba(245, 244, 237, 0.82); }
body .b2b-grid__figure {
  margin: var(--space-3) 0 var(--space-4);
}
body .b2b-grid__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-3);
  display: block;
}

/* B2B credentials list */
body .b2b-grid__creds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}
body .b2b-grid__creds li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: var(--space-3);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line-cream);
}
body .b2b-grid__creds li:last-child { border-bottom: 1px solid var(--line-cream); }
body .b2b-grid__creds-icon {
  color: var(--accent-amber-deep);
  display: inline-flex;
  margin-top: 2px;
}
body .b2b-grid__creds strong {
  font-weight: 600;
  letter-spacing: 0.01em;
}
body .b2b-grid__cta { margin-top: var(--space-4); }

/* Eco numbered commitments */
body .b2b-grid__commitments {
  list-style: none;
  margin: var(--space-5) 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}
body .b2b-grid__commitments li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-5);
  row-gap: 4px;
  align-items: baseline;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(245, 244, 237, 0.12);
}
body .b2b-grid__commitments li:last-child { border-bottom: 0; padding-bottom: 0; }
body .b2b-grid__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: rgba(245, 244, 237, 0.55);
  grid-row: 1 / span 2;
  align-self: start;
}
body .b2b-grid__commit-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.25;
  color: var(--ink-light);
  margin: 0;
}
body .b2b-grid__commit-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 244, 237, 0.75);
  margin: 0;
  max-width: 48ch;
}

/* Certification badge row */
body .b2b-grid__certs {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: var(--space-5) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  border-top: 1px solid rgba(245, 244, 237, 0.16);
  position: relative;
  z-index: 1;
}
body .b2b-grid__cert {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 244, 237, 0.88);
  white-space: nowrap;
}

@media (max-width: 900px) {
  body .b2b-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  body .b2b-grid__col--eco {
    border-radius: 0;
    margin: 0 calc(var(--container-pad) * -1);
    padding: var(--space-7) var(--container-pad);
  }
}

/* ============================================================
   ACT 11 â€” FAQ
   Single-column narrow container; the accordion item styling
   itself lives in components.css.
   ============================================================ */
body .section--faq .container { max-width: var(--container-narrow); }
body .section--faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* ============================================================
   ACT 12 â€” Urgence
   Terracotta band, italic H2, large phone CTA pinned right.
   ============================================================ */
body .urgence-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-7);
  text-align: left;
}
body .section--urgence h2 {
  font-style: italic;
  color: var(--ink-light);
  font-size: var(--type-display);
  line-height: var(--lh-display);
  margin: 0;
}
body .section--urgence .btn-lg {
  font-size: clamp(20px, 2vw, 26px);
}
@media (max-width: 700px) {
  body .urgence-inner {
    text-align: center;
    flex-direction: column;
  }
}

/* ============================================================
   Section transitions â€” hairline between same-surface sections
   so adjacent cream blocks don't visually collapse into one.
   ============================================================ */
body .section[data-surface="cream"] + .section[data-surface="cream"] {
  border-top: 1px solid var(--line-cream);
}

/* === Breadcrumbs (visible nav matching the JSON-LD) === */
.breadcrumbs {
  margin: 1.5rem auto 1rem;
  padding: 0 var(--space-4);
  max-width: var(--container-max);
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--ink-muted);
}
.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  align-items: baseline;
}
.breadcrumbs__item:not(:last-child)::after {
  content: 'â€º';
  margin-left: 0.5rem;
  color: var(--ink-light-muted);
}
.breadcrumbs__item a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.breadcrumbs__item a:hover { color: var(--ink-display); }
.breadcrumbs__item--current {
  color: var(--ink-display);
  font-weight: 500;
}
@media (max-width: 600px) {
  .breadcrumbs { font-size: 11px; }
  .breadcrumbs__item:not(:last-child)::after { margin-left: 0.3rem; }
}

/* ============================================================
   PHASE Q â€” INNER PAGE TEMPLATES
   Premium editorial design language for native-page,
   native-service-page and native-standard-page templates.
   Rules are intentionally UNSCOPED (no body) so they
   apply to inner pages as well; they use the existing tokens
   defined in tokens.css and never override home-page styles.
   ============================================================ */

/* ---------- Page wrapper + base resets for inner templates ---------- */
.m-native-page--premium {
  font-family: var(--font-ui);
  font-size: var(--type-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--surface-cream);
}
.m-native-page--premium * { box-sizing: border-box; }
.m-native-page--premium img,
.m-native-page--premium picture,
.m-native-page--premium svg,
.m-native-page--premium video {
  display: block;
  max-width: 100%;
  height: auto;
}
.m-native-page--premium h1,
.m-native-page--premium h2,
.m-native-page--premium h3,
.m-native-page--premium h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.m-native-page--premium h1 em,
.m-native-page--premium h2 em,
.m-native-page--premium h3 em,
.m-native-page--premium h4 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}
.m-native-page--premium p { margin: 0; }
.m-native-page--premium a { color: inherit; text-decoration: none; }

/* ---------- Container (inner-page scoped) ---------- */
.m-native-page--premium .container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.m-native-page--premium .container--narrow { max-width: var(--container-narrow); }

/* ---------- Section base ---------- */
.m-native-page--premium .section {
  padding-top: clamp(56px, 7vw, 104px);
  padding-bottom: clamp(56px, 7vw, 104px);
  position: relative;
  overflow: hidden;
}
.m-native-page--premium [data-surface="cream"]      { background: var(--surface-cream);      color: var(--ink); }
.m-native-page--premium [data-surface="navy"]       { background: var(--surface-navy);       color: var(--ink-light); }
.m-native-page--premium [data-surface="terracotta"] { background: var(--surface-terracotta); color: var(--ink-light); }
.m-native-page--premium [data-surface="parchment"]  { background: var(--surface-cream-2);    color: var(--ink); }

/* ---------- Eyebrow + section head ---------- */
.m-native-page--premium .eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--type-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-block;
}
.m-native-page--premium [data-surface="navy"] .eyebrow,
.m-native-page--premium [data-surface="terracotta"] .eyebrow {
  color: var(--ink-light-muted);
}
.m-native-page--premium .section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: clamp(32px, 4vw, 56px);
  max-width: 64ch;
}
.m-native-page--premium .section-head h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: var(--lh-display);
  margin: 0;
}
.m-native-page--premium [data-surface="navy"] .section-head h2,
.m-native-page--premium [data-surface="terracotta"] .section-head h2 {
  color: var(--ink-light);
}
.m-native-page--premium .lead {
  font-family: var(--font-ui);
  font-size: var(--type-lead);
  line-height: var(--lh-lead);
  color: var(--ink-muted);
  font-weight: 400;
  margin: 0;
}
.m-native-page--premium [data-surface="navy"] .lead,
.m-native-page--premium [data-surface="terracotta"] .lead {
  color: rgba(245, 244, 237, 0.86);
}

/* ---------- Reveal animation (only hides when JS sets .has-reveal-js) ----------
   The home page enqueues motion.js which observes [data-reveal] and toggles
   .is-revealed; on inner pages the bundle is loaded but motion.js is not, so
   the elements would stay invisible. We gate the initial-hidden state behind
   a JS-set class on the page wrapper so content is always visible by default. */
.m-native-page--premium [data-reveal] {
  transition:
    opacity var(--t-reveal) var(--easing-reveal) var(--reveal-delay, 0ms),
    transform var(--t-reveal) var(--easing-reveal) var(--reveal-delay, 0ms);
}
.m-native-page--premium.has-reveal-js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
}
.m-native-page--premium.has-reveal-js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .m-native-page--premium.has-reveal-js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   BUTTONS â€” inner-page versions
   ============================================================ */
.m-native-page--premium .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 24px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: var(--r-2);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.m-native-page--premium .btn-primary {
  background: var(--accent-amber);
  color: var(--surface-navy);
  border-color: var(--accent-amber);
}
.m-native-page--premium .btn-primary:hover {
  background: var(--accent-amber-soft);
  box-shadow: 0 0 0 2px var(--accent-amber-soft);
}
.m-native-page--premium .btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.m-native-page--premium .btn-ghost-light:hover { box-shadow: var(--ring-cream-2); }
.m-native-page--premium .btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.m-native-page--premium [data-surface="navy"] .btn-ghost-dark,
.m-native-page--premium [data-surface="terracotta"] .btn-ghost-dark {
  color: var(--ink-light);
  border-color: var(--ink-light);
}
.m-native-page--premium .btn-ghost-dark:hover { box-shadow: var(--ring-cream-2); }
.m-native-page--premium [data-surface="navy"] .btn-ghost-dark:hover,
.m-native-page--premium [data-surface="terracotta"] .btn-ghost-dark:hover { box-shadow: var(--ring-light); }
.m-native-page--premium .btn-lg {
  padding: 20px 32px;
  font-size: 18px;
  border-radius: var(--r-3);
}
@keyframes m-pulse-soft {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}
.m-native-page--premium .btn-pulse:hover { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
}

/* ============================================================
   HERO (cream surface with optional photo for service pages)
   ============================================================ */
.m-native-page--premium .section--inner-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(96px, 12vw, 180px);
  padding-bottom: clamp(72px, 9vw, 140px);
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--ink-light, #f5f4ed);
}
.m-native-page--premium .inner-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 880px;
  position: relative;
  z-index: 2;
}
.m-native-page--premium .section--inner-hero h1,
.m-native-page--premium .section--inner-hero .lead {
  color: var(--ink-light, #f5f4ed);
}
.m-native-page--premium .section--inner-hero h1 em {
  color: var(--accent-amber, #f4b53f);
}
.m-native-page--premium .section--inner-hero .eyebrow {
  color: var(--accent-amber, #f4b53f);
}
.m-native-page--premium .inner-hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  hyphens: auto;
}
.m-native-page--premium .inner-hero h1 em {
  color: var(--accent-amber-deep);
  font-style: italic;
}
.m-native-page--premium .inner-hero .lead {
  max-width: 60ch;
}
.m-native-page--premium .inner-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
@media (max-width: 600px) {
  .m-native-page--premium .inner-hero__ctas { flex-direction: column; align-items: stretch; }
  .m-native-page--premium .inner-hero__ctas .btn { width: 100%; }
}

/* Service-page hero variant â€” image right on desktop */
/* Service-page hero — full-viewport navy bg image with overlaid white text.
   Single-column layout (was a 2-col grid with side image; bg image now does
   the visual work, side image was removed because it duplicated the bg). */
.m-native-page--premium .section--service-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(96px, 12vw, 180px);
  padding-bottom: clamp(72px, 9vw, 140px);
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--ink-light, #f5f4ed);
}
.m-native-page--premium .service-hero {
  display: block;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.m-native-page--premium .service-hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.m-native-page--premium .section--service-hero h1,
.m-native-page--premium .section--service-hero .lead {
  color: var(--ink-light, #f5f4ed);
}
.m-native-page--premium .section--service-hero h1 em {
  color: var(--accent-amber, #f4b53f);
  font-style: italic;
}
.m-native-page--premium .section--service-hero .eyebrow {
  color: var(--accent-amber, #f4b53f);
}
.m-native-page--premium .service-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.m-native-page--premium .service-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line-cream);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink);
  background: var(--surface-cream-2);
}
.m-native-page--premium .service-hero__pill strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink-display);
}
/* No mobile flip needed anymore — service-hero is single-column,
   service-hero__media was removed (full-viewport hero__bg replaces it). */

/* ============================================================
   PEST SPECIES ID CARD — sepia naturalist plate + Latin binomial
   Mirrors the home-page catalogue card visual on the dedicated
   pillar page.
   ============================================================ */
.m-native-page--premium .section--pest-id {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  background: var(--surface-cream-2, #f7f3e8);
  border-top: 1px solid var(--line-cream, #e6e0cf);
  border-bottom: 1px solid var(--line-cream, #e6e0cf);
}
.m-native-page--premium .pest-id {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.m-native-page--premium .pest-id__plate {
  margin: 0;
  position: relative;
  background: var(--surface-cream, #faf7eb);
  padding: clamp(20px, 2.5vw, 36px);
  border-radius: var(--r-3, 6px);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 41, 0.18),
              0 0 0 1px var(--line-cream, #e6e0cf);
}
.m-native-page--premium .pest-id__plate img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-2, 4px);
}
.m-native-page--premium .pest-id__caption {
  margin-top: var(--space-3, 12px);
  font-family: var(--font-ui, sans-serif);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted, #5a5a55);
  text-align: center;
}
.m-native-page--premium .pest-id__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3, 12px);
}
.m-native-page--premium .pest-id__copy .eyebrow {
  color: var(--accent-amber-deep, #b8732a);
}
.m-native-page--premium .section--pest-id h2 {
  font-family: var(--font-display, serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0;
  color: var(--ink-display, #0f1729);
}
.m-native-page--premium .section--pest-id h2 em {
  font-style: italic;
  color: var(--ink-display, #0f1729);
}
.m-native-page--premium .pest-id__name {
  font-family: var(--font-ui, sans-serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-amber-deep, #b8732a);
  margin: 0;
}
.m-native-page--premium .pest-id__blurb {
  font-family: var(--font-ui, sans-serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted, #5a5a55);
  margin: 0;
  max-width: 56ch;
}
@media (max-width: 768px) {
  .m-native-page--premium .pest-id {
    grid-template-columns: 1fr;
    gap: var(--space-6, 28px);
  }
  .m-native-page--premium .pest-id__plate {
    max-width: 380px;
    margin: 0 auto;
  }
  .m-native-page--premium .pest-id__copy {
    text-align: left;
  }
}

/* ============================================================
   3-CARD VALUE PROP / CARD GRID
   ============================================================ */
.m-native-page--premium .inner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.m-native-page--premium .inner-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--surface-cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.m-native-page--premium [data-surface="parchment"] .inner-card {
  background: var(--surface-cream);
}
.m-native-page--premium [data-surface="navy"] .inner-card {
  background: rgba(245, 244, 237, 0.04);
  border-color: var(--line-navy);
  color: var(--ink-light);
}
.m-native-page--premium .inner-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-amber-deep);
  box-shadow: 0 8px 24px -8px rgba(15, 23, 41, 0.18);
}
.m-native-page--premium .inner-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.m-native-page--premium [data-surface="navy"] .inner-card h3 { color: var(--ink-light); }
.m-native-page--premium .inner-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.m-native-page--premium [data-surface="navy"] .inner-card p { color: rgba(245, 244, 237, 0.78); }
.m-native-page--premium .inner-card__meta {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-amber-deep);
  font-weight: 600;
  margin-top: auto;
}
@media (max-width: 900px) {
  .m-native-page--premium .inner-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .m-native-page--premium .inner-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   MÃ‰THODE NUMBERED STEPS (navy surface)
   ============================================================ */
.m-native-page--premium .inner-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.m-native-page--premium .inner-steps[data-count="4"] { grid-template-columns: repeat(4, 1fr); }
.m-native-page--premium .inner-steps li {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  border-left: 1px solid rgba(245, 244, 237, 0.16);
}
.m-native-page--premium .inner-steps__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--accent-amber);
  letter-spacing: -0.02em;
}
.m-native-page--premium .inner-steps__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink-light);
}
.m-native-page--premium .inner-steps__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 244, 237, 0.82);
}
@media (max-width: 900px) {
  .m-native-page--premium .inner-steps,
  .m-native-page--premium .inner-steps[data-count="4"] {
    grid-template-columns: 1fr;
  }
  .m-native-page--premium .inner-steps li {
    border-left: 0;
    border-top: 1px solid rgba(245, 244, 237, 0.16);
  }
}

/* ============================================================
   TARIFS â€” split tables (Particuliers / Pros)
   ============================================================ */
.m-native-page--premium .inner-tarifs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
}
.m-native-page--premium .inner-tarifs__block {
  background: var(--surface-cream-2);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  overflow: hidden;
}
.m-native-page--premium .inner-tarifs__head {
  padding: var(--space-5) var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--line-cream);
  background: var(--surface-cream);
}
.m-native-page--premium .inner-tarifs__head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ink);
  margin: 0;
}
.m-native-page--premium .inner-tarifs__head p {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: var(--space-2);
}
.m-native-page--premium .inner-tarifs__table-wrap {
  overflow-x: auto;
}
.m-native-page--premium .inner-tarifs__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 14px;
}
.m-native-page--premium .inner-tarifs__table thead th {
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--type-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #334155;
  background: var(--surface-cream);
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-cream);
  white-space: nowrap;
}
.m-native-page--premium .inner-tarifs__table tbody th {
  text-align: left;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  padding: 14px 12px;
  white-space: nowrap;
  border-bottom: 1px solid var(--line-cream);
}
.m-native-page--premium .inner-tarifs__table tbody td {
  padding: 14px 12px;
  font-size: 14px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line-cream);
  white-space: nowrap;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.m-native-page--premium .inner-tarifs__table tbody tr:last-child th,
.m-native-page--premium .inner-tarifs__table tbody tr:last-child td { border-bottom: 0; }
.m-native-page--premium .inner-tarifs__table tbody tr:hover { background: rgba(245, 158, 11, 0.06); }
.m-native-page--premium .inner-tarifs__note {
  margin-top: var(--space-5);
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
  font-family: var(--font-display);
}
@media (max-width: 900px) {
  .m-native-page--premium .inner-tarifs { grid-template-columns: 1fr; }
}

/* Tarifs teaser cards (service pages) */
.m-native-page--premium .tarifs-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.m-native-page--premium .tarifs-teaser__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: clamp(1.25rem, 2vw, 1.6rem);
  background: var(--surface-cream-2);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.m-native-page--premium .tarifs-teaser__card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-amber-deep);
  box-shadow: 0 8px 24px -8px rgba(15, 23, 41, 0.16);
}
.m-native-page--premium .tarifs-teaser__surface {
  font-size: var(--type-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  font-family: var(--font-ui);
}
.m-native-page--premium .tarifs-teaser__amount {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.m-native-page--premium .tarifs-teaser__from {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 900px) {
  .m-native-page--premium .tarifs-teaser { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .m-native-page--premium .tarifs-teaser { grid-template-columns: 1fr; }
}

/* ============================================================
   VERIFIED SOURCE CHARTS â€” homepage + pillar/location pages
   ============================================================ */
body .section--source-proof {
  overflow: hidden;
}
body .source-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.35rem);
}
body .source-chart__item {
  min-height: 100%;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  background: var(--surface-cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  box-shadow: 0 18px 48px -36px rgba(15, 23, 41, 0.35);
}
body .source-chart__bar {
  position: relative;
  height: 100%;
  min-height: 168px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.08), rgba(15, 23, 41, 0.03));
  overflow: hidden;
}
body .source-chart__bar span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--bar, 50) * 1%);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-amber), var(--surface-terracotta));
}
body .source-chart__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
body .source-chart__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
  color: var(--ink);
}
body .source-chart__label {
  margin-top: 8px;
  font-family: var(--font-ui);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-amber-deep);
}
body .source-chart__body p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.58;
  color: var(--ink-muted);
}
body .source-chart__body a {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-amber);
  width: fit-content;
}
body .source-chart__body a:hover {
  color: var(--accent-amber-deep);
}
@media (max-width: 1100px) {
  body .source-chart { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  body .source-chart { grid-template-columns: 1fr; }
  body .source-chart__item { grid-template-columns: 22px minmax(0, 1fr); }
  body .source-chart__bar { min-height: 132px; }
}

/* ============================================================
   ZONE â€” chip flex grid
   ============================================================ */
.m-native-page--premium .inner-zone {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.m-native-page--premium .inner-zone__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--surface-cream-2);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.m-native-page--premium .inner-zone__chip:hover {
  border-color: var(--accent-amber-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(15, 23, 41, 0.14);
}

/* ============================================================
   FORM â€” inline forminator wrapper
   ============================================================ */
.m-native-page--premium .inner-form {
  background: var(--surface-cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.m-native-page--premium .inner-form .forminator-ui { font-family: var(--font-ui); }

/* ============================================================
   CONTACT INFO ROW
   ============================================================ */
.m-native-page--premium .inner-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.m-native-page--premium .inner-contact__item {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--surface-cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.m-native-page--premium .inner-contact__label {
  font-size: var(--type-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  font-family: var(--font-ui);
}
.m-native-page--premium .inner-contact__value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  line-height: 1.3;
  word-break: break-word;
}
.m-native-page--premium .inner-contact__value a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.m-native-page--premium .inner-contact__value a:hover { color: var(--accent-amber-deep); border-color: var(--accent-amber-deep); }
@media (max-width: 900px) {
  .m-native-page--premium .inner-contact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .m-native-page--premium .inner-contact { grid-template-columns: 1fr; }
}

/* ============================================================
   URGENCE / FINAL CTA BAND (terracotta)
   ============================================================ */
.m-native-page--premium .section--inner-cta { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.m-native-page--premium .inner-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  max-width: 800px;
}
.m-native-page--premium .inner-cta h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: var(--lh-display);
  color: var(--ink-light);
  letter-spacing: -0.01em;
}
.m-native-page--premium .inner-cta h2 em {
  font-style: italic;
  color: rgba(245, 244, 237, 0.96);
}
.m-native-page--premium .inner-cta .lead {
  color: rgba(245, 244, 237, 0.88);
}
.m-native-page--premium .inner-cta .btn-primary {
  margin-top: var(--space-4);
  font-size: clamp(18px, 1.8vw, 22px);
}
@media (max-width: 600px) {
  .m-native-page--premium .inner-cta { align-items: stretch; }
  .m-native-page--premium .inner-cta .btn { width: 100%; }
}

/* ============================================================
   PROSE â€” typography for legal/FAQ/sitemap pages
   ============================================================ */
.m-native-page--premium .prose {
  max-width: 72ch;
  font-family: var(--font-ui);
  font-size: var(--type-body);
  line-height: var(--lh-body);
  color: var(--ink);
}
.m-native-page--premium .prose > * + * { margin-top: var(--space-4); }
.m-native-page--premium .prose h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
}
.m-native-page--premium .prose h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  color: var(--ink);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}
.m-native-page--premium .prose h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}
.m-native-page--premium .prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.m-native-page--premium .prose ul,
.m-native-page--premium .prose ol {
  margin: var(--space-4) 0;
  padding-left: 1.5em;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.m-native-page--premium .prose li + li { margin-top: var(--space-2); }
.m-native-page--premium .prose ul li::marker { color: var(--accent-amber-deep); }
.m-native-page--premium .prose ol li::marker { color: var(--accent-amber-deep); font-family: var(--font-display); font-style: italic; font-weight: 500; }
.m-native-page--premium .prose a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent-amber);
  padding-bottom: 1px;
  font-weight: 500;
  transition: color 200ms ease, border-color 200ms ease;
}
.m-native-page--premium .prose a:hover { color: var(--accent-amber-deep); border-color: var(--accent-amber-deep); }
.m-native-page--premium .prose strong { font-weight: 600; }
.m-native-page--premium .prose em { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.m-native-page--premium .prose blockquote {
  margin: var(--space-6) 0;
  padding: var(--space-5);
  background: var(--surface-cream-2);
  border-left: 3px solid var(--accent-amber);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  border-radius: 0 var(--r-2) var(--r-2) 0;
}
.m-native-page--premium .prose hr {
  border: 0;
  height: 1px;
  background: var(--line-cream);
  margin: var(--space-7) 0;
}
.m-native-page--premium .prose code {
  font-family: ui-monospace, "SFMono-Regular", "Menlo", monospace;
  font-size: 0.9em;
  background: var(--surface-cream-2);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ============================================================
   FAQ ACCORDION (inner FAQ page)
   ============================================================ */
.m-native-page--premium .inner-faq {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-5);
}
.m-native-page--premium .inner-faq__item {
  border-top: 1px solid var(--line-cream);
  padding: var(--space-5) 0;
}
.m-native-page--premium .inner-faq__item:last-of-type { border-bottom: 1px solid var(--line-cream); }
.m-native-page--premium .inner-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.3;
}
.m-native-page--premium .inner-faq__item summary::-webkit-details-marker { display: none; }
.m-native-page--premium .inner-faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--accent-amber-deep);
  transition: transform 220ms ease;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.m-native-page--premium .inner-faq__item[open] summary::after { transform: rotate(45deg); }
.m-native-page--premium .inner-faq__answer {
  margin-top: var(--space-3);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 64ch;
}

/* ============================================================
   RELATED LINKS â€” "Voir aussi" cards
   ============================================================ */
.m-native-page--premium .related-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.m-native-page--premium .related-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: var(--surface-cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
  color: var(--ink);
  position: relative;
}
.m-native-page--premium .related-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-amber-deep);
  box-shadow: 0 8px 24px -8px rgba(15, 23, 41, 0.18);
}
.m-native-page--premium .related-card__eyebrow {
  font-size: var(--type-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  font-family: var(--font-ui);
}
.m-native-page--premium .related-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  line-height: 1.25;
}
.m-native-page--premium .related-card__more {
  margin-top: auto;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent-amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.m-native-page--premium .related-card:hover .related-card__more::after { transform: translateX(4px); }
.m-native-page--premium .related-card__more::after {
  content: "â†’";
  transition: transform 220ms ease;
}
@media (max-width: 900px) {
  .m-native-page--premium .related-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .m-native-page--premium .related-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS MINI (service pages)
   ============================================================ */
.m-native-page--premium .review-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.m-native-page--premium .review-mini {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--surface-cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-3);
  position: relative;
}
.m-native-page--premium .review-mini__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
  color: var(--ink);
}
.m-native-page--premium .review-mini__quote::before {
  content: "â€œ";
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--surface-terracotta);
  line-height: 0;
  opacity: 0.5;
  margin-right: 4px;
  vertical-align: -22px;
}
.m-native-page--premium .review-mini__attr {
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-ui);
}
.m-native-page--premium .review-mini__name { font-weight: 600; font-size: 14px; }
.m-native-page--premium .review-mini__meta { font-size: 13px; color: var(--ink-muted); }
.m-native-page--premium .review-mini__stars { color: var(--surface-terracotta); letter-spacing: 0.1em; margin-top: 4px; }
@media (max-width: 700px) {
  .m-native-page--premium .review-mini-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Ã‰QUIPEMENT IMAGE BAND (service pages)
   ============================================================ */
.m-native-page--premium .equipement-band {
  position: relative;
  margin: 0;
  padding: 0;
}
.m-native-page--premium .equipement-band img {
  width: 100%;
  height: clamp(300px, 50vh, 540px);
  object-fit: cover;
  border-radius: var(--r-3);
  display: block;
}
.m-native-page--premium .equipement-band__caption {
  position: absolute;
  left: var(--space-7);
  bottom: var(--space-7);
  max-width: 460px;
  background: var(--surface-cream);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--r-3);
  border: 1px solid var(--line-cream);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.m-native-page--premium .equipement-band__caption h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
}
.m-native-page--premium .equipement-band__caption p {
  font-size: 14px;
  color: var(--ink-muted);
}
@media (max-width: 700px) {
  .m-native-page--premium .equipement-band img {
    height: 40vh;
    border-radius: 0;
  }
  .m-native-page--premium .equipement-band__caption {
    position: static;
    margin: -32px var(--space-4) 0;
  }
}

/* ============================================================
   BREADCRUMBS adjust on inner pages (override the global rule
   from the top of this file so they sit cleanly under header)
   ============================================================ */
.m-native-page--premium .breadcrumbs {
  margin: var(--space-4) auto 0;
  padding: 0 var(--container-pad);
  max-width: var(--container);
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--ink-muted);
}

/* ============================================================
   PRINT â€” collapse hover/animation surfaces, simplify
   ============================================================ */
@media print {
  .m-native-page--premium [data-reveal] { opacity: 1 !important; transform: none !important; }
  .m-native-page--premium .section--inner-cta,
  .m-native-page--premium .inner-cta .btn-primary { display: none !important; }
  .m-native-page--premium [data-surface="navy"],
  .m-native-page--premium [data-surface="terracotta"] {
    background: white !important;
    color: black !important;
  }
}

/* Section transitions â€” hairline between same-surface adjacent sections */
.m-native-page--premium .section[data-surface="cream"] + .section[data-surface="cream"],
.m-native-page--premium .section[data-surface="parchment"] + .section[data-surface="parchment"] {
  border-top: 1px solid var(--line-cream);
}

/* End Phase Q inner-page styles */

/* ============================================================
   MARQUEE — Infinite SVG & Text Scroll
   ============================================================ */
body .marquee-section {
  overflow: hidden;
  white-space: nowrap;
  padding: clamp(1rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface-navy);
}
body .marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  will-change: transform;
  animation: marquee-scroll 25s linear infinite;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
body .marquee-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink-muted);
  opacity: 0.8;
}
body .marquee-svg {
  color: var(--accent-amber);
  opacity: 0.8;
  display: flex;
}
body .marquee-section:hover .marquee-track {
  animation-play-state: paused;
}
