/* =========================================================
   Désinfection Nuisibles 13 — Marseille Artisan
   ========================================================= */

:root {
  /* Palette — sun-bleached Marseille artisan */
  --cream:        #F2EBDC;   /* base background, oat */
  --cream-warm:   #ECE2CD;   /* slightly deeper paper */
  --cream-deep:   #E2D5B8;   /* card border, warm */
  --bone:         #FAF6EC;   /* highlights, lifted surface */

  --ink:          #1B2820;   /* deep forest green ink */
  --ink-soft:     #314538;
  --ink-muted:    #5D6A60;

  --terra:        #C2542B;   /* terracotta — primary CTA */
  --terra-deep:   #9F3F1A;   /* terracotta hover/pressed */
  --terra-soft:   #E89172;

  --brass:        #A88742;   /* brass / ochre */
  --brass-deep:   #6E5524;

  --med-blue:     #1E4D6B;   /* mediterranean blue */

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Manrope", "Helvetica Neue", sans-serif;
  --font-mono:    "DM Mono", "SF Mono", monospace;

  /* Layout */
  --container:    1240px;
  --gutter:       clamp(20px, 4vw, 40px);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;

  /* Motion */
  --ease:         cubic-bezier(.2, .7, .15, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;

  /* Subtle paper grain overlay across whole site */
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.1   0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
}

/* All actual content sits above grain */
header, section, footer, .mobile-bar, .utility-bar { position: relative; z-index: 2; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--terra-deep); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--terra); color: var(--bone); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 50, "opsz" 144;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

h1 em, h2 em, h3 em, .hero__line-b em {
  font-style: italic;
  font-weight: 500;
  color: var(--terra-deep);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 4px rgba(194, 84, 43, 0.15);
}
.eyebrow--inverted { color: rgba(250, 246, 236, 0.8); }
.eyebrow--inverted .eyebrow__dot { box-shadow: 0 0 0 4px rgba(232, 145, 114, 0.18); }

.cert-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px 2px;
  border: 1px solid var(--brass);
  border-radius: 999px;
  color: var(--brass-deep);
  background: rgba(168, 135, 66, 0.08);
  vertical-align: 2px;
  white-space: nowrap;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* =========================================================
   Utility bar
   ========================================================= */
.utility-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(250, 246, 236, 0.08);
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px var(--gutter);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.utility-bar__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6FCB7A;
  box-shadow: 0 0 0 0 rgba(111, 203, 122, 0.6);
  animation: pulse 1.6s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(111, 203, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 203, 122, 0); }
}
.utility-bar__sep { opacity: 0.4; }
.utility-bar__text--quiet { opacity: 0.7; }

@media (max-width: 720px) {
  .utility-bar__sep, .utility-bar__text--quiet { display: none; }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(27, 40, 32, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand__mark {
  color: var(--ink);
  flex-shrink: 0;
}
.brand__words {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}
.brand__top {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 60, "opsz" 36;
}
.brand__bottom {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--terra-deep);
  font-variation-settings: "SOFT" 100;
}
.brand__tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  border-left: 1px solid rgba(27, 40, 32, 0.18);
  padding-left: 8px;
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--terra);
  transition: right 0.3s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { right: 0; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.header-cta:hover {
  background: var(--terra);
  color: var(--bone);
  transform: translateY(-1px);
}
.header-cta__icon {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.12);
}
.header-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header-cta__label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.header-cta__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .site-nav { display: none; }
  .brand__tagline { display: none; }
}
@media (max-width: 560px) {
  .header-cta__text { display: none; }
  .header-cta { padding: 8px; }
  .header-cta__icon { width: 24px; height: 24px; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 96px) 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(168, 135, 66, 0.10), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(194, 84, 43, 0.06), transparent 50%),
    var(--cream);
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 6px,
      rgba(27, 40, 32, 0.015) 6px 7px
    );
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  position: relative;
}

.hero__copy { padding-top: clamp(8px, 2vw, 24px); }

.hero__title {
  font-size: clamp(40px, 6.4vw, 86px);
  margin: 24px 0 28px;
  font-weight: 500;
  font-variation-settings: "SOFT" 60, "opsz" 144;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.hero__line-a {
  display: block;
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.7em;
  margin-bottom: 6px;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero__line-b {
  display: block;
}

.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__lede strong { color: var(--ink); font-weight: 700; }

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terra);
  color: var(--bone);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 8px 24px -8px rgba(159, 63, 26, 0.5);
}
.btn--primary:hover {
  background: var(--terra-deep);
  color: var(--bone);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 14px 32px -8px rgba(159, 63, 26, 0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(27, 40, 32, 0.2);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone);
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero__bullets svg {
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Hero form card — host for the embedded Moonform */
.hero__form-card {
  position: sticky;
  top: 24px;
  z-index: 1;
}

/* Decorative wax seal floating on the Moonform card */
.hero__form-seal {
  position: absolute;
  top: -28px;
  right: 22px;
  width: 88px;
  height: 88px;
  color: var(--brass-deep);
  background: var(--bone);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 6px 16px -6px rgba(27, 40, 32, 0.2);
  transform: rotate(-8deg);
  transition: transform 0.6s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.hero__form-card:hover .hero__form-seal { transform: rotate(0deg); }
.hero__form-seal svg { width: 100%; height: 100%; }

/* Wrap the Moonform with the same elevated paper feel as the rest of the page */
.hero__form-card #moonform-root {
  filter: drop-shadow(0 30px 60px rgba(27, 40, 32, 0.18));
}

@media (max-width: 960px) {
  .hero__form-seal { width: 76px; height: 76px; top: -22px; right: 16px; }
}

/* =========================================================
   moonform-lite (the simple inline form)
   ========================================================= */
.moonform-lite {
  display: grid;
  gap: 14px;
}
.moonform-lite__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.moonform-lite__field {
  display: block;
  position: relative;
}
.moonform-lite__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.moonform-lite__optional {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--ink-muted);
  opacity: 0.8;
}

.moonform-lite input[type="text"],
.moonform-lite input[type="tel"],
.moonform-lite input[type="email"],
.moonform-lite textarea,
.moonform-lite select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(27, 40, 32, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.moonform-lite textarea {
  resize: vertical;
  min-height: 70px;
  font-family: var(--font-body);
}
.moonform-lite input::placeholder,
.moonform-lite textarea::placeholder {
  color: rgba(27, 40, 32, 0.35);
}
.moonform-lite input:hover,
.moonform-lite textarea:hover,
.moonform-lite select:hover {
  border-color: rgba(27, 40, 32, 0.32);
}
.moonform-lite input:focus,
.moonform-lite textarea:focus,
.moonform-lite select:focus {
  border-color: var(--terra);
  background: var(--bone);
  box-shadow: 0 0 0 3px rgba(194, 84, 43, 0.15);
}
.moonform-lite input:user-invalid,
.moonform-lite select:user-invalid,
.moonform-lite textarea:user-invalid {
  border-color: rgba(194, 84, 43, 0.55);
}

.moonform-lite__select {
  position: relative;
}
.moonform-lite__select select { padding-right: 40px; cursor: pointer; }
.moonform-lite__select svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-muted);
  pointer-events: none;
}

/* Chip radio buttons (used in bottom form) */
.moonform-lite__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.chip span {
  display: inline-block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  background: var(--cream);
  color: var(--ink-soft);
  border: 1.5px solid rgba(27, 40, 32, 0.15);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.chip:hover span {
  border-color: rgba(27, 40, 32, 0.35);
  color: var(--ink);
}
.chip input:checked + span {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(194, 84, 43, 0.25);
}

.moonform-lite__submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding: 16px 22px;
  background: var(--terra);
  color: var(--bone);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s var(--ease);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 8px 24px -8px rgba(159, 63, 26, 0.45);
}
.moonform-lite__submit:hover {
  background: var(--terra-deep);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 14px 30px -8px rgba(159, 63, 26, 0.55);
}
.moonform-lite__submit--big { padding: 20px 24px; font-size: 16px; }

.moonform-lite__legal {
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}

/* Form success state */
.form-card__success {
  text-align: center;
  padding: 24px 8px;
}
.form-card__success-mark {
  color: #5A8C5C;
  margin: 0 auto 16px;
  width: 60px;
}
.form-card__success h3 {
  font-size: 26px;
  margin-bottom: 6px;
}
.form-card__success p { color: var(--ink-soft); }
.form-card__success a { color: var(--terra-deep); border-bottom: 1px solid currentColor; }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form-card { position: static; margin-top: 16px; }
  .form-card__seal { width: 76px; height: 76px; top: -22px; right: 16px; }
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust-strip {
  background: var(--ink);
  color: var(--bone);
  padding: 24px 0;
  border-top: 1px solid rgba(168, 135, 66, 0.18);
  border-bottom: 1px solid rgba(168, 135, 66, 0.18);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.trust-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(250, 246, 236, 0.12);
}
.trust-strip__item svg { color: var(--brass); flex-shrink: 0; }
.trust-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  font-variation-settings: "SOFT" 50;
  letter-spacing: -0.01em;
}
.trust-strip__item span {
  font-size: 13px;
  color: rgba(250, 246, 236, 0.65);
  letter-spacing: 0.01em;
}

@media (max-width: 880px) {
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .trust-strip__item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
  .trust-strip__inner { grid-template-columns: 1fr; gap: 16px; }
  .trust-strip__item::after { display: none; }
}

/* =========================================================
   Section heads (shared)
   ========================================================= */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 60px);
  max-width: 1000px;
}
.section-head__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  color: var(--brass);
  line-height: 0.85;
  font-variation-settings: "SOFT" 100;
  border-top: 1px solid rgba(168, 135, 66, 0.4);
  padding-top: 6px;
}
.section-head__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-head__title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 60;
}
.section-head__sub {
  margin-top: 16px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.6;
}

.section-head--light .section-head__num { color: rgba(250, 246, 236, 0.4); border-top-color: rgba(250, 246, 236, 0.2); }
.section-head--light .section-head__kicker { color: var(--terra-soft); }
.section-head--light .section-head__title { color: var(--bone); }
.section-head--light .section-head__title em { color: var(--terra-soft); }

/* =========================================================
   Prestations
   ========================================================= */
.prestations { padding: clamp(60px, 8vw, 110px) 0; }

.pest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.pest-card {
  position: relative;
  background: var(--bone);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
  grid-column: span 4;
}
.pest-card--featured {
  grid-column: span 8;
  background: var(--ink);
  color: var(--bone);
  border-color: rgba(168, 135, 66, 0.3);
}
.pest-card--wide { grid-column: span 4; }
.pest-card--quote {
  grid-column: span 12;
  background: var(--cream-warm);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
}
.pest-card--quote .pest-card__quote-cta { margin-top: 0; padding-top: 0; border-top: 0; }

.pest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(27, 40, 32, 0.3);
  border-color: rgba(27, 40, 32, 0.25);
}
.pest-card--featured:hover { border-color: var(--brass); }

.pest-card__art {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
  color: var(--ink);
  opacity: 0.85;
  transition: transform 0.6s var(--ease);
}
.pest-card--featured .pest-card__art { color: var(--brass); opacity: 0.95; }
.pest-card:hover .pest-card__art {
  transform: translateX(8px) rotate(-2deg);
}
.pest-card__art svg { max-height: 100%; width: auto; }

.pest-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 4px;
}
.pest-card--featured .pest-card__num { color: rgba(250, 246, 236, 0.5); }

.pest-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 50;
}
.pest-card--featured h3 { color: var(--bone); }

.pest-card__desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.pest-card--featured .pest-card__desc { color: rgba(250, 246, 236, 0.75); }

.pest-card__prices {
  list-style: none;
  margin: 8px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed rgba(27, 40, 32, 0.15);
  display: grid;
  gap: 10px;
}
.pest-card--featured .pest-card__prices { border-top-color: rgba(168, 135, 66, 0.3); }

.pest-card__prices li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14.5px;
}
.pest-card__prices span { color: var(--ink-soft); }
.pest-card--featured .pest-card__prices span { color: rgba(250, 246, 236, 0.75); }
.pest-card__prices strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  font-variation-settings: "SOFT" 50;
  white-space: nowrap;
}
.pest-card--featured .pest-card__prices strong { color: var(--brass); }
.pest-card__price--accent strong { color: var(--terra-deep); }
.pest-card--featured .pest-card__price--accent strong { color: var(--terra-soft); }

.pest-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--bone);
  padding: 4px 10px;
  border-radius: 999px;
}

.pest-card__quote-mark {
  color: var(--terra);
  opacity: 0.9;
  margin-bottom: 4px;
}
.pest-card--quote blockquote {
  margin: 0;
}
.pest-card--quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  color: var(--ink);
  margin-bottom: 18px;
}
.pest-card--quote cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pest-card--quote cite span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.pest-card--quote cite em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.pest-card__quote-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(27, 40, 32, 0.18);
  font-size: 14px;
  color: var(--ink-soft);
}
.pest-card__quote-cta strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--terra-deep);
  font-variation-settings: "SOFT" 50;
}

.prestations__note {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-align: center;
}
.prestations__note em { color: var(--brass); font-style: normal; margin-right: 6px; }

/* Featured card uses horizontal layout to fill the wider space */
.pest-card--featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  padding: 32px 36px;
}
.pest-card--featured .pest-card__art {
  height: auto;
  max-height: 220px;
  align-self: stretch;
  margin-bottom: 0;
  align-items: flex-end;
}
.pest-card--featured .pest-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: center;
}
.pest-card--featured .pest-card__art svg { width: 100%; height: auto; max-height: 200px; }

@media (max-width: 1080px) {
  .pest-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pest-card,
  .pest-card--featured,
  .pest-card--wide { grid-column: span 1; }
  .pest-card--quote { grid-column: span 2; }
  .pest-card--featured { display: flex; flex-direction: column; padding: 28px 26px 26px; }
  .pest-card--featured .pest-card__art { height: 140px; align-items: center; max-height: none; }
  .pest-card--featured .pest-card__art svg { max-height: 100%; width: auto; }
}
@media (max-width: 720px) {
  .pest-grid { grid-template-columns: 1fr; }
  .pest-card--quote { grid-column: span 1; grid-template-columns: 1fr; gap: 20px; padding: 28px; }
}

/* =========================================================
   Method
   ========================================================= */
.method {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.method::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 135, 66, 0.06), transparent 60%);
  pointer-events: none;
}

.method-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(168, 135, 66, 0.25);
}
.method-step {
  position: relative;
  padding: 32px 28px 32px 0;
  border-right: 1px solid rgba(168, 135, 66, 0.25);
}
.method-step:last-child { border-right: 0; }

.method-step__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.method-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--brass);
  font-variation-settings: "SOFT" 100;
  margin-top: -4px;
}
.method-step h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--bone);
  font-weight: 500;
  font-variation-settings: "SOFT" 60;
}
.method-step p {
  font-size: 14.5px;
  color: rgba(250, 246, 236, 0.7);
  line-height: 1.55;
  padding-right: 18px;
}
.method-step em {
  font-style: italic;
  color: var(--terra-soft);
  font-family: var(--font-display);
}

@media (max-width: 880px) {
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-step:nth-child(2) { border-right: 0; }
  .method-step:nth-child(3),
  .method-step:nth-child(4) { border-top: 1px solid rgba(168, 135, 66, 0.25); }
}
@media (max-width: 560px) {
  .method-steps { grid-template-columns: 1fr; }
  .method-step { border-right: 0; border-top: 1px solid rgba(168, 135, 66, 0.25); padding: 24px 0; }
  .method-step:first-child { border-top: 0; }
}

/* =========================================================
   Story / About
   ========================================================= */
.story {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.story__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.story__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.story__portrait {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--cream-deep);
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(27, 40, 32, 0.3);
  transform: rotate(-1.5deg);
}
.story__portrait::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(27, 40, 32, 0.18);
  border-radius: 14px;
  pointer-events: none;
}
.story__stamp {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 110px;
  height: 110px;
  color: var(--terra-deep);
  background: var(--cream-warm);
  border-radius: 50%;
  padding: 6px;
  transform: rotate(12deg);
  box-shadow: 0 8px 20px -8px rgba(27, 40, 32, 0.3);
}

.story__copy { padding: 8px 0; }

.story__title {
  font-size: clamp(28px, 3.6vw, 48px);
  margin: 24px 0 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 60;
  line-height: 1.05;
}

.story__lede {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.story__copy p:not(.story__lede) {
  color: var(--ink-soft);
  line-height: 1.6;
}

.story__stats {
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(27, 40, 32, 0.12);
  padding-top: 24px;
}
.story__stats > div {
  padding: 0 20px 0 0;
}
.story__stats > div + div { border-left: 1px solid rgba(27, 40, 32, 0.12); padding-left: 20px; }
.story__stats dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  font-variation-settings: "SOFT" 50;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 6px;
}
.story__stats dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .story__inner { grid-template-columns: 1fr; }
  .story__media { justify-content: flex-start; }
  .story__portrait { max-width: 280px; }
}
@media (max-width: 520px) {
  .story__stats { grid-template-columns: 1fr; gap: 16px; padding-top: 20px; }
  .story__stats > div + div { border-left: 0; border-top: 1px solid rgba(27, 40, 32, 0.12); padding-left: 0; padding-top: 16px; }
}

/* =========================================================
   Zone
   ========================================================= */
.zone { padding: clamp(60px, 8vw, 110px) 0; background: var(--cream); }

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(27, 40, 32, 0.12);
  border-bottom: 1px solid rgba(27, 40, 32, 0.12);
}
.zone-grid__col {
  padding: 32px 32px 32px 0;
  border-right: 1px solid rgba(27, 40, 32, 0.12);
}
.zone-grid__col:last-child { border-right: 0; padding-right: 0; padding-left: 32px; }
.zone-grid__col:nth-child(2) { padding-left: 32px; }

.zone-grid__col--featured {
  background:
    radial-gradient(circle at 90% 0%, rgba(168, 135, 66, 0.1), transparent 70%),
    var(--cream-warm);
  margin: 0;
}

.zone-grid__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
  font-weight: 500;
}

.zone-grid__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
}
.zone-grid__list li {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 50;
  color: var(--ink);
  line-height: 1.3;
}
.zone-grid__list li sup {
  font-size: 0.6em;
  color: var(--brass);
  font-weight: 400;
  margin-right: 2px;
}

.zone-grid__cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(27, 40, 32, 0.2);
  font-size: 14px;
  color: var(--ink-soft);
}
.zone-grid__cta strong {
  font-family: var(--font-display);
  color: var(--terra-deep);
  font-variation-settings: "SOFT" 60;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 880px) {
  .zone-grid { grid-template-columns: 1fr; }
  .zone-grid__col {
    border-right: 0;
    border-bottom: 1px solid rgba(27, 40, 32, 0.12);
    padding: 24px 0;
  }
  .zone-grid__col:nth-child(2),
  .zone-grid__col:last-child { padding-left: 0; }
  .zone-grid__col:last-child { border-bottom: 0; padding: 24px 24px; }
}

/* =========================================================
   Final devis
   ========================================================= */
.final-devis {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 8vw, 110px) 0;
  overflow: hidden;
}
.final-devis__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(194, 84, 43, 0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(168, 135, 66, 0.10), transparent 50%);
}

.final-devis__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  position: relative;
}

.final-devis__inner--centered {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.final-devis__inner--centered .final-devis__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-devis__inner--centered .final-devis__title { text-align: center; max-width: 600px; }
.final-devis__inner--centered .final-devis__lede { text-align: center; max-width: 540px; }
.final-devis__inner--centered .final-devis__bullets {
  text-align: left;
  max-width: 460px;
}

.final-devis__title {
  font-size: clamp(32px, 4.4vw, 56px);
  margin: 24px 0 24px;
  color: var(--bone);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 60;
  line-height: 1.05;
}
.final-devis__title em { color: var(--terra-soft); }

.final-devis__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(250, 246, 236, 0.78);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 32px;
}

.final-devis__phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--terra);
  color: var(--bone);
  border-radius: var(--radius);
  margin-bottom: 28px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 12px 30px -12px rgba(194, 84, 43, 0.6);
}
.final-devis__phone:hover {
  background: var(--terra-deep);
  color: var(--bone);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(194, 84, 43, 0.7);
}
.final-devis__phone svg {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px;
  width: 38px; height: 38px;
  border-radius: 50%;
  box-sizing: content-box;
}
.final-devis__phone-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 2px;
}
.final-devis__phone-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "SOFT" 50;
  letter-spacing: -0.01em;
}

.final-devis__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: rgba(250, 246, 236, 0.85);
}
.final-devis__bullets li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.final-devis__bullets span { color: var(--brass); font-weight: 700; }

.final-devis__phone--big {
  padding: 22px 32px;
  margin-bottom: 32px;
}
.final-devis__phone--big .final-devis__phone-num {
  font-size: clamp(24px, 2.4vw, 30px);
}

.final-devis__or {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(250, 246, 236, 0.6);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.final-devis__or a {
  color: var(--terra-soft);
  border-bottom: 1px solid rgba(232, 145, 114, 0.4);
}
.final-devis__or a:hover {
  color: var(--bone);
  border-color: var(--bone);
}

@media (max-width: 880px) {
  .final-devis__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--cream-warm);
  color: var(--ink);
  padding-top: 60px;
  border-top: 1px solid var(--cream-deep);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.site-footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  font-weight: 500;
}
.site-footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.site-footer__col a:hover { color: var(--terra-deep); }

.site-footer__col--brand p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.55;
}

.brand--footer .brand__top { font-size: 17px; }
.brand--footer .brand__num { font-size: 17px; }

.site-footer__bottom {
  border-top: 1px solid rgba(27, 40, 32, 0.1);
  padding: 20px 0 24px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Mobile sticky bar
   ========================================================= */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(27, 40, 32, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  gap: 10px;
  border-top: 1px solid rgba(168, 135, 66, 0.25);
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.mobile-bar__btn--call {
  background: var(--terra);
  color: var(--bone);
  box-shadow: 0 4px 16px -4px rgba(194, 84, 43, 0.5);
}
.mobile-bar__btn--quote {
  background: var(--bone);
  color: var(--ink);
}

@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* =========================================================
   Page hero (sub-pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
  background:
    radial-gradient(circle at 88% 18%, rgba(168, 135, 66, 0.10), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(194, 84, 43, 0.05), transparent 50%),
    var(--cream);
  border-bottom: 1px solid rgba(27, 40, 32, 0.08);
}

.page-hero__inner {
  max-width: 980px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.page-hero__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 120px);
  color: var(--brass);
  line-height: 0.85;
  font-variation-settings: "SOFT" 100;
  border-top: 1px solid rgba(168, 135, 66, 0.4);
  padding-top: 6px;
  align-self: start;
}

.page-hero__title {
  font-size: clamp(36px, 5.6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 60;
  margin-top: 18px;
  line-height: 1.02;
}
.page-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--terra-deep);
  font-variation-settings: "SOFT" 100;
}

.page-hero__lede {
  margin-top: 24px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 640px;
}
.page-hero__lede strong { color: var(--ink); font-weight: 700; }

.page-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.page-hero__breadcrumb a:hover { color: var(--terra-deep); }
.page-hero__breadcrumb span { color: var(--brass); margin: 0 8px; }

@media (max-width: 720px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================
   Prestations — detailed catalogue
   ========================================================= */
.catalogue { padding: clamp(48px, 7vw, 96px) 0; }

.catalogue__intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding: 32px 0;
  border-top: 1px solid rgba(27, 40, 32, 0.12);
  border-bottom: 1px solid rgba(27, 40, 32, 0.12);
}
.catalogue__intro-item h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
  font-weight: 500;
}
.catalogue__intro-item p {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.catalogue__intro-item em {
  font-style: italic;
  color: var(--terra-deep);
  font-variation-settings: "SOFT" 100;
}
@media (max-width: 720px) {
  .catalogue__intro { grid-template-columns: 1fr; gap: 24px; padding: 28px 0; }
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid rgba(27, 40, 32, 0.12);
  align-items: start;
}
.service-block:first-of-type { border-top: 0; padding-top: 0; }

.service-block__media {
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bone);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.service-block__media-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.service-block__art {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin: 8px 0;
}
.service-block__art svg { max-height: 100%; width: auto; }
.service-block__media h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 60;
  line-height: 1.05;
}
.service-block__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-deep);
  border: 1px solid rgba(194, 84, 43, 0.4);
  border-radius: 999px;
  padding: 4px 10px;
  align-self: flex-start;
  background: rgba(194, 84, 43, 0.06);
}

.service-block__body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-block__body p strong { color: var(--ink); font-weight: 700; }

.service-block__included {
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.service-block__included li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.service-block__included li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.price-table {
  border-top: 1px solid rgba(27, 40, 32, 0.15);
  margin-top: 16px;
}
.price-table__group { padding: 18px 0; border-bottom: 1px solid rgba(27, 40, 32, 0.08); }
.price-table__group:last-child { border-bottom: 0; }
.price-table__group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.price-table__group-title::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--brass);
}
.price-table__rows {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.price-table__rows li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(27, 40, 32, 0.1);
  font-size: 15.5px;
}
.price-table__rows li:last-child { border-bottom: 0; }
.price-table__rows span { color: var(--ink-soft); }
.price-table__rows strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 50;
  color: var(--ink);
  font-size: 17px;
  white-space: nowrap;
}
.price-table__rows li.is-accent strong { color: var(--terra-deep); }
.price-table__rows li.is-recurring strong { color: var(--brass-deep); }

@media (max-width: 880px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block__media { position: static; }
  .service-block__included { grid-template-columns: 1fr; }
}

.catalogue__note {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  border-left: 3px solid var(--brass);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.catalogue__note strong { color: var(--ink); font-weight: 700; }

/* =========================================================
   Legal page (long-form text)
   ========================================================= */
.legal { padding: clamp(48px, 7vw, 96px) 0 clamp(80px, 10vw, 140px); }

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal__toc {
  background: var(--bone);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 48px;
}
.legal__toc-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
  font-weight: 500;
}
.legal__toc ol {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
  counter-reset: toc;
}
.legal__toc li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  counter-increment: toc;
}
.legal__toc li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brass);
  flex-shrink: 0;
}
.legal__toc a { color: var(--ink-soft); transition: color 0.2s var(--ease); }
.legal__toc a:hover { color: var(--terra-deep); }

.legal__section { margin-bottom: 40px; scroll-margin-top: 24px; }

.legal h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  font-variation-settings: "SOFT" 50;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(27, 40, 32, 0.12);
}
.legal h3 {
  font-size: 18px;
  font-weight: 600;
  font-variation-settings: "SOFT" 50;
  margin: 24px 0 8px;
  color: var(--ink);
}

.legal p, .legal li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal p { margin-bottom: 14px; }
.legal p strong { color: var(--ink); font-weight: 700; }
.legal a:not(.legal__toc a) {
  color: var(--terra-deep);
  border-bottom: 1px solid rgba(194, 84, 43, 0.4);
  transition: border-color 0.2s var(--ease);
}
.legal a:not(.legal__toc a):hover { border-color: var(--terra-deep); }

.legal__editor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(27, 40, 32, 0.12);
  border-bottom: 1px solid rgba(27, 40, 32, 0.12);
  margin: 16px 0 24px;
}
.legal__editor dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 8px;
}
.legal__editor dd {
  margin: 0;
  padding-bottom: 8px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}
.legal__editor dd a {
  color: var(--ink);
  border-bottom: 1px solid rgba(27, 40, 32, 0.25);
}
@media (max-width: 560px) {
  .legal__editor { grid-template-columns: 1fr; gap: 0; }
  .legal__editor dt { padding-top: 12px; }
}

.legal__updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(27, 40, 32, 0.12);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* =========================================================
   A11y / motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}
