/* Patt'Mobil — base styles partagés (refonte WP) */
@import url("./colors-and-type.css");

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

/* ─── Smooth scroll global pour les ancres internes ───
   Header sticky ≈ 76px desktop / 64px mobile : on offset le scroll-padding
   pour que la cible n'arrive pas sous le header. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font: var(--pm-text-body);
  color: var(--pm-fg);
  background: var(--pm-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── A11y : focus visible global (WCAG 2.4.7 / RGAA 10.7) ─── */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--pm-fox-hair);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Variante fond sombre : pêche sur Marine = 10.95:1 ≫ 3:1 */
.pm-header :focus-visible,
.pm-mobile-menu :focus-visible,
.pm-footer :focus-visible,
.pm-reassure :focus-visible,
.pm-section--navy :focus-visible,
.pm-app-section :focus-visible,
.pm-testimonials :focus-visible,
.pm-contact-cta :focus-visible,
.pm-cta-reserve :focus-visible,
.pm-single__hero :focus-visible,
.pm-archive__hero :focus-visible,
.pm-page__hero :focus-visible,
.pm-hero :focus-visible {
  outline-color: var(--pm-driver-skin);
}
/* Cas particulier : bouton primaire orange (outline orange invisible) → cream sur orange */
.pm-btn--primary:focus-visible,
.pm-sim__cta button:focus-visible,
.pm-contact-form-wrapper .wpcf7-submit:focus-visible {
  outline-color: var(--pm-polar-bear);
  outline-offset: 3px;
}

/* a11y : utilitaire standard WP — masque visuellement, garde accessible aux lecteurs d'écran */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  word-wrap: normal !important;
}

/* TOC: mobile-only collapsible is hidden on desktop */
.pm-toc-mobile { display: none; }
details.pm-toc-mobile[open] .pm-toc-mobile__chev { transform: rotate(180deg); }
.pm-toc-mobile__chev { transition: transform 160ms ease; }
.pm-toc-mobile summary::-webkit-details-marker { display: none; }

/* ─── Headers ─── */
.pm-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249,247,232,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pm-cream-300);
}
.pm-header__inner {
  max-width: none; margin: 0;
  display: flex; align-items: center;
  padding: 14px var(--pm-edge, 200px); gap: 40px;
}
.pm-header__inner > nav.pm-nav { margin-left: auto; }
.pm-logo { height: 48px; display: block; }
.pm-nav { display: flex; gap: 40px; align-items: center; }
.pm-nav__list {
  display: flex; gap: 40px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.pm-nav__list li { list-style: none; }
.pm-nav a {
  font: var(--pm-text-body-bold); font-size: 16px;
  color: var(--pm-fg); text-decoration: none;
  padding: 6px 2px; position: relative;
  transition: color .18s cubic-bezier(.2,.8,.2,1);
}
.pm-nav a:hover { color: var(--pm-fox-hair); }
.pm-nav a.is-active::after {
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px;
  background: var(--pm-fox-hair); border-radius:2px;
}
.pm-header__cta {
  display: flex; gap: 10px; align-items: center;
}

/* ─── Buttons ─── */
.pm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font: var(--pm-text-body-bold); font-size: 15px;
  border: none; border-radius: var(--pm-radius-pill);
  cursor: pointer; text-decoration: none;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), background .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
}
.pm-btn--primary {
  background: var(--pm-orange-600); color: var(--pm-polar-bear); /* a11y : orange-500 sur crème = 3.50 (FAIL AA) → orange-600 = 4.89 ✓ */
  box-shadow: var(--pm-shadow-pop);
}
.pm-btn--primary:hover { background: var(--pm-fox-hair); transform: translateY(-1px); }
.pm-btn--primary:active { background: var(--pm-orange-600); transform: scale(0.98); }
.pm-btn--ghost {
  background: transparent; color: var(--pm-felix-the-cat);
  border: 2px solid var(--pm-felix-the-cat);
  padding: 10px 20px;
}
.pm-btn--ghost:hover { background: var(--pm-felix-the-cat); color: var(--pm-polar-bear); }
.pm-btn--cream {
  background: var(--pm-polar-bear); color: var(--pm-felix-the-cat);
}
.pm-btn--cream:hover { background: #fff; }
.pm-btn--lg { padding: 16px 28px; font-size: 16px; }

/* ── Bridge Gutenberg wp:button → pm-btn ──
   Quand `pm-btn pm-btn--*` est appliqué via un bloc Gutenberg wp:button,
   la classe est sur le wrapper `<div class="wp-block-button">` mais Gutenberg
   colorie aussi le `<a class="wp-element-button">` interne → calque double.
   On neutralise le wrapper et on applique les styles pm-btn au <a> interne. */
.wp-block-button.pm-btn {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.wp-block-button.pm-btn > .wp-block-button__link,
.wp-block-button.pm-btn > .wp-element-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font: var(--pm-text-body-bold); font-size: 15px;
  border: 0; border-radius: var(--pm-radius-pill);
  cursor: pointer; text-decoration: none;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), background .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
}
.wp-block-button.pm-btn--primary > .wp-block-button__link,
.wp-block-button.pm-btn--primary > .wp-element-button {
  background: var(--pm-orange-600); /* a11y : AA 4.89:1 (cf. .pm-btn--primary) */
  color: var(--pm-polar-bear);
  box-shadow: var(--pm-shadow-pop);
}
.wp-block-button.pm-btn--primary > .wp-block-button__link:hover,
.wp-block-button.pm-btn--primary > .wp-element-button:hover {
  background: var(--pm-fox-hair);
  transform: translateY(-1px);
}

/* ─── Container ─── */
:root { --pm-edge: 200px; }
/* responsive #3 : plafond à 1920px (wideSize theme.json), centré — évite l'étirement infini sur 4K */
.pm-container { max-width: 1920px; margin-left: auto; margin-right: auto; padding: 0 var(--pm-edge); }
.pm-container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.pm-container--reading { max-width: none; }
.pm-container--reading > * { max-width: 720px; }

/* ─── Section spacing ─── */
.pm-section { padding: 96px 0; }
.pm-section--sm { padding: 64px 0; }
.pm-section--lg { padding: 128px 0; }
.pm-section--cream { background: var(--pm-polar-bear); }
.pm-section--peach { background: var(--pm-driver-skin); }
.pm-section--navy { background: var(--pm-felix-the-cat); color: var(--pm-fg-on-dark); }

/* ─── Type helpers ─── */
.pm-overline { font-family: 'Tired Of Courier', monospace; font-size: 13px; font-weight: normal; line-height: 1.2; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pm-fox-hair); }
.pm-display-1 { font: var(--pm-text-display-1); letter-spacing: var(--pm-tracking-tight); margin: 0; text-wrap: balance; }
.pm-display-2 { font: var(--pm-text-display-2); letter-spacing: var(--pm-tracking-tight); margin: 0; text-wrap: balance; }
.pm-h1 { font: var(--pm-text-h1); letter-spacing: var(--pm-tracking-tight); margin: 0; text-wrap: balance; }
.pm-h2 { font: var(--pm-text-h2); letter-spacing: var(--pm-tracking-tight); margin: 0; text-wrap: balance; }
.pm-h3 { font: var(--pm-text-h3); margin: 0; }
.pm-h4 { font: var(--pm-text-h4); margin: 0; }
.pm-lead {
  font: var(--pm-text-lead); color: var(--pm-fg);
  max-width: 60ch; text-wrap: pretty;
  /* Override Gutenberg `is-layout-constrained > * { margin-inline: auto !important }`
     qui centre les paragraphes dans le container. On force l'alignement à gauche. */
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
}
.pm-lead + .pm-lead { margin-top: 1.25em; }

/* Highlight surlignage Pêche sur mots-clés (effet stabilo discret). */
.pm-highlight {
  background: var(--pm-driver-skin);
  padding: 0 6px;
  border-radius: 4px;
  font-weight: 600;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* Sur section Bien-être (fond Pêche), surlignage passe en Crème pour rester visible. */
.pm-section--wellbeing .pm-highlight { background: var(--pm-polar-bear); }

/* Pull-quote — citation forte avec border-left Orange.
   Margin-left négatif = compense (border + padding) pour aligner le texte de la
   citation au bord gauche des paragraphes courants. !important nécessaire pour
   battre `is-layout-constrained > * { margin-inline: auto !important }` Gutenberg. */
.pm-pullquote {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 12px 0 12px 24px;
  /* Trait orange court : 60% de la hauteur du blockquote, centré verticalement,
     2px d'épaisseur, à 8px du bord gauche du texte. */
  background: linear-gradient(var(--pm-fox-hair), var(--pm-fox-hair)) no-repeat 0 50% / 2px 60%;
  font: 600 22px/1.35 var(--pm-font-display);
  color: var(--pm-fg);
  font-style: italic;
  max-width: 60ch;
}
.pm-pullquote::before { content: "« "; color: var(--pm-fox-hair); font-style: normal; }
.pm-pullquote::after { content: " »"; color: var(--pm-fox-hair); font-style: normal; }
/* Espace entre le dernier paragraphe et le CTA dans une section éditoriale.
   Le CTA est un <p> contenant un <a class="pm-btn">. L'override des margins
   est nécessaire car Gutenberg `is-layout-constrained` centre les enfants.
   Le margin-left négatif sur le <a> compense son padding-left interne (22px)
   pour aligner le TEXTE du bouton au bord gauche des paragraphes. */
.pm-section-cta {
  margin-top: 32px !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
}
.pm-section-cta .pm-btn--primary {
  margin-left: 0;
}
.pm-body { font: var(--pm-text-body); margin: 0 0 14px; text-wrap: pretty; }
.pm-accent { font: var(--pm-text-accent); }

/* ─── Simulator (price) ─── */
.pm-sim {
  background: #fff;
  border-radius: var(--pm-radius-pill);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
  box-shadow: 0 12px 32px -10px rgba(20,24,45,0.18);
  overflow: hidden;
  border: 1px solid rgba(20,24,45,0.06);
}
.pm-sim__field {
  padding: 14px 24px;
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
  position: relative;
}
.pm-sim__field + .pm-sim__field { border-left: 1px solid var(--pm-cream-300); }
.pm-sim__label {
  font: var(--pm-text-overline); font-size: 11px;
  letter-spacing: var(--pm-tracking-overline);
  color: var(--pm-fg-muted);
  display: flex; align-items: center; gap: 6px;
}
.pm-sim__label--filled { color: var(--pm-fox-hair); }
.pm-sim__check {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--pm-fox-hair); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
}
.pm-sim__value, .pm-sim__input {
  font: var(--pm-text-body-bold); font-size: 15px;
  color: var(--pm-fg);
  border: 0; background: transparent; outline: none; padding: 0;
  width: 100%;
  text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
}
.pm-sim__input::placeholder { color: var(--pm-fg-subtle); font-weight: 400; }
.pm-sim__cta {
  display: flex; align-items: center;
  padding: 6px;
}
.pm-sim__cta button {
  background: var(--pm-orange-600); color: var(--pm-polar-bear); /* a11y : AA 4.89:1 */
  border: 0; border-radius: var(--pm-radius-pill);
  padding: 14px 24px; font: var(--pm-text-body-bold); font-size: 15px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background .18s, transform .12s;
}
.pm-sim__cta button:hover { background: var(--pm-fox-hair); }
.pm-sim__cta button:active { transform: scale(0.97); }

.pm-sim-result {
  margin-top: 14px;
  background: var(--pm-felix-the-cat);
  color: var(--pm-fg-on-dark);
  border-radius: 14px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
}
.pm-sim-result__price-label { font: var(--pm-text-overline); color: var(--pm-navy-300); margin-bottom: 4px; }
.pm-sim-result__price { font: 700 36px/1 var(--pm-font-display); margin: 0; }
.pm-sim-result__chip {
  display: inline-block; margin-top: 10px;
  background: var(--pm-driver-skin); color: var(--pm-felix-the-cat);
  font: var(--pm-text-caption); font-size: 12px;
  padding: 4px 10px; border-radius: var(--pm-radius-pill);
}
.pm-sim-result__benefits { display: flex; flex-direction: column; gap: 8px; }
.pm-sim-result__benefit { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pm-sim-result__benefit::before {
  content:""; width: 18px; height:18px; border-radius:50%;
  background: var(--pm-fox-hair);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8L7 11.5L13 4.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* ─── Cards ─── */
.pm-card {
  background: #fff;
  border-radius: var(--pm-radius-lg);
  padding: 28px;
  box-shadow: var(--pm-shadow-sm);
}
.pm-card--peach { background: var(--pm-driver-skin); box-shadow: none; }
.pm-card--navy { background: var(--pm-felix-the-cat); color: var(--pm-fg-on-dark); }
.pm-card--bordered {
  border: 2px solid var(--pm-felix-the-cat);
  box-shadow: var(--pm-shadow-sticker);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s cubic-bezier(.2,.7,.3,1);
}
.pm-card--bordered:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 7px 0 0 var(--pm-felix-the-cat);
}
@media (prefers-reduced-motion: reduce) {
  .pm-card--bordered { transition: none; }
  .pm-card--bordered:hover { transform: none; }
}

/* ─── Footer ─── */
.pm-footer {
  background: var(--pm-felix-the-cat);
  color: var(--pm-fg-on-dark);
  padding: 80px 0 36px;
  position: relative; overflow: hidden;
}
.pm-footer .pm-container { padding: 0 96px; }
.pm-footer__sketch {
  position: absolute; right: -40px; top: -20px;
  width: 240px; opacity: 0.18; pointer-events: none;
}
.pm-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 64px;
  position: relative;
}
.pm-footer__col h4 {
  font: var(--pm-text-overline);
  letter-spacing: var(--pm-tracking-overline);
  color: var(--pm-driver-skin);
  margin: 0 0 16px;
}
.pm-footer__col a, .pm-footer__col li {
  display: block;
  font-size: 14px; color: var(--pm-fg-on-dark); opacity: .8;
  margin-bottom: 8px; text-decoration: none;
  transition: opacity .15s, color .15s;
}
.pm-footer__col a:hover { opacity: 1; color: var(--pm-driver-skin); }
.pm-footer__col ul { list-style: none; padding: 0; margin: 0; }
/* Icônes sociales : alignées sur une ligne */
.pm-footer__social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.pm-footer__social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(247,239,225,0.35);
  color: var(--pm-driver-skin);
  margin: 0 !important;
  transition: border-color .15s, color .15s;
}
.pm-footer__social a:hover {
  border-color: var(--pm-driver-skin);
  color: var(--pm-polar-bear);
}
.pm-footer__bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(249,247,232,0.12);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px; opacity: .7;
}
.pm-footer__newsletter {
  display: flex; gap: 0; margin-top: 12px;
  background: rgba(249,247,232,0.08);
  border-radius: var(--pm-radius-pill);
  padding: 4px;
}
.pm-footer__newsletter input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  padding: 10px 14px; color: var(--pm-fg-on-dark); outline: none;
  font: var(--pm-text-body); font-size: 14px;
}
.pm-footer__newsletter input::placeholder { color: rgba(249,247,232,0.5); }
.pm-footer__newsletter button {
  border: 0; background: var(--pm-fox-hair); color: var(--pm-polar-bear);
  padding: 8px 18px; border-radius: var(--pm-radius-pill);
  font: var(--pm-text-body-bold); font-size: 13px; cursor: pointer;
}
.pm-app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(249,247,232,0.08);
  border: 1px solid rgba(249,247,232,0.2);
  border-radius: 8px;
  font-size: 12px; line-height: 1.2;
  color: var(--pm-fg-on-dark);
  text-decoration: none;
  transition: background .15s;
}
.pm-app-badge:hover { background: rgba(249,247,232,0.14); }
.pm-app-badge__top { display:block; opacity:.6; font-size:10px; }
.pm-app-badge__bot { display:block; font-weight:700; font-size:14px; }

/* ─── Photo placeholder ─── */
.pm-photo-placeholder {
  background: var(--pm-driver-skin);
  border: 2px dashed rgba(20,24,45,0.25);
  border-radius: var(--pm-radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--pm-felix-the-cat);
  font: var(--pm-text-overline);
  letter-spacing: var(--pm-tracking-overline);
  text-align: center;
  padding: 24px;
  position: relative; overflow: hidden;
}
.pm-photo-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 12px, rgba(20,24,45,0.04) 12px 24px);
  pointer-events: none;
}
.pm-photo-placeholder__inner { position: relative; z-index: 1; }
.pm-photo-placeholder__icon {
  width: 36px; height: 36px; margin: 0 auto 8px;
  border-radius: 50%; background: rgba(20,24,45,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ─── Sticker / monogramme deco ─── */
.pm-sticker {
  display: inline-block;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.pm-sticker:hover { animation: pm-wiggle .6s ease-in-out; }
@keyframes pm-wiggle {
  0%,100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

/* ─── Pet category chip ─── */
.pm-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--pm-polar-bear);
  border: 1.5px solid var(--pm-felix-the-cat);
  border-radius: var(--pm-radius-pill);
  font: var(--pm-text-overline); font-size: 11px;
  letter-spacing: var(--pm-tracking-overline);
  color: var(--pm-felix-the-cat);
}
.pm-chip--orange { background: var(--pm-fox-hair); color: var(--pm-polar-bear); border-color: var(--pm-fox-hair); }
.pm-chip--peach { background: var(--pm-driver-skin); border-color: var(--pm-driver-skin); }
.pm-chip--navy { background: var(--pm-felix-the-cat); color: var(--pm-polar-bear); border-color: var(--pm-felix-the-cat); }

/* ─── Reassurance bar ─── */
.pm-reassure {
  background: var(--pm-felix-the-cat);
  color: var(--pm-fg-on-dark);
  padding: 24px 0;
  overflow: hidden;
}
.pm-reassure__inner {
  display: flex; gap: 56px; justify-content: center; flex-wrap: nowrap; align-items: center;
}
.pm-reassure__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; white-space: nowrap;
}
.pm-reassure__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pm-fox-hair); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Animal "paw" icons (mask-image) — 1 couleur charte par animal, 5 items */
.pm-reassure__paw {
  display: inline-block;
  width: 32px; height: 32px;
  flex-shrink: 0;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
/* Cycle 5 couleurs DS : Orange / Jaune / Pêche / Bleu / Vert */
.pm-reassure__paw--bear     { -webkit-mask-image: url('../img/icons/icon-bear.svg');     mask-image: url('../img/icons/icon-bear.svg');     background-color: var(--pm-fox-hair); }       /* Orange */
.pm-reassure__paw--chicken  { -webkit-mask-image: url('../img/icons/icon-chicken.svg');  mask-image: url('../img/icons/icon-chicken.svg');  background-color: var(--pm-joe-rabbit); }     /* Jaune */
.pm-reassure__paw--dog      { -webkit-mask-image: url('../img/icons/icon-dog.svg');      mask-image: url('../img/icons/icon-dog.svg');      background-color: var(--pm-driver-skin); }    /* Pêche */
.pm-reassure__paw--elephant { -webkit-mask-image: url('../img/icons/icon-elephant.svg'); mask-image: url('../img/icons/icon-elephant.svg'); background-color: var(--pm-sky-whale); }      /* Bleu */
.pm-reassure__paw--frog     { -webkit-mask-image: url('../img/icons/icon-frog.svg');     mask-image: url('../img/icons/icon-frog.svg');     background-color: var(--pm-bob-the-frog); }   /* Vert */

/* ─── Fade in on scroll ─── */
.pm-fade { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.pm-fade.is-visible { opacity: 1; transform: translateY(0); }

/* ─── Section Pratique (Phase 3 — Où + Combien) ─── */
.pm-pratique {
  background: var(--pm-polar-bear);
  padding: 80px 0;
}
.pm-pratique__overline {
  font-family: 'Tired Of Courier', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pm-fox-hair);
  margin: 0 0 12px;
}
.pm-pratique__title {
  font-family: 'MADE Dillan', serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: normal;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  max-width: 720px;
  color: var(--pm-felix-the-cat);
}
.pm-pratique__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pm-pratique__card {
  background: var(--pm-polar-bear);
  padding: 32px 28px 28px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.pm-pratique__h3 {
  font-family: 'MADE Dillan', serif;
  font-size: 26px;
  line-height: 1.15;
  font-weight: normal;
  margin: 0 0 16px;
  color: var(--pm-felix-the-cat);
}
.pm-pratique__card p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
}
.pm-pratique__card p:last-of-type { margin-bottom: 0; }
.pm-pratique__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--pm-felix-the-cat);
}
.pm-pratique__list li {
  padding-left: 0;
}
.pm-pratique__list strong {
  color: var(--pm-fox-hair);
  margin-right: 10px;
  display: inline-block;
  min-width: 24px;
  font-weight: 700;
}
.pm-pratique__aerogare {
  font-size: 14px;
  color: var(--pm-navy-500);
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px dashed var(--pm-cream-300);
  line-height: 1.5;
}
.pm-pratique__cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--pm-fox-hair);
  color: var(--pm-polar-bear);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, transform .2s;
  align-self: flex-start;
}
.pm-pratique__cta:hover {
  background: var(--pm-orange-400);
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  .pm-pratique__cta { transition: none; }
  .pm-pratique__cta:hover { transform: none; }
}

/* ─── FAQ ─── */
.pm-faq__item {
  border-bottom: 1px solid var(--pm-felix-the-cat);
  padding: 20px 0;
}
.pm-faq__q {
  width: 100%; background: transparent; border: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left; cursor: pointer; padding: 4px 0;
  font: var(--pm-text-h4); color: var(--pm-fg);
}
.pm-faq__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pm-driver-skin); color: var(--pm-felix-the-cat);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .15s;
  font-size: 18px; font-weight: 700;
}
.pm-faq__item.is-open .pm-faq__icon { background: var(--pm-fox-hair); color: #fff; transform: rotate(45deg); }
.pm-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s cubic-bezier(.2,.8,.2,1);
}
.pm-faq__a-inner { padding: 12px 0 4px; color: var(--pm-fg); font-size: 15px; line-height: 1.6; max-width: 70ch; } /* a11y : navy-500 sur Pêche = 3.81 (FAIL AA) → Marine sur Pêche = 10.95 ✓ */
.pm-faq__item.is-open .pm-faq__a { max-height: 800px; } /* responsive #38 : 400px tronquait les réponses longues sur 390 */

/* ─── iPhone-ish frame ─── */
.pm-iphone {
  width: 280px; aspect-ratio: 9/19.5;
  background: #14182d;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(20,24,45,.45), 0 0 0 1.5px rgba(20,24,45,0.1);
  position: relative;
}
.pm-iphone__screen {
  width: 100%; height: 100%; border-radius: 24px; overflow: hidden;
  background: var(--pm-polar-bear);
  position: relative;
}
.pm-iphone__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px; background: #14182d;
  border-radius: 999px; z-index: 4;
}

/* ─── HOME — Hero photo ─── */
.pm-hero-photo {
  position: relative;
  background-color: var(--pm-felix-the-cat);
  background-size: cover; /* responsive #28 : était 170% (zoom photo trop fort sur 4K) */
  background-position: center;
  background-repeat: no-repeat;
  min-height: min(680px, 80vh); /* responsive #11 : plafonné à 80% du viewport pour MacBook Air */
  display: flex; align-items: center;
  padding: 80px 0;
  overflow: hidden;
}
.pm-hero-photo__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18,28,38,0.82) 0%, rgba(18,28,38,0.62) 55%, rgba(18,28,38,0.35) 100%);
}
/* Monogramme chat orange — mascotte hero desktop, haut-droite, déborde à droite */
.pm-hero-photo::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 40px;
  width: 280px; height: 280px;
  background-image: url('../img/monogramme-cat.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}
.pm-hero-photo__inner {
  position: relative; z-index: 2;
  max-width: 880px;
}
.pm-hero-photo__title {
  font: var(--pm-text-display-1); font-size: 56px;
  letter-spacing: var(--pm-tracking-tight);
  color: var(--pm-polar-bear);
  line-height: 1.05;
  margin: 0 0 24px;
  text-wrap: balance;
}
.pm-hero-photo__title em {
  font-style: normal;
  color: var(--pm-fox-hair);
}
.pm-hero-break { display: inline; }
.pm-hero-photo__lead {
  font: var(--pm-text-lead);
  color: var(--pm-polar-bear);
  max-width: 720px;
  margin: 0 0 32px;
}
.pm-hero-photo__sim { margin-bottom: 16px; }
.pm-hero-photo__note {
  font: 400 13px/1.4 var(--pm-font-accent);
  color: var(--pm-driver-skin);
  margin: 0 0 0 24px;
}

/* ─── HOME — Section header (overline + h2 + lead centrés) ─── */
.pm-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.pm-section-header .pm-overline { color: var(--pm-fox-hair); }
.pm-section-header h2 { margin-top: 12px; }
.pm-section-header .pm-lead {
  margin: 16px auto 0;
  color: var(--pm-fg-muted);
}

/* ─── HOME — Photos cas concrets (4 cards) ─── */
/* Slider horizontal scroll-snap — permet d'ajouter autant de photos qu'on veut
   (ajouter un wp:image dans le wp:group depuis Gutenberg). Scrollbar masquée,
   navigation via flèches injectées en JS (cf. initPhotoSlider dans theme.js). */
.pm-cas-wrapper { position: relative; }
.pm-cas-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pm-cas-grid::-webkit-scrollbar { display: none; }

/* Flèches navigation slider photos */
.pm-cas-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pm-felix-the-cat);
  color: var(--pm-polar-bear);
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--pm-shadow-pop);
  z-index: 2;
  transition: transform .15s, background .15s, opacity .2s;
  padding: 0;
}
.pm-cas-nav:hover {
  background: var(--pm-fox-hair);
  transform: translateY(-50%) scale(1.06);
}
.pm-cas-nav:active { transform: translateY(-50%) scale(0.98); }
.pm-cas-nav[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.pm-cas-nav--prev { left: -22px; }
.pm-cas-nav--next { right: -22px; }
.pm-cas-grid .pm-cas-photo,
.pm-cas-grid .wp-block-image {
  flex: 0 0 280px;
  margin: 0;
  aspect-ratio: 3/4;
  border-radius: var(--pm-radius-lg);
  overflow: hidden;
  background: var(--pm-driver-skin);
  scroll-snap-align: start;
}
.pm-cas-grid .pm-cas-photo img,
.pm-cas-grid .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── HOME — Trip types ─── */
.pm-trip {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 0 48px;
}
.pm-trip-toggles {
  display: flex; flex-direction: column; gap: 8px;
}
.pm-trip-button {
  background: #fff;
  color: var(--pm-fg);
  border: 0;
  text-align: left;
  padding: 18px 20px;
  border-radius: 14px;
  cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  font: 700 17px/1.2 var(--pm-font-display);
  box-shadow: var(--pm-shadow-sm);
  transition: background .18s, color .18s, box-shadow .18s;
  width: 100%;
}
.pm-trip-button__icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--pm-trip-bg, var(--pm-felix-the-cat));
}
.pm-trip-button__icon img {
  width: 24px; height: 24px;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.pm-trip-button__label { flex: 1; }
.pm-trip-button__arrow { font-size: 18px; opacity: 0; transition: opacity .18s; }
.pm-trip-button.is-active {
  background: var(--pm-trip-bg, var(--pm-felix-the-cat));
  color: var(--pm-trip-fg, #fff);
  box-shadow: none;
}
.pm-trip-button.is-active .pm-trip-button__icon { background: rgba(255,255,255,0.22); }
.pm-trip-button.is-active .pm-trip-button__icon img {
  filter: var(--pm-trip-icon-filter, brightness(0) invert(1));
}
.pm-trip-button.is-active .pm-trip-button__arrow { opacity: .9; }

.pm-trip-panels-desktop {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
}
.pm-trip-panel-desktop {
  background: var(--pm-trip-bg, var(--pm-felix-the-cat));
  color: var(--pm-trip-fg, #fff);
  padding: 48px 56px;
  display: none;
  border-radius: 18px;
  transition: background-color .35s ease;
}
.pm-trip-panel-desktop.is-active { display: block; }
.pm-trip-panel-desktop h3 {
  color: var(--pm-trip-fg, #fff);
  margin: 0 0 24px;
  font: var(--pm-text-h2);
  letter-spacing: var(--pm-tracking-tight);
  line-height: 1.05;
}
.pm-trip-panel-desktop p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 0 14px;
}
.pm-trip-panel-desktop p:last-child { margin-bottom: 0; }
.pm-trip-panel-desktop strong { font-weight: 700; }

.pm-trip-panel-mobile { display: none; }
.pm-trip-panel-mobile__inner {
  background: var(--pm-trip-bg);
  color: var(--pm-trip-fg, #fff);
  border-radius: 14px;
  padding: 24px 22px;
  margin-bottom: 4px;
}
.pm-trip-panel-mobile__inner h3 {
  color: var(--pm-trip-fg, #fff);
  margin: 0 0 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 22px; line-height: 1.1;
}
.pm-trip-panel-mobile__inner h3 .pm-trip-button__icon {
  background: rgba(255,255,255,0.22);
}
.pm-trip-panel-mobile__inner p { margin: 0 0 14px; font-size: 16px; line-height: 1.55; }
.pm-trip-panel-mobile__inner p:last-child { margin: 0; }

/* ─── HOME — Process (4 étapes numérotées) ─── */
.pm-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pm-process .wp-block-column {
  display: flex;
  flex-direction: column;
}
.pm-process-step {
  background: #fff;
  border: 2px solid var(--pm-felix-the-cat);
  border-radius: var(--pm-radius-lg);
  padding: 28px;
  box-shadow: var(--pm-shadow-sticker);
  height: 100%;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s cubic-bezier(.2,.7,.3,1);
}
.pm-process-step:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 7px 0 0 var(--pm-felix-the-cat);
}
@media (prefers-reduced-motion: reduce) {
  .pm-process-step { transition: none; }
  .pm-process-step:hover { transform: none; }
}
.pm-process-step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pm-fox-hair);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font: 700 20px var(--pm-font-display);
  margin-bottom: 16px;
}
.pm-process-step__title { margin: 0 0 8px; }
.pm-process-step__desc {
  font-size: 14px; color: var(--pm-fg-muted);
  margin: 0; line-height: 1.55;
}

/* ─── HOME — App section ─── */
.pm-app-section {
  background: var(--pm-felix-the-cat);
  color: var(--pm-fg-on-dark);
  /* Les iPhones ont un margin-right négatif pour l'effet visuel → clip
     pour éviter overflow horizontal du document (espace blanc à droite). */
  overflow: hidden;
}
.pm-app-section .pm-lead { color: var(--pm-fg-on-dark); }
.pm-app-section__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}
.pm-app-section__title {
  font: var(--pm-text-h1);
  font-size: 44px;
  letter-spacing: var(--pm-tracking-tight);
  margin: 12px 0 20px;
}
.pm-app-section__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.pm-app-section__list li {
  display: flex; gap: 12px; align-items: center;
  font-size: 15px;
}
.pm-app-section__check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--pm-fox-hair); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pm-app-section__check svg {
  width: 9px !important; height: 9px !important;
}
.pm-app-section__phones {
  display: flex; justify-content: flex-end; gap: 16px;
  perspective: 1000px;
  /* Margin-right négatif réduit pour que le 2e iPhone soit (presque) entièrement
     visible — overflow:hidden de la section clip à droite (cf. feedback Laura). */
  margin-right: -80px;
}
.pm-app-section__phone {
  transform-origin: center bottom;
}
.pm-app-section__phone--left { transform: rotate(-6deg); }
.pm-app-section__phone--right { transform: translateY(40px) rotate(6deg); }

/* ─── HOME — Témoignages (slider auto-scroll Google reviews) ─── */
.pm-testimonials {
  position: relative;
  background-color: var(--pm-felix-the-cat);
  background-image: url('../img/photos/photo-cat-fur.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  overflow: hidden;
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}
.pm-testimonials__overlay {
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  background: linear-gradient(180deg, rgba(26,36,68,0.78) 0%, rgba(26,36,68,0.72) 100%);
  pointer-events: none;
  z-index: 1;
}
.pm-testimonials__inner {
  position: relative; z-index: 2;
}
.pm-testimonials__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--pm-polar-bear);
}
.pm-testimonials__overline {
  color: var(--pm-fox-hair);
  margin: 0 0 12px;
  font-size: 12px;
}
.pm-testimonials__header-stars {
  color: var(--pm-fox-hair);
  letter-spacing: 1px; font-size: 12px;
  margin-right: 4px;
}
.pm-testimonials__title {
  color: var(--pm-polar-bear);
  margin: 0 0 8px;
  font-family: var(--pm-font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: var(--pm-tracking-tight);
}
.pm-testimonials__sub {
  color: rgba(247,239,225,0.85);
  margin: 0;
  font-size: 15px;
}

/* Slider — auto-scroll horizontal, infinite loop (track is duplicated by JS) */
.pm-testimonials__slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y; /* permet drag horizontal sans bloquer le scroll vertical */
}
.pm-testimonials__slider.is-dragging { cursor: grabbing; }
.pm-testimonials__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  width: max-content;
  will-change: transform;
  padding: 4px 0;
  user-select: none;
}
.pm-testimonials__slide {
  flex: 0 0 620px;
  background: var(--pm-polar-bear);
  border-radius: var(--pm-radius-lg);
  padding: 22px 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--pm-night-sky);
  min-height: 160px;
  text-align: left;
}
.pm-testimonials__slide > * {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.pm-testimonials__slide-stars {
  color: var(--pm-fox-hair);
  letter-spacing: 1px;
  font-size: 12px;
  margin: 0;
  text-align: left !important;
}
.pm-testimonials__quote {
  font: 400 13.5px/1.5 var(--pm-font-accent);
  margin: 0;
  color: var(--pm-night-sky);
  flex: 1;
  text-align: left !important;
}
.pm-testimonials__author {
  font: 600 10.5px/1.3 var(--pm-font-body);
  color: var(--pm-fox-hair);
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left !important;
}
.pm-testimonials__cta-wrap {
  text-align: center;
  margin: 36px 0 0;
}
.pm-testimonials__cta {
  display: inline-block;
  color: var(--pm-polar-bear);
  text-decoration: none;
  font: 600 14px/1.3 var(--pm-font-body);
  letter-spacing: 0.3px;
  padding: 12px 22px;
  border: 1.5px solid rgba(247,239,225,0.45);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
.pm-testimonials__cta:hover {
  background: rgba(247,239,225,0.12);
  border-color: var(--pm-fox-hair);
  color: var(--pm-polar-bear);
}

/* ─── HOME — Articles ─── */
.pm-articles__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
}
.pm-articles__head h2 { margin-top: 8px; }
.pm-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pm-article-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.pm-article-card__cover {
  aspect-ratio: 16/10;
  border-radius: var(--pm-radius-lg);
  display: flex; align-items: flex-end; padding: 20px;
  margin-bottom: 14px;
  position: relative; overflow: hidden;
  background: var(--pm-driver-skin);
}
.pm-article-card__cover--cream { background: var(--pm-polar-bear); }
.pm-article-card__cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pm-article-card__title { margin: 0 0 6px; }
.pm-article-card__meta {
  font-size: 13px; color: var(--pm-fg-muted);
}

/* ─── HOME — Contact CTA (orange section) ─── */
.pm-contact-cta {
  background: var(--pm-fox-hair);
  color: var(--pm-polar-bear);
}
.pm-contact-cta__head { text-align: center; margin-bottom: 40px; }
.pm-contact-cta__head .pm-overline { color: var(--pm-driver-skin); }
.pm-contact-cta__head .pm-display-2 { color: var(--pm-polar-bear); margin: 12px 0 16px; }
.pm-contact-cta__head .pm-lead {
  color: var(--pm-polar-bear);
  margin: 0 auto 24px;
  opacity: .92; max-width: 620px;
}
.pm-contact-cta__buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.pm-contact-cta__buttons .pm-btn--outline-white {
  background: transparent; color: #fff; border: 2px solid #fff;
}
.pm-contact-cta__buttons .pm-btn--outline-white:hover {
  background: #fff; color: var(--pm-fox-hair);
}
.pm-contact-cta__form {
  background: #fff;
  border: 1.5px solid var(--pm-cream-300);
  border-radius: var(--pm-radius-lg);
  padding: 36px;
  color: var(--pm-fg);
}

/* Form candidature conducteur — inséré dans .pm-prose (page conducteurs).
   Card pêche pour contraster avec le fond crème de la page (pas de section
   colorée autour comme sur la HP). Inputs blancs dedans (héritent du
   .pm-contact-form-wrapper). */
/* Form wrapper : largeur = contenu environnant (s'adapte au contentSize
   du wp:group root si présent, sinon limité à 720 par .pm-prose) */
.pm-driver-form-wrapper {
  background: var(--pm-driver-skin);
  border-radius: var(--pm-radius-lg);
  padding: 36px;
  margin: 28px 0 0;
  color: var(--pm-fg);
  box-sizing: border-box;
}
/* Page longue distance — le contenu Gutenberg est dans un wp:group root avec
   contentSize:80% qui contraint le texte FAQ. On applique la MÊME contrainte
   au wrapper du form (qui est sibling du wp:group root) pour aligner. */
.pm26-quote-form-section.pm-driver-form-wrapper {
  max-width: 80% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Le ratio entre header section + form est plus serré */
.pm26-driver-form-section,
.pm26-quote-form-section,
#devenir-conducteur,
#demande-devis {
  margin-top: 48px;
}

/* ── Formulaire CF7 (sur fond Orange du contact-cta) ── */
.pm-contact-form-wrapper form p { margin: 0; padding: 0; }

.pm-contact-form-wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]),
.pm-contact-form-wrapper select,
.pm-contact-form-wrapper textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(20, 24, 45, 0.18);
  border-radius: 10px;
  background: var(--pm-polar-bear);
  color: var(--pm-fg);
  font: var(--pm-text-body);
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease;
}

.pm-contact-form-wrapper textarea {
  min-height: 120px;
  line-height: 1.5;
  resize: vertical;
}

.pm-contact-form-wrapper input:focus,
.pm-contact-form-wrapper select:focus,
.pm-contact-form-wrapper textarea:focus {
  border-color: var(--pm-fox-hair);
}

.pm-contact-form-wrapper input::placeholder,
.pm-contact-form-wrapper textarea::placeholder {
  color: rgba(20, 24, 45, 0.45);
  opacity: 1;
}

.pm-contact-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.pm-contact-form-wrapper form > p > label,
.pm-contact-form-wrapper form > .contact-form-row .contact-form-col > p > label,
.pm-contact-form-wrapper form > div[data-class="wpcf7cf_group"] > p > label,
.pm-contact-form-wrapper form > div[data-class="wpcf7cf_group"] .contact-form-row .contact-form-col > p > label,
.pm-contact-form-wrapper form > div[data-class="wpcf7cf_group"] > div[data-class="wpcf7cf_group"] > p > label {
  display: block;
  margin-top: 14px;
  margin-bottom: 2px;
  font: 600 13px/1.4 var(--pm-font-body);
  color: var(--pm-fg);
  letter-spacing: 0.2px;
  cursor: default;
}

.pm-contact-form-wrapper form > p:first-of-type > label { margin-top: 0; }

.pm-contact-form-wrapper .required {
  color: var(--pm-fox-hair);
  margin-left: 3px;
}

/* Layout 2 colonnes Prénom/Nom + Email/Téléphone */
.pm-contact-form-wrapper .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

@media (max-width: 600px) {
  .pm-contact-form-wrapper .contact-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Groupes conditionnels (form home : sous-sections par sujet) — séparateur dashed */
.pm-contact-form-wrapper .contact-form-group-title {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed rgba(20, 24, 45, 0.18);
  font: 600 18px/1.3 var(--pm-font-display);
  color: var(--pm-fg);
}

.pm-contact-form-wrapper .contact-form-group-intro {
  margin-top: 0;
  margin-bottom: 16px;
  color: rgba(20, 24, 45, 0.7);
  font-size: 14px;
}

/* Titre H2 + intro intégrés au form (longue distance, conducteur) — pas de tiret/border */
.pm-contact-form-wrapper .pm-form-title {
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  font: 700 26px/1.1 var(--pm-font-display);
  color: var(--pm-fg);
  letter-spacing: var(--pm-tracking-tight);
}
.pm-contact-form-wrapper .pm-form-intro {
  margin: 0 0 22px;
  color: rgba(20, 24, 45, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

/* Radios Oui/Non — pills segmented */
.pm-contact-form-wrapper .wpcf7-radio {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pm-contact-form-wrapper .wpcf7-radio .wpcf7-list-item { margin: 0; padding: 0; }

.pm-contact-form-wrapper .wpcf7-radio input[type="radio"] {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pm-contact-form-wrapper .wpcf7-radio label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 8px 24px;
  background: var(--pm-polar-bear);
  color: var(--pm-fg);
  border: 1.5px solid rgba(20, 24, 45, 0.18);
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}

.pm-contact-form-wrapper .wpcf7-radio label:has(input:checked) {
  background: var(--pm-felix-the-cat);
  border-color: var(--pm-felix-the-cat);
  color: var(--pm-polar-bear);
}

.pm-contact-form-wrapper .wpcf7-radio label:has(input:focus-visible) {
  outline: 2px solid var(--pm-fox-hair);
  outline-offset: 2px;
}

/* Checkboxes (certifications) — liste verticale */
.pm-contact-form-wrapper .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.pm-contact-form-wrapper .wpcf7-checkbox .wpcf7-list-item { margin: 0; padding: 0; }

.pm-contact-form-wrapper .wpcf7-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: inherit;
  cursor: pointer;
}

.pm-contact-form-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  background: #fff;
  accent-color: var(--pm-fox-hair);
  cursor: pointer;
  flex-shrink: 0;
}

/* RGPD checkbox + texte */
.pm-contact-form-wrapper .contact-form-consent {
  margin-top: 28px;
  font-size: 14px;
}

.pm-contact-form-wrapper .wpcf7-acceptance .wpcf7-list-item { display: block; margin: 0; padding: 0; }

.pm-contact-form-wrapper .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: inherit;
  cursor: pointer;
  line-height: 1.5;
}

.pm-contact-form-wrapper .wpcf7-acceptance .wpcf7-list-item-label {
  flex: 1 1 auto;
  min-width: 0;
}

.pm-contact-form-wrapper .wpcf7-acceptance input[type="checkbox"] { margin-top: 3px; }

/* Upload fichier (CV conducteur) */
.pm-contact-form-wrapper input[type="file"] {
  display: block;
  width: 100%;
  padding: 10px 12px;
  background: var(--pm-polar-bear);
  border: 1.5px dashed rgba(20, 24, 45, 0.3);
  border-radius: 10px;
  font-size: 13px;
  color: var(--pm-fg);
}

/* Submit button — pill orange (style DS) */
.pm-contact-form-wrapper .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 28px;
  background: var(--pm-orange-600); /* a11y : AA 4.89:1 */
  color: var(--pm-polar-bear);
  border: 0;
  border-radius: var(--pm-radius-pill);
  font: var(--pm-text-body-bold);
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--pm-shadow-pop);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), background .18s;
  white-space: nowrap;
}

.pm-contact-form-wrapper .wpcf7-submit:hover {
  background: var(--pm-fox-hair);
  transform: translateY(-1px);
}

.pm-contact-form-wrapper .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Messages CF7 (erreurs / succès) */
.pm-contact-form-wrapper .wpcf7-response-output {
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 12px;
}

.pm-contact-form-wrapper .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 13px;
  color: #c00;
}

/* Liens (politique conf) dans le form */
.pm-contact-form-wrapper a {
  color: var(--pm-orange-600); /* a11y : AA 4.89:1 sur Crème */
  text-decoration: underline;
}

.pm-contact-form-wrapper a:hover { opacity: 0.85; }

/* <br> parasites wp-autop */
/* `<br />` que CF7 insère entre label et input : on l'élimine complètement
   (display:none) pour que le label colle au champ sans saut de ligne fantôme. */
.pm-contact-form-wrapper form br { display: none; }

/* ─── Skip link (a11y) ─── */
.pm-skiplink {
  position: absolute; left: -10000px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.pm-skiplink:focus {
  position: fixed; left: 16px; top: 16px;
  width: auto; height: auto;
  background: var(--pm-felix-the-cat); color: var(--pm-polar-bear);
  padding: 12px 16px; border-radius: 8px;
  z-index: 9999;
  text-decoration: none;
}

/* ─── No-scroll while mobile menu open ─── */
.pm-no-scroll { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════════
   ARCHIVE — Blog index (archive.php, Sprint 4 session #133)
   Hero / Filtres chips / Article featured / Grille 3 col / Pagination
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.pm-archive__hero {
  position: relative;
  background-color: var(--pm-felix-the-cat);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 96px 0 64px;
}
.pm-archive__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18,28,38,0.78) 0%, rgba(18,28,38,0.58) 55%, rgba(18,28,38,0.38) 100%);
  pointer-events: none;
}
.pm-archive__hero-inner {
  position: relative;
  z-index: 2;
}
.pm-archive__crumbs {
  font-size: 13px;
  color: var(--pm-driver-skin);
  margin-bottom: 20px;
  opacity: .92;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pm-archive__crumbs a { color: inherit; text-decoration: none; }
.pm-archive__crumbs a:hover { text-decoration: underline; }
.pm-archive__overline {
  color: var(--pm-driver-skin);
  margin-bottom: 14px;
  display: inline-block;
}
.pm-archive__title {
  margin: 0 0 20px;
  color: var(--pm-polar-bear);
  max-width: 760px;
}
.pm-archive__lead {
  color: var(--pm-polar-bear) !important;
  max-width: 600px;
  opacity: .94;
  margin: 0;
}

/* ─── Filtres chips (boutons) ─── */
.pm-blog-filters-wrap {
  padding: 32px 0 0;
  background: var(--pm-bg);
}
.pm-blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pm-chip--button {
  cursor: pointer;
  border: 1.5px solid var(--pm-cream-300);
  background: transparent;
  color: var(--pm-fg);
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.pm-chip--button:hover {
  background: var(--pm-cream-200, #efe7d6);
  border-color: var(--pm-cream-300);
}
.pm-chip--button.is-active {
  background: var(--pm-fox-hair);
  color: var(--pm-polar-bear);
  border-color: var(--pm-fox-hair);
}

/* ─── Article featured ─── */
.pm-featured-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-bottom: 64px;
  transition: transform .18s ease;
}
.pm-featured-card:hover { transform: translateY(-3px); }
.pm-featured-card__cover {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--pm-radius-lg, 16px);
}
.pm-featured-card__chip { margin-bottom: 16px; }
.pm-featured-card__title { margin: 0 0 14px; text-wrap: balance; }
.pm-featured-card__excerpt {
  font-size: 16px;
  color: var(--pm-fg-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.pm-featured-card__meta {
  font-size: 13px;
  color: var(--pm-fg-subtle, var(--pm-fg-muted));
}

/* ─── Grille 3 col ─── */
.pm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  row-gap: 48px;
}
.pm-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease;
}
.pm-blog-card:hover { transform: translateY(-3px); }
.pm-blog-card__cover {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--pm-driver-skin);
  border-radius: var(--pm-radius-lg, 16px);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  margin-bottom: 14px;
}
.pm-blog-card__title {
  margin: 0 0 8px;
  text-wrap: balance;
}
.pm-blog-card__excerpt {
  font-size: 14px;
  color: var(--pm-fg-muted);
  line-height: 1.5;
  margin: 0 0 10px;
}
.pm-blog-card__meta {
  font-size: 12px;
  color: var(--pm-fg-subtle, var(--pm-fg-muted));
}

/* ─── Pagination ronde navy ─── */
.pm-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.pm-pagination__item { display: inline-flex; }
.pm-pagination__item .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1.5px solid var(--pm-felix-the-cat);
  background: transparent;
  color: var(--pm-felix-the-cat);
  font: var(--pm-text-body-bold);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .18s ease, color .18s ease;
}
.pm-pagination__item .page-numbers:hover {
  background: var(--pm-cream-200, #efe7d6);
}
.pm-pagination__item .page-numbers.current {
  background: var(--pm-felix-the-cat);
  color: var(--pm-polar-bear);
}
.pm-pagination__item .page-numbers.dots {
  border-color: transparent;
}

.pm-archive__empty {
  text-align: center;
  font-size: 16px;
  color: var(--pm-fg-muted);
  padding: 64px 0;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE — Template générique (page.php, Sprint 5-bis session #133)
   Utilisé par CGV / mentions / politique-conf / FAQ / longue-distance /
   conducteurs-partenaires / plan-du-site / etc.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero photo pelage (stable par page, déterministe via $page_id) ─── */
.pm-page__hero {
  position: relative;
  background-color: var(--pm-felix-the-cat);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 96px 0 72px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.pm-page__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18,28,38,0.78) 0%, rgba(18,28,38,0.58) 55%, rgba(18,28,38,0.38) 100%);
  pointer-events: none;
}
.pm-page__hero-inner {
  position: relative;
  z-index: 2;
}
.pm-page__crumbs {
  font-size: 13px;
  color: var(--pm-driver-skin);
  margin-bottom: 18px;
  opacity: .92;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pm-page__crumbs a { color: inherit; text-decoration: none; }
.pm-page__crumbs a:hover { text-decoration: underline; }
.pm-page__title {
  margin: 0;
  color: var(--pm-polar-bear);
  max-width: 720px;
}
.pm-page__lead {
  margin: 18px 0 0;
  color: var(--pm-polar-bear) !important;
  max-width: 620px;
  opacity: .92;
}

/* ─── Body + TOC : mêmes règles que single, sélecteurs propres aux pages ─── */
.pm-page__body {
  max-width: calc(988px + 2 * var(--pm-edge));
  margin-left: auto;
  margin-right: auto;
  padding: 48px var(--pm-edge) 80px;
}
.pm-page__body--with-toc {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 720px);
  column-gap: 48px;
  align-items: start;
}
.pm-page__content { max-width: 720px; }
/* Sans TOC : centrer le contenu (avec TOC, la grille place le content dans la colonne 1fr) */
.pm-page__body:not(.pm-page__body--with-toc) .pm-page__content {
  margin-left: auto;
  margin-right: auto;
}

/* ─── FAQ documentation (style statique sans accordéon) ─── */
.pm-faq-doc {
  margin: 16px 0 0;
}
.pm-faq-doc__item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(20, 24, 45, 0.12);
}
.pm-faq-doc__item:first-child { padding-top: 8px; }
.pm-faq-doc__item:last-child { border-bottom: 0; padding-bottom: 8px; }
.pm-faq-doc__q {
  font: 700 19px/1.3 var(--pm-font-display);
  letter-spacing: var(--pm-tracking-tight);
  color: var(--pm-fg);
  margin: 0 0 14px;
  display: flex; align-items: baseline; gap: 12px;
}
.pm-faq-doc__q::before {
  content: counter(faq-counter, decimal-leading-zero);
  counter-increment: faq-counter;
  font: 600 13px/1 var(--pm-font-body);
  letter-spacing: var(--pm-tracking-overline);
  color: var(--pm-fox-hair);
  flex-shrink: 0;
  padding-top: 2px;
}
.pm-faq-doc { counter-reset: faq-counter; }
.pm-faq-doc__cat {
  display: block;
  font: 700 11px/1 var(--pm-font-body);
  letter-spacing: var(--pm-tracking-overline);
  text-transform: uppercase;
  color: var(--pm-fox-hair);
  margin: 32px 0 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pm-fox-hair);
}
.pm-faq-doc__cat:first-child { margin-top: 0; }
.pm-faq-doc__a {
  color: var(--pm-fg-muted);
  font: 400 15px/1.6 var(--pm-font-body);
}
.pm-faq-doc__a p { margin: 0 0 12px; }
.pm-faq-doc__a p:last-child { margin-bottom: 0; }
.pm-faq-doc__a a { color: var(--pm-orange-600); text-decoration: underline; text-underline-offset: 3px; } /* a11y : AA 4.89:1 */
.pm-faq-doc__a a:hover { color: var(--pm-fox-hair); }
.pm-faq-doc__a strong { color: var(--pm-fg); }

/* ═══════════════════════════════════════════════════════════════════
   SINGLE — Article (single.php, Sprint 3 session #133)
   Hero photo / méta auteur / TOC sticky / prose / share / encart / CTA / related
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.pm-single__hero {
  position: relative;
  background-color: var(--pm-felix-the-cat);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 56px;
}
.pm-single__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,28,38,0.45) 0%, rgba(18,28,38,0.85) 100%);
  pointer-events: none;
}
.pm-single__hero--has-photo .pm-single__hero-overlay { display: block; }
.pm-single__hero-inner { position: relative; z-index: 2; }

/* Alignement zone reading 988px (= grid TOC 220 + gap 48 + content 720) :
   hero, meta et body single+page partagent un wrapper de mêmes dimensions
   et padding. Les !important sont nécessaires pour battre la cascade
   .pm-container (max-width 1920 + padding edge) que les wrappers single/page
   héritent — sans cela on observe un décalage visuel entre H1 hero et la TOC
   du body (feedback Laura session #137). */
.pm-single__hero-inner,
.pm-single__meta-wrap,
.pm-single__body,
.pm-page__hero-inner,
.pm-page__body {
  width: 100% !important;
  max-width: calc(988px + 2 * var(--pm-edge)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--pm-edge) !important;
  padding-right: var(--pm-edge) !important;
  box-sizing: border-box !important;
}
/* Le bloc meta peut occuper toute la zone reading 988 (trait haut/bas) */
.pm-container--reading > .pm-single__meta { max-width: 988px; }
.pm-single__crumbs {
  font-size: 13px;
  color: var(--pm-driver-skin);
  margin-bottom: 20px;
  opacity: .92;
  display: flex; flex-wrap: wrap; gap: 6px;
  max-width: 720px;
}
.pm-single__crumbs a { color: inherit; text-decoration: none; }
.pm-single__crumbs a:hover { text-decoration: underline; }
.pm-single__chip { margin-bottom: 18px; }
.pm-single__title {
  margin: 0 0 18px;
  color: var(--pm-polar-bear);
  max-width: 720px;
}
.pm-single__lead {
  color: var(--pm-polar-bear) !important;
  opacity: .92;
  max-width: 620px;
  margin: 0;
}

/* ─── Méta auteur + partage haut ───
   Padding-top/bottom only — préserve le padding gauche/droite (`edge`)
   hérité de .pm-container. */
.pm-single__meta-wrap {
  padding-top: 32px;
  padding-bottom: 40px;
}
.pm-single__meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--pm-cream-300);
  border-bottom: 1px solid var(--pm-cream-300);
  padding: 18px 0;
  /* Largeur calée sur le bloc body en dessous (TOC 220 + gap 48 + content max 720).
     Sur viewports étroits, max-width ne contraint pas (le flex prend ce qu'il
     peut dans le pm-container--reading). Sur viewports larges (≥ ~1440px),
     ça empêche le trait de dépasser la fin du texte article. */
  max-width: 988px;
}
.pm-single__author { display: flex; flex-direction: column; gap: 4px; }
.pm-single__author-name {
  font: var(--pm-text-body-bold);
  font-size: 14px;
  color: var(--pm-fg);
}
.pm-single__author-info {
  font-size: 12px;
  color: var(--pm-fg-muted);
  line-height: 1.6;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.pm-single__share { margin-left: auto; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.pm-single__share-label { font-size: 12px; color: var(--pm-fg-muted); }
.pm-single__share-buttons { display: flex; gap: 8px; }

/* ─── Partage : boutons ronds ─── */
.pm-share-btn {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--pm-cream-300);
  background: transparent;
  color: var(--pm-fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.pm-share-btn:hover {
  background: var(--pm-felix-the-cat);
  color: var(--pm-polar-bear);
  border-color: var(--pm-felix-the-cat);
  transform: translateY(-1px);
}
.pm-share-btn__feedback {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-size: 12px;
  font-weight: 600;
  background: var(--pm-felix-the-cat);
  color: var(--pm-polar-bear);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.pm-share-btn.is-copied .pm-share-btn__feedback {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Layout body + TOC desktop ───
   Le body est aligné avec le hero/méta via padding edge gauche/droite.
   En desktop avec TOC : grid 2 cols [TOC 220px][content 1fr] dans la zone reading. */
.pm-single__body {
  max-width: calc(988px + 2 * var(--pm-edge));
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--pm-edge) 64px;
}
.pm-single__body--with-toc {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 720px);
  column-gap: 48px;
  align-items: start;
}
.pm-toc-desktop {
  position: sticky;
  top: 100px;
  align-self: start;
  font-size: 13px;
  padding: 0;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.pm-toc-desktop__overline {
  color: var(--pm-fg-muted);
  margin-bottom: 14px;
}
.pm-toc-desktop__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-toc-desktop__list a {
  color: var(--pm-fg-muted);
  text-decoration: none;
  font: var(--pm-text-body);
  display: flex;
  gap: 6px;
  align-items: baseline;
  line-height: 1.4;
  transition: color .18s;
}
.pm-toc-desktop__list a:hover { color: var(--pm-fg); }
.pm-toc-desktop__list a.is-active {
  color: var(--pm-fox-hair);
  font: var(--pm-text-body-bold);
}
.pm-toc-desktop__num { color: var(--pm-fox-hair); flex-shrink: 0; }

.pm-single__content { max-width: 720px; }

/* ─── TOC mobile (collapsible) ─── */
.pm-toc-mobile {
  background: var(--pm-cream-100, #f7f1e8);
  border: 1px solid var(--pm-cream-300);
  border-radius: var(--pm-radius-md, 12px);
  padding: 14px 18px;
  margin-bottom: 28px;
  max-width: 720px;
}
.pm-toc-mobile summary {
  font: var(--pm-text-body-bold);
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--pm-fg);
}
.pm-toc-mobile summary .pm-overline { color: var(--pm-fg-muted); margin-right: 8px; }
.pm-toc-mobile__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.pm-toc-mobile__list a {
  color: var(--pm-fg-muted);
  text-decoration: none;
}
.pm-toc-mobile__list a:hover { color: var(--pm-fg); }

/* ─── Prose : typo dans le body de l'article ─── */
.pm-prose {
  font: var(--pm-text-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--pm-fg);
  max-width: 720px;
}
.pm-prose p, .pm-prose li { line-height: 1.5 !important; }
.pm-prose > * { max-width: 720px; }
.pm-prose p { margin: 0 0 18px; }
.pm-prose h2 {
  font: var(--pm-text-h2);
  letter-spacing: var(--pm-tracking-tight);
  margin: 40px 0 16px;
  text-wrap: balance;
  scroll-margin-top: 96px;
}
.pm-prose h3 {
  font: var(--pm-text-h3);
  margin: 32px 0 12px;
}
.pm-prose h4 { font: var(--pm-text-h4); margin: 24px 0 10px; }
.pm-prose ul, .pm-prose ol { margin: 0 0 18px; padding-left: 22px; }
.pm-prose li { margin-bottom: 6px; }
.pm-prose a {
  color: var(--pm-orange-600); /* a11y : AA 4.89:1 sur Crème */
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.pm-prose a:hover { color: var(--pm-fox-hair); }

/* Boutons WP (wp-block-button) dans pm-prose : override les styles de lien
   éditorial (`.pm-prose a` ci-dessus) qui mettent le texte orange + underline,
   ce qui rend le bouton illisible quand le fond est orange. */
.pm-prose .wp-block-button .wp-block-button__link,
.pm-prose .wp-block-button .wp-element-button {
  color: var(--pm-polar-bear);
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease, color .18s ease;
}
.pm-prose .wp-block-button .wp-block-button__link:hover,
.pm-prose .wp-block-button .wp-element-button:hover {
  background-color: var(--pm-orange-400);
  color: var(--pm-polar-bear);
  transform: translateY(-1px);
}
.pm-prose .wp-block-button .wp-block-button__link:active,
.pm-prose .wp-block-button .wp-element-button:active {
  background-color: var(--pm-orange-600);
  transform: scale(0.98);
}
.pm-prose blockquote {
  font-size: 22px;
  color: var(--pm-fox-hair);
  border-left: 3px solid var(--pm-fox-hair);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-weight: 500;
  font-family: var(--pm-font-accent);
  font-style: italic;
}
.pm-prose blockquote p { margin: 0 0 8px; }
/* Images Gutenberg : remplissent la colonne texte (max 720px).
   Override le style inline `width:Xpx` souvent posé par l'éditeur via "redimensionner".
   N.B. .wp-block-table (figure aussi) n'est pas concerné car il contient <table>, pas <img>. */
.pm-prose .wp-block-image,
.pm-prose .wp-block-image.is-resized,
.pm-prose figure.wp-block-image {
  margin: 28px 0;
  width: 100% !important;
  max-width: 100% !important;
}
.pm-prose .wp-block-image img,
.pm-prose figure:not(.wp-block-table) img,
.pm-prose > img {
  width: 100% !important;
  height: auto !important;
  border-radius: var(--pm-radius-md, 12px);
  display: block;
}
/* Conserver les alignements Gutenberg natifs si l'éditeur les utilise */
.pm-prose .alignleft img,
.pm-prose .alignright img { width: auto !important; max-width: 50% !important; }
.pm-prose .aligncenter { margin-left: auto; margin-right: auto; }

/* ─── pm-prose : Normalisation cross-thème (Sprint 5-bis session #133) ───
   Certaines pages (longue-distance, conducteurs-partenaires, faq) ont été
   éditées avec l'ancien thème `patt-mobil` v2.1.0 et utilisent des classes
   de palette legacy (pm-beige/pm-saumon/pm-blue) + des blocs complexes
   (wp-block-cover / wp-block-columns / wp-block-media-text / wp-block-group).
   Ici on : (1) force la baseline typo sur tous les <p>/<li>, (2) mappe les
   classes legacy vers la palette Patt'Mobil 2026, (3) normalise les paddings
   et le rendu des blocs Gutenberg complexes pour rester cohérent avec
   les pages "simples" (CGV, mentions). */

/* (1) Baseline typo forcée sur tout texte enfant */
.pm-prose p,
.pm-prose li,
.pm-prose .wp-block-paragraph {
  font-size: 17px;
  line-height: 1.75;
  color: var(--pm-fg);
}

/* (2) Mapping palette ancien thème → palette 2026 */
.pm-prose .has-pm-beige-color,
.pm-prose .has-pm-saumon-color { color: var(--pm-driver-skin); }
.pm-prose .has-pm-beige-background-color,
.pm-prose .has-pm-saumon-background-color {
  background-color: var(--pm-driver-skin);
}
.pm-prose .has-pm-blue-color { color: var(--pm-felix-the-cat); }
.pm-prose .has-pm-blue-background-color {
  background-color: var(--pm-felix-the-cat);
  color: var(--pm-polar-bear);
}
.pm-prose .has-pm-orange-color { color: var(--pm-fox-hair); }
.pm-prose .has-pm-orange-background-color {
  background-color: var(--pm-fox-hair);
  color: var(--pm-polar-bear);
}
/* Si du texte legacy demande un fond sombre, on s'assure que le texte reste lisible */
.pm-prose .has-pm-blue-background-color *,
.pm-prose .has-pm-orange-background-color *,
.pm-prose .wp-block-cover .wp-block-cover__inner-container > * {
  color: var(--pm-polar-bear);
}

/* (3) Normalisation des blocs Gutenberg complexes */
.pm-prose .wp-block-group,
.pm-prose .wp-block-columns,
.pm-prose .wp-block-media-text {
  margin: 28px 0;
}
.pm-prose .wp-block-columns { gap: 32px; }
.pm-prose .wp-block-column > * { max-width: 100%; }
.pm-prose .wp-block-media-text__content { padding: 0 32px; }
.pm-prose .wp-block-media-text__content p { font-size: 17px; line-height: 1.55; }

/* Cover : bord arrondi cohérent avec les autres images, padding interne, texte clair */
.pm-prose .wp-block-cover {
  border-radius: var(--pm-radius-lg, 16px);
  overflow: hidden;
  margin: 32px 0;
  padding: 56px 32px;
  min-height: 240px;
}
.pm-prose .wp-block-cover h2,
.pm-prose .wp-block-cover h3,
.pm-prose .wp-block-cover h4,
.pm-prose .wp-block-cover p { color: var(--pm-polar-bear); }

/* Separator stylé : trait crème, marge généreuse */
.pm-prose .wp-block-separator {
  border: 0;
  border-top: 1px solid var(--pm-cream-300);
  margin: 40px 0;
  background: transparent;
  height: auto;
}
.pm-prose .wp-block-separator.has-alpha-channel-opacity { opacity: 1; }

/* Spacer : on respecte la hauteur déclarée par l'éditeur (style inline height) */
.pm-prose .wp-block-spacer { display: block; }

/* Tableau Gutenberg : baseline typo + bordure crème */
.pm-prose .wp-block-table { margin: 28px 0; width: 100%; }
.pm-prose .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}
.pm-prose .wp-block-table th,
.pm-prose .wp-block-table td {
  border: 1px solid var(--pm-cream-300);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.pm-prose .wp-block-table thead th {
  background: var(--pm-cream-100, #f7f1e8);
  font-weight: 600;
}

/* Boutons natifs : déjà gérés au-dessus mais on force le wrapper à respirer */
.pm-prose .wp-block-buttons { margin: 28px 0; }

/* Embeds Spotify : override le padding-aspect-ratio WP (21:9 par défaut)
   qui force un cadre 21:9 trop court → mode mini-player Spotify + grand
   espace blanc en dessous du widget. On passe à une hauteur fixe 420px
   (mode "standard" Spotify avec liste de morceaux visible). */
.pm-prose .wp-block-embed-spotify { margin: 28px 0; width: 100%; }
.pm-prose .wp-block-embed-spotify.wp-has-aspect-ratio .wp-block-embed__wrapper::before {
  display: none !important;
}
.pm-prose .wp-block-embed-spotify .wp-block-embed__wrapper {
  position: relative;
}
.pm-prose .wp-block-embed-spotify iframe {
  position: relative !important;
  width: 100% !important;
  height: 420px !important;
  border-radius: 12px;
  display: block;
}
.pm-prose figcaption { font-size: 13px; color: var(--pm-fg-muted); margin-top: 8px; text-align: center; }
.pm-prose hr {
  border: 0;
  border-top: 1px solid var(--pm-cream-300);
  margin: 40px 0;
}

/* ─── Encart "Vous préférez déléguer ?" (pattern Gutenberg) ─── */
.pm-encart-cta {
  background: var(--pm-driver-skin);
  border-radius: var(--pm-radius-lg, 16px);
  padding: 28px;
  margin: 48px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 720px;
}
.pm-encart-cta__icon { width: 70px; height: auto; flex-shrink: 0; max-width: 70px; }
.pm-encart-cta__body { flex: 1; }
.pm-encart-cta__overline {
  color: var(--pm-fox-hair);
  display: block;
  margin-bottom: 6px;
}
.pm-encart-cta__title { margin: 0 0 8px; }
.pm-encart-cta__text {
  font-size: 14px;
  color: var(--pm-fg);
  margin: 0 0 14px;
  line-height: 1.55;
}
.pm-encart-cta .pm-btn { margin: 0; }

/* ─── Footer single : tags + share bas ─── */
.pm-single__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0 8px;
  border-top: 1px solid var(--pm-cream-300);
  margin-top: 32px;
  max-width: 720px;
}
.pm-single__tags { display: flex; flex-direction: column; gap: 12px; }
.pm-single__tags-list { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-chip--cream {
  background: var(--pm-cream-200, #efe7d6);
  color: var(--pm-fg);
  border-color: transparent;
}
.pm-single__share--bottom {
  margin-left: 0;
  align-items: flex-start;
}

/* ─── CTA réservation orange (Sprint 3 — utilisable autres pages) ─── */
.pm-cta-reserve {
  background: var(--pm-fox-hair);
  color: var(--pm-polar-bear);
  padding: 64px 0;
}
.pm-cta-reserve__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.pm-cta-reserve__overline { color: var(--pm-driver-skin); }
.pm-cta-reserve__title {
  margin: 12px 0 16px;
  color: var(--pm-polar-bear) !important;
}
.pm-cta-reserve__lead {
  font-size: 17px;
  opacity: .92;
  margin: 0 0 24px;
  max-width: 480px;
}
.pm-cta-reserve__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pm-cta-reserve__alt {
  background: transparent;
  color: var(--pm-polar-bear);
  border: 2px solid var(--pm-polar-bear);
}
.pm-cta-reserve__alt:hover {
  background: var(--pm-polar-bear);
  color: var(--pm-fox-hair);
}
.pm-cta-reserve__deco {
  position: relative;
  height: 200px;
}
.pm-cta-reserve__deco img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .45;
}

/* ─── Articles liés ─── */
.pm-related { background: var(--pm-cream-50, #fbf7ee); }
.pm-related__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pm-related__overline { color: var(--pm-fox-hair); }
.pm-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pm-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .18s;
}
.pm-related-card:hover { transform: translateY(-3px); }
.pm-related-card__cover {
  aspect-ratio: 16 / 10;
  border-radius: var(--pm-radius-lg, 16px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  margin-bottom: 12px;
}
.pm-related-card__title {
  margin: 0 0 6px;
  text-wrap: balance;
}
.pm-related-card__meta {
  font-size: 13px;
  color: var(--pm-fg-muted);
}

/* ─── Mobile burger + menu (hidden on desktop) ─── */
.pm-header__burger { display: none; }
.pm-mobile-menu { display: none; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Sprint 6 Batch B (audit responsive session #136)
   Comble les trous entre mobile (≤768) et desktop calibré 1280px.
   Cibles : iPad portrait/landscape, MacBook Air, iPhone Plus/Pro Max, 4K.
   ═══════════════════════════════════════════════════════════════════ */

/* responsive #31 — reduced motion (a11y bonus, OS-level user preference) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .pm-fade { opacity: 1; transform: none; }
  .pm-testimonials__track { transform: none !important; }
}

/* ──────────────────────────────────────────────────────────────────
   Tablette + petit laptop : 769 → 1199px
   Vise iPad portrait/landscape, MacBook Air 11", chromebooks.
   ────────────────────────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1199px) {
  /* responsive #2 : edge dynamique 200→32px (libère ~336px par côté) */
  :root { --pm-edge: 32px; }

  /* responsive #10 : header phone CTA caché pour libérer la nav */
  .pm-header__phone { display: none; }

  /* responsive #13 : monogramme chat hero caché (chevauche le titre) */
  .pm-hero-photo::after { display: none !important; }

  /* responsive #7 : reassure bar wrap pour ne pas overflow */
  .pm-reassure__inner {
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 24px 40px;
  }

  /* responsive #14 : TOC desktop sidebar masquée — TOC mobile collapsible visible */
  .pm-single__body--with-toc,
  .pm-page__body--with-toc {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }
  .pm-toc-desktop { display: none !important; }
  .pm-toc-mobile { display: block !important; }

  /* responsive #9 : footer 2 cols + 1ère col pleine largeur (newsletter respire) */
  .pm-footer .pm-container { padding: 0 32px; }
  .pm-footer__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
  .pm-footer__grid > .pm-footer__brand { grid-column: 1 / -1; }
}

/* ──────────────────────────────────────────────────────────────────
   Tablette stricte : 769 → 1023px
   Vise iPad landscape, écrans étroits — sections complexes basculent
   en versions simplifiées (proche du mobile).
   ────────────────────────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1023px) {
  /* responsive #5 : trip-types desktop → accordion mobile (panneaux trop étroits) */
  .pm-trip {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }
  .pm-trip-panels-desktop { display: none !important; }
  .pm-trip-button { width: 100%; }
  .pm-trip-panel-mobile { display: block !important; }

  /* responsive #4 : section App — cacher 2e iPhone, centrer le 1er */
  .pm-app-section__phone--right { display: none !important; }
  .pm-app-section__phones {
    margin-right: 0 !important;
    justify-content: center;
  }

  /* responsive #6 : slider témoignages slide 480px (au lieu de 620 qui dépassait) */
  .pm-testimonials__slide {
    flex: 0 0 480px;
    min-height: 200px;
  }

  /* responsive #15 : sim widget pill stack à 1 colonne */
  .pm-sim {
    grid-template-columns: 1fr !important;
    border-radius: 18px;
    padding: 6px;
  }
  .pm-sim__field + .pm-sim__field {
    border-left: 0;
    border-top: 1px solid var(--pm-cream-300);
  }
  .pm-sim__cta { padding: 6px 0 0; }
  .pm-sim__cta button { width: 100%; }

  /* responsive #16, #19, #44 : grilles 3 cols → 2 cols (blog + articles + related) */
  .pm-blog-grid,
  .pm-related__grid,
  .pm-articles__grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* responsive #17 : featured card blog stack 1 col */
  .pm-featured-card {
    grid-template-columns: 1fr !important;
  }

  /* responsive #18 : process 4 étapes → grille 2×2 */
  .pm-process {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px;
  }

  /* responsive #20 : cas photos 280→220px (3 photos visibles) */
  .pm-cas-grid > * {
    flex: 0 0 220px !important;
  }

  /* responsive #27 : wp-block-columns stack (pages héritées) */
  .pm-prose .wp-block-columns { flex-wrap: wrap !important; }
  .pm-prose .wp-block-columns .wp-block-column { flex-basis: 100% !important; }

  /* responsive #32 : logo header 48→40px (transition harmonisée vers mobile 28) */
  .pm-logo { height: 40px; }

  /* responsive #33 : typo display/H1 intermédiaire (saut 24→30 trop brutal) */
  .pm-h1 { font-size: 26px; }
  .pm-display-1 { font-size: 44px; }
  .pm-display-2 { font-size: 36px; }

  /* responsive #35 : footer padding intermédiaire 80→60px */
  .pm-footer { padding: 60px 0 32px; }

  /* responsive #39 : CTA reserve deco cachée (image absolue dans col étroite) */
  .pm-cta-reserve__deco { display: none !important; }
}

/* ──────────────────────────────────────────────────────────────────
   Laptop standard : 1200 → 1439px
   Edge intermédiaire (laptops 13" Air, surfaces).
   ────────────────────────────────────────────────────────────────── */
@media (min-width: 1200px) and (max-width: 1439px) {
  /* responsive #2 (suite) : edge 200→80px à 1280 — laisse la prose atteindre 720 */
  :root { --pm-edge: 80px; }
}

/* ──────────────────────────────────────────────────────────────────
   Mobile + tablette stricte : ≤ 1023px
   Règles partagées entre mobile (≤768) et tablette (769-1023).
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  /* responsive #27 (extension) : wp-block-columns stack aussi en mobile pur */
  .pm-prose .wp-block-columns { flex-wrap: wrap; }
  .pm-prose .wp-block-columns .wp-block-column { flex-basis: 100% !important; }
}

/* ──────────────────────────────────────────────────────────────────
   Mobile : ≤ 768px (extensions au-delà de pm-mobile.css)
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* responsive #21 : forms CF7 stack 2 cols → 1 col (était limité à 600) */
  .pm-contact-form-wrapper .contact-form-row {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  /* responsive #26 : wp-block-cover padding réduit en mobile (pages héritées) */
  .pm-prose .wp-block-cover {
    padding: 32px 20px !important;
    min-height: 200px !important;
  }

  /* responsive #29 : iPhone section app réduit 260→200px */
  .pm-iphone { width: 200px !important; }

  /* responsive #37 : pullquote 22→18px */
  .pm-pullquote { font-size: 18px; }

  /* responsive #41 : radio chips min-width auto (évite débordement libellés longs) */
  .wpcf7-radio label,
  .wpcf7-acceptance label { min-width: auto !important; }

  /* responsive #43 : Gutenberg wp-block-buttons stack mobile */
  .pm-prose .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .pm-prose .wp-block-buttons .wp-block-button { width: 100%; }
  .pm-prose .wp-block-buttons .wp-block-button .wp-block-button__link {
    display: block;
    text-align: center;
  }
}

/* ──────────────────────────────────────────────────────────────────
   Grand écran : ≥ 1920px
   Évite l'étirement et centre les contenus carousel.
   ────────────────────────────────────────────────────────────────── */
@media (min-width: 1920px) {
  /* responsive #22 : cas grid centré (au lieu de collé à gauche) */
  .pm-cas-grid { justify-content: center; }

  /* responsive #8 : section témoignages full-bleed → utiliser overflow clip global */
  html { overflow-x: clip; }
}

/* ──────────────────────────────────────────────────────────────────
   Page LD — grid 6 cards tarifs sticker-shadow (Phase 4 SEO #140)
   Style cohérent avec process steps + bloc Pratique
   ────────────────────────────────────────────────────────────────── */
.pm-ld-pricing-grid {
  margin: 32px 0 8px;
}
.pm-ld-pricing-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pm-ld-pricing-card {
  background: var(--pm-cream-100);
  border: 2px solid var(--pm-felix-the-cat);
  box-shadow: 4px 5px 0 var(--pm-felix-the-cat);
  padding: 16px 16px 18px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pm-ld-pricing-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 7px 0 var(--pm-felix-the-cat);
}
.pm-ld-pricing-card__route {
  font-family: 'MADE Dillan', serif;
  font-size: 18px;
  font-weight: normal;
  color: var(--pm-felix-the-cat);
  line-height: 1.15;
}
.pm-ld-pricing-card__distance {
  display: inline-block;
  align-self: flex-start;
  background: var(--pm-driver-skin);
  color: var(--pm-felix-the-cat);
  font-family: 'Tired Of Courier', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.pm-ld-pricing-card__case {
  font-size: 13px;
  line-height: 1.4;
  color: var(--pm-felix-the-cat);
  opacity: 0.82;
  margin: 0;
}
.pm-ld-pricing-card__case strong {
  display: block;
  font-weight: 600;
  opacity: 1;
  margin-bottom: 1px;
}
.pm-ld-pricing-card__price {
  margin-top: auto;
  font-family: 'MADE Dillan', serif;
  font-size: 26px;
  color: var(--pm-fox-hair);
  line-height: 1;
  padding-top: 6px;
  border-top: 1px solid var(--pm-cream-300);
}
.pm-ld-pricing-caption {
  font-size: 14px;
  color: var(--pm-fg-muted);
  margin: 16px 0 32px;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────────
   Phase 5 SEO — 4 blocs certifications LD (navy individuels, alignés)
   ────────────────────────────────────────────────────────────────── */
.pm-cert-strip {
  margin: 36px 0;
}
.pm-cert-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pm-cert-strip__item {
  background: var(--pm-felix-the-cat);
  color: var(--pm-polar-bear);
  padding: 28px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 96px;
}
.pm-cert-strip__title {
  font-family: 'MADE Dillan', serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .pm-cert-strip { margin: 28px 0; }
  .pm-cert-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pm-cert-strip__item { min-height: 84px; padding: 22px 14px; }
  .pm-cert-strip__title { font-size: 18px; }
}
@media (max-width: 380px) {
  .pm-cert-strip__inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .pm-ld-pricing-card { transition: none; }
  .pm-ld-pricing-card:hover { transform: none; box-shadow: 4px 5px 0 var(--pm-felix-the-cat); }
}
@media (max-width: 1024px) {
  .pm-ld-pricing-grid__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pm-ld-pricing-grid__inner { grid-template-columns: 1fr; gap: 14px; }
  .pm-ld-pricing-card { padding: 14px 14px 16px; }
  .pm-ld-pricing-card__route { font-size: 17px; }
  .pm-ld-pricing-card__price { font-size: 24px; }
  .pm-ld-pricing-caption { font-size: 13px; }
}
