:root {
  --paper: #f4f2ee;
  --paper-2: #eceae4;
  --ink: #1a1917;
  --ink-soft: #55524c;
  --line: #d9d5cd;
  --near-black: #131210;
  --accent: #2f6fed;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-anchor: none;
}

/* ===== Badge zone ===== */
.area-badge {
  position: fixed;
  top: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  background: #ffffff;
  color: #1a1917;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 1px 2px rgba(0, 0, 0, 0.08);
}
.area-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f6fed;
  box-shadow: 0 0 0 0 rgba(47, 111, 237, 0.5);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 111, 237, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(47, 111, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 111, 237, 0); }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.4rem, 4vw, 3rem);
  mix-blend-mode: difference;
  color: #fff;
  transition: opacity 0.6s ease;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.nav a:hover { opacity: 1; }

/* ===== Scroll stage (séquence) ===== */
.scrollstage {
  position: relative;
  height: 600vh;           /* longueur du scroll = lenteur du déroulé */
  background: #000;
}
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}
#seq {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Vignette + grain pour le grain argentique */
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 42%, transparent 55%, rgba(0,0,0,0.55) 100%);
}
.grain {
  position: absolute;
  inset: -50%;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); }
  100% { transform: translate(-4%, 3%); }
}

/* ===== Hero (première vue, avant scroll) ===== */
.hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8vw;
  pointer-events: none;
  background: radial-gradient(70% 55% at 50% 46%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.32) 48%, transparent 80%);
  will-change: opacity;
}
.hero__title {
  max-width: 16ch;
  text-wrap: balance;
  color: #fbfaf8;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 3px 26px rgba(0,0,0,0.62),
    0 0 70px rgba(0,0,0,0.5);
}
.hero__sub {
  margin-top: 1.4rem;
  max-width: 40ch;
  color: rgba(247, 245, 241, 0.9);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 18px rgba(0,0,0,0.6);
}

/* ===== Captions ===== */
/* Halo sombre diffus derrière le texte (piloté par JS, suit le message actif) */
.caption-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(60% 42% at 50% 50%, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.40) 45%, transparent 78%);
  transition: opacity 0.15s linear;
}
.captions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8vw;
  pointer-events: none;
}
.cap {
  position: absolute;
  max-width: 15ch;
  text-align: center;
  color: #fbfaf8;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.6vw, 4.3rem);
  line-height: 1.12;
  letter-spacing: 0.004em;
  opacity: 0;
  transform: translateY(14px);
  text-shadow:
    0 1px 3px rgba(0,0,0,0.55),
    0 2px 22px rgba(0,0,0,0.65),
    0 0 60px rgba(0,0,0,0.55);
  will-change: opacity, transform;
}

/* ===== Loader + hint ===== */
.loader {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  border-top-color: rgba(255,255,255,0.9);
  animation: spin 0.9s linear infinite;
  transition: opacity 0.5s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 3.2rem;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: floaty 2.4s ease-in-out infinite;
  transition: opacity 0.5s ease;
}
.scroll-hint.hidden { opacity: 0; animation: none; }
@keyframes floaty {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.75; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 0.35; }
}

/* ===== Révélation marque ===== */
.reveal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10vh clamp(1.4rem, 6vw, 5rem);
  background: var(--paper);
}
.reveal__kicker {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.reveal__kicker::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  margin: 1.1rem auto 0;
}
.reveal__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.reveal__sub {
  max-width: 44ch;
  margin: 2rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}
.reveal__cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2.4rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease;
}
.reveal__cta:hover { background: var(--ink); color: var(--paper); }
.reveal__title { text-wrap: balance; max-width: 20ch; }

/* Bloc "Vous gardez la main, nous exécutons" */
.lead { max-width: 640px; margin: clamp(2.6rem, 5vh, 4rem) auto 0; width: 100%; }
.lead__claim {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  letter-spacing: 0.005em;
  color: var(--ink);
}
.lead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--near-black);
  color: #f4f2ee;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.lead__col { padding: 1.7rem 1.8rem; }
.lead__col + .lead__col { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.lead__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.55);
  margin-bottom: 0.8rem;
}
.lead__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(47, 111, 237, 0.7);
}
.lead__col--you .lead__tag { color: #ffffff; }
.lead__col p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(244, 242, 238, 0.82);
}

@media (max-width: 560px) {
  .lead__grid { grid-template-columns: 1fr; }
  .lead__col + .lead__col { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
}

/* ===== Éléments de section communs ===== */
.kicker {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
}
.kicker::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  margin: 1.1rem auto 0;
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.018em;
  text-align: center;
  text-wrap: balance;
  margin-top: 1.5rem;
}

/* ===== 1. Services ===== */
.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 11rem) clamp(1.4rem, 6vw, 4rem) clamp(4rem, 8vh, 7rem);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  margin-top: clamp(3rem, 6vh, 5rem);
}
.service {
  text-align: center;
  padding: 0 0.5rem;
}
.service__num {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  opacity: 0.6;
}
.service__icon {
  width: 68px;
  height: 68px;
  margin: 1.2rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-radius: 50%;
  color: #f4f2ee;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}
.service__icon svg { width: 30px; height: 30px; }
.service h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}
.service p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 30ch;
  margin: 0 auto;
}
.proof {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  justify-content: center;
  max-width: 640px;
  margin: clamp(3.5rem, 7vh, 6rem) auto 0;
  padding: 1.6rem 2rem;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}
.proof__icon { width: 32px; height: 32px; flex: none; color: #ffffff; }
.proof p { font-size: 1.02rem; line-height: 1.55; color: rgba(244, 242, 238, 0.82); }
.proof strong { color: #ffffff; font-weight: 500; }

/* ===== 1 bis. Forfaits ===== */
.forfaits {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 11rem) clamp(1.4rem, 6vw, 4rem) clamp(4rem, 8vh, 7rem);
}
.forfaits__sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 1.6rem auto 0;
  max-width: 46ch;
}
.pricing { max-width: 720px; margin: 0 auto; }

.plan-block__label {
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: clamp(2.4rem, 5vh, 3.4rem) 0 1rem;
}
.plan-block__label--offer { margin-top: clamp(3rem, 6vh, 4.2rem); color: var(--ink); }
.plan-block__badge {
  display: inline-block;
  margin-left: 0.55em;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.92em;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.plan-block__note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin: -0.4rem 0 1.1rem;
}
.plan__was {
  font-size: 0.55em;
  font-weight: 400;
  opacity: 0.5;
  margin-right: 0.45em;
}
.pricing__scroll {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
}
.pricing__table { width: 100%; min-width: 440px; border-collapse: collapse; }

.pricing__corner,
.plan { background: var(--near-black); }
.plan {
  padding: 1.5rem 1rem 1.4rem;
  text-align: center;
  vertical-align: bottom;
  color: #fff;
}
.plan__name {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.7);
}
.plan__price {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
}
.plan__price small {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.7rem;
  color: rgba(244, 242, 238, 0.6);
  margin-left: 0.3em;
}

.pricing__table tbody th,
.pricing__table tbody td { border-top: 1px solid var(--line); padding: 1.1rem 1rem; }
.pricing__table tbody th[scope="row"] {
  text-align: left;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding-left: 1.3rem;
}
.pricing__table tbody th sup { color: var(--accent); font-size: 0.68em; font-weight: 700; }
.pricing__table tbody td { text-align: center; }

.ic {
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.ic svg { width: 17px; height: 17px; }
.ic--yes { background: #e2f0e8; color: #2f8f5b; }
.ic--no { color: #b7b2a8; }
.ic__note { display: block; font-size: 0.68rem; color: var(--ink-soft); margin-top: 0.35rem; }
.pricing__freq { font-family: var(--sans); font-weight: 500; font-size: 0.95rem; color: var(--ink); }

.pricing__table tfoot td { border-top: 1px solid var(--line); padding: 1.2rem 1rem 1.5rem; text-align: center; }
.plan__cta {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: background 0.3s ease, transform 0.2s ease;
}
.plan__cta:hover { background: #000; transform: translateY(-1px); }

.pricing__notes {
  list-style: none;
  margin: 1.5rem auto 0;
  max-width: 640px;
  padding: 0;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pricing__notes li { margin-top: 0.5rem; }
.pricing__notes sup { color: var(--accent); font-weight: 700; margin-right: 0.15em; }

/* Item à la carte (nettoyage intégral) */
.addon { max-width: 720px; margin: 1.8rem auto 0; }
.addon__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.addon__card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.7rem 1.9rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.addon__body { flex: 1; min-width: 0; }
.addon__tag {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.addon__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.addon__desc {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}
.addon__price { text-align: right; flex: none; }
.addon__amount {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.addon__unit { display: block; font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.2rem; }

@media (max-width: 560px) {
  .addon__card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .addon__price { text-align: left; }
}

/* ===== 2. Zone / vérificateur ===== */
.zone {
  position: relative;
  background: var(--near-black);
  color: #f4f2ee;
  padding: clamp(6rem, 12vh, 11rem) clamp(1.4rem, 6vw, 4rem);
}
.zone__flag {
  position: absolute;
  top: clamp(1.6rem, 4vh, 2.6rem);
  left: clamp(1.4rem, 6vw, 4rem);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(244, 242, 238, 0.62);
}
.zone__flag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(47, 111, 237, 0.85);
}
.zone .kicker { color: rgba(244, 242, 238, 0.55); }
.zone .section-title { color: #faf9f7; }
.zone__sub {
  text-align: center;
  color: rgba(244, 242, 238, 0.72);
  font-size: 1.05rem;
  margin: 1.6rem auto 0;
  max-width: 46ch;
}
.zone .checker__placeholder { color: rgba(244, 242, 238, 0.9); opacity: 1; }
.zone .checker__field { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35); }
.checker {
  max-width: 620px;
  margin: clamp(2.4rem, 5vh, 4rem) auto 0;
}
.checker__field {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease;
}
.checker__field:focus-within { border-color: var(--ink); }
.checker__field svg { width: 20px; height: 20px; color: var(--ink-soft); flex: none; }
.checker__field input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  padding: 0.7rem 0;
  color: var(--ink);
}
.checker__field input:focus { outline: none; }
.checker__results { margin-top: 1rem; min-height: 2rem; }
.checker__placeholder {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  opacity: 0.7;
  padding: 1rem 0;
}
.result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.result:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25); }
.result__hint {
  flex: none;
  font-size: 0.72rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  white-space: nowrap;
}
.result__hint svg { width: 15px; height: 15px; }
.result__body { flex: 1; min-width: 0; }
.result__name { font-size: 1rem; font-weight: 500; color: var(--ink); }
.result__meta { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.15rem; }
.result__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  flex: none;
}
.result__status.on { background: #e2f0e8; color: #2f8f5b; }
.result__status.off { background: #efe9e9; color: #9a6a6a; }
.result__status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.result__cta {
  flex: none;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.result__cta:hover { background: var(--ink); color: var(--paper); }
.result__cta.wa { border-color: #2f8f5b; color: #2f8f5b; }
.result__cta.wa:hover { background: #2f8f5b; color: #fff; }
.checker__more { text-align: center; color: var(--ink-soft); font-size: 0.82rem; padding: 0.4rem 0; }

/* ===== 3. Contact ===== */
.contact {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 11rem) clamp(1.4rem, 6vw, 4rem);
  text-align: center;
}
.contact__sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 1.6rem auto 0;
  max-width: 44ch;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: rgb(37, 211, 102);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.3s ease;
}
.wa-btn svg { width: 22px; height: 22px; }
.wa-btn:hover { background: rgb(30, 185, 88); transform: translateY(-1px); }

@media (max-width: 720px) {
  .services__grid { grid-template-columns: 1fr; gap: 3rem; }
  .proof { flex-direction: column; text-align: center; }
  .result { flex-wrap: wrap; }
  .result__cta { width: 100%; text-align: center; }
}

/* ===== Demande hors zone (aucun résultat) ===== */
.linklike {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--accent);
  font: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.linklike:hover { color: #5a8bff; }

.request {
  margin-top: 0.9rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
  text-align: left;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}
.request__head { display: flex; align-items: center; justify-content: space-between; }
.request__title { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.request__close {
  border: 0; background: none; cursor: pointer; font-size: 1.3rem; line-height: 1;
  color: var(--ink-soft); padding: 0 0.2rem;
}
.request__close:hover { color: var(--ink); }
.request__intro { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; margin: 0.5rem 0 1.1rem; }
.request__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.rfield { display: flex; flex-direction: column; gap: 0.35rem; }
.rfield label { font-size: 0.76rem; font-weight: 500; color: var(--ink-soft); }
.rfield label .opt { color: #a8a49b; font-weight: 400; }
.rfield input {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 300;
  padding: 0.7rem 0.8rem; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink); width: 100%;
}
.rfield input:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.request__err { color: #b23b3b; font-size: 0.82rem; margin-top: 0.7rem; }
.request__submit {
  margin-top: 1.1rem; width: 100%; padding: 0.95rem; border: 0; border-radius: 999px;
  background: var(--accent); color: #fff; font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s ease;
}
.request__submit:hover { background: #2559c9; }
.request__done {
  margin-top: 1rem; text-align: center; color: #2f8f5b; font-size: 0.92rem; font-weight: 500;
}

@media (max-width: 560px) {
  .request__grid { grid-template-columns: 1fr; }
}

/* ===== Sélection d'un cimetière + carte en ligne ===== */
.result__go {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}
.result__go svg { width: 15px; height: 15px; }

.selection { margin-top: 0.4rem; }
.selection__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: none;
  border: 0;
  cursor: pointer;
  color: rgba(244, 242, 238, 0.75);
  font-family: var(--sans);
  font-size: 0.82rem;
  padding: 0.3rem 0;
  margin-bottom: 0.9rem;
}
.selection__back:hover { color: #fff; }
.selection__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}
.selection__info { flex: 1; min-width: 170px; }
.selection__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.selection__meta { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.15rem; }

.cta-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(47, 111, 237, 0.42);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cta-order:hover { background: #2559c9; transform: translateY(-1px); box-shadow: 0 14px 30px rgba(47, 111, 237, 0.5); }

.selection__mapwrap {
  position: relative;
  margin-top: 0.9rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}
.selection__map { height: min(440px, 60vh); background: #e8e6e0; }
.selection__loading {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  color: var(--ink-soft);
  pointer-events: none;
}
.leaflet-container { font-family: var(--sans); }

@media (max-width: 560px) {
  .selection__bar { justify-content: space-between; }
  .cta-order { width: 100%; justify-content: center; }
}

/* ===== Footer ===== */
.footer {
  padding: 4rem clamp(1.4rem, 6vw, 5rem);
  background: var(--near-black);
  display: flex;
  gap: 0.5ch;
  flex-wrap: wrap;
  color: rgba(244, 242, 238, 0.62);
  font-size: 0.9rem;
}
.footer span:first-child {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

@media (max-width: 640px) {
  .cap { max-width: 12ch; }
}
