/* =========================================================
   STOP Frelons Dératisation 19 — feuille de styles globale
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  --color-ink: #0f172a;
  --color-ink-2: #1f2937;
  --color-ink-3: #334155;
  --color-cream: #fafafa;
  --color-white: #ffffff;
  --color-hornet: #dc2626;
  --color-hornet-dark: #b91c1c;
  --color-hornet-light: #fee2e2;
  --color-amber: #facc15;
  --color-slate: #475569;
  --color-slate-2: #6b7280;
  --color-line: #e5e7eb;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow-soft:
    0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lift: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-red: 0 12px 32px rgba(220, 38, 38, 0.35);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  --container-max: 80rem;
  --header-height: 72px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  background: var(--color-cream);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,
video,
svg,
iframe {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}
input,
select,
textarea {
  font: inherit;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
strong {
  font-weight: 700;
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  position: relative;
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .section {
    padding-block: 8rem;
  }
}
.section--dark {
  background: var(--color-ink);
  color: var(--color-white);
  overflow: hidden;
}
.section--cream {
  background: var(--color-cream);
}
.section--white {
  background: var(--color-white);
}
.section--certif {
  padding-block: 4rem;
  background: var(--color-cream);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
@media (min-width: 768px) {
  .section--certif {
    padding-block: 5rem;
  }
}
.section--no-top {
  padding-top: 0;
}
.section--feature-stack {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .section--feature-stack {
    padding-block: 5rem;
  }
}
.section--feature-stack + .section--feature-stack {
  padding-top: 0;
}

/* ---------- TYPO UTILITIES ---------- */
.font-display {
  letter-spacing: -0.022em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow__line {
  height: 1px;
  width: 2.5rem;
  background: var(--color-hornet);
  display: inline-block;
}
.eyebrow__line--amber {
  background: var(--color-amber);
}
.eyebrow__text {
  color: var(--color-hornet);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.eyebrow__text--amber {
  color: var(--color-amber);
}
.eyebrow__text--slate {
  color: var(--color-slate);
  letter-spacing: 0.25em;
}

.section-header {
  max-width: 48rem;
  margin-bottom: 4rem;
}
.section-title {
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--color-ink);
}
.section-title--light {
  color: var(--color-white);
}
.section-title .accent {
  color: var(--color-hornet);
}
.section-title .accent--amber {
  color: var(--color-amber);
}

.section-lead {
  margin-top: 1.5rem;
  color: var(--color-slate);
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 42rem;
}
.section-lead--dark {
  color: rgba(255, 255, 255, 0.75);
}
.section-lead strong {
  color: var(--color-ink);
  font-weight: 700;
}
.section-lead--dark strong {
  color: var(--color-white);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--color-hornet);
  color: var(--color-white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--color-hornet-dark);
}
.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-ink);
}
.btn--white {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: var(--shadow-lift);
}
.btn--white:hover {
  background: var(--color-amber);
}
.btn__arrow {
  transition: transform 0.25s ease;
}
.btn:hover .btn__arrow {
  transform: translateX(3px);
}
.btn__icon-rotate {
  transition: transform 0.25s ease;
}
.btn:hover .btn__icon-rotate {
  transform: rotate(12deg);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.55);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes droneBob {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}
@keyframes vaporRise {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-90px) scale(1.3);
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}
.reveal[data-delay="5"] {
  transition-delay: 0.4s;
}
.reveal[data-delay="6"] {
  transition-delay: 0.48s;
}

/* Visibility helpers */
.mobile-only {
  display: inline;
}
@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.pulse-ring {
  animation: pulseRing 2.4s ease-out infinite;
}
.pulse-dot {
  animation: pulseDot 1.6s ease-in-out infinite;
}

/* ---------- TOPBAR (utilitaire) ---------- */
.site-topbar {
  display: none;
  background: #0B1220;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  max-height: 44px;
  overflow: hidden;
  position: relative;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
}
.site-topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-amber) 0 14px,
    var(--color-ink) 14px 22px
  );
  opacity: 0.9;
}
@media (min-width: 768px) {
  .site-topbar {
    display: block;
  }
}
.site-topbar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-topbar__inner {
    padding-inline: 2rem;
  }
}
.site-topbar__group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.site-topbar__item svg {
  opacity: 0.65;
  flex-shrink: 0;
}
a.site-topbar__item:hover {
  color: var(--color-amber);
}
a.site-topbar__item:hover svg {
  opacity: 1;
  color: var(--color-amber);
}
.site-topbar__sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
}
.site-topbar__link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}
.site-topbar__link:hover {
  color: var(--color-amber);
}
.site-topbar__link--active {
  color: var(--color-amber);
}
.site-header.is-scrolled .site-topbar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    border-color 0.3s ease;
}
.site-header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-header__inner {
    padding-inline: 2rem;
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-header__logo {
  height: 3.75rem;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
@media (min-width: 1280px) {
  .site-header__logo {
    height: 3.25rem;
  }
}
.site-header__brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}
@media (min-width: 1280px) {
  .site-header__brand-text {
    display: flex;
  }
}
.site-header__brand-name {
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: 0.8125rem;
}
.site-header__brand-tag {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.site-nav__link {
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .site-nav {
    display: flex;
    gap: 1.75rem;
  }
}

/* Actions cluster (CTA + burger) */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.site-nav__link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition:
    background-size 0.35s ease,
    color 0.25s ease;
  padding-block: 0.25rem;
}
.site-nav__link:hover {
  color: var(--color-white);
  background-size: 100% 1.5px;
}

/* Header CTA phone */
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  color: var(--color-ink);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
@media (min-width: 768px) {
  .site-header__cta {
    background: var(--color-hornet);
    color: var(--color-white);
  }
}
.site-header__cta:hover {
  opacity: 0.92;
}
.site-header__cta-number--mobile {
  display: inline;
}
.site-header__cta-number--desktop {
  display: none;
}
@media (min-width: 640px) {
  .site-header__cta-number--mobile {
    display: none;
  }
  .site-header__cta-number--desktop {
    display: inline;
  }
}

/* Header scrolled state */
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-line);
}
.site-header.is-scrolled .site-nav__link,
.site-header.is-scrolled .site-header__brand-name,
.site-header.is-scrolled .site-header__brand-tag {
  color: var(--color-ink);
}
.site-header.is-scrolled .site-header__brand-tag {
  color: var(--color-slate);
}
.site-header.is-scrolled .site-header__logo {
  filter: none;
}
.site-header.is-scrolled .site-header__cta {
  background: var(--color-hornet);
  color: var(--color-white);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-white);
}
@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
  }
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.45) 0%,
      rgba(15, 23, 42, 0.55) 50%,
      rgba(15, 23, 42, 0.85) 100%
    ),
    radial-gradient(
      1200px 600px at 50% 0%,
      rgba(220, 38, 38, 0.18) 0%,
      transparent 60%
    );
}
.hero__stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-amber) 0 14px,
    var(--color-ink) 14px 22px
  );
  opacity: 0.9;
  z-index: 2;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 8rem 1.25rem 6rem;
}
@media (min-width: 768px) {
  .hero__inner {
    padding: 10rem 2rem 7rem;
  }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-hornet);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  position: relative;
}
.hero__pill::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  animation: pulseRing 2.4s ease-out infinite;
  pointer-events: none;
}
.hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-white);
  animation: pulseDot 1.6s ease-in-out infinite;
}
.hero__location {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero__title {
  font-weight: 900;
  letter-spacing: -0.022em;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 0.95;
  max-width: 64rem;
}
.hero__title .accent {
  color: var(--color-hornet);
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 5.5rem;
  }
}

.hero__sub {
  margin-top: 1.75rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero__sub {
    font-size: 1.25rem;
  }
}
.hero__sub strong {
  color: var(--color-white);
  font-weight: 700;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
}
.hero__badge--rating .stars {
  color: var(--color-amber);
  letter-spacing: -0.05em;
  font-size: 1rem;
}
.hero__badge--rating strong {
  font-size: 0.875rem;
  font-weight: 700;
}
.hero__badge--rating em {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
}

.hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero__ctas {
    flex-direction: row;
  }
}
.hero__ctas .btn {
  padding: 1rem 1.75rem;
  font-size: 0.9375rem;
  gap: 0.75rem;
}
.hero__cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.75rem;
  display: none;
}
@media (min-width: 640px) {
  .hero__cta-sub {
    display: inline;
  }
}

.hero__stats {
  margin-top: 4rem;
  max-width: 56rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hero__stat {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem;
}
.hero__stat-number {
  font-weight: 900;
  font-size: 1.875rem;
  letter-spacing: -0.022em;
  line-height: 1;
}
@media (min-width: 768px) {
  .hero__stat-number {
    font-size: 2.25rem;
  }
}
.hero__stat-number .accent {
  color: var(--color-hornet);
}
.hero__stat-number .accent--amber {
  color: var(--color-amber);
}
.hero__stat-number .sep {
  color: rgba(255, 255, 255, 0.4);
}
.hero__stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-top: 0.25rem;
}

.hero__scroll-indicator {
  display: none;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 768px) {
  .hero__scroll-indicator {
    display: flex;
  }
}
.hero__scroll-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
}
.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-white);
  animation: scrollDown 2s ease-in-out infinite;
}

/* ---------- SERVICES (3 PILIERS) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  border-color: var(--color-hornet);
}
.service-card__media {
  position: relative;
  height: 14rem;
  overflow: hidden;
}
.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card__image {
  transform: scale(1.1);
}
.service-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent 60%);
}
.service-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  box-shadow: var(--shadow-soft);
}
.service-card__title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.022em;
  color: var(--color-white);
}
.service-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__text {
  color: var(--color-slate);
  font-size: 0.9375rem;
  line-height: 1.625;
}
.service-card__tags {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-ink-2);
}
.service-card__cta {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-hornet);
  font-weight: 700;
  font-size: 0.875rem;
}
.service-card__cta svg {
  transition: transform 0.25s ease;
}
.service-card__cta:hover svg {
  transform: translateX(4px);
}

.services__targets {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2.5rem;
  color: var(--color-slate);
  font-size: 0.875rem;
}
.services__targets-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.6875rem;
  color: var(--color-ink);
}
.services__target {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.services__target::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-hornet);
}

/* ---------- WHY (POURQUOI NOUS) ---------- */
.why {
  position: relative;
}
.why__drone {
  position: absolute;
  top: 3rem;
  right: 2rem;
  width: 5rem;
  color: rgba(255, 255, 255, 0.15);
  animation: droneBob 6s ease-in-out infinite;
}
@media (min-width: 768px) {
  .why__drone {
    right: 4rem;
    width: 7rem;
  }
}
.why__glow {
  position: absolute;
  bottom: -8rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.1);
  filter: blur(60px);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-hornet);
}
.why-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.why-card:hover .why-card__icon {
  transform: scale(1.1);
}
.why-card__title {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.022em;
  margin-bottom: 0.5rem;
}
.why-card__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.625;
}
.why-card__text strong {
  color: var(--color-white);
  font-weight: 700;
}
.why-card__pill {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-amber);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.why-card__pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
}
.why-card__pill--pulse::before {
  animation: pulseDot 1.6s ease-in-out infinite;
}

.why-card--vapor {
  overflow: hidden;
}
.why-card--vapor::before,
.why-card--vapor::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 1.5rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  animation: vaporRise 3.6s ease-in infinite;
}
.why-card--vapor::after {
  left: 3rem;
  animation-delay: 1.2s;
  width: 14px;
  height: 14px;
}

.why__local {
  margin-top: 4rem;
  padding: 1.75rem;
  border-radius: var(--radius-2xl);
  background: linear-gradient(to right, rgba(220, 38, 38, 0.15), transparent);
  border: 1px solid rgba(220, 38, 38, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .why__local {
    padding: 2.25rem;
    flex-direction: row;
    align-items: center;
  }
}
.why__local-icon {
  flex-shrink: 0;
}
.why__local-content {
  flex: 1;
}
.why__local-title {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.022em;
}
@media (min-width: 768px) {
  .why__local-title {
    font-size: 1.5rem;
  }
}
.why__local-text {
  margin-top: 0.375rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}
.why__local-text strong {
  color: var(--color-white);
  font-weight: 700;
}
.why__local-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  color: var(--color-ink);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}
.why__local-cta:hover {
  background: var(--color-amber);
}

/* ---------- MÉTHODE (TIMELINE) ---------- */
.timeline {
  position: relative;
}
.timeline__line {
  display: none;
  position: absolute;
  top: 3rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-hornet) 0%,
    var(--color-amber) 100%
  );
}
@media (min-width: 768px) {
  .timeline__line {
    display: block;
  }
}
.timeline__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .timeline__steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}
.timeline__step {
  text-align: center;
}
.timeline__num {
  background: var(--color-hornet);
  color: var(--color-white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: var(--shadow-red);
  position: relative;
  z-index: 1;
}
.timeline__title {
  font-weight: 800;
  font-size: 1.125rem;
  margin-top: 1.25rem;
  letter-spacing: -0.022em;
  color: var(--color-ink);
}
.timeline__text {
  color: var(--color-slate);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.625;
}

.reassurance {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .reassurance {
    grid-template-columns: repeat(3, 1fr);
  }
}
.reassurance__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
}
.reassurance__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.reassurance__title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-ink);
}
.reassurance__text {
  color: var(--color-slate);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  line-height: 1.625;
}

/* ---------- GALLERY (RÉALISATIONS) ---------- */
.gallery__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .gallery__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.gallery__title-wrap {
  max-width: 40rem;
}

.gallery__fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.25s ease;
}
.gallery__fb-link:hover {
  color: var(--color-hornet);
}
.gallery__fb-link svg.arrow {
  transition: transform 0.25s ease;
}
.gallery__fb-link:hover svg.arrow {
  transform: translateX(4px);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery__item--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}
@media (min-width: 768px) {
  .gallery__item--featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1 / 1;
  }
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.1);
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.2) 50%,
    transparent
  );
  opacity: 0.9;
  transition: opacity 0.25s ease;
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  color: var(--color-white);
}
.gallery__item--featured .gallery__caption {
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
}
.gallery__badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  background: var(--color-hornet);
  color: var(--color-white);
  font-size: 0.5625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.375rem;
}
.gallery__item--featured .gallery__badge {
  font-size: 0.625rem;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.5rem;
}
.gallery__caption-title {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
}
.gallery__item--featured .gallery__caption-title {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.022em;
}
@media (min-width: 768px) {
  .gallery__item--featured .gallery__caption-title {
    font-size: 1.5rem;
  }
}
.gallery__caption-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

/* ---------- CERTIFICATIONS ---------- */
.certifs__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.certifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .certifs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.certif-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}
.certif-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(220, 38, 38, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.certif-card__title {
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: -0.022em;
  color: var(--color-ink);
}
.certif-card__sub {
  color: var(--color-slate);
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 0.125rem;
}

/* ---------- REVIEWS (AVIS) ---------- */
.reviews {
  position: relative;
}
.reviews__glow-1,
.reviews__glow-2 {
  position: absolute;
  width: 31.25rem;
  height: 31.25rem;
  border-radius: 50%;
  filter: blur(60px);
}
.reviews__glow-1 {
  top: -10rem;
  right: -10rem;
  background: rgba(220, 38, 38, 0.1);
}
.reviews__glow-2 {
  bottom: -10rem;
  left: -10rem;
  background: rgba(250, 204, 21, 0.05);
}

.reviews__big-rating {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .reviews__big-rating {
    margin-bottom: 5rem;
  }
}
.reviews__big-eyebrow {
  margin-bottom: 1rem;
  color: var(--color-amber);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.reviews__rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.reviews__rating-number {
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: -0.022em;
  line-height: 1;
  text-align: left;
}
@media (min-width: 768px) {
  .reviews__rating-number {
    font-size: 4.5rem;
  }
}
.reviews__rating-number .accent--amber {
  color: var(--color-amber);
}
.reviews__rating-divider {
  display: none;
  height: 3rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .reviews__rating-divider {
    display: block;
  }
}
.reviews__rating-stars {
  color: var(--color-amber);
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: left;
}
@media (min-width: 768px) {
  .reviews__rating-stars {
    font-size: 1.875rem;
  }
}
.reviews__rating-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.reviews__rating-count strong {
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
}

.review-featured {
  position: relative;
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  background: linear-gradient(
    to bottom right,
    rgba(220, 38, 38, 0.15),
    rgba(255, 255, 255, 0.05) 50%,
    transparent
  );
  border: 1px solid rgba(220, 38, 38, 0.3);
  overflow: hidden;
}
@media (min-width: 768px) {
  .review-featured {
    padding: 3.5rem;
    margin-bottom: 5rem;
  }
}
.review-featured__quotemark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.2;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .review-featured__quotemark {
    top: 2rem;
    right: 2rem;
  }
}
.review-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .review-featured__grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}
.review-featured__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.review-stars {
  color: var(--color-amber);
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}
.review-tag {
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  background: var(--color-hornet);
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.review-featured__quote {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.022em;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .review-featured__quote {
    font-size: 2.25rem;
  }
}
.review-featured__author {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-hornet);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}
.review-author__name {
  font-weight: 700;
  color: var(--color-white);
}
.review-author__meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}
.review-featured__aside {
  padding-top: 0;
  border-top: 0;
}
@media (min-width: 768px) {
  .review-featured__aside {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 2.5rem;
  }
}
.review-featured__aside-eyebrow {
  color: var(--color-amber);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
}
.review-featured__aside-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.625;
}
.review-featured__aside-text strong {
  color: var(--color-white);
  font-weight: 700;
}
.review-featured__aside-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-amber);
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.25s ease;
}
.review-featured__aside-link:hover {
  color: var(--color-white);
}
.review-featured__aside-link svg {
  transition: transform 0.25s ease;
}
.review-featured__aside-link:hover svg {
  transform: translateX(4px);
}

.reviews-carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.reviews-carousel__title {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.022em;
}
@media (min-width: 768px) {
  .reviews-carousel__title {
    font-size: 1.5rem;
  }
}
.reviews-carousel__hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.reviews-carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-carousel__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .reviews-carousel__track {
    margin-inline: 0;
    padding-inline: 0;
  }
}
.review-card {
  flex-shrink: 0;
  width: 88%;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .review-card {
    width: 26.25rem;
  }
}
.review-card:hover {
  border-color: var(--color-hornet);
}
.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.review-card__stars {
  color: var(--color-amber);
  font-size: 1.125rem;
  letter-spacing: -0.05em;
}
.review-card__local-badge {
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(250, 204, 21, 0.2);
  color: var(--color-amber);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.review-card__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.625;
  flex: 1;
}
.review-card__foot {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.review-card__info {
  flex: 1;
  min-width: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
}

.reviews__cta {
  margin-top: 3rem;
  text-align: center;
}
.reviews__cta .btn {
  padding: 1rem 1.75rem;
  gap: 0.75rem;
}

/* ---------- CONTACT ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 5fr 7fr;
  }
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__title {
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.022em;
  line-height: 0.95;
  color: var(--color-ink);
}
.contact__title .accent {
  color: var(--color-hornet);
}
.contact__text {
  color: var(--color-slate);
  font-size: 1.125rem;
  line-height: 1.625;
}

.phone-card {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease;
}
.phone-card:hover {
  box-shadow: var(--shadow-lift);
}
.phone-card__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.phone-card__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-hornet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.phone-card__text {
  flex: 1;
}
.phone-card__icon-wrap::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  animation: pulseRing 2.4s ease-out infinite;
  pointer-events: none;
}
.phone-card__sub {
  color: var(--color-slate);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.phone-card__number {
  font-weight: 900;
  font-size: 1.875rem;
  letter-spacing: -0.022em;
  color: var(--color-ink);
  margin-top: 0.25rem;
  transition: color 0.25s ease;
}
@media (min-width: 768px) {
  .phone-card__number {
    font-size: 2.25rem;
  }
}
.phone-card:hover .phone-card__number {
  color: var(--color-hornet);
}
.phone-card__arrow {
  flex-shrink: 0;
  color: var(--color-ink);
  transition: transform 0.25s ease;
}
.phone-card:hover .phone-card__arrow {
  transform: translateX(4px);
}

.contact__chips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .contact__chips {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  transition: border-color 0.25s ease;
}
.contact-chip:hover {
  border-color: var(--color-hornet);
}
.contact-chip__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-chip__label {
  color: var(--color-slate);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-chip__value {
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 0.125rem;
  word-break: break-word;
}

.contact__social {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-ink);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__social-icon {
  color: var(--color-amber);
}
.contact__social-content {
  flex: 1;
}
.contact__social-title {
  font-weight: 700;
  font-size: 0.875rem;
}
.contact__social-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}
.contact__social-link {
  color: var(--color-amber);
  font-weight: 700;
  font-size: 0.75rem;
  transition: color 0.25s ease;
}
.contact__social-link:hover {
  color: var(--color-white);
}

.contact__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form {
  padding: 1.75rem;
  border-radius: var(--radius-2xl);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2.25rem;
  }
}
.contact-form__title {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.022em;
  color: var(--color-ink);
  margin-bottom: 0.375rem;
}
@media (min-width: 768px) {
  .contact-form__title {
    font-size: 1.875rem;
  }
}
.contact-form__sub {
  color: var(--color-slate);
  font-size: 0.875rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form__field {
  display: block;
  margin-top: 1rem;
}
.contact-form__field--first {
  margin-top: 0;
}
.field-label {
  display: block;
  color: var(--color-ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.field-input,
.field-select,
.field-textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: 2px solid var(--color-hornet);
  outline-offset: 2px;
  border-color: transparent;
}
.field-textarea {
  resize: none;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  cursor: pointer;
}
.contact-form__consent input {
  margin-top: 4px;
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-hornet);
}
.contact-form__consent-text {
  color: var(--color-slate);
  font-size: 0.75rem;
  line-height: 1.625;
}
.contact-form__submit {
  margin-top: 1.5rem;
  width: 100%;
  background: var(--color-hornet);
  color: var(--color-white);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.25s ease;
}
.contact-form__submit:hover {
  background: var(--color-hornet-dark);
}

.contact__map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  height: 18rem;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-ink);
  color: var(--color-white);
  padding: 4rem 0 7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 3rem;
  }
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 5fr 3fr 4fr;
  }
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__logo {
  height: 4rem;
}
.site-footer__brand-name {
  font-weight: 900;
  letter-spacing: -0.022em;
  font-size: 1rem;
  color: var(--color-white);
}
.site-footer__brand-tag {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.site-footer__desc {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 28rem;
}
.site-footer__socials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__social {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.site-footer__social:hover {
  background: var(--color-hornet);
  border-color: var(--color-hornet);
}

.site-footer__col-title {
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}
.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.site-footer__list a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}
.site-footer__list a:hover {
  color: var(--color-white);
}
.site-footer__list .phone {
  color: var(--color-white);
  font-weight: 700;
}
.site-footer__list .phone:hover {
  color: var(--color-hornet);
}
.site-footer__zone-title {
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.site-footer__zone-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1.625;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
}
.site-footer__legal .sep {
  display: none;
}
@media (min-width: 768px) {
  .site-footer__legal .sep {
    display: inline;
  }
}
.site-footer__legal a:hover {
  color: var(--color-white);
}
.site-footer__credits {
  color: rgba(255, 255, 255, 0.35);
}
.site-footer__credits a {
  font-weight: 700;
  transition: color 0.25s ease;
}
.site-footer__credits a:hover {
  color: var(--color-amber);
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}
.mobile-cta__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--color-hornet);
  color: var(--color-white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-red);
  position: relative;
}
.mobile-cta__btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  animation: pulseRing 2.4s ease-out infinite;
  pointer-events: none;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}
@media (min-width: 768px) {
  .lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
  }
}
.lightbox__close:hover {
  background: var(--color-hornet);
}
.lightbox__figure {
  max-width: 64rem;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-align: center;
}

/* ---------- HEADER : variante solide (sous-pages, fond clair direct) ---------- */
.site-header--solid {
  background-color: rgba(15, 23, 42, 1);
}
.site-header--solid .site-header__cta {
  background: var(--color-hornet);
  color: var(--color-white);
}

/* ---------- DROPDOWN NAV (sous-menu "Traitement de nuisibles") ---------- */
.site-nav__item {
  position: relative;
}
.site-nav__item--has-menu > .site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.site-nav__caret {
  transition: transform 0.25s ease;
}
.site-nav__item--has-menu:hover .site-nav__caret,
.site-nav__item--has-menu:focus-within .site-nav__caret {
  transform: rotate(180deg);
}
.site-nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 16rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0.2s;
  z-index: 10;
}
.site-nav__item--has-menu:hover .site-nav__submenu,
.site-nav__item--has-menu:focus-within .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0s;
}
.site-nav__submenu a {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink) !important;
  background-image: none !important;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.site-nav__submenu a:hover {
  background: var(--color-cream);
  color: var(--color-hornet) !important;
}
.site-nav__item--active > .site-nav__link {
  color: var(--color-hornet) !important;
  background-size: 100% 1.5px !important;
}

/* ---------- PAGE HERO (sous-pages, sans vidéo) ---------- */
.page-hero {
  position: relative;
  background: var(--color-ink);
  color: var(--color-white);
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 30%,
    #000 80%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 30%,
    #000 80%,
    transparent 100%
  );
  z-index: 0;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero__stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-amber) 0 14px,
    var(--color-ink) 14px 22px
  );
  opacity: 0.9;
  z-index: 2;
}
.page-hero__glow {
  position: absolute;
  top: -8rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.18);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.page-hero__watermark {
  position: absolute;
  right: -0.5rem;
  bottom: -2.5rem;
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
  color: var(--color-amber);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  text-transform: uppercase;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .page-hero__grid {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
  }
}
.page-hero__title {
  font-weight: 900;
  letter-spacing: -0.022em;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.1;
  color: var(--color-white);
  position: relative;
}
.page-hero__title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  background: var(--color-amber);
  margin-top: 1.5rem;
  border-radius: 2px;
}
.page-hero__title .accent {
  color: var(--color-hornet);
}
.page-hero__lead-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.page-hero__lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.625;
  max-width: 30rem;
  margin: 0;
}
@media (min-width: 768px) {
  .page-hero__lead {
    font-size: 1.125rem;
  }
}
.page-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  align-self: flex-start;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.page-hero__phone:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}
.page-hero__phone-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-hornet);
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
  animation: heroPhonePulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes heroPhonePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(220, 38, 38, 0);
  }
}
.page-hero__phone-tag {
  margin-left: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-amber);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 0.55rem;
}

/* Spec strip en bas du hero */
.page-hero__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
@media (min-width: 768px) {
  .page-hero__specs {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-hero__spec {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-hero__spec:nth-child(2n) {
  border-right: 0;
}
.page-hero__spec:nth-last-child(-n + 2) {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .page-hero__spec:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .page-hero__spec:last-child {
    border-right: 0;
  }
  .page-hero__spec {
    border-bottom: 0;
  }
}
.page-hero__spec-icon {
  width: 22px;
  height: 22px;
  color: var(--color-amber);
  flex-shrink: 0;
}
.page-hero__spec-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.page-hero__spec-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.page-hero__spec-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  margin-bottom: 2rem;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.breadcrumb__list a:hover {
  color: var(--color-amber);
}
.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
.breadcrumb__current {
  color: var(--color-white);
  font-weight: 500;
}

/* ---------- FEATURE ROW (image + texte alternés) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
}
.feature-row--reverse .feature-row__media {
  order: 0;
}
@media (min-width: 900px) {
  .feature-row--reverse .feature-row__media {
    order: 2;
  }
}

.feature-row--dark {
  background: var(--color-ink);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-row__media {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  background: var(--color-ink);
}
@media (min-width: 900px) {
  .feature-row__media {
    min-height: 28rem;
  }
}
.feature-row__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-row__accent {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-hornet);
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.22);
}
.feature-row--dark .feature-row__accent {
  background: var(--color-amber);
  box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.25);
}

.feature-row__body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .feature-row__body {
    padding: 3rem 2.5rem;
  }
}
@media (min-width: 1200px) {
  .feature-row__body {
    padding: 4rem 3.5rem;
  }
}
.feature-row__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-hornet);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.feature-row--dark .feature-row__eyebrow {
  color: var(--color-amber);
}
.feature-row__eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}
.feature-row__title {
  font-weight: 900;
  letter-spacing: -0.022em;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  line-height: 1.1;
  color: var(--color-ink);
}
.feature-row--dark .feature-row__title {
  color: var(--color-white);
}
.feature-row__text {
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.7;
}
.feature-row--dark .feature-row__text {
  color: rgba(255, 255, 255, 0.8);
}
.feature-row__text + .feature-row__text {
  margin-top: 0.5rem;
}
.feature-row__text strong {
  font-weight: 700;
  color: var(--color-ink);
}
.feature-row--dark .feature-row__text strong {
  color: var(--color-white);
}
.feature-row__text a {
  color: var(--color-hornet);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.feature-row--dark .feature-row__text a {
  color: var(--color-amber);
}
.feature-row__text a:hover {
  color: var(--color-ink);
}
.feature-row--dark .feature-row__text a:hover {
  color: var(--color-white);
}

/* ---------- CTA STRIP (bandeau bas de page) ---------- */
.cta-strip {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--color-ink);
  border: none;
  color: var(--color-white);
}
.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cta-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}
.cta-strip__copy {
  max-width: 42rem;
}
.cta-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 1rem;
}
.cta-strip__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-hornet);
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
  animation: ctaStripPulse 2s ease-in-out infinite;
}
@keyframes ctaStripPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
  }
}
.cta-strip__title {
  font-weight: 900;
  letter-spacing: -0.022em;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.cta-strip__title .accent {
  color: var(--color-amber);
}
.cta-strip__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}
.cta-strip__meta-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}
.btn--amber {
  background: var(--color-amber);
  color: var(--color-ink);
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.35);
}
.btn--amber:hover {
  background: #eab308;
  color: var(--color-ink);
}
.btn--outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn--outline:hover {
  background: var(--color-ink);
  color: var(--color-white);
}

/* ============================================================
   PAGE NUISIBLES — composants enrichis
   ============================================================ */

/* ---------- TICKER (bandeau défilant nuisibles sous le hero) ---------- */
.ticker {
  background: var(--color-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding-block: 1rem;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-ink), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-ink), transparent);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  will-change: transform;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.ticker__item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-hornet);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- HUB GRID : 6 cards nuisibles ---------- */
.hub {
  padding-block: 5rem;
  background: var(--color-cream);
}
@media (min-width: 768px) {
  .hub {
    padding-block: 7rem;
  }
}
.hub__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .hub__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
}
.hub__title-wrap {
  max-width: 38rem;
}
.hub__hint {
  color: var(--color-slate);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.hub__hint .accent {
  color: var(--color-hornet);
  font-weight: 800;
}

.hub__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .hub__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.hub-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-hornet);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--color-hornet);
}
.hub-card:hover::before {
  transform: scaleX(1);
}
.hub-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  background: var(--color-hornet);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hub-card__num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  color: var(--color-line);
  font-family: var(--font-sans);
  line-height: 1;
  transition: color 0.35s ease;
}
.hub-card:hover .hub-card__num {
  color: var(--color-hornet);
  opacity: 0.15;
}
.hub-card__title {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.022em;
  color: var(--color-ink);
}
.hub-card__text {
  color: var(--color-slate);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}
.hub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-hornet);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
}
.hub-card__cta svg {
  transition: transform 0.25s ease;
}
.hub-card:hover .hub-card__cta svg {
  transform: translateX(4px);
}

/* ---------- FEATURE BLOCK enrichi (remplace feature-row simple) ---------- */
.feature {
  position: relative;
  padding-block: 5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .feature {
    padding-block: 7rem;
  }
}
.feature--cream {
  background: var(--color-cream);
}
.feature--white {
  background: var(--color-white);
}
.feature--dark {
  background: var(--color-ink);
  color: var(--color-white);
}

.feature__bignum {
  position: absolute;
  font-weight: 900;
  font-size: clamp(14rem, 30vw, 28rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: var(--color-ink);
  opacity: 0.03;
  pointer-events: none;
  font-family: var(--font-sans);
  user-select: none;
}
.feature__bignum--left {
  top: -4rem;
  left: -3rem;
}
.feature__bignum--right {
  top: -4rem;
  right: -3rem;
}
.feature--dark .feature__bignum {
  color: var(--color-white);
  opacity: 0.04;
}

.feature__stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-amber) 0 14px,
    var(--color-ink) 14px 22px
  );
}
.feature--cream .feature__stripe,
.feature--white .feature__stripe {
  background: repeating-linear-gradient(
    135deg,
    var(--color-hornet) 0 14px,
    var(--color-ink) 14px 22px
  );
  opacity: 0.85;
}

.feature__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .feature__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.feature__grid--reverse .feature__media-col {
  order: 0;
}
@media (min-width: 900px) {
  .feature__grid--reverse .feature__media-col {
    order: 2;
  }
}

.feature__content-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  align-self: flex-start;
  padding: 0.5rem 0.875rem 0.5rem 0.625rem;
  border-radius: var(--radius-full);
  background: var(--color-hornet);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.feature__chip-num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
}
.feature--dark .feature__chip {
  background: var(--color-amber);
  color: var(--color-ink);
}
.feature--dark .feature__chip-num {
  background: rgba(15, 23, 42, 0.2);
  color: var(--color-ink);
}

.feature__title {
  font-weight: 900;
  letter-spacing: -0.022em;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.1;
  color: var(--color-ink);
}
.feature--dark .feature__title {
  color: var(--color-white);
}
.feature__title .accent {
  color: var(--color-hornet);
}
.feature--dark .feature__title .accent {
  color: var(--color-amber);
}

.feature__text {
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .feature__text {
    font-size: 1.0625rem;
  }
}
.feature--dark .feature__text {
  color: rgba(255, 255, 255, 0.8);
}
.feature__text strong {
  font-weight: 700;
  color: var(--color-ink);
}
.feature--dark .feature__text strong {
  color: var(--color-white);
}
.feature__text a {
  color: var(--color-hornet);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.feature--dark .feature__text a {
  color: var(--color-amber);
}
.feature__text a:hover {
  color: var(--color-ink);
}
.feature--dark .feature__text a:hover {
  color: var(--color-white);
}

.feature__checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 540px) {
  .feature__checklist {
    grid-template-columns: 1fr 1fr;
  }
}
.feature__checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink-2);
}
.feature--dark .feature__checklist li {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.feature__checklist li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-hornet);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.feature--dark .feature__checklist li::before {
  background-color: var(--color-amber);
}
.feature--dark .feature__checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F172A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.feature__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Media column */
.feature__media-col {
  position: relative;
}
.feature__media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}
@media (min-width: 900px) {
  .feature__media {
    aspect-ratio: 5 / 6;
  }
}
.feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.feature__media:hover .feature__img {
  transform: scale(1.05);
}
.feature__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.7));
  pointer-events: none;
}

/* Stat badge floating on top of the image */
.feature__stat-card {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  z-index: 2;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  min-width: 12rem;
}
@media (min-width: 900px) {
  .feature__stat-card {
    right: -2rem;
    bottom: 2rem;
  }
}
.feature--dark .feature__stat-card {
  background: var(--color-ink);
  border-color: rgba(255, 255, 255, 0.12);
}
.feature__stat-num {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.022em;
  line-height: 1;
  color: var(--color-hornet);
}
.feature--dark .feature__stat-num {
  color: var(--color-amber);
}
.feature__stat-label {
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-slate);
}
.feature--dark .feature__stat-label {
  color: rgba(255, 255, 255, 0.55);
}

/* Side badge (top-left on image) */
.feature__side-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}
.feature__side-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-hornet);
  animation: pulseDot 1.6s ease-in-out infinite;
}

/* ---------- CTA STRIP enrichi ---------- */
.cta-strip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-strip__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 1px 1px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 0
    ),
    radial-gradient(
      900px 500px at 100% 100%,
      rgba(220, 38, 38, 0.25) 0%,
      transparent 60%
    );
  background-size:
    22px 22px,
    100% 100%;
  pointer-events: none;
  z-index: 0;
}
.cta-strip::before,
.cta-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-amber) 0 14px,
    var(--color-ink) 14px 22px
  );
  z-index: 1;
}
.cta-strip::before {
  top: 0;
}
.cta-strip::after {
  bottom: 0;
}
.cta-strip__watermark {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(14rem, 28vw, 26rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.08em;
  color: var(--color-white);
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.cta-strip__inner {
  position: relative;
  z-index: 2;
}
.cta-strip__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.cta-strip__phone svg {
  color: var(--color-hornet);
}
.cta-strip__phone:hover {
  color: var(--color-amber);
}

/* ═══════════════════════════════════════════════════════════
   PAGE TRAITEMENT-NUISIBLES — composants spécifiques
   ═══════════════════════════════════════════════════════════ */

/* ---------- HAZARD TAPE (ruban de chantier — séparateur) ---------- */
.hazard-tape {
  height: 28px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-amber) 0 28px,
    var(--color-ink) 28px 56px
  );
  position: relative;
}
.hazard-tape::before,
.hazard-tape::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
}
.hazard-tape::before {
  top: 0;
}
.hazard-tape::after {
  bottom: 0;
}
@media (min-width: 768px) {
  .hazard-tape {
    height: 36px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 01 — SHOWCASE
   Layout : media à gauche en "card" avec bignum en surimpression,
   contenu à droite décalé avec eyebrow gradué et tags inline.
   ═══════════════════════════════════════════════════════════ */
.ns-showcase {
  background: var(--color-white);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
}
.ns-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .ns-showcase__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 4.5rem;
  }
}

/* MEDIA */
.ns-showcase__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.ns-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
  align-self: flex-start;
}
.ns-showcase__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-hornet);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.25);
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
  }
}
.ns-showcase__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-ink);
  box-shadow: 0 30px 70px -25px rgba(15, 23, 42, 0.35);
}
.ns-showcase__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.ns-showcase__frame:hover img {
  transform: scale(1.04);
}
.ns-showcase__bignum {
  position: absolute;
  left: -0.05em;
  bottom: -0.18em;
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  mix-blend-mode: difference;
  opacity: 0.92;
  pointer-events: none;
}
.ns-showcase__stat {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  background: var(--color-amber);
  color: var(--color-ink);
  padding: 1rem 1.25rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px -15px rgba(250, 204, 21, 0.6);
  min-width: 9rem;
  text-align: right;
  transform: rotate(-2deg);
}
.ns-showcase__stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.ns-showcase__stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.8;
}
@media (min-width: 960px) {
  .ns-showcase__stat {
    right: -2.5rem;
  }
}

/* CONTENT */
.ns-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ns-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-hornet);
}
.ns-showcase__eyebrow-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--color-ink);
  background: var(--color-amber);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}
.ns-showcase__eyebrow-line {
  width: 2.5rem;
  height: 2px;
  background: var(--color-hornet);
}
.ns-showcase__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--color-ink);
}
.ns-showcase__title .accent {
  color: var(--color-hornet);
}
.ns-showcase__text {
  color: var(--color-slate);
  line-height: 1.65;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .ns-showcase__text {
    font-size: 1.0625rem;
  }
}
.ns-showcase__text a {
  color: var(--color-hornet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ns-showcase__text strong {
  color: var(--color-ink);
  font-weight: 700;
}
.ns-showcase__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0.5rem 0;
}
.ns-showcase__tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
}
.ns-showcase__tags li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-hornet);
}
.ns-showcase__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 02 — IMMERSIVE BG
   Layout : image plein cadre en arrière-plan avec overlay
   dégradé. Contenu posé par-dessus en grille : header haut,
   body texte gauche + stat card amber droite, pills + CTA bas.
   ═══════════════════════════════════════════════════════════ */
.ns-immersive {
  position: relative;
  color: var(--color-white);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  min-height: 40rem;
}
.ns-immersive__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.ns-immersive__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: saturate(0.85);
}
.ns-immersive__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(15, 23, 42, 0.96) 0%,
      rgba(15, 23, 42, 0.88) 40%,
      rgba(15, 23, 42, 0.65) 75%,
      rgba(15, 23, 42, 0.55) 100%
    ),
    radial-gradient(
      900px 600px at 20% 0%,
      rgba(220, 38, 38, 0.18) 0%,
      transparent 60%
    );
}
.ns-immersive__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.ns-immersive__watermark {
  position: absolute;
  top: -2rem;
  right: -1.5rem;
  font-size: clamp(16rem, 32vw, 30rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-amber);
  opacity: 0.08;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.ns-immersive__inner {
  position: relative;
  z-index: 1;
}

/* HEAD */
.ns-immersive__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  max-width: 56rem;
}
.ns-immersive__chip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-white);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.ns-immersive__chip-num {
  background: var(--color-amber);
  color: var(--color-ink);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.ns-immersive__chip-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}
.ns-immersive__chip-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.ns-immersive__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-hornet);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}
.ns-immersive__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.ns-immersive__title .accent {
  color: var(--color-amber);
}

/* GRID (body + stat) */
.ns-immersive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 960px) {
  .ns-immersive__grid {
    grid-template-columns: 1.55fr 1fr;
    gap: 1.75rem;
  }
  .ns-immersive__grid.ns-immersive__grid--single {
    grid-template-columns: minmax(0, 58rem);
    justify-content: start;
  }
}

/* BODY (glass card) */
.ns-immersive__body {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0.7) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  position: relative;
}
.ns-immersive__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.75rem;
  width: 3.5rem;
  height: 3px;
  background: var(--color-amber);
  border-radius: 0 0 3px 3px;
}
.ns-immersive__body p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 768px) {
  .ns-immersive__body {
    padding: 2.25rem;
  }
  .ns-immersive__body::before {
    left: 2.25rem;
  }
}
.ns-immersive__body p a {
  color: var(--color-amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ns-immersive__body p strong {
  color: var(--color-white);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   HAMBURGER + MOBILE DRAWER (off-canvas)
   ═══════════════════════════════════════════════════════════ */
.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.site-header__burger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.site-header__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease,
    background 0.3s ease;
}
.site-header.is-scrolled .site-header__burger {
  border-color: var(--color-line);
}
.site-header.is-scrolled .site-header__burger-line {
  background: var(--color-ink);
}
.site-header__burger[aria-expanded="true"]
  .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger[aria-expanded="true"]
  .site-header__burger-line:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded="true"]
  .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1280px) {
  .site-header__burger {
    display: none;
  }
}

/* Drawer container */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mobile-drawer.is-open .mobile-drawer__backdrop {
  opacity: 1;
}
.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.18);
  overscroll-behavior: contain;
}
.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

/* Drawer head */
.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-line);
  flex-shrink: 0;
}
.mobile-drawer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mobile-drawer__logo {
  height: 2.5rem;
  width: auto;
}
.mobile-drawer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.mobile-drawer__brand-name {
  color: var(--color-ink);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
}
.mobile-drawer__brand-tag {
  color: var(--color-slate);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-top: 0.15rem;
}
.mobile-drawer__close {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.25s ease;
}
.mobile-drawer__close:hover {
  background: var(--color-hornet);
  color: var(--color-white);
  border-color: var(--color-hornet);
  transform: rotate(90deg);
}

/* Drawer nav */
.mobile-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0;
}
.mobile-drawer__link,
.mobile-drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  font-family: inherit;
}
.mobile-drawer__link:hover,
.mobile-drawer__toggle:hover {
  background: var(--color-cream);
  color: var(--color-hornet);
  border-left-color: var(--color-hornet);
}
.mobile-drawer__caret {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.mobile-drawer__toggle[aria-expanded="true"] .mobile-drawer__caret {
  transform: rotate(180deg);
}
.mobile-drawer__toggle[aria-expanded="true"] {
  color: var(--color-hornet);
  border-left-color: var(--color-hornet);
  background: var(--color-cream);
}
.mobile-drawer__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--color-cream);
}
.mobile-drawer__sub.is-open {
  max-height: 32rem;
}
.mobile-drawer__sub a {
  display: block;
  padding: 0.8rem 1.5rem 0.8rem 3rem;
  color: var(--color-ink-2);
  font-size: 0.9375rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.mobile-drawer__sub a:hover {
  border-left-color: var(--color-hornet);
  color: var(--color-hornet);
  background: var(--color-white);
}

/* Drawer foot */
.mobile-drawer__foot {
  padding: 1.25rem 1.5rem;
  background: var(--color-ink);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-shrink: 0;
}
.mobile-drawer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.mobile-drawer__phone svg {
  color: var(--color-hornet);
}
.mobile-drawer__hours {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Body lock when drawer open */
body.is-locked {
  overflow: hidden;
}

/* STAT — typographie monumentale, pas de card */
.ns-immersive__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-white);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.ns-immersive__stat-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-amber);
}
.ns-immersive__stat-num {
  font-size: clamp(5.5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.82;
  color: var(--color-white);
  display: inline-flex;
  align-items: flex-start;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.ns-immersive__stat-unit {
  font-size: 0.22em;
  font-weight: 800;
  margin-top: 1.1em;
  margin-left: 0.12em;
  letter-spacing: 0;
  color: var(--color-amber);
  text-shadow: none;
}
.ns-immersive__stat-rule {
  width: 3.5rem;
  height: 3px;
  background: var(--color-amber);
  margin-top: -0.25rem;
}
.ns-immersive__stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
  max-width: 16rem;
}

/* FOOT (pills + cta) */
.ns-immersive__foot {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 960px) {
  .ns-immersive__foot {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}
.ns-immersive__pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .ns-immersive__pills {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ns-immersive__pills li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-white);
}
.ns-immersive__pills li span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--color-amber);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ns-immersive__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 03 — EDITORIAL
   Layout : header avec eyebrow chargé (num + certif), titre
   pleine largeur. En dessous : image en card portrait à
   gauche + body éditorial à droite (drop-cap, paragraphes).
   ═══════════════════════════════════════════════════════════ */
.ns-edito {
  background: var(--color-cream);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  border-top: 1px solid var(--color-line);
}
.ns-edito::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-amber) 0 14px,
    var(--color-ink) 14px 22px
  );
  opacity: 0.35;
}
.ns-edito__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-line);
}
.ns-edito__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink);
}
.ns-edito__num {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-hornet);
  line-height: 1;
}
.ns-edito__eyebrow-divider {
  width: 1px;
  height: 1.5rem;
  background: var(--color-line);
}
.ns-edito__eyebrow-text {
  color: var(--color-ink);
}
.ns-edito__certif {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-slate);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
.ns-edito__certif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-hornet);
}
.ns-edito__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.024em;
  line-height: 1.02;
  color: var(--color-ink);
  max-width: 50rem;
}
.ns-edito__title .accent {
  color: var(--color-hornet);
}

/* GRID */
.ns-edito__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (min-width: 960px) {
  .ns-edito__grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

/* MEDIA */
.ns-edito__media {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-ink);
  box-shadow: 0 30px 70px -30px rgba(15, 23, 42, 0.35);
}
.ns-edito__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.ns-edito__media:hover img {
  transform: scale(1.04);
}
.ns-edito__stat {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--color-white);
  color: var(--color-ink);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.4);
}
.ns-edito__stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ns-edito__stat-num span {
  color: var(--color-amber);
  margin-left: 0.15rem;
  font-size: 0.85em;
}
.ns-edito__stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-slate);
  text-align: right;
  line-height: 1.3;
}

/* BODY */
.ns-edito__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ns-edito__lede,
.ns-edito__para {
  color: var(--color-ink-2);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 768px) {
  .ns-edito__lede,
  .ns-edito__para {
    font-size: 1.0625rem;
  }
}
.ns-edito__lede {
  font-weight: 500;
  color: var(--color-ink);
}
.ns-edito__dropcap {
  float: left;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 0.85;
  margin: 0.15rem 0.75rem 0 0;
  color: var(--color-hornet);
  letter-spacing: -0.04em;
}
.ns-edito__lede a,
.ns-edito__para a {
  color: var(--color-hornet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ns-edito__para strong {
  color: var(--color-ink);
  font-weight: 700;
}
.ns-edito__tags {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--color-line);
}
.ns-edito__tags li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
}
.ns-edito__tags li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-hornet);
  flex-shrink: 0;
}
.ns-edito__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   PAGE NETTOYAGE & DÉMOUSSAGE — composants spécifiques
   ═══════════════════════════════════════════════════════════ */

/* ---------- SECTION 01 : SPLIT IMAGE FULL-BLEED ---------- */
.nd-split {
  background: var(--color-white);
  padding-block: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.nd-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-split__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}
.nd-split__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nd-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-hornet);
}
.nd-split__num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--color-ink);
  background: var(--color-amber);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}
.nd-split__line {
  width: 2.5rem;
  height: 2px;
  background: var(--color-hornet);
}
.nd-split__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--color-ink);
}
.nd-split__title .accent {
  color: var(--color-hornet);
}
.nd-split__text {
  color: var(--color-slate);
  line-height: 1.7;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .nd-split__text {
    font-size: 1.0625rem;
  }
}
.nd-split__text a {
  color: var(--color-hornet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.nd-split__text strong {
  color: var(--color-ink);
  font-weight: 700;
}
.nd-split__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.nd-split__media {
  position: relative;
  margin: 0;
  aspect-ratio: 5 / 6;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-ink);
}
@media (min-width: 960px) {
  .nd-split__media {
    aspect-ratio: 5 / 6;
    margin-right: calc(-1 * max((100vw - var(--container-max)) / 2, 1.25rem));
    border-radius: 24px 0 0 24px;
  }
}
.nd-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.nd-split__media:hover img {
  transform: scale(1.04);
}
.nd-split__media-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 0.5rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
.nd-split__media-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
}
.nd-split__media-rule {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(15, 23, 42, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.nd-split__media-rule strong {
  font-weight: 800;
  color: var(--color-amber);
}

/* ---------- SECTION 02 : STATEMENT / PULL QUOTE ---------- */
.nd-statement {
  background: var(--color-ink);
  color: var(--color-white);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nd-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.nd-statement__watermark {
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  font-size: clamp(16rem, 32vw, 28rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--color-amber);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.nd-statement__inner {
  position: relative;
  z-index: 1;
}
.nd-statement__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 56rem;
  margin-inline: auto;
}
.nd-statement__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nd-statement__chip-num {
  background: var(--color-amber);
  color: var(--color-ink);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.nd-statement__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.024em;
  line-height: 1.05;
  color: var(--color-white);
}
.nd-statement__title .accent {
  color: var(--color-amber);
}
.nd-statement__quote {
  margin: 4rem auto 3rem;
  max-width: 56rem;
  padding: 3.5rem 1rem 2rem;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nd-statement__quote::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-amber);
  background: var(--color-ink);
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  height: 1em;
}
.nd-statement__quote-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  line-height: 1.4;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin: 0;
}
.nd-statement__quote-text em {
  color: var(--color-amber);
  font-style: normal;
}
.nd-statement__quote-cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.nd-statement__body {
  max-width: 60rem;
  margin-inline: auto;
  column-gap: 2.5rem;
}
@media (min-width: 768px) {
  .nd-statement__body {
    column-count: 2;
  }
}
.nd-statement__body p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0 0 1.25rem;
  break-inside: avoid;
}
.nd-statement__body p:first-child::first-letter {
  font-weight: 900;
  color: var(--color-amber);
  font-size: 1.15em;
}
.nd-statement__body p a {
  color: var(--color-amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nd-statement__body p strong {
  color: var(--color-white);
  font-weight: 700;
}
.nd-statement__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* ---------- SECTION 03 : TOOLKIT (hero image + cards méthodes) ---------- */
.nd-toolkit {
  background: var(--color-cream);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  border-top: 1px solid var(--color-line);
}
.nd-toolkit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-amber) 0 14px,
    var(--color-ink) 14px 22px
  );
  opacity: 0.35;
}
.nd-toolkit__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 60rem;
}
.nd-toolkit__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink);
}
.nd-toolkit__num {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-hornet);
  line-height: 1;
}
.nd-toolkit__eyebrow-divider {
  width: 1px;
  height: 1.5rem;
  background: var(--color-line);
}
.nd-toolkit__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.024em;
  line-height: 1.05;
  color: var(--color-ink);
}
.nd-toolkit__title .accent {
  color: var(--color-hornet);
}
.nd-toolkit__media {
  position: relative;
  margin: 0 0 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-ink);
  box-shadow: 0 30px 70px -30px rgba(15, 23, 42, 0.35);
}
.nd-toolkit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.nd-toolkit__media:hover img {
  transform: scale(1.04);
}
.nd-toolkit__media-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(15, 23, 42, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 0.55rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.nd-toolkit__media-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
}
.nd-toolkit__body {
  max-width: 62rem;
  column-gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .nd-toolkit__body {
    column-count: 2;
  }
}
.nd-toolkit__body p {
  color: var(--color-ink-2);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0 0 1.25rem;
  break-inside: avoid;
}
@media (min-width: 768px) {
  .nd-toolkit__body p {
    font-size: 1.0625rem;
  }
}
.nd-toolkit__body p a {
  color: var(--color-hornet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nd-toolkit__body p strong {
  color: var(--color-ink);
  font-weight: 700;
}

.nd-toolkit__tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .nd-toolkit__tools {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nd-toolkit__tool {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.nd-toolkit__tool:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(15, 23, 42, 0.15);
  border-color: var(--color-hornet);
}
.nd-toolkit__tool-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-slate);
}
.nd-toolkit__tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-hornet);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nd-toolkit__tool-icon svg {
  width: 22px;
  height: 22px;
}
.nd-toolkit__tool-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  line-height: 1.2;
  margin: 0.25rem 0 0;
}
.nd-toolkit__tool-text {
  color: var(--color-slate);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}
.nd-toolkit__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   PAGE À PROPOS — composants dédiés
   ════════════════════════════════════════════════════════════════════════════ */

/* ---------- SECTION 01 : SERVICES (cream, image droite + liste de prix) ---------- */
.ap-services {
  background: var(--color-cream);
  padding-block: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.ap-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .ap-services__grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
  }
}
.ap-services__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ap-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-hornet);
}
.ap-services__num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--color-ink);
  background: var(--color-amber);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}
.ap-services__line {
  width: 2.5rem;
  height: 2px;
  background: var(--color-hornet);
}
.ap-services__title {
  font-size: clamp(1.85rem, 2.8vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--color-ink);
}
.ap-services__title .accent {
  color: var(--color-hornet);
}
.ap-services__text {
  color: var(--color-slate);
  line-height: 1.7;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .ap-services__text {
    font-size: 1.0625rem;
  }
}
.ap-services__text a {
  color: var(--color-hornet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ap-services__text strong {
  color: var(--color-ink);
  font-weight: 700;
}
.ap-services__pricelist {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-line);
}
.ap-services__pricelist li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
}
.ap-services__price-name {
  font-size: 0.95rem;
  color: var(--color-ink);
  font-weight: 500;
  line-height: 1.45;
}
.ap-services__price-value {
  font-size: 0.875rem;
  color: var(--color-slate);
  white-space: nowrap;
  font-weight: 500;
}
.ap-services__price-value strong {
  color: var(--color-hornet);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.ap-services__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-ink);
}
@media (min-width: 960px) {
  .ap-services__media {
    aspect-ratio: 4 / 5;
    margin-right: calc(-1 * max((100vw - var(--container-max)) / 2, 1.25rem));
    border-radius: 24px 0 0 24px;
  }
}
.ap-services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.ap-services__media:hover img {
  transform: scale(1.04);
}

/* ---------- SECTION 02 : ETHOS (dark, split typographique titre/body) ---------- */
.ap-ethos {
  background: var(--color-ink);
  color: var(--color-white);
  padding-block: clamp(5rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
}
.ap-ethos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(250, 204, 21, 0.4) 50%,
    transparent 100%
  );
}
.ap-ethos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 960px) {
  .ap-ethos__grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
  }
}
.ap-ethos__title {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--color-white);
  margin: 0;
}
.ap-ethos__title .accent {
  color: var(--color-amber);
  display: block;
}
.ap-ethos__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  padding-left: 0;
}
@media (min-width: 960px) {
  .ap-ethos__body {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.ap-ethos__body p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 768px) {
  .ap-ethos__body p {
    font-size: 1.0625rem;
  }
}
.ap-ethos__body p a {
  color: var(--color-amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ap-ethos__body p strong {
  color: var(--color-white);
  font-weight: 700;
}

/* ---------- SECTION 03 : VISION (cream, encart titre + body 2 colonnes) ---------- */
.ap-vision {
  background: var(--color-cream);
  padding-block: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.ap-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.ap-vision .container {
  position: relative;
}
.ap-vision__head {
  position: relative;
  max-width: 48rem;
  margin-bottom: 2.5rem;
}
.ap-vision__corner {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-amber);
  border-radius: 4px 0 0 0;
  z-index: 0;
}
.ap-vision__card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  padding: 2rem 2.25rem;
  box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.18);
  z-index: 1;
}
.ap-vision__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-hornet);
  margin-bottom: 0.85rem;
}
.ap-vision__eyebrow-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--color-ink);
}
.ap-vision__title {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--color-ink);
  margin: 0;
}
.ap-vision__title .accent {
  color: var(--color-hornet);
}
.ap-vision__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 880px) {
  .ap-vision__body {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.ap-vision__body p {
  color: var(--color-slate);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 768px) {
  .ap-vision__body p {
    font-size: 1.0625rem;
  }
}
.ap-vision__body p strong {
  color: var(--color-ink);
  font-weight: 700;
}
.ap-vision__body p a {
  color: var(--color-hornet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ---------- CTA FINAL : contact (clair, sobre) ---------- */
.ap-contact-cta {
  background: var(--color-white);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.ap-contact-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 880px) {
  .ap-contact-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.ap-contact-cta__title {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--color-ink);
  margin: 0;
  max-width: 40rem;
}
.ap-contact-cta__title .accent {
  color: var(--color-hornet);
}

/* ════════════════════════════════════════════════════════════════════════════
   PAGE CONTACT — composants dédiés
   ════════════════════════════════════════════════════════════════════════════ */

/* ---------- SECTION : 3 cards d'info (horaires / adresse / CTA) ---------- */
.contact-cards {
  background: var(--color-cream);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.contact-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .contact-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.contact-card {
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  min-height: 18rem;
  justify-content: center;
}
.contact-card--light {
  background: var(--color-white);
  color: var(--color-ink);
  border: 1px solid var(--color-line);
}
.contact-card--dark {
  background: var(--color-ink);
  color: var(--color-white);
}
.contact-card--cta {
  background: #F1F2F4;
  color: var(--color-ink);
}
.contact-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}
.contact-card__icon-square {
  width: 64px;
  height: 64px;
  background: var(--color-ink);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 8px 18px -10px rgba(15, 23, 42, 0.45);
}
.contact-card__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.contact-card__eyebrow-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--color-amber);
  flex-shrink: 0;
}
.contact-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  color: var(--color-slate);
  font-size: 0.95rem;
}
.contact-card--dark .contact-card__row {
  color: rgba(255, 255, 255, 0.85);
}
.contact-card__row strong {
  color: var(--color-ink);
  font-weight: 700;
}
.contact-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.contact-card--light .contact-card__text,
.contact-card--cta .contact-card__text {
  color: var(--color-slate);
}
.contact-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.018em;
  color: var(--color-ink);
  margin: 0;
}
.contact-card__cta {
  width: 100%;
  justify-content: center;
}

/* ---------- SECTION : main split (texte gauche + form droite) ---------- */
.contact-main {
  position: relative;
  background: var(--color-cream);
  overflow: hidden;
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .contact-main__grid {
    grid-template-columns: 1.05fr 1fr;
  }
}
.contact-main__content {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: var(--color-cream);
}
@media (min-width: 768px) {
  .contact-main__content {
    padding-inline: clamp(2rem, 6vw, 5rem);
  }
}
.contact-main__chip {
  display: inline-block;
  background: var(--color-amber);
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.contact-main__title {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--color-ink);
  margin: 0 0 1.5rem;
  max-width: 32rem;
}
.contact-main__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--color-slate);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 36rem;
}
@media (min-width: 768px) {
  .contact-main__body {
    font-size: 1.0625rem;
  }
}
.contact-main__body p {
  margin: 0;
}
.contact-main__body strong {
  color: var(--color-ink);
  font-weight: 700;
}

/* ---------- FORM (carte sombre à droite) ---------- */
.contact-main__form {
  background: var(--color-ink);
  color: var(--color-white);
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .contact-main__form {
    padding-inline: clamp(2rem, 5vw, 4rem);
  }
}
.contact-main__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 36px;
  height: 36px;
  background: var(--color-amber);
  border-radius: 0 0 4px 0;
}
.contact-main__form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.contact-main__form .contact-form__field {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 0.95rem 1.05rem;
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 6.5rem;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-amber);
  background: rgba(255, 255, 255, 0.04);
}
.contact-form__radios {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contact-form__radios legend {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.contact-form__radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
}
.contact-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}
.contact-form__radio input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-amber);
  cursor: pointer;
}
.contact-form__submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.contact-form__legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0.5rem 0 0;
}
.contact-form__legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.contact-form__legal a:hover {
  color: var(--color-amber);
}
