:root {
  --ink: #151515;
  --muted: #717171;
  --paper: #faf9f7;
  --card: #ffffff;
  --line: #e8e5df;
  --red: #c91f2b;
  --red-dark: #94151e;
  --gold: #b79a67;
  --green: #13795b;
  --shadow: 0 18px 48px rgba(20, 17, 13, .10);
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

/* Accueil simple demandé : composition éditoriale sans photos, sans slider et
   sans cartes de flotte. Les formes graphiques remplacent les visuels lourds
   et gardent une hiérarchie claire sur mobile comme sur desktop. */
body.tp-home-simple-page main {
  background: #fff;
}
.tp-home-simple {
  --simple-ink: #171717;
  --simple-muted: #766f68;
  --simple-red: #d5202d;
  --simple-cream: #eee7dc;
  color: var(--simple-ink);
  overflow: hidden;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.tp-home-simple * { box-sizing: border-box; }
.tp-simple-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}
.tp-simple-hero {
  padding: clamp(60px, 8vw, 108px) 0 clamp(58px, 7vw, 92px);
  background: var(--simple-ink);
  color: #fff;
}
.tp-simple-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
}
.tp-simple-kicker {
  display: inline-block;
  color: #c9a66d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.tp-simple-hero h1 {
  max-width: 700px;
  margin: 20px 0 22px;
  color: #fff;
  font-size: clamp(48px, 7vw, 77px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .98;
}
.tp-simple-hero-copy > p {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
}
.tp-simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.tp-simple-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.tp-simple-button:hover { transform: translateY(-2px); }
.tp-simple-button-primary { background: var(--simple-red); color: #fff; }
.tp-simple-button-primary:hover { background: #ef3340; color: #fff; }
.tp-simple-button-secondary { border-color: rgba(255,255,255,.3); color: #fff; }
.tp-simple-button-secondary:hover { border-color: #fff; color: #fff; }
.tp-simple-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 31px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}
.tp-simple-proof span { display: inline-flex; align-items: center; gap: 8px; }
.tp-simple-proof b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(110,213,168,.17);
  color: #78d6aa;
  font-size: 12px;
}
.tp-simple-hero-card {
  position: relative;
  min-height: 390px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.2);
  background: #242424;
  isolation: isolate;
}
.tp-simple-hero-card::before,
.tp-simple-hero-card::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.tp-simple-hero-card::before {
  top: 66px;
  right: -28px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--simple-red);
  opacity: .94;
}
.tp-simple-hero-card::after {
  right: 35px;
  bottom: 72px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
}
.tp-simple-hero-card-top,
.tp-simple-hero-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tp-simple-monogram {
  display: grid;
  min-height: 245px;
  place-items: center;
}
.tp-simple-monogram span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(72px, 11vw, 142px);
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: 1;
}
.tp-simple-monogram i {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}
.tp-simple-hero-card-bottom { align-items: end; color: #fff; }
.tp-simple-hero-card-bottom strong { color: #ef777d; font-size: 17px; letter-spacing: -.04em; }
.tp-simple-hero-card-bottom span { max-width: 150px; text-align: right; }
.tp-simple-signal { background: #fff; border-bottom: 1px solid #e1dcd5; }
.tp-simple-signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 31px 0;
}
.tp-simple-signal h2 {
  max-width: 640px;
  margin: 8px 0 0;
  color: #37322e;
  font-size: clamp(19px, 2.3vw, 30px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.2;
}
.tp-simple-signal-mark {
  min-width: 88px;
  color: var(--simple-red);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .75;
  text-align: right;
}
.tp-simple-signal-mark small { font-size: 12px; letter-spacing: .14em; }
.tp-simple-steps { padding: clamp(64px, 8vw, 105px) 0; }
.tp-simple-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.tp-simple-section-heading h2,
.tp-simple-promise h2,
.tp-simple-final h2 {
  margin: 13px 0 0;
  color: var(--simple-ink);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: 1;
}
.tp-simple-section-heading > p {
  max-width: 280px;
  margin: 0;
  color: var(--simple-muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}
.tp-simple-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d9d3ca;
  border-bottom: 1px solid #d9d3ca;
}
.tp-simple-steps-grid article {
  position: relative;
  min-height: 250px;
  padding: 27px 28px 31px 0;
}
.tp-simple-steps-grid article + article { padding-left: 28px; border-left: 1px solid #d9d3ca; }
.tp-simple-step-number { color: var(--simple-red); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.tp-simple-steps-grid h3 { margin: 58px 0 12px; font-size: 22px; letter-spacing: -.055em; line-height: 1.1; }
.tp-simple-steps-grid p { max-width: 280px; margin: 0; color: var(--simple-muted); font-size: 14px; line-height: 1.65; }
.tp-simple-step-line { position: absolute; right: 28px; bottom: 32px; width: 46px; height: 1px; background: var(--simple-red); }
.tp-simple-promise { padding: clamp(58px, 8vw, 100px) 0; background: var(--simple-cream); }
.tp-simple-promise-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr); gap: clamp(40px, 9vw, 135px); align-items: start; }
.tp-simple-promise p { max-width: 570px; margin: 25px 0 0; color: var(--simple-muted); font-size: 16px; line-height: 1.75; }
.tp-simple-text-link { display: inline-flex; gap: 12px; margin-top: 28px; color: var(--simple-red); font-size: 13px; font-weight: 800; }
.tp-simple-promise ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid #d4cbbc; }
.tp-simple-promise li { display: flex; align-items: baseline; gap: 15px; padding: 17px 0; border-bottom: 1px solid #d4cbbc; color: #4d4740; font-size: 14px; line-height: 1.45; }
.tp-simple-promise li span { color: var(--simple-red); font-size: 21px; font-weight: 400; }
.tp-simple-final { padding: clamp(56px, 7vw, 84px) 0; background: var(--simple-red); color: #fff; }
.tp-simple-final-inner { display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.tp-simple-final .tp-simple-kicker { color: #ffd7a1; }
.tp-simple-final h2 { color: #fff; }
.tp-simple-final p { max-width: 470px; margin: 20px 0 0; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.6; }
.tp-simple-button-light { background: #fff; color: var(--simple-ink); white-space: nowrap; }
.tp-simple-button-light:hover { background: #f7e9db; color: var(--simple-ink); }

/* Personnalisation FR : bloc éditorial placé immédiatement sous le hero. */
.tp-fr-home-steps {
  overflow: hidden;
  padding: clamp(68px, 7vw, 104px) 0 clamp(76px, 8vw, 112px);
  background: #fff;
  color: #373737;
}
.tp-fr-home-steps-shell {
  width: 100%;
  margin: 0 auto;
}
.tp-fr-home-steps-heading {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}
.tp-fr-home-steps-emblem {
  display: flex;
  width: 99px;
  height: 48px;
  margin: 0 auto 26px;
}
.tp-fr-home-steps-emblem img { display: block; width: 99px; height: 48px; }
.tp-fr-home-steps-heading h2 {
  max-width: 1200px;
  margin: 0 auto;
  color: #3b3b3b;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}
.tp-fr-home-steps-heading p {
  max-width: 1200px;
  margin: 28px auto 0;
  color: #333;
  font-size: 16px;
  line-height: 1.2;
}
.tp-fr-home-steps-layout {
  display: grid;
  width: min(1326px, 100%);
  grid-template-columns: 450px 846px;
  align-items: end;
  gap: 30px;
  margin-top: 0px;
}
.tp-fr-home-steps-illustration {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: flex-start;
}
.tp-fr-home-steps-illustration img { display: block; width: 450px; height: auto; }
.tp-fr-home-steps-content { min-width: 0; }
.tp-fr-home-steps-cards {
  display: grid;
  grid-template-columns: repeat(3, 262px);
  gap: 30px;
}
.tp-fr-home-steps-card {
  position: relative;
  display: flex;
  width: 262px;
  height: 262px;
  min-height: 262px;
  align-items: flex-start;
  overflow: hidden;
  padding: 40px;
}
.tp-fr-home-steps-card-one { background: #d1f9d6; }
.tp-fr-home-steps-card-two { background: #cfebf3; }
.tp-fr-home-steps-card-three { background: #f0dfc8; }
.tp-fr-home-steps-card h3 {
  position: relative;
  z-index: 1;
  max-width: 235px;
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.2;
}
.tp-fr-home-steps-number {
  position: absolute;
  right: -12px;
  bottom: -39px;
  color: rgba(255, 255, 255, .76);
  font-size: 180px;
  font-weight: 800;
  letter-spacing: -.12em;
  line-height: .8;
}
.tp-fr-home-steps-cta {
  display: flex;
  width: max-content;
  min-height: 61px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 42px auto 0;
  padding: 17px 43px;
  background: #d83a3b;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 800;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.tp-fr-home-steps-cta:hover { background: #bd292f; color: #fff; transform: translateY(-2px); }

@media (max-width: 1350px) {
  .tp-fr-home-steps-layout { grid-template-columns: minmax(300px, 450px) minmax(0, 1fr); }
  .tp-fr-home-steps-illustration img { width: min(450px, 100%); }
  .tp-fr-home-steps-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .tp-fr-home-steps-card { width: auto; height: auto; min-height: 0; aspect-ratio: 1; padding: 36px 24px; }
}

@media (max-width: 1080px) {
  .tp-fr-home-steps-layout { grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 25px; }
  .tp-fr-home-steps-cards { gap: 18px; }
  .tp-fr-home-steps-card { width: auto; height: auto; min-height: 0; aspect-ratio: 1; padding: 36px 28px 35px; }
  .tp-fr-home-steps-card h3 { font-size: 18px; }
  .tp-fr-home-steps-number { font-size: 180px; }
}

@media (max-width: 820px) {
  .tp-fr-home-steps-shell { width: min(100% - 32px, 620px); }
  .tp-fr-home-steps-heading { width: 100%; }
  .tp-fr-home-steps-layout { grid-template-columns: minmax(0, 1fr); gap: 25px; }
  .tp-fr-home-steps-illustration { justify-content: center; }
  .tp-fr-home-steps-illustration img { width: min(450px, 100%); }
  .tp-fr-home-steps-cards { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .tp-fr-home-steps-card { width: auto; height: auto; min-height: 190px; aspect-ratio: auto; padding: 29px 28px; }
  .tp-fr-home-steps-card h3 { max-width: 80%; font-size: 18px; }
  .tp-fr-home-steps-number { right: -7px; bottom: -30px; font-size: 170px; }
  .tp-fr-home-steps-cta { width: 100%; margin-top: 26px; }
}

@media (max-width: 520px) {
  .tp-fr-home-steps { padding-top: 55px; }
  .tp-fr-home-steps-heading p { margin-top: 21px; font-size: 16px; line-height: 1.2; }
  .tp-fr-home-steps-layout { margin-top: 28px; }
  .tp-fr-home-steps-emblem { margin-bottom: 20px; }
}

/* Personnalisation FR : section interactive « Pourquoi choisir » sous le bloc précédent. */
.tp-fr-home-why {
  overflow: hidden;
  padding: 25px 0 52px;
  background: #fff;
  color: #333;
}
.tp-fr-home-why-shell {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}
.tp-fr-home-why-heading {
  text-align: center;
}
.tp-fr-home-why-emblem {
  display: flex;
  width: 99px;
  height: 48px;
  margin: 0 auto 29px;
}
.tp-fr-home-why-emblem img {
  display: block;
  width: 99px;
  height: 48px;
}
.tp-fr-home-why-heading h2 {
  max-width: 720px;
  margin: 0 auto;
  color: #444;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.75px;
  line-height: 36px;
}
.tp-fr-home-why-panels {
  margin-top: 50px;
}
.tp-fr-home-why-panel {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 55px;
  min-height: 305px;
  align-items: start;
}
.tp-fr-home-why-panel[hidden] {
  display: none;
}
.tp-fr-home-why-image {
  display: flex;
  min-height: 305px;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
}
.tp-fr-home-why-image img {
  display: block;
  width: min(430px, 100%);
  height: auto;
  object-fit: contain;
}
.tp-fr-home-why-copy h3 {
  margin: 0 0 27px;
  color: #333;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 33px;
}
.tp-fr-home-why-copy {
  padding-top: 37px;
}
.tp-fr-home-why-copy p {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 24px;
}
.tp-fr-home-why-tabs {
  display: flex;
  width: min(730px, 100%);
  min-height: 67px;
  align-items: center;
  margin: 60px auto 0;
  padding: 17px 26px;
  border-radius: 999px;
  background: #fafafa;
}
.tp-fr-home-why-tab {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0 22px;
  border: 0;
  border-left: 0 solid #d4d4d4;
  background: transparent;
  color: #333;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
}
.tp-fr-home-why-tab + .tp-fr-home-why-tab {
  border-left-width: 2px;
}
.tp-fr-home-why-tab.is-active,
.tp-fr-home-why-tab:hover {
  color: #d83a3b;
}
.tp-fr-home-why-tab:focus-visible {
  outline: 2px solid #d83a3b;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .tp-fr-home-why-shell { width: min(900px, calc(100% - 48px)); }
  .tp-fr-home-why-panel { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 820px) {
  .tp-fr-home-why { padding: 80px 0 42px; }
  .tp-fr-home-why-shell { width: min(100% - 32px, 620px); }
  .tp-fr-home-why-heading h2 { max-width: 100%; }
  .tp-fr-home-why-panels { margin-top: 52px; }
  .tp-fr-home-why-panel { grid-template-columns: minmax(0, 1fr); gap: 20px; min-height: 0; }
  .tp-fr-home-why-image { min-height: 0; }
  .tp-fr-home-why-copy { padding-top: 0; }
  .tp-fr-home-why-image img { width: min(430px, 100%); }
  .tp-fr-home-why-tabs { width: 100%; margin-top: 42px; padding: 14px 8px; }
  .tp-fr-home-why-tab { padding: 0 8px; font-size: 15px; line-height: 24px; }
}

/* Personnalisation FR : galerie photo et affichage plein écran au clic. */
.tp-fr-home-gallery {
  overflow: hidden;
  padding: 72px 0 80px;
  background: #fff;
  color: #333;
}
.tp-fr-home-gallery-shell {
  width: min(1920px, calc(100% - 54px));
  margin: 0 auto;
}
.tp-fr-home-gallery-heading {
  text-align: center;
}
.tp-fr-home-gallery-emblem {
  display: flex;
  width: 99px;
  height: 48px;
  margin: 0 auto 29px;
}
.tp-fr-home-gallery-emblem img {
  display: block;
  width: 99px;
  height: 48px;
}
.tp-fr-home-gallery-heading h2 {
  margin: 0;
  color: #333;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.75px;
  line-height: 36px;
}
.tp-fr-home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.tp-fr-home-gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #e9e9e9;
  cursor: pointer;
}
.tp-fr-home-gallery-item:focus-visible {
  outline: 3px solid #d83a3b;
  outline-offset: 4px;
}
.tp-fr-home-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.tp-fr-home-gallery-item:hover img {
  transform: scale(1.04);
}
body.tp-fr-home-gallery-open {
  overflow: hidden;
}
.tp-fr-home-gallery-lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 80px;
  background: rgba(24, 35, 49, .94);
}
.tp-fr-home-gallery-lightbox[hidden] {
  display: none;
}
.tp-fr-home-gallery-lightbox-figure {
  display: flex;
  max-width: calc(100vw - 220px);
  max-height: calc(100vh - 160px);
  align-items: center;
  justify-content: center;
  margin: 0;
}
.tp-fr-home-gallery-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
}
.tp-fr-home-gallery-lightbox-close,
.tp-fr-home-gallery-lightbox-prev,
.tp-fr-home-gallery-lightbox-next {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.tp-fr-home-gallery-lightbox-close:hover,
.tp-fr-home-gallery-lightbox-prev:hover,
.tp-fr-home-gallery-lightbox-next:hover {
  background: #f1f1f1;
}
.tp-fr-home-gallery-lightbox-close:focus-visible,
.tp-fr-home-gallery-lightbox-prev:focus-visible,
.tp-fr-home-gallery-lightbox-next:focus-visible {
  outline: 3px solid #d83a3b;
  outline-offset: 4px;
}
.tp-fr-home-gallery-lightbox-close {
  top: 31px;
  right: 31px;
  font-size: 39px;
  font-weight: 300;
}
.tp-fr-home-gallery-lightbox-prev,
.tp-fr-home-gallery-lightbox-next {
  top: 50%;
  font-size: 39px;
  font-weight: 300;
  transform: translateY(-50%);
}
.tp-fr-home-gallery-lightbox-prev { left: 31px; }
.tp-fr-home-gallery-lightbox-next { right: 31px; }

@media (max-width: 820px) {
  .tp-fr-home-gallery { padding: 68px 0 48px; }
  .tp-fr-home-gallery-shell { width: min(100% - 32px, 620px); }
  .tp-fr-home-gallery-heading h2 { font-size: 28px; line-height: 34px; }
  .tp-fr-home-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 42px; }
  .tp-fr-home-gallery-lightbox { padding: 72px 16px 30px; }
  .tp-fr-home-gallery-lightbox-figure,
  .tp-fr-home-gallery-lightbox-image { max-width: 100%; max-height: calc(100vh - 130px); }
  .tp-fr-home-gallery-lightbox-close { top: 15px; right: 15px; }
  .tp-fr-home-gallery-lightbox-prev { left: 12px; }
  .tp-fr-home-gallery-lightbox-next { right: 12px; }
}

@media (max-width: 520px) {
  .tp-fr-home-gallery-heading h2 { font-size: 24px; line-height: 31px; }
  .tp-fr-home-gallery-grid { gap: 10px; }
  .tp-fr-home-gallery-lightbox-prev,
  .tp-fr-home-gallery-lightbox-next,
  .tp-fr-home-gallery-lightbox-close { width: 44px; height: 44px; }
  .tp-fr-home-gallery-lightbox-prev,
  .tp-fr-home-gallery-lightbox-next { font-size: 34px; }
  .tp-fr-home-gallery-lightbox-close { font-size: 35px; }
}

/* Personnalisation FR : bandeau de contact et informations éditoriales
   reproduits sous la galerie, sans modifier les autres langues. */
.tp-fr-home-info {
  position: relative;
  margin-top: 110px;
  padding: 190px 0 88px;
  border-radius: 150px 150px 0 0;
  background: #f8f8f8;
  color: #333;
}
.tp-fr-home-info-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.tp-fr-home-info-call {
  position: absolute;
  z-index: 1;
  top: -103px;
  right: 0;
  left: 0;
  display: grid;
  width: 1170px;
  max-width: calc(100% - 48px);
  min-height: 216px;
  grid-template-columns: minmax(0, 1fr) 102px minmax(280px, .85fr);
  align-items: center;
  gap: 34px;
  padding: 30px 68px;
  margin-right: auto;
  margin-left: auto;
  background-color: #d83a3b;
  background-image: radial-gradient(circle at 55% 76%, transparent 0 96px, rgba(255,255,255,.10) 98px 101px, transparent 104px 151px, rgba(255,255,255,.07) 153px 156px, transparent 159px 210px, rgba(255,255,255,.05) 212px 215px, transparent 218px);
  box-shadow: 0 2px 2px rgba(0,0,0,.32);
}
.tp-fr-home-info-call-copy {
  color: #fff;
  text-align: center;
}
.tp-fr-home-info-call-copy p {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
.tp-fr-home-info-call-copy a {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 36px;
  white-space: nowrap;
}
.tp-fr-home-info-call-or {
  display: grid;
  min-height: 135px;
  align-items: center;
  justify-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.tp-fr-home-info-call-or span {
  display: block;
  width: 2px;
  height: 39px;
  background: rgba(255,255,255,.45);
}
.tp-fr-home-info-call-or b { font-weight: 400; }
.tp-fr-home-info-call-button {
  display: inline-flex;
  width: 333px;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 38px;
  border: 2px solid #fff;
  border-radius: 2px;
  background: #fff;
  color: #d83a3b;
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  justify-self: center;
  transition: background-color .18s ease, color .18s ease;
}
.tp-fr-home-info-call-button:hover,
.tp-fr-home-info-call-button:focus-visible {
  background: transparent;
  color: #fff;
}
.tp-fr-home-info-call-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.tp-fr-home-info-grid {
  display: grid;
  width: 1562px;
  max-width: calc(100% - 48px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
  margin-right: auto;
  margin-left: auto;
}
.tp-fr-home-info-card {
  min-width: 0;
}
.tp-fr-home-info-card h3 {
  min-height: 48px;
  margin: 0 0 28px;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 24px;
}
.tp-fr-home-info-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 350;
  object-fit: cover;
}
.tp-fr-home-info-card-copy {
  margin-top: 47px;
}
.tp-fr-home-info-card-copy p {
  margin: 0 0 25px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 24.45px;
  text-align: justify;
}
.tp-fr-home-info-card-copy p:last-child { margin-bottom: 0; }
.tp-fr-home-info-card-copy strong { font-weight: 700; }

/* Accueil FR : conserver les marges blanches de la capture de référence,
   y compris lorsque le navigateur est affiché à 66,67 %. */
@media (min-width: 1400px) {
  .tp-fr-home-info-call { width: min(1170px, 55vw); }
  .tp-fr-home-info-grid { width: min(1562px, 73.3vw); }
}

@media (max-width: 1100px) {
  .tp-fr-home-info-call { grid-template-columns: minmax(0, 1fr) 78px minmax(240px, .85fr); gap: 20px; padding-right: 40px; padding-left: 40px; }
  .tp-fr-home-info-call-copy a { font-size: 36px; }
  .tp-fr-home-info-call-button { width: min(333px, 100%); padding-right: 24px; padding-left: 24px; font-size: 20px; }
}

@media (max-width: 820px) {
  .tp-fr-home-info {
    margin-top: 75px;
    padding: 250px 0 56px;
    border-radius: 64px 64px 0 0;
  }
  .tp-fr-home-info-call {
    top: -63px;
    display: flex;
    width: min(100% - 32px, 620px);
    min-height: 0;
    flex-direction: column;
    gap: 19px;
    padding: 27px 20px 30px;
  }
  .tp-fr-home-info-call-copy p { margin-bottom: 5px; font-size: 18px; line-height: 27px; }
  .tp-fr-home-info-call-copy a { font-size: 32px; line-height: 36px; }
  .tp-fr-home-info-call-or { display: flex; min-height: 0; gap: 12px; font-size: 18px; }
  .tp-fr-home-info-call-or span { width: 42px; height: 2px; }
  .tp-fr-home-info-call-button { width: 100%; min-height: 62px; font-size: 19px; }
  .tp-fr-home-info-grid { width: min(100% - 32px, 620px); grid-template-columns: minmax(0, 1fr); gap: 53px; }
  .tp-fr-home-info-card h3 { min-height: 0; margin-bottom: 20px; }
  .tp-fr-home-info-card-copy { margin-top: 28px; }
}

@media (max-width: 520px) {
  .tp-fr-home-info { padding-top: 250px; }
  .tp-fr-home-info-call-copy a { font-size: 28px; }
  .tp-fr-home-info-card-copy p { font-size: 15px; line-height: 24.45px; }
}

/* Sélecteur visible mais compact pour les quatre éditions linguistiques. */
.tp-language-switcher { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; margin-left: 19px; color: #9a9188; font-size: 10px; font-weight: 700; letter-spacing: .08em; white-space: nowrap; text-transform: uppercase; }
.tp-language-switcher a { color: #6d665f; }
.tp-language-switcher a:hover,
.tp-language-switcher a[aria-current="page"] { color: var(--red); }
.tp-language-switcher a + a { padding-left: 7px; border-left: 1px solid #ddd6ce; }

@media (max-width: 760px) {
  .tp-simple-shell { width: min(100% - 32px, 620px); }
  .tp-simple-hero { padding-top: 52px; }
  .tp-simple-hero-grid,
  .tp-simple-promise-grid { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .tp-simple-hero h1 { max-width: 520px; font-size: clamp(46px, 14vw, 72px); }
  .tp-simple-hero-card { min-height: 300px; }
  .tp-simple-monogram { min-height: 165px; }
  .tp-simple-hero-card::before { top: 48px; right: -18px; width: 125px; height: 125px; }
  .tp-simple-hero-card::after { right: 28px; bottom: 58px; width: 90px; height: 90px; }
  .tp-simple-section-heading { display: block; }
  .tp-simple-section-heading > p { margin-top: 18px; text-align: left; }
  .tp-simple-steps-grid { grid-template-columns: minmax(0, 1fr); }
  .tp-simple-steps-grid article,
  .tp-simple-steps-grid article + article { min-height: 0; padding: 25px 0 29px; border-left: 0; }
  .tp-simple-steps-grid article + article { border-top: 1px solid #d9d3ca; }
  .tp-simple-steps-grid h3 { margin-top: 28px; }
  .tp-simple-final-inner { align-items: start; flex-direction: column; }
  .tp-simple-button-light { width: 100%; }
  .tp-language-switcher { order: 3; width: 100%; justify-content: flex-end; margin: 3px 0 0; padding-top: 9px; border-top: 1px solid #eee7df; }
  .site-main-bar { flex-wrap: wrap; }
  .site-main-bar .public-nav { order: 2; }
}

@media (max-width: 520px) {
  .tp-simple-actions { display: grid; }
  .tp-simple-button { width: 100%; }
  .tp-simple-signal-grid { grid-template-columns: minmax(0, 1fr) auto; gap: 15px; }
  .tp-simple-signal-mark { min-width: 63px; font-size: 29px; }
  .tp-simple-hero-card-bottom { font-size: 9px; }
  .tp-simple-hero-card-bottom strong { font-size: 14px; }
}

/* Accueil Touline Prestige : structure visuelle fidèle au site public,
   avec les images locales et un formulaire de recherche rapide. */
.site-page { background: #fff; }
.site-page main { background: #fff; }
.public-site-header { position: relative; z-index: 20; background: #fff; color: #333; }
.site-contact-bar { min-height: 39px; background: #f8f8f8; border-bottom: 1px solid rgba(51,51,51,.09); }
.site-contact-inner { max-width: 1240px; min-height: 39px; margin: 0 auto; padding: 0 22px; display: flex; align-items: center; gap: 8px; color: #6b6b6b; font-size: 11px; }
.site-contact-inner a:hover { color: #d13838; }
.site-contact-spacer { flex: 1; }
.site-main-bar { max-width: 1240px; min-height: 87px; margin: 0 auto; padding: 0 22px; display: flex; align-items: center; gap: 25px; background: #fff; }
.site-main-bar .brand { display: inline-flex; align-items: center; min-width: 152px; }
.site-main-bar .brand-logo { max-width: 152px; max-height: 72px; }
.site-main-bar .public-nav { gap: 31px; color: #333; font-size: 13px; }
.site-main-bar .public-nav a { transition: color .18s ease; }
.site-main-bar .public-nav .public-cta { display: inline-flex; align-items: center; gap: 12px; padding: 15px 21px; background: #d13838; color: #fff; border-radius: 2px; }
.site-main-bar .public-nav .public-cta:hover { background: #b52730; color: #fff; }

.tp-exact-home { overflow: hidden; background: #fff; color: #333; font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.tp-exact-section { max-width: 1190px; margin: 0 auto; padding: 88px 24px; }
.tp-exact-hero { position: relative; min-height: 685px; color: #fff; background-color: #262626; background-image: var(--tp-exact-hero-image); background-position: center; background-size: cover; isolation: isolate; }
.tp-exact-hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10,10,10,.89) 0%, rgba(10,10,10,.66) 43%, rgba(10,10,10,.18) 100%), linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.52)); }
.tp-exact-hero-inner { max-width: 1190px; min-height: 525px; margin: 0 auto; padding: 94px 24px 210px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, .7fr); gap: 45px; align-items: center; }
.tp-exact-hero-copy { max-width: 570px; }
.tp-exact-hero-eyebrow, .tp-section-kicker { color: #d7555a; font-size: 11px; font-weight: 800; letter-spacing: .16em; line-height: 1.45; text-transform: uppercase; }
.tp-exact-hero-eyebrow { color: rgba(255,255,255,.76); }
.tp-exact-hero h1 { max-width: 580px; margin: 14px 0 22px; font-size: clamp(43px, 6.5vw, 81px); line-height: .99; letter-spacing: -.062em; font-weight: 800; }
.tp-exact-hero h2 { margin: 0; color: #fff; font-size: clamp(18px, 2.2vw, 28px); line-height: 1.18; letter-spacing: -.035em; font-weight: 500; }
.tp-exact-hero-side { align-self: stretch; display: flex; align-items: end; justify-content: end; }
.tp-exact-hero-note { max-width: 215px; padding: 14px 0 0 17px; border-left: 2px solid #d13838; color: rgba(255,255,255,.78); }
.tp-exact-hero-note span { display: block; margin-bottom: 7px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.tp-exact-hero-note strong { font-size: 15px; line-height: 1.35; }
.tp-exact-search { position: relative; z-index: 2; max-width: 1120px; margin: -106px auto 0; padding: 25px 29px 21px; background: #fff; color: #333; box-shadow: 0 16px 45px rgba(20,20,20,.18); }
.tp-exact-search-title { margin-bottom: 17px; color: #333; font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.tp-exact-search-form { display: grid; grid-template-columns: 1.05fr 1.08fr 1.08fr 2.3fr 58px; gap: 11px; align-items: end; }
.tp-exact-search-form label { gap: 6px; color: #777; font-size: 10px; font-weight: 700; letter-spacing: .03em; }
.tp-exact-search-form select, .tp-exact-search-form input { min-height: 48px; border: 1px solid #ccc; border-radius: 0; padding: 10px 11px; background: #fff; color: #333; font-size: 12px; }
.tp-exact-search-form select:focus, .tp-exact-search-form input:focus { border-color: #d13838; box-shadow: none; }
.tp-exact-search-dates { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.tp-exact-search-dates .datetime-control { min-width: 0; }
.tp-exact-search-dates .datetime-control-grid { grid-template-columns: minmax(0, 1.25fr) minmax(80px, .75fr); gap: 7px; }
.tp-exact-search-dates .datetime-control > .field-help { display: none; }
.tp-exact-search-dates .datetime-control label { font-size: 9px; }
.tp-exact-search-dates input { min-width: 0; padding-left: 8px; padding-right: 5px; font-size: 11px; }
.tp-exact-search-submit { min-height: 48px; display: grid; place-items: center; border: 0; border-radius: 0; background: #d13838; color: #fff; font-size: 19px; transition: background .18s ease, transform .18s ease; }
.tp-exact-search-submit span:last-child { display: none; }
.tp-exact-search-submit:hover { background: #b52730; transform: translateY(-1px); }
.tp-exact-search-footnote { display: flex; align-items: center; gap: 8px; margin-top: 13px; color: #888; font-size: 10px; }
.tp-exact-search-footnote .dot { flex: 0 0 auto; width: 7px; height: 7px; }
.tp-exact-search .date-rule-message { grid-column: 1/-1; margin-top: -3px; }
.tp-exact-search .date-rule-message.is-visible { padding: 8px 10px; background: #fff7e7; color: #8c5511; font-size: 11px; }

.tp-exact-intro { max-width: 880px; text-align: center; }
.tp-section-marker { margin-bottom: 17px; color: #d13838; font-size: 22px; }
.tp-exact-intro h2, .tp-exact-why h2, .tp-exact-faq h2 { margin: 0 auto 18px; font-size: clamp(28px, 4vw, 48px); line-height: 1.07; letter-spacing: -.055em; }
.tp-exact-intro p, .tp-exact-split-copy p, .tp-exact-story-copy p, .tp-exact-choice-copy p, .tp-exact-airport-copy p, .tp-exact-info-grid p { color: #777; font-size: 14px; line-height: 1.75; }
.tp-exact-steps { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(35px, 8vw, 105px); align-items: center; }
.tp-exact-steps-art { display: grid; place-items: center; min-height: 350px; background: #f5f5f3; }
.tp-exact-steps-art img { width: 100%; max-width: 530px; height: 380px; object-fit: contain; }
.tp-exact-steps-content h2 { max-width: 420px; margin: 10px 0 27px; font-size: clamp(30px, 4vw, 51px); line-height: 1.02; letter-spacing: -.055em; }
.tp-step-list { display: grid; gap: 18px; margin: 0 0 29px; padding: 0; list-style: none; counter-reset: step; }
.tp-step-list li { display: grid; grid-template-columns: 35px 1fr; gap: 14px; align-items: center; color: #4b4b4b; font-size: 14px; line-height: 1.4; }
.tp-step-list li span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: #d13838; color: #fff; font-size: 11px; font-weight: 800; }
.tp-exact-home .button { border-radius: 0; }
.tp-exact-home .button.primary { background: #d13838; }
.tp-exact-home .button.primary:hover { background: #b52730; }
.tp-exact-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 22px; margin-bottom: 28px; }
.tp-exact-section-heading h2 { max-width: 610px; margin: 9px 0 0; font-size: clamp(28px, 4vw, 47px); line-height: 1.02; letter-spacing: -.055em; }
.tp-exact-section-heading p { margin: 13px 0 0; color: #858585; font-size: 13px; }
.tp-exact-section-heading .text-link { color: #d13838; }
.tp-exact-new-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.tp-exact-vehicle-card { min-width: 0; border: 1px solid #e6e6e6; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.tp-exact-vehicle-card:hover { transform: translateY(-3px); box-shadow: 0 15px 32px rgba(25,25,25,.10); }
.tp-exact-vehicle-media { display: block; padding: 10px; background: #f7f7f7; }
.tp-exact-vehicle-image { display: block; width: 100%; height: 178px; object-fit: contain; }
.tp-exact-vehicle-body { padding: 17px 16px 16px; }
.tp-exact-vehicle-subtitle { min-height: 29px; color: #777; font-size: 10px; font-weight: 700; line-height: 1.4; }
.tp-exact-vehicle-body h3 { min-height: 46px; margin: 6px 0 14px; font-size: 20px; line-height: 1.05; letter-spacing: -.045em; }
.tp-exact-vehicle-card .tp-check-list { min-height: 70px; }
.tp-check-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; color: #666; font-size: 11px; line-height: 1.35; }
.tp-check-list li { position: relative; padding-left: 20px; }
.tp-check-list li::before { content: "✓"; position: absolute; left: 0; color: #d13838; font-size: 15px; font-weight: 900; }
.tp-exact-vehicle-price { margin-top: 17px; padding-top: 14px; border-top: 1px solid #e9e9e9; color: #333; font-size: 11px; font-weight: 700; }
.tp-exact-vehicle-price strong { color: #d13838; font-size: 19px; }
.tp-exact-vehicle-actions { display: grid; gap: 8px; margin-top: 15px; }
.tp-exact-vehicle-actions .button { width: 100%; min-height: 44px; }
.tp-exact-vehicle-actions .button.whatsapp { min-height: 37px; padding: 9px 10px; background: #e8f7ef; color: #178455; font-size: 10px; }
.tp-exact-vehicle-actions .button.whatsapp:hover { background: #d4f0e1; }

.tp-exact-promos { max-width: 1190px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.tp-exact-promo { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 405px; overflow: hidden; color: #fff; }
.tp-exact-promo-dark { background: #1d2327; }
.tp-exact-promo-rose { background: #873d48; }
.tp-exact-promo-image { min-height: 220px; background: rgba(0,0,0,.14); }
.tp-exact-promo-image img { display: block; width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.tp-exact-promo-content { padding: 32px 28px; }
.tp-exact-promo-content .tp-section-kicker { color: rgba(255,255,255,.65); }
.tp-exact-promo-content h2 { margin: 12px 0 15px; font-size: 25px; line-height: 1.07; letter-spacing: -.045em; }
.tp-exact-promo-content p { color: rgba(255,255,255,.8); font-size: 11px; line-height: 1.65; white-space: pre-line; }
.light-outline { border: 1px solid rgba(255,255,255,.65); background: transparent; color: #fff; }
.light-outline:hover { background: #fff; color: #333; }
.tp-exact-live-fleet { padding-top: 30px; }
.tp-exact-live-grid .catalog-card { border-radius: 0; }

.tp-exact-why { max-width: 960px; text-align: center; }
.tp-exact-tabs { margin-top: 33px; text-align: left; }
.tp-exact-tab-buttons { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; }
.tp-exact-tab-buttons button { width: 54px; height: 42px; border: 1px solid #ddd; background: #fff; color: #777; font-size: 11px; font-weight: 800; }
.tp-exact-tab-buttons button.is-active, .tp-exact-tab-buttons button:hover { border-color: #d13838; background: #d13838; color: #fff; }
.tp-exact-tab-panel { display: none; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 39px; align-items: center; padding: 19px; border: 1px solid #e8e8e8; background: #fafafa; }
.tp-exact-tab-panel.is-active { display: grid; }
.tp-exact-tab-image { min-height: 260px; background: #fff; }
.tp-exact-tab-image img { display: block; width: 100%; height: 260px; object-fit: cover; }
.tp-exact-tab-panel h3 { margin: 12px 0 12px; font-size: 29px; line-height: 1.05; letter-spacing: -.045em; }
.tp-exact-tab-panel p { color: #777; font-size: 13px; line-height: 1.7; }

.tp-exact-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0; max-width: 1190px; padding-left: 0; padding-right: 0; }
.tp-exact-split-image, .tp-exact-airport-image { min-height: 430px; background: #f1f1ef; }
.tp-exact-split-image img, .tp-exact-airport-image img { display: block; width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.tp-exact-split-copy { padding: 58px clamp(28px,5vw,75px); background: #f6f6f4; }
.tp-exact-split-copy h2, .tp-exact-choice-copy h2, .tp-exact-airport-copy h2 { margin: 10px 0 19px; font-size: clamp(30px, 4vw, 52px); line-height: 1.02; letter-spacing: -.06em; }
.tp-exact-split-copy p { white-space: pre-line; }
.tp-exact-split-copy .text-link { display: inline-block; margin-top: 15px; color: #d13838; }
.tp-exact-reservation-story { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 65px; align-items: center; }
.tp-exact-story-copy h2 { max-width: 450px; margin: 10px 0 18px; font-size: clamp(30px, 4.5vw, 56px); line-height: 1.01; letter-spacing: -.06em; }
.tp-exact-story-copy p { max-width: 390px; }
.tp-exact-collage { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 190px 190px; gap: 12px; }
.tp-exact-collage > div { overflow: hidden; background: #eee; }
.tp-exact-collage > div:first-child { grid-row: 1 / 3; }
.tp-exact-collage img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.tp-exact-collage > div:hover img { transform: scale(1.04); }
.tp-exact-choice { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 0; max-width: 1190px; padding: 0; }
.tp-exact-choice-image { min-height: 500px; background: #282828; }
.tp-exact-choice-image img { display: block; width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.tp-exact-choice-copy { padding: 65px clamp(28px,6vw,95px); background: #202326; color: #fff; }
.tp-exact-choice-copy h2 { color: #fff; }
.tp-exact-choice-copy p { color: rgba(255,255,255,.75); white-space: pre-line; }
.tp-exact-choice-copy .tp-check-list { margin-top: 27px; color: rgba(255,255,255,.8); }
.tp-exact-airport { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); max-width: 1190px; padding: 0; }
.tp-exact-airport-copy { padding: 58px clamp(28px,5vw,75px); background: #f4f4f2; }
.tp-exact-airport-copy p { white-space: pre-line; }
.tp-exact-airport-copy .button { margin-top: 14px; }
.tp-exact-faq { max-width: 990px; text-align: center; }
.tp-exact-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; margin-top: 32px; text-align: left; }
.tp-exact-faq details { border-top: 1px solid #ddd; }
.tp-exact-faq summary { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; color: #444; cursor: pointer; font-size: 13px; font-weight: 700; list-style: none; }
.tp-exact-faq summary::-webkit-details-marker { display: none; }
.tp-exact-faq summary span { color: #d13838; font-size: 22px; font-weight: 400; line-height: .7; }
.tp-exact-faq details[open] summary span { transform: rotate(45deg); }
.tp-exact-faq details p { margin: 0 0 19px; color: #777; font-size: 12px; line-height: 1.65; }
.tp-exact-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 17px; padding-top: 35px; }
.tp-exact-info-grid article { border: 1px solid #e5e5e5; background: #fff; }
.tp-exact-info-grid h3 { min-height: 52px; margin: 0; padding: 19px 19px 9px; font-size: 20px; line-height: 1.08; letter-spacing: -.04em; }
.tp-exact-info-grid img { display: block; width: 100%; height: 160px; object-fit: cover; }
.tp-exact-info-grid p { margin: 0; padding: 18px 19px 23px; font-size: 12px; }
.tp-exact-seo-copy { max-width: 940px; padding-top: 35px; padding-bottom: 35px; }
.tp-exact-seo-copy p { margin: 0; color: #777; font-size: 12px; line-height: 1.8; }
.tp-exact-gallery { max-width: 1190px; padding-top: 45px; }
.tp-exact-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 150px; gap: 10px; }
.tp-exact-gallery-grid a { display: block; overflow: hidden; background: #eee; }
.tp-exact-gallery-grid a:nth-child(3), .tp-exact-gallery-grid a:nth-child(6) { grid-row: span 2; }
.tp-exact-gallery-grid img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.tp-exact-gallery-grid a:hover img { transform: scale(1.05); }
.tp-exact-call { max-width: 1190px; margin: 0 auto; padding: 48px clamp(24px,5vw,70px); display: flex; align-items: center; justify-content: space-between; gap: 25px; background: #d13838; color: #fff; }
.tp-exact-call .tp-section-kicker { color: rgba(255,255,255,.74); }
.tp-exact-call h2 { margin: 9px 0 14px; color: #fff; font-size: clamp(27px,4vw,44px); line-height: 1; }
.tp-exact-phone { font-size: 21px; font-weight: 700; }
.tp-exact-footer { max-width: 1190px; margin: 0 auto; padding: 58px 24px 68px; display: grid; grid-template-columns: 1.4fr .8fr .7fr; gap: 45px; background: #222; color: #fff; }
.tp-exact-footer img { display: block; width: auto; max-width: 152px; max-height: 72px; margin-bottom: 19px; }
.tp-exact-footer p, .tp-exact-footer a { display: block; color: rgba(255,255,255,.63); font-size: 11px; line-height: 1.7; }
.tp-exact-footer strong { display: block; margin-bottom: 16px; color: #fff; font-size: 12px; }
.tp-exact-footer a + a { margin-top: 8px; }
body:has(.tp-exact-home) > .site-footer { display: none; }

.detail-booking-section { max-width: 1190px; padding-top: 50px; }
.detail-booking-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.detail-booking-heading h2 { max-width: 620px; margin: 8px 0 10px; font-size: clamp(30px, 4vw, 51px); line-height: 1.02; }
.detail-booking-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.detail-booking-step { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: .11em; }
.detail-booking-layout { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(290px,.75fr); gap: 22px; align-items: start; }
.detail-booking-form { border-radius: 0; }
.detail-booking-summary { border-radius: 0; }
.detail-booking-summary h3 { margin: 12px 0 18px; font-size: 24px; }
.detail-booking-summary .discount-line strong { color: var(--green); }
.detail-booking-section .datetime-control-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.detail-booking-section .date-rule-message.is-visible { padding: 10px 12px; background: #fff4dd; color: #8c5511; font-size: 12px; }

.home-media-admin-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.home-exact-copy-admin .editor-subheading { display: flex; align-items: center; gap: 9px; margin: 25px 0 12px; color: #333; font-size: 14px; }
.home-exact-copy-admin .editor-subheading .field-help { margin: 0; }
.home-exact-copy-admin textarea { min-height: 78px; }

@media (max-width: 1050px) {
  .tp-exact-search-form { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tp-exact-search-dates { grid-column: 1 / -1; }
  .tp-exact-search-submit { grid-column: 1 / -1; }
  .tp-exact-new-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .home-media-admin-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .site-contact-inner { padding: 0 16px; }
  .site-contact-inner a:last-child { display: none; }
  .site-main-bar { min-height: 72px; padding: 0 16px; }
  .site-main-bar .public-nav { gap: 12px; font-size: 11px; }
  .site-main-bar .public-nav > a:first-child { display: none; }
  .site-main-bar .public-nav .public-cta { padding: 12px 11px; }
  .tp-exact-hero { min-height: 790px; }
  .tp-exact-hero-inner { min-height: 560px; padding: 68px 20px 245px; display: block; }
  .tp-exact-hero h1 { font-size: clamp(42px, 12vw, 63px); }
  .tp-exact-hero-side { display: none; }
  .tp-exact-search { margin: -150px 14px 0; padding: 22px 18px 18px; }
  .tp-exact-search-form { grid-template-columns: 1fr; }
  .tp-exact-search-dates { grid-column: auto; grid-template-columns: 1fr; }
  .tp-exact-search-submit { grid-column: auto; }
  .tp-exact-section { padding: 62px 20px; }
  .tp-exact-steps, .tp-exact-split, .tp-exact-reservation-story, .tp-exact-choice, .tp-exact-airport, .detail-booking-layout { grid-template-columns: 1fr; }
  .tp-exact-steps-art { min-height: 260px; }
  .tp-exact-steps-art img { height: 275px; }
  .tp-exact-section-heading, .tp-exact-call, .detail-booking-heading { align-items: start; flex-direction: column; }
  .tp-exact-new-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tp-exact-promo { grid-template-columns: 1fr; }
  .tp-exact-promo-image, .tp-exact-promo-image img { min-height: 190px; height: 190px; }
  .tp-exact-tab-panel { grid-template-columns: 1fr; }
  .tp-exact-tab-image, .tp-exact-tab-image img { min-height: 210px; height: 210px; }
  .tp-exact-split-image, .tp-exact-split-image img, .tp-exact-airport-image, .tp-exact-airport-image img { min-height: 290px; height: 290px; }
  .tp-exact-collage { grid-template-rows: 145px 145px; }
  .tp-exact-choice-image, .tp-exact-choice-image img { min-height: 330px; height: 330px; }
  .tp-exact-faq-grid, .tp-exact-info-grid { grid-template-columns: 1fr; }
  .tp-exact-gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 135px; }
  .tp-exact-footer { grid-template-columns: 1fr; gap: 27px; padding-bottom: 48px; }
  .detail-booking-heading { align-items: start; }
  .detail-booking-summary { position: static; }
  .home-media-admin-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 460px) {
  .tp-exact-new-grid { grid-template-columns: 1fr; }
  .tp-exact-vehicle-image { height: 220px; }
  .home-media-admin-grid { grid-template-columns: 1fr; }
}

/* Accueil RentQ : une composition éditoriale autonome inspirée du template
   de référence, avec un hero à slider, une réservation courte et une flotte
   filtrable. Tout est préfixé afin de ne toucher à aucun autre parcours. */
body.tp-home-rentq-page main {
  min-height: 0;
  padding: 0;
  background: #f7f7f5;
}
.tp-home-rentq {
  --rentq-ink: #171717;
  --rentq-muted: #77736d;
  --rentq-paper: #f7f7f5;
  --rentq-line: #dedbd5;
  --rentq-red: #d52d38;
  --rentq-red-dark: #ad1e2a;
  --rentq-gold: #c7a86b;
  --rentq-dark: #141414;
  overflow: hidden;
  color: var(--rentq-ink);
  background: var(--rentq-paper);
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.tp-home-rentq *,
.tp-home-rentq *::before,
.tp-home-rentq *::after {
  box-sizing: border-box;
}
.tp-home-rentq h1,
.tp-home-rentq h2,
.tp-home-rentq h3,
.tp-home-rentq p {
  margin-top: 0;
}
.tp-home-rentq a {
  text-decoration: none;
}
.tp-home-rentq button,
.tp-home-rentq input {
  font: inherit;
}
.tp-rentq-shell {
  width: min(1240px, calc(100% - 56px));
  margin-right: auto;
  margin-left: auto;
}
.tp-rentq-eyebrow {
  display: inline-block;
  color: var(--rentq-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.45;
  text-transform: uppercase;
}
.tp-rentq-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(213,45,56,.26), transparent 28%),
    radial-gradient(circle at 17% 93%, rgba(199,168,107,.14), transparent 25%),
    var(--rentq-dark);
  color: #fff;
}
.tp-rentq-hero::after {
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: 48%;
  height: 70%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-13deg);
}
.tp-rentq-hero-glow {
  position: absolute;
  top: 15%;
  right: 29%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(213,45,56,.13);
  filter: blur(2px);
}
.tp-rentq-hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.63);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tp-rentq-hero-top span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tp-rentq-hero-top i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55c895;
  box-shadow: 0 0 0 5px rgba(85,200,149,.13);
}
.tp-rentq-slider-viewport {
  position: relative;
  min-height: 532px;
}
.tp-rentq-slides {
  position: relative;
  min-height: 532px;
}
.tp-rentq-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(420px, 1.09fr);
  gap: 28px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}
.tp-rentq-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tp-rentq-slide-copy {
  position: relative;
  z-index: 2;
  max-width: 585px;
  padding: 53px 0 48px;
}
.tp-rentq-slide-copy h1,
.tp-rentq-slide-copy h2 {
  max-width: 610px;
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .98;
}
.tp-rentq-slide-copy h1 em,
.tp-rentq-slide-copy h2 em,
.tp-rentq-section-intro h2 em,
.tp-rentq-section-heading h2 em,
.tp-rentq-why h2 em,
.tp-rentq-faq h2 em,
.tp-rentq-final h2 em {
  color: #e4565e;
  font-style: normal;
}
.tp-rentq-slide-copy > p {
  max-width: 475px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.69);
  font-size: 14px;
  line-height: 1.75;
}
.tp-rentq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tp-rentq-button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 13px 19px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.tp-rentq-button:hover {
  transform: translateY(-2px);
}
.tp-rentq-button span {
  font-size: 18px;
  font-weight: 400;
  line-height: .8;
}
.tp-rentq-button-red {
  background: var(--rentq-red);
  color: #fff;
}
.tp-rentq-button-red:hover {
  background: var(--rentq-red-dark);
  color: #fff;
}
.tp-rentq-button-outline {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.tp-rentq-button-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--rentq-ink);
}
.tp-rentq-slide-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
}
.tp-rentq-proof-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #258c65;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.tp-rentq-slide-visual {
  position: relative;
  align-self: stretch;
  min-height: 530px;
  overflow: hidden;
}
.tp-rentq-slide-shape {
  position: absolute;
  top: 50%;
  right: 2%;
  width: min(510px, 84%);
  height: min(510px, 84%);
  border-radius: 48% 52% 45% 55%;
  background: linear-gradient(145deg, #e54d57 0%, #a51b28 72%, #6b1119 100%);
  opacity: .96;
  transform: translateY(-46%) rotate(12deg);
}
.tp-rentq-slide-image {
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 0;
  display: block;
  width: 83%;
  height: 96%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.03);
  mix-blend-mode: normal;
}
.tp-rentq-slide:first-child .tp-rentq-slide-image {
  right: 1%;
  width: 89%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(.92) contrast(1.03) drop-shadow(0 25px 28px rgba(0,0,0,.25));
}
.tp-rentq-slide-badge {
  position: absolute;
  z-index: 2;
  top: 22%;
  right: 2%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(20,20,20,.3);
  backdrop-filter: blur(9px);
}
.tp-rentq-slide-badge b {
  color: #fff;
  font-size: 14px;
}
.tp-rentq-slide-badge small {
  color: rgba(255,255,255,.69);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tp-rentq-slide-location {
  position: absolute;
  z-index: 2;
  right: 17%;
  bottom: 8%;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  color: var(--rentq-ink);
  box-shadow: 0 13px 35px rgba(0,0,0,.18);
}
.tp-rentq-slide-location b {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  background: var(--rentq-red);
  color: #fff;
  font-size: 10px;
  letter-spacing: .08em;
}
.tp-rentq-slide-location small {
  color: #57534f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
}
.tp-rentq-slider-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 0 24px;
}
.tp-rentq-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tp-rentq-slider-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  font-size: 18px;
  transition: background .18s ease, border-color .18s ease;
}
.tp-rentq-slider-controls button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--rentq-ink);
}
.tp-rentq-slider-controls span {
  min-width: 58px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  letter-spacing: .08em;
}
.tp-rentq-slider-controls strong {
  color: #fff;
  font-size: 14px;
}
.tp-rentq-slider-dots {
  display: flex;
  gap: 7px;
}
.tp-rentq-slider-dots button {
  width: 35px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.27);
}
.tp-rentq-slider-dots button.is-active,
.tp-rentq-slider-dots button:hover {
  background: var(--rentq-red);
}

.tp-rentq-booking-wrap {
  position: relative;
  z-index: 3;
  margin-top: -53px;
}
.tp-rentq-booking {
  display: grid;
  grid-template-columns: 1.37fr 1fr 1fr .94fr .75fr .94fr .75fr auto;
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: #fff;
  box-shadow: 0 16px 35px rgba(23,23,23,.13);
}
.tp-rentq-booking-heading,
.tp-rentq-booking-location,
.tp-rentq-booking > label,
.tp-rentq-booking-submit {
  min-width: 0;
  min-height: 119px;
  padding: 20px 17px;
  border-right: 1px solid #ece9e3;
}
.tp-rentq-booking-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tp-rentq-booking-heading strong {
  margin: 8px 0 4px;
  color: var(--rentq-ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
}
.tp-rentq-booking-heading small {
  color: var(--rentq-muted);
  font-size: 10px;
  line-height: 1.45;
}
.tp-rentq-booking-location {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--rentq-ink);
  transition: background .18s ease;
}
.tp-rentq-booking-location:hover {
  background: #fff8f7;
}
.tp-rentq-booking-location span,
.tp-rentq-booking > label > span {
  margin-bottom: 9px;
  color: #908a83;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tp-rentq-booking-location strong {
  padding-right: 14px;
  font-size: 12px;
  line-height: 1.3;
}
.tp-rentq-booking-location small {
  margin-top: 5px;
  color: #9d9891;
  font-size: 9px;
}
.tp-rentq-booking-location b {
  position: absolute;
  right: 15px;
  bottom: 20px;
  color: var(--rentq-red);
  font-size: 16px;
  font-weight: 400;
}
.tp-rentq-booking > label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.tp-rentq-booking input {
  min-width: 0;
  min-height: 31px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--rentq-ink);
  font-size: 12px;
  font-weight: 700;
  outline: none;
}
.tp-rentq-booking input:focus {
  box-shadow: none;
}
.tp-rentq-booking input::-webkit-calendar-picker-indicator {
  opacity: .55;
  cursor: pointer;
}
.tp-rentq-booking-submit {
  display: inline-flex;
  min-width: 142px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  background: var(--rentq-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transition: background .18s ease;
}
.tp-rentq-booking-submit:hover {
  background: var(--rentq-red-dark);
}
.tp-rentq-booking-submit span {
  font-size: 17px;
  font-weight: 400;
}
.tp-rentq-booking-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0 0;
  color: #8c8780;
  font-size: 10px;
}
.tp-rentq-booking-note span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e3f4ec;
  color: #238b64;
  font-weight: 800;
}
.tp-rentq-booking-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 11px 16px;
  background: #fff5df;
  color: #845d1c;
  font-size: 10px;
  line-height: 1.45;
}

.tp-rentq-steps,
.tp-rentq-fleet,
.tp-rentq-locations,
.tp-rentq-faq {
  padding: 92px 0;
}
.tp-rentq-steps {
  background: #fff;
}
.tp-rentq-section-intro {
  max-width: 690px;
  margin-bottom: 43px;
}
.tp-rentq-section-intro h2,
.tp-rentq-section-heading h2,
.tp-rentq-why h2,
.tp-rentq-faq h2,
.tp-rentq-final h2 {
  margin: 11px 0 17px;
  color: var(--rentq-ink);
  font-size: clamp(32px, 4.1vw, 57px);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1.01;
}
.tp-rentq-section-intro p,
.tp-rentq-section-heading p,
.tp-rentq-why-copy > p,
.tp-rentq-faq > p {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--rentq-muted);
  font-size: 13px;
  line-height: 1.75;
}
.tp-rentq-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rentq-line);
  border-bottom: 1px solid var(--rentq-line);
}
.tp-rentq-steps-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 16px;
  min-height: 169px;
  padding: 28px 29px 25px 0;
  border-right: 1px solid var(--rentq-line);
}
.tp-rentq-steps-grid article + article {
  padding-left: 29px;
}
.tp-rentq-steps-grid article:last-child {
  border-right: 0;
}
.tp-rentq-step-number {
  color: var(--rentq-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.tp-rentq-steps-grid h3 {
  margin: 0 0 9px;
  color: var(--rentq-ink);
  font-size: 17px;
  letter-spacing: -.04em;
  line-height: 1.15;
}
.tp-rentq-steps-grid p {
  max-width: 240px;
  margin: 0;
  color: var(--rentq-muted);
  font-size: 11px;
  line-height: 1.65;
}
.tp-rentq-step-arrow {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: var(--rentq-red);
  font-size: 19px;
}
.tp-rentq-fleet {
  background: var(--rentq-paper);
}
.tp-rentq-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.tp-rentq-section-heading > div:last-child {
  max-width: 370px;
}
.tp-rentq-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--rentq-red);
  font-size: 11px;
  font-weight: 800;
}
.tp-rentq-text-link span {
  font-size: 18px;
  font-weight: 400;
}
.tp-rentq-text-link:hover {
  color: var(--rentq-red-dark);
}
.tp-rentq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.tp-rentq-filters button {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--rentq-line);
  background: transparent;
  color: #6e6962;
  font-size: 10px;
  font-weight: 700;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.tp-rentq-filters button:hover,
.tp-rentq-filters button.is-active {
  border-color: var(--rentq-red);
  background: var(--rentq-red);
  color: #fff;
}
.tp-rentq-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.tp-rentq-fleet-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2dfd9;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tp-rentq-fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(24,24,24,.11);
}
.tp-rentq-fleet-card[hidden] {
  display: none;
}
.tp-rentq-fleet-media {
  position: relative;
  display: block;
  height: 205px;
  overflow: hidden;
  background: #f1f1ef;
}
.tp-rentq-fleet-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 37%;
  background: linear-gradient(transparent, rgba(0,0,0,.1));
  content: "";
  pointer-events: none;
}
.tp-rentq-fleet-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.tp-rentq-fleet-card:hover .tp-rentq-fleet-image {
  transform: scale(1.04);
}
.tp-rentq-fleet-index {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 15px;
  color: var(--rentq-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.tp-rentq-fleet-go {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 14px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--rentq-red);
  font-size: 17px;
  box-shadow: 0 5px 16px rgba(0,0,0,.14);
}
.tp-rentq-fleet-body {
  padding: 20px 19px 18px;
}
.tp-rentq-fleet-category {
  color: #9b958c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}
.tp-rentq-fleet-body h3 {
  margin: 7px 0 9px;
  color: var(--rentq-ink);
  font-size: 24px;
  letter-spacing: -.06em;
  line-height: 1.05;
}
.tp-rentq-fleet-body > p {
  margin-bottom: 19px;
  color: #837d75;
  font-size: 11px;
}
.tp-rentq-fleet-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid #ece9e4;
}
.tp-rentq-fleet-bottom > span {
  color: #918b83;
  font-size: 9px;
}
.tp-rentq-fleet-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rentq-red);
  font-size: 10px;
  font-weight: 800;
}
.tp-rentq-fleet-bottom a span {
  font-size: 15px;
  font-weight: 400;
}

.tp-rentq-why {
  padding: 99px 0;
  background: #fff;
}
.tp-rentq-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, .82fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}
.tp-rentq-why-copy > p {
  max-width: 500px;
}
.tp-rentq-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 35px;
  border-top: 1px solid var(--rentq-line);
}
.tp-rentq-benefits-grid article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rentq-line);
}
.tp-rentq-benefits-grid article > span {
  color: var(--rentq-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}
.tp-rentq-benefits-grid h3 {
  margin: 0 0 6px;
  color: var(--rentq-ink);
  font-size: 13px;
}
.tp-rentq-benefits-grid p {
  margin: 0;
  color: #89837c;
  font-size: 10px;
  line-height: 1.55;
}
.tp-rentq-why-visual {
  min-width: 0;
}
.tp-rentq-why-image-wrap {
  position: relative;
  min-height: 495px;
  overflow: hidden;
  background: #eceae5;
}
.tp-rentq-why-image {
  display: block;
  width: 100%;
  height: 495px;
  object-fit: cover;
  object-position: center;
}
.tp-rentq-why-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  min-width: 145px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.17);
}
.tp-rentq-why-card b {
  color: var(--rentq-red);
  font-size: 18px;
  letter-spacing: -.05em;
}
.tp-rentq-why-card small {
  color: #77716a;
  font-size: 9px;
  line-height: 1.4;
}
.tp-rentq-why-caption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  padding-top: 15px;
}
.tp-rentq-why-caption span {
  color: var(--rentq-red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}
.tp-rentq-why-caption strong {
  color: var(--rentq-ink);
  font-size: 13px;
  line-height: 1.25;
  text-align: right;
}

.tp-rentq-locations {
  background: var(--rentq-paper);
}
.tp-rentq-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.tp-rentq-location-card {
  display: flex;
  min-height: 212px;
  flex-direction: column;
  padding: 24px 23px 20px;
  border: 1px solid var(--rentq-line);
  background: #fff;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.tp-rentq-location-card:hover {
  border-color: var(--rentq-red);
  box-shadow: 0 13px 28px rgba(23,23,23,.08);
  transform: translateY(-3px);
}
.tp-rentq-location-code {
  color: var(--rentq-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}
.tp-rentq-location-card h3 {
  margin: 22px 0 9px;
  color: var(--rentq-ink);
  font-size: 20px;
  letter-spacing: -.05em;
}
.tp-rentq-location-card p {
  margin-bottom: 18px;
  color: var(--rentq-muted);
  font-size: 11px;
  line-height: 1.6;
}
.tp-rentq-location-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--rentq-red);
  font-size: 10px;
  font-weight: 800;
}
.tp-rentq-location-link b {
  font-size: 17px;
  font-weight: 400;
}
.tp-rentq-faq {
  background: #fff;
}
.tp-rentq-faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 9vw, 125px);
  align-items: start;
}
.tp-rentq-faq-grid > div:first-child p {
  margin-bottom: 0;
}
.tp-rentq-faq-list {
  border-top: 1px solid var(--rentq-line);
}
.tp-rentq-faq-list details {
  border-bottom: 1px solid var(--rentq-line);
}
.tp-rentq-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: var(--rentq-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}
.tp-rentq-faq-list summary::-webkit-details-marker {
  display: none;
}
.tp-rentq-faq-list summary b {
  color: var(--rentq-red);
  font-size: 20px;
  font-weight: 400;
  transition: transform .18s ease;
}
.tp-rentq-faq-list details[open] summary b {
  transform: rotate(45deg);
}
.tp-rentq-faq-list details p {
  max-width: 650px;
  margin: -2px 0 19px;
  color: var(--rentq-muted);
  font-size: 11px;
  line-height: 1.7;
}
.tp-rentq-final {
  position: relative;
  overflow: hidden;
  background: var(--rentq-red);
  color: #fff;
}
.tp-rentq-final::after {
  position: absolute;
  top: -76px;
  right: -72px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  content: "";
}
.tp-rentq-final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 57px;
  padding-bottom: 57px;
}
.tp-rentq-final .tp-rentq-eyebrow {
  color: rgba(255,255,255,.68);
}
.tp-rentq-final h2 {
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(30px, 4vw, 51px);
}
.tp-rentq-final h2 em {
  color: #ffd4d6;
}
.tp-rentq-final p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.6;
}
.tp-rentq-final-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
  min-width: 190px;
}
.tp-rentq-button-light {
  background: #fff;
  color: var(--rentq-red);
}
.tp-rentq-button-light:hover {
  background: #24191a;
  color: #fff;
}
.tp-rentq-final-actions > a:last-child {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.tp-rentq-final-actions > a:last-child:hover {
  text-decoration: underline;
}
.tp-rentq-button:focus-visible,
.tp-rentq-booking-location:focus-visible,
.tp-rentq-filters button:focus-visible,
.tp-rentq-slider-controls button:focus-visible,
.tp-rentq-slider-dots button:focus-visible,
.tp-rentq-fleet-bottom a:focus-visible,
.tp-rentq-location-card:focus-visible,
.tp-rentq-text-link:focus-visible {
  outline: 3px solid rgba(213,45,56,.35);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .tp-rentq-slide {
    grid-template-columns: minmax(0, .95fr) minmax(330px, 1.05fr);
  }
  .tp-rentq-slide-copy h1,
  .tp-rentq-slide-copy h2 {
    font-size: clamp(42px, 6vw, 69px);
  }
  .tp-rentq-booking {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .tp-rentq-booking-heading {
    grid-column: span 2;
  }
  .tp-rentq-booking-location {
    grid-column: span 1;
  }
  .tp-rentq-booking > label {
    min-height: 86px;
  }
  .tp-rentq-booking-submit {
    min-height: 86px;
  }
}
@media (max-width: 820px) {
  .tp-rentq-shell {
    width: min(100% - 34px, 620px);
  }
  .tp-rentq-hero-top {
    font-size: 9px;
  }
  .tp-rentq-slider-viewport,
  .tp-rentq-slides {
    min-height: 625px;
  }
  .tp-rentq-slide {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(315px, .95fr) minmax(235px, .72fr);
    gap: 0;
    align-content: stretch;
  }
  .tp-rentq-slide-copy {
    padding: 55px 0 20px;
  }
  .tp-rentq-slide-copy h1,
  .tp-rentq-slide-copy h2 {
    max-width: 490px;
    margin-top: 13px;
    font-size: clamp(40px, 10vw, 62px);
  }
  .tp-rentq-slide-copy > p {
    max-width: 500px;
    margin-bottom: 21px;
    font-size: 12px;
  }
  .tp-rentq-slide-proof {
    margin-top: 18px;
  }
  .tp-rentq-slide-visual {
    min-height: 235px;
  }
  .tp-rentq-slide-shape {
    top: 25%;
    right: 5%;
    width: 72%;
    height: 280px;
    transform: translateY(-10%) rotate(10deg);
  }
  .tp-rentq-slide-image {
    right: 4%;
    width: 71%;
    height: 285px;
  }
  .tp-rentq-slide:first-child .tp-rentq-slide-image {
    right: 5%;
    width: 78%;
    height: 300px;
  }
  .tp-rentq-slide-badge {
    top: 23%;
    right: 0;
  }
  .tp-rentq-slide-location {
    right: 18%;
    bottom: 3%;
  }
  .tp-rentq-booking-wrap {
    margin-top: -25px;
  }
  .tp-rentq-booking {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-rentq-booking-heading,
  .tp-rentq-booking-location,
  .tp-rentq-booking > label,
  .tp-rentq-booking-submit {
    min-height: 92px;
  }
  .tp-rentq-booking-heading {
    grid-column: span 2;
    border-bottom: 1px solid #ece9e3;
  }
  .tp-rentq-booking-location:nth-of-type(3),
  .tp-rentq-booking-location:nth-of-type(4) {
    border-bottom: 1px solid #ece9e3;
  }
  .tp-rentq-booking-submit {
    grid-column: span 2;
    border-top: 1px solid #ece9e3;
  }
  .tp-rentq-steps,
  .tp-rentq-fleet,
  .tp-rentq-locations,
  .tp-rentq-faq,
  .tp-rentq-why {
    padding: 70px 0;
  }
  .tp-rentq-steps-grid {
    grid-template-columns: 1fr;
  }
  .tp-rentq-steps-grid article,
  .tp-rentq-steps-grid article + article {
    min-height: 132px;
    padding: 23px 26px 21px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rentq-line);
  }
  .tp-rentq-steps-grid article:last-child {
    border-bottom: 0;
  }
  .tp-rentq-section-heading,
  .tp-rentq-final-inner {
    align-items: start;
    flex-direction: column;
  }
  .tp-rentq-section-heading {
    gap: 17px;
  }
  .tp-rentq-fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-rentq-why-grid,
  .tp-rentq-faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .tp-rentq-why-image-wrap,
  .tp-rentq-why-image {
    min-height: 420px;
    height: 420px;
  }
  .tp-rentq-location-grid {
    grid-template-columns: 1fr;
  }
  .tp-rentq-location-card {
    min-height: 180px;
  }
  .tp-rentq-final-actions {
    grid-template-columns: auto auto;
    align-items: center;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .tp-rentq-shell {
    width: min(100% - 28px, 480px);
  }
  .tp-rentq-hero-top {
    align-items: start;
    flex-direction: column;
    gap: 7px;
    padding: 16px 0 13px;
  }
  .tp-rentq-slider-viewport,
  .tp-rentq-slides {
    min-height: 650px;
  }
  .tp-rentq-slide {
    grid-template-rows: minmax(350px, .97fr) minmax(245px, .7fr);
  }
  .tp-rentq-slide-copy {
    padding-top: 43px;
  }
  .tp-rentq-slide-copy h1,
  .tp-rentq-slide-copy h2 {
    font-size: clamp(39px, 12vw, 56px);
  }
  .tp-rentq-slide-copy > p {
    max-width: 310px;
    font-size: 11px;
  }
  .tp-rentq-hero-actions {
    display: grid;
    max-width: 285px;
  }
  .tp-rentq-button {
    width: 100%;
  }
  .tp-rentq-slide-visual {
    min-height: 245px;
  }
  .tp-rentq-slide-shape {
    top: 27%;
    right: 1%;
    width: 91%;
    height: 242px;
  }
  .tp-rentq-slide-image,
  .tp-rentq-slide:first-child .tp-rentq-slide-image {
    right: -2%;
    width: 95%;
    height: 252px;
  }
  .tp-rentq-slide-badge {
    top: 17%;
    right: 0;
    padding: 8px 9px;
  }
  .tp-rentq-slide-badge small {
    font-size: 8px;
  }
  .tp-rentq-slide-location {
    right: 4%;
    bottom: 0;
  }
  .tp-rentq-slider-footer {
    padding-bottom: 17px;
  }
  .tp-rentq-slider-dots button {
    width: 26px;
  }
  .tp-rentq-booking-heading,
  .tp-rentq-booking-location,
  .tp-rentq-booking > label,
  .tp-rentq-booking-submit {
    padding-right: 14px;
    padding-left: 14px;
  }
  .tp-rentq-booking-heading strong {
    font-size: 15px;
  }
  .tp-rentq-booking-location strong,
  .tp-rentq-booking input {
    font-size: 11px;
  }
  .tp-rentq-booking-note {
    align-items: start;
    font-size: 9px;
    line-height: 1.5;
  }
  .tp-rentq-section-intro h2,
  .tp-rentq-section-heading h2,
  .tp-rentq-why h2,
  .tp-rentq-faq h2,
  .tp-rentq-final h2 {
    font-size: 36px;
  }
  .tp-rentq-filters {
    gap: 6px;
  }
  .tp-rentq-filters button {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 9px;
  }
  .tp-rentq-fleet-grid {
    grid-template-columns: 1fr;
  }
  .tp-rentq-fleet-media {
    height: 220px;
  }
  .tp-rentq-benefits-grid {
    grid-template-columns: 1fr;
  }
  .tp-rentq-why-image-wrap,
  .tp-rentq-why-image {
    min-height: 350px;
    height: 350px;
  }
  .tp-rentq-final-inner {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .tp-rentq-final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .tp-rentq-final-actions .tp-rentq-button {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tp-home-rentq *,
  .tp-home-rentq *::before,
  .tp-home-rentq *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header { min-height: 76px; padding: 0 clamp(20px, 5vw, 76px); display: flex; align-items: center; gap: 28px; background: rgba(250,249,247,.92); border-bottom: 1px solid var(--line); position: relative; z-index: 2; }
.brand { font-size: 15px; letter-spacing: .14em; font-weight: 800; white-space: nowrap; }
.brand span { color: var(--red); }
.public-nav, .admin-nav { margin-left: auto; display: flex; gap: 22px; align-items: center; font-size: 13px; color: #5a5854; }
.public-nav a:hover, .admin-nav a:hover, .text-link:hover { color: var(--red); }
.admin-page .site-header { background: #111; color: #fff; border-color: #2b2b2b; }
.admin-page .admin-nav { color: #c9c9c9; }

main { min-height: calc(100vh - 130px); }
.hero { background: radial-gradient(circle at 78% 12%, rgba(201,31,43,.35), transparent 30%), linear-gradient(125deg, #0b0b0b 0%, #191919 62%, #321114 100%); color: #fff; padding: clamp(48px, 8vw, 110px) clamp(20px, 7vw, 112px) 80px; display: grid; grid-template-columns: minmax(0,1fr) minmax(350px, 510px); gap: clamp(35px, 8vw, 120px); align-items: center; }
.hero-copy { max-width: 700px; }
.eyebrow { color: var(--gold); letter-spacing: .16em; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.hero h1, .page-hero h1, .success-screen h1, .auth-card h1, .admin-heading h1 { font-size: clamp(34px, 5vw, 68px); line-height: 1.03; letter-spacing: -.045em; margin: 16px 0 20px; }
.hero p, .page-hero p { color: #cbc7bf; font-size: 17px; line-height: 1.65; max-width: 590px; }
.booking-panel { background: rgba(255,255,255,.97); color: var(--ink); border-radius: 18px; padding: 26px; box-shadow: 0 25px 80px rgba(0,0,0,.28); }
.panel-kicker { font-size: 11px; letter-spacing: .13em; color: var(--red); font-weight: 800; margin-bottom: 18px; }
.booking-form, .reservation-form, .admin-form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: #55514d; font-size: 12px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid #dad6cf; background: #fff; border-radius: 9px; padding: 12px 13px; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(201,31,43,.10); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 9px; padding: 13px 18px; font-size: 13px; font-weight: 800; transition: transform .15s ease, background .15s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--red); color: #fff; }
.button.primary:hover { background: var(--red-dark); }
.button.secondary { background: #eeeae3; color: #26221f; }
.button.danger { background: #f7dfe1; color: #9e1823; }
.button.small { padding: 8px 11px; font-size: 11px; background: #eeeae3; }
.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); padding: 22px clamp(20px,7vw,112px); gap: 14px; border-bottom: 1px solid var(--line); background: #fff; color: #58534d; font-size: 12px; font-weight: 750; }
.trust-strip span { padding-left: 16px; border-left: 2px solid var(--red); }
.section { max-width: 1240px; margin: 0 auto; padding: 76px clamp(20px,4vw,44px); }
.section-heading, .panel-heading, .admin-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
h2 { font-size: clamp(28px,4vw,46px); letter-spacing: -.04em; margin: 10px 0 0; }
h3 { margin: 8px 0; font-size: 20px; letter-spacing: -.02em; }
.text-link { color: var(--red); font-size: 13px; font-weight: 800; white-space: nowrap; }
.vehicle-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.vehicle-card, .vehicle-result, .admin-panel, .price-card, .payment-card, .confirmation-card { background: var(--card); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; box-shadow: 0 7px 24px rgba(29,22,16,.045); }
.vehicle-card img, .vehicle-result img, .vehicle-placeholder { width: 100%; height: 220px; object-fit: cover; background: linear-gradient(135deg,#202020,#5b2026); }
.vehicle-placeholder { color: #fff; display: grid; place-items: center; font-size: 34px; font-weight: 900; letter-spacing: .12em; }
.vehicle-card-body { padding: 20px; }
.vehicle-card-body p, .vehicle-result-content p, .selected-vehicle p { color: var(--muted); font-size: 13px; }
.vehicle-card-body small { color: var(--muted); font-weight: 500; }
.dark-section { max-width: none; background: #121212; color: #fff; }
.dark-section > * { max-width: 1160px; margin-left: auto; margin-right: auto; }
.dark-section .section-heading { margin-bottom: 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-grid > div { border-top: 1px solid #444; padding-top: 20px; }
.feature-grid b { color: var(--red); font-size: 12px; }
.feature-grid p { color: #aaa; line-height: 1.6; }
.page-hero { background: #171717; color: #fff; padding: 58px clamp(20px,7vw,112px); }
.page-hero h1 { font-size: clamp(34px,5vw,58px); }
.search-summary { display: flex; gap: 16px; flex-wrap: wrap; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 22px; color: #6c675f; font-size: 13px; }
.search-summary strong { color: var(--ink); }
.results-list { display: grid; gap: 16px; }
.vehicle-result { display: grid; grid-template-columns: 250px 1fr; }
.vehicle-result img, .vehicle-result .vehicle-placeholder { height: 100%; min-height: 250px; }
.vehicle-result-content { padding: 24px; display: grid; align-content: center; gap: 7px; }
.vehicle-result-content h2 { font-size: 27px; }
.specs { display: flex; flex-wrap: wrap; gap: 8px; color: #666; font-size: 12px; }
.specs span { padding: 6px 9px; background: #f2f0ec; border-radius: 99px; }
.vehicle-result-content .button { width: fit-content; margin-top: 8px; }
.booking-layout { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: 24px; align-items: start; }
.selected-vehicle { display: flex; gap: 16px; align-items: center; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 20px; }
.selected-vehicle .vehicle-placeholder { width: 85px; height: 70px; min-height: 0; border-radius: 9px; font-size: 18px; }
.selected-vehicle h2 { font-size: 23px; }
.reservation-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
fieldset { border: 1px solid var(--line); border-radius: 10px; padding: 14px; display: grid; gap: 10px; }
legend { font-size: 12px; font-weight: 800; color: #55514d; padding: 0 6px; }
.choice { display: flex; grid-template-columns: none; align-items: center; gap: 8px; font-weight: 600; }
.choice input { width: auto; }
.price-card { padding: 23px; position: sticky; top: 18px; }
.price-card h3 { margin: 12px 0 20px; }
.price-line { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; color: #69635d; }
.price-line strong { color: var(--ink); white-space: nowrap; }
.price-line.total { font-size: 16px; color: var(--ink); border-bottom: 0; padding-top: 18px; }
.muted { color: var(--muted); line-height: 1.5; font-size: 12px; }
.notice { border-radius: 10px; padding: 13px 15px; margin-bottom: 18px; font-size: 13px; }
.notice.success { background: #e5f3ed; color: #126447; }
.notice.warning { background: #fff2dc; color: #8c5511; }
.notice ul { margin: 8px 0 0; padding-left: 20px; }
.empty-state { border: 1px dashed #cfc8bd; border-radius: 15px; padding: 40px; text-align: center; color: #726c64; background: #fff; grid-column: 1/-1; }
.empty-state strong { color: var(--ink); font-size: 18px; }
.success-screen, .auth-screen { max-width: 760px; margin: 0 auto; padding: 90px 22px; text-align: center; }
.success-icon { width: 58px; height: 58px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: #e5f3ed; color: var(--green); font-size: 28px; font-weight: 900; }
.success-icon.payment-return-icon-cancelled, .success-icon.payment-return-icon-failed { background: #fae0e2; color: #a0222c; }
.success-icon.payment-return-icon-pending { background: #fff0d4; color: #986119; }
.payment-return-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.success-screen h1 { font-size: clamp(34px,5vw,54px); }
.success-screen p { color: var(--muted); line-height: 1.7; max-width: 570px; margin: 0 auto 24px; }
.confirmation-card { max-width: 480px; margin: 28px auto; padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
.confirmation-card span { color: var(--muted); font-size: 12px; }
.confirmation-card strong { font-size: 13px; }
.narrow { max-width: 760px; }
.payment-card { padding: 30px; }
.payment-card h2 { font-size: 28px; margin-bottom: 10px; }
.payment-card p { color: var(--muted); line-height: 1.6; }
#cmi-payment-form { margin-top: 24px; }
.auth-screen { max-width: 520px; }
.auth-card { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 32px; }
.auth-card h1 { font-size: 38px; }
.auth-card > p { color: var(--muted); line-height: 1.5; }
.auth-card form { display: grid; gap: 14px; margin-top: 24px; }
.admin-page main { background: #f2f1ee; padding: 28px clamp(16px,4vw,52px) 60px; }
.admin-heading { max-width: 1240px; margin: 0 auto 26px; align-items: center; }
.admin-heading h1 { font-size: clamp(30px,4vw,48px); margin-bottom: 8px; }
.admin-heading p { color: var(--muted); margin: 0; }
.stats-grid { max-width: 1240px; margin: 0 auto 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 20px; }
.stat-card span { display: block; color: var(--muted); font-size: 12px; }
.stat-card strong { display: block; font-size: 36px; margin-top: 9px; letter-spacing: -.05em; }
.admin-panel { max-width: 1240px; margin: 0 auto 22px; padding: 22px; overflow: visible; }
.admin-panel h2 { font-size: 24px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 700px; }
th { text-align: left; color: #77716a; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 0 12px 12px; }
td { border-top: 1px solid var(--line); padding: 14px 12px; font-size: 13px; vertical-align: middle; }
td small { display: block; color: var(--muted); margin-top: 4px; }
.empty-cell { text-align: center; color: var(--muted); padding: 34px; }
.status { display: inline-flex; border-radius: 99px; padding: 5px 9px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; background: #eee; color: #666; }
.status-pending { background: #fff0d4; color: #986119; }
.status-payment_pending { background: #e9e0ff; color: #6443a1; }
.status-confirmed, .status-active { background: #dff3ea; color: #187456; }
.status-refused, .status-cancelled, .status-inactive { background: #fae0e2; color: #a0222c; }
.detail-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: 22px; align-items: start; }
.detail-list { display: grid; gap: 0; }
.detail-list > div { display: grid; grid-template-columns: 160px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.detail-list span { color: var(--muted); font-size: 12px; }
.detail-list strong { font-size: 13px; }
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.site-footer { padding: 28px 20px; color: #888078; text-align: center; font-size: 12px; border-top: 1px solid var(--line); background: #fff; }

@media (max-width: 850px) {
  .hero, .booking-layout, .detail-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .price-card { position: static; }
  .vehicle-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .admin-heading { align-items: start; flex-direction: column; }
}
@media (max-width: 600px) {
  .site-header { min-height: 64px; padding: 0 16px; }
  .public-nav, .admin-nav { gap: 10px; font-size: 11px; overflow-x: auto; }
  .public-nav a:nth-child(3) { display: none; }
  .hero h1, .page-hero h1 { font-size: 40px; }
  .hero p { font-size: 15px; }
  .form-grid, .vehicle-grid, .feature-grid, .trust-strip { grid-template-columns: 1fr; }
  .trust-strip { gap: 10px; }
  .vehicle-result { grid-template-columns: 1fr; }
  .vehicle-result img, .vehicle-result .vehicle-placeholder { min-height: 200px; height: 200px; }
  .section { padding-top: 52px; padding-bottom: 52px; }
  .section-heading { align-items: start; flex-direction: column; }
  .confirmation-card { grid-template-columns: 1fr; }
  .detail-list > div { grid-template-columns: 1fr; gap: 5px; }
  .stats-grid { gap: 9px; }
  .stat-card { padding: 14px; }
  .stat-card strong { font-size: 28px; }
}

/* Nouvelle interface flotte / réservation / backoffice */
.brand-logo { display: block; width: auto; max-width: 168px; max-height: 38px; object-fit: contain; }
.hero-premium { min-height: 650px; position: relative; overflow: hidden; }
.hero-premium::after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; bottom: -260px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018); pointer-events: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button.ghost { color: #fff; border: 1px solid rgba(255,255,255,.26); background: transparent; }
.button.ghost:hover { background: rgba(255,255,255,.1); }
.button.light { background: #fff; color: #141414; }
.button.light:hover { background: #f0ebe2; }
.hero-proof { display: flex; gap: 10px; align-items: center; color: #a8a39b; font-size: 11px; margin-top: 62px; letter-spacing: .04em; }
.hero-proof span:first-child { color: var(--red); font-weight: 900; font-size: 16px; }
.booking-panel-large { padding: 32px; max-width: 520px; }
.booking-panel-large h2 { font-size: 27px; line-height: 1.08; margin: 5px 0 10px; }
.panel-intro { color: #77716a; font-size: 13px; line-height: 1.55; margin: 0 0 20px; }
.panel-footnote { display: flex; gap: 8px; align-items: center; color: #8a837a; font-size: 11px; margin-top: 18px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #37a376; box-shadow: 0 0 0 4px #e2f2eb; }
.trust-strip-premium { position: relative; z-index: 1; }
.section-categories { padding-bottom: 35px; }
.category-pills { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.category-pills a { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.category-pills a:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow); }
.category-pills span { display: block; font-weight: 800; font-size: 14px; }
.category-pills small { display: block; color: var(--muted); line-height: 1.45; margin-top: 8px; font-size: 11px; }
.section-fleet { padding-top: 45px; }
.section-heading p { max-width: 630px; margin: 12px 0 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.catalog-card { background: #fff; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; box-shadow: 0 7px 24px rgba(29,22,16,.045); display: flex; flex-direction: column; min-width: 0; }
.catalog-card-media { display: block; position: relative; overflow: hidden; background: linear-gradient(135deg,#202020,#5b2026); }
.catalog-card-media .vehicle-photo, .catalog-card-media .vehicle-placeholder { display: block; width: 100%; height: 232px; object-fit: cover; transition: transform .3s ease; }
.catalog-card:hover .catalog-card-media .vehicle-photo { transform: scale(1.035); }
.card-badge { position: absolute; left: 12px; bottom: 12px; padding: 7px 9px; border-radius: 99px; color: #fff; background: var(--red); font-size: 10px; font-weight: 800; }
.catalog-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.catalog-card-body h2 { font-size: 22px; margin: 7px 0 13px; }
.catalog-card-body h2 a:hover { color: var(--red); }
.catalog-card-body .specs { min-height: 29px; }
.catalog-card-footer { display: flex; justify-content: space-between; align-items: end; gap: 14px; margin-top: 21px; padding-top: 15px; border-top: 1px solid var(--line); }
.catalog-price { display: grid; gap: 2px; }
.catalog-price strong { font-size: 18px; letter-spacing: -.03em; }
.catalog-price small { color: var(--muted); font-size: 10px; }
.page-hero-catalog { padding-bottom: 66px; }
.catalog-section { padding-top: 36px; }
.catalog-search { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 17px; margin-bottom: 18px; }
.catalog-search .form-grid { display: contents; }
.catalog-search .button { height: 45px; white-space: nowrap; }
.catalog-intro-card { display: flex; justify-content: space-between; gap: 16px; background: #171717; color: #fff; border-radius: 12px; padding: 15px 18px; margin-bottom: 18px; font-size: 13px; }
.catalog-intro-card span { color: #aaa; }
.modern-summary { align-items: center; padding: 12px 16px; }
.modern-summary > span { display: grid; gap: 4px; padding-right: 18px; border-right: 1px solid var(--line); }
.modern-summary > span small { color: var(--gold); font-weight: 800; letter-spacing: .08em; font-size: 9px; }
.modern-summary > span strong { font-size: 12px; }
.modern-summary .text-link { margin-left: auto; }
.catalog-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 22px; align-items: start; }
.catalog-filters { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 19px; display: grid; gap: 14px; position: sticky; top: 17px; }
.catalog-filters h2 { font-size: 22px; margin-top: 5px; }
.filter-title { padding-bottom: 5px; }
.filter-reset { color: var(--red); text-align: center; font-weight: 800; font-size: 11px; }
.filter-note { border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 5px; }
.filter-note strong { font-size: 12px; }
.filter-note span { color: var(--muted); font-size: 11px; line-height: 1.45; }
.catalog-results { min-width: 0; }
.results-toolbar { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin: 0 0 14px; color: var(--muted); font-size: 12px; }
.results-toolbar strong { color: var(--ink); font-size: 17px; }
.results-toolbar span { font-size: 11px; }
.page-hero-booking { padding-bottom: 54px; }
.booking-layout-modern { padding-top: 36px; }
/* L’aperçu de réservation utilise l’image détourée sur un fond blanc et la
   conserve centrée dans un format compact, sans l’étirer ni la recadrer. */
.selected-vehicle-modern { padding: 13px; }
.selected-vehicle-photo { flex: 0 0 150px; width: 150px; height: 100px; box-sizing: border-box; padding: 8px; border: 1px solid #ece9e3; border-radius: 10px; object-fit: contain; object-position: center; background: #fff; }
.selected-vehicle-photo.vehicle-placeholder { display: grid; place-items: center; padding: 0; background: #f7f6f3; color: #8c857d; }
.selected-vehicle-modern h2 { font-size: 24px; }
.reservation-form-modern { padding: 27px; gap: 17px; }
.form-section-title { display: flex; gap: 12px; align-items: center; border-top: 1px solid var(--line); padding-top: 19px; margin-top: 3px; }
.form-section-title span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-size: 11px; font-weight: 900; }
.form-section-title strong, .form-section-title small { display: block; }
.form-section-title strong { font-size: 14px; }
.form-section-title small { color: var(--muted); font-size: 11px; margin-top: 3px; font-weight: 500; }
.button-wide { width: 100%; }
.price-card-modern { padding: 28px; }
.price-card-modern h2 { font-size: 24px; margin: 9px 0 17px; }
.discount-line strong { color: var(--green); }
.pricing-fees { padding: 2px 0 5px; border-bottom: 1px solid var(--line); }
.pricing-fees-heading { padding: 10px 0 2px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.pricing-breakdown { display: grid; }
.pricing-fee-line { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 8px 0; color: #69635d; font-size: 12px; line-height: 1.35; }
.pricing-fee-line + .pricing-fee-line { border-top: 1px solid rgba(232,229,223,.7); }
.pricing-fee-line strong { color: var(--ink); font-size: 12px; white-space: nowrap; }
.pricing-fee-empty { padding: 8px 0 9px; color: var(--muted); font-size: 12px; }
.deposit-callout { background: #f7f2e9; border-radius: 11px; padding: 14px; margin-top: 14px; display: grid; gap: 5px; }
.deposit-callout span { font-size: 11px; color: #75664f; }
.deposit-callout strong { font-size: 20px; }
.deposit-callout small { color: #827667; font-size: 11px; line-height: 1.4; }
.vehicle-detail-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr); gap: 24px; align-items: start; padding-top: 42px; }
.vehicle-gallery { min-width: 0; }
.gallery-cover { border-radius: 16px; overflow: hidden; background: linear-gradient(135deg,#202020,#5b2026); }
.detail-cover, .gallery-cover .vehicle-placeholder { width: 100%; height: min(580px, 50vw); min-height: 340px; display: block; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 9px; }
.gallery-thumbs a { border-radius: 8px; overflow: hidden; border: 2px solid transparent; aspect-ratio: 1.35; background: #eee; }
.gallery-thumbs a:hover { border-color: var(--red); }
.gallery-thumbs img { display: block; width: 100%; height: 100%; object-fit: cover; }
.detail-aside { background: #fff; border: 1px solid var(--line); border-radius: 15px; padding: 26px; position: sticky; top: 18px; }
.detail-price { display: flex; align-items: baseline; gap: 7px; margin: 14px 0 9px; }
.detail-price strong { font-size: 36px; letter-spacing: -.05em; }
.detail-price span { color: var(--muted); }
.detail-aside > p { color: var(--muted); line-height: 1.55; font-size: 13px; margin-bottom: 21px; }
.detail-assurance { display: flex; gap: 10px; align-items: center; border-top: 1px solid var(--line); margin-top: 21px; padding-top: 18px; }
.detail-assurance > span { color: var(--green); font-weight: 900; font-size: 22px; }
.detail-assurance strong, .detail-assurance small { display: block; }
.detail-assurance strong { font-size: 12px; }
.detail-assurance small { color: var(--muted); font-size: 11px; margin-top: 3px; }
.detail-info-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 70px; align-items: start; }
.detail-info-section h2 { font-size: 38px; }
.detail-description { color: var(--muted); line-height: 1.75; font-size: 14px; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.spec-grid div { display: grid; gap: 7px; padding: 17px 12px; border-bottom: 1px solid var(--line); }
.spec-grid span { color: var(--muted); font-size: 11px; }
.spec-grid strong { font-size: 15px; }
.detail-cta { display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.detail-cta p { color: #aaa; line-height: 1.5; }
.promo-band { background: var(--red); color: #fff; padding: 48px max(20px, calc((100vw - 1160px) / 2)); display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.promo-band h2 { max-width: 650px; font-size: clamp(28px,4vw,48px); margin: 10px 0; }
.promo-band p { color: #ffdadd; max-width: 560px; line-height: 1.55; margin: 0; }
.promo-band .eyebrow { color: #ffd48b; }
.experience-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 70px; align-items: start; }
.experience-copy h2 { font-size: 39px; }
.experience-copy p { color: var(--muted); line-height: 1.7; font-size: 14px; }
.feature-grid-premium { grid-template-columns: 1fr; gap: 0; }
.feature-grid-premium > div { border-top: 1px solid var(--line); padding: 18px 0; display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; }
.feature-grid-premium b { grid-row: span 2; }
.feature-grid-premium h3 { margin: 0; font-size: 17px; }
.feature-grid-premium p { grid-column: 2; margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.faq-grid details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 17px; }
.faq-grid summary { cursor: pointer; list-style: none; font-size: 13px; font-weight: 800; line-height: 1.35; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid p { color: var(--muted); line-height: 1.55; font-size: 12px; margin-bottom: 0; }
.admin-toolbar-panel { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.admin-toolbar-panel strong, .admin-toolbar-panel span { display: block; }
.admin-toolbar-panel span { color: var(--muted); font-size: 12px; margin-top: 4px; }
.admin-vehicle-name { display: flex; gap: 11px; align-items: center; min-width: 180px; }
.admin-vehicle-thumb, .admin-vehicle-name .vehicle-placeholder { display: block; width: 63px; height: 45px; border-radius: 7px; object-fit: cover; background: linear-gradient(135deg,#202020,#5b2026); }
.admin-vehicle-name strong, .admin-vehicle-name small { display: block; }
.admin-vehicle-name small { margin-top: 3px; }
.admin-editor-form { max-width: 1240px; margin: 0 auto; }
.admin-editor-form > .admin-panel, .admin-editor-form + .admin-panel { max-width: none; }
.editor-section-heading { display: flex; justify-content: space-between; align-items: start; gap: 15px; margin-bottom: 22px; }
.editor-section-heading h2 { font-size: 27px; margin-top: 7px; }
.editor-section-heading p { color: var(--muted); font-size: 12px; line-height: 1.45; margin: 6px 0 0; }
.editor-step { color: var(--red); font-size: 22px; font-weight: 900; }
.field-help { display: block; color: #8b847c; font-size: 10px; line-height: 1.45; font-weight: 500; }
.checkbox-label { display: flex; grid-template-columns: none; align-items: center; gap: 9px; }
.checkbox-label input { width: auto; }
.upload-zone { border: 1px dashed #cfc5b9; border-radius: 12px; padding: 21px; background: #fcfaf6; gap: 9px; }
.upload-zone > span { color: var(--ink); font-size: 14px; font-weight: 800; }
.upload-zone input { border: 0; padding: 0; background: transparent; }
code { font-size: 10px; color: #8d2730; background: #f4e5e6; border-radius: 4px; padding: 2px 4px; }
.image-admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-top: 18px; }
.image-admin-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.image-admin-card > img { display: block; width: 100%; height: 145px; object-fit: cover; background: #eee; }
.image-admin-card > div { padding: 10px; display: grid; gap: 6px; }
.image-admin-card small { color: var(--muted); font-size: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cover-label { color: var(--green); font-size: 10px; font-weight: 800; }
.text-button { border: 0; padding: 0; background: transparent; color: var(--red); font-size: 10px; font-weight: 800; text-align: left; }
.text-button:hover { text-decoration: underline; }
.danger-text { color: #a0222c; }
.compact-empty { padding: 20px; margin-top: 17px; font-size: 12px; }
.pricing-rule-list { display: grid; gap: 8px; margin-bottom: 18px; }
.pricing-rule-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.pricing-rule-row strong, .pricing-rule-row small { display: block; }
.pricing-rule-row small { color: var(--muted); font-size: 10px; margin-top: 4px; }
.discount-pill { display: inline-flex; color: var(--green); background: #e3f3ec; border-radius: 99px; padding: 4px 7px; font-size: 10px; font-weight: 800; margin-left: 7px; }
.pricing-action-form { margin: 0; }
.pricing-form { border-top: 1px solid var(--line); padding-top: 20px; }
.editor-note { color: var(--muted); font-size: 12px; }
.logo-settings { display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: start; margin-top: 18px; }
.logo-preview { height: 118px; border-radius: 12px; background: #111; display: grid; place-items: center; overflow: hidden; }
.logo-preview img { max-width: 90%; max-height: 80px; object-fit: contain; }
.logo-preview span { color: #fff; font-weight: 900; letter-spacing: .12em; }
.faq-admin-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 15px; border-top: 1px solid var(--line); padding: 17px 0; }
.category-admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.category-admin-card { border: 1px solid var(--line); border-radius: 12px; padding: 17px; background: #fff; }
.category-admin-card:hover { border-color: var(--red); }
.category-index { color: var(--red); font-size: 11px; font-weight: 900; }
.category-admin-card h2 { font-size: 20px; margin: 14px 0 8px; }
.category-admin-card p { color: var(--muted); font-size: 12px; line-height: 1.45; min-height: 35px; }
.category-admin-card small { font-size: 10px; color: var(--muted); }

@media (max-width: 950px) {
  .category-pills, .category-admin-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-layout { grid-template-columns: 200px minmax(0, 1fr); }
  .image-admin-grid { grid-template-columns: repeat(3, 1fr); }
  .experience-section, .detail-info-section { gap: 32px; }
}
@media (max-width: 700px) {
  .brand-logo { max-width: 135px; max-height: 31px; }
  .hero-premium { min-height: 0; }
  .hero-proof { margin-top: 35px; flex-wrap: wrap; }
  .category-pills, .category-admin-grid, .catalog-grid, .faq-grid, .experience-section, .detail-info-section { grid-template-columns: 1fr; }
  .catalog-search { grid-template-columns: 1fr; }
  .catalog-search .form-grid { display: grid; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filters { position: static; }
  .modern-summary { align-items: stretch; flex-direction: column; }
  .modern-summary > span { border-right: 0; border-bottom: 1px solid var(--line); padding: 5px 0 9px; }
  .modern-summary .text-link { margin: 4px 0 0; }
  .catalog-card-media .vehicle-photo, .catalog-card-media .vehicle-placeholder { height: 215px; }
  .promo-band, .detail-cta, .admin-toolbar-panel { align-items: start; flex-direction: column; }
  .selected-vehicle-photo { width: 95px; height: 75px; }
  .image-admin-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-admin-row, .logo-settings { grid-template-columns: 1fr; }
  .pricing-rule-row { grid-template-columns: 1fr; gap: 8px; }
  .detail-cover, .gallery-cover .vehicle-placeholder { height: 300px; min-height: 0; }
  .detail-aside { position: static; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* Contrôles date / heure et médias administrables */
.datetime-control { display: grid; gap: 7px; min-width: 0; }
.datetime-control-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 9px; }
.datetime-control-grid label { gap: 6px; }
.datetime-control input { min-width: 0; }
.date-rule-message { display: none; border: 1px solid #ead6a9; border-radius: 9px; padding: 10px 12px; background: #fff7e8; color: #805b20; font-size: 11px; line-height: 1.45; }
.date-rule-message.is-visible { display: block; }
.hero-premium { grid-template-columns: minmax(0,1fr) minmax(260px,.66fr) minmax(350px,510px); }
.hero-visual { min-height: 400px; align-self: stretch; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: linear-gradient(135deg,#242424,#5a1e25); box-shadow: 0 22px 60px rgba(0,0,0,.28); }
.hero-visual::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; pointer-events: none; z-index: 1; }
.hero-visual > .home-media-image { display: block; width: 100%; height: 100%; min-height: 400px; object-fit: cover; opacity: .88; }
.hero-visual-placeholder { min-height: 400px; display: grid; place-content: center; justify-items: center; gap: 3px; color: #fff; letter-spacing: .18em; }
.hero-visual-placeholder span { color: #e32331; font-size: 17px; font-weight: 900; }
.hero-visual-placeholder strong { font-size: 27px; }
.hero-visual-placeholder small { margin-top: 12px; color: #d0c4b5; font-size: 9px; letter-spacing: .17em; }
.hero-visual-note { position: absolute; left: 28px; right: 28px; bottom: 27px; z-index: 2; display: flex; align-items: center; gap: 11px; color: #fff; }
.hero-visual-note span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; font-size: 10px; }
.hero-visual-note strong { font-size: 11px; font-weight: 700; }
.category-pills a { position: relative; min-height: 150px; overflow: hidden; }
.category-pill-image { display: block; width: 100%; height: 88px; margin: -18px -18px 15px; width: calc(100% + 36px); object-fit: cover; opacity: .92; }
.category-pills a > span, .category-pills a > small { position: relative; z-index: 1; }
.fleet-section-media { height: 220px; margin: -4px 0 23px; overflow: hidden; border-radius: 15px; background: #171717; }
.fleet-section-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.promo-band { position: relative; isolation: isolate; overflow: hidden; }
.promo-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(90deg, rgba(145,18,29,.94), rgba(201,31,43,.72)), var(--promo-image); background-position: center; background-size: cover; }
.promo-band > * { position: relative; z-index: 1; }
.home-media-admin-section { max-width: 1240px; }
.home-media-admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 13px; margin-bottom: 20px; }
.home-media-admin-card { display: grid; align-content: start; gap: 8px; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.home-media-admin-card > strong { font-size: 12px; }
.home-media-admin-card > small { min-height: 31px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.home-media-admin-card label { gap: 5px; font-size: 10px; }
.home-media-admin-card input[type="file"] { padding: 8px; font-size: 10px; }
.home-media-preview { display: grid; place-items: center; height: 115px; overflow: hidden; border-radius: 8px; background: linear-gradient(135deg,#202020,#5b2026); color: #d4c7b6; text-align: center; font-size: 11px; }
.home-media-preview img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Application privée des réservations */
.pwa-page { min-height: 100vh; background: #f2f1ee; }
.pwa-page main { min-height: calc(100vh - 142px); }
.pwa-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 72px; padding: 0 max(20px, calc((100vw - 1000px) / 2)); background: #111; color: #fff; }
.pwa-brand { display: inline-flex; align-items: center; min-width: 0; }
.pwa-brand-logo { display: block; max-width: 165px; max-height: 35px; object-fit: contain; }
.pwa-brand-wordmark { color: #f4f1eb; font-size: 14px; font-weight: 800; letter-spacing: .14em; white-space: nowrap; }
.pwa-brand-wordmark b { color: #dc2531; }
.pwa-header-actions { display: flex; align-items: center; gap: 11px; }
.pwa-notification-button, .pwa-logout { border-radius: 999px; padding: 9px 13px; font-size: 11px; font-weight: 800; }
.pwa-notification-button { border: 1px solid rgba(255,255,255,.24); background: transparent; color: #fff; }
.pwa-notification-button:hover { background: rgba(255,255,255,.1); }
.pwa-notification-button:disabled { opacity: .55; cursor: wait; }
.pwa-logout { color: #d6d0c8; border: 1px solid rgba(255,255,255,.14); }
.pwa-logout:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.pwa-main { max-width: 1000px; margin: 0 auto; padding: 42px 20px 68px; }
.pwa-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 27px; }
.pwa-heading h1 { margin: 11px 0 8px; font-size: clamp(36px,6vw,62px); line-height: .98; letter-spacing: -.06em; }
.pwa-heading p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.5; font-size: 13px; }
.pwa-live-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-size: 11px; font-weight: 800; }
.pwa-live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #37a376; box-shadow: 0 0 0 4px #dff3ea; }
.pwa-inbox { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 38px rgba(29,22,16,.06); overflow: hidden; }
.pwa-inbox-toolbar { display: flex; justify-content: space-between; gap: 16px; padding: 19px 21px; border-bottom: 1px solid var(--line); }
.pwa-inbox-toolbar strong { font-size: 13px; }
.pwa-inbox-toolbar span { color: var(--muted); font-size: 11px; }
.pwa-reservation-list { display: grid; gap: 10px; padding: 12px; background: #faf9f7; }
.pwa-reservation-card { display: grid; gap: 7px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 13px; background: #fff; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.pwa-reservation-card:hover { border-color: var(--red); transform: translateY(-1px); box-shadow: 0 9px 24px rgba(29,22,16,.08); }
.pwa-card-top, .pwa-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pwa-reference { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .07em; }
.pwa-reservation-card > strong { font-size: 19px; letter-spacing: -.02em; }
.pwa-card-vehicle { color: #4e4b47; font-size: 13px; }
.pwa-card-period { color: var(--muted); font-size: 11px; }
.pwa-card-bottom { margin-top: 5px; padding-top: 11px; border-top: 1px solid var(--line); color: var(--ink); font-size: 12px; font-weight: 800; }
.pwa-card-bottom span:last-child { color: var(--red); }
.pwa-empty { padding: 68px 25px; text-align: center; }
.pwa-empty-icon { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 15px; border-radius: 50%; background: #e5f3ed; color: var(--green); font-size: 22px; font-weight: 900; }
.pwa-empty h2 { font-size: 25px; margin: 0 0 7px; }
.pwa-empty p { margin: 0; color: var(--muted); font-size: 12px; }
.pwa-back-link { display: inline-block; margin-bottom: 23px; color: var(--red); font-size: 12px; font-weight: 800; }
.pwa-detail-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 19px; }
.pwa-detail-heading h1 { margin: 10px 0 7px; font-size: clamp(32px,5vw,54px); line-height: .98; letter-spacing: -.055em; }
.pwa-detail-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.pwa-actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 20px 0; }
.pwa-actions form { margin: 0; }
.pwa-action-button { display: grid; grid-template-columns: 46px 1fr; grid-template-rows: auto auto; align-items: center; width: 100%; min-height: 112px; padding: 17px 19px; border: 0; border-radius: 15px; text-align: left; transition: transform .15s ease, box-shadow .15s ease; }
.pwa-action-button:hover { transform: translateY(-2px); box-shadow: 0 13px 26px rgba(29,22,16,.12); }
.pwa-action-button > span { grid-row: span 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; font-size: 23px; font-weight: 500; }
.pwa-action-button b { font-size: 21px; letter-spacing: -.03em; }
.pwa-action-button small { margin-top: 4px; font-size: 11px; }
.pwa-accept { background: #dff3ea; color: #126447; }
.pwa-accept > span { background: var(--green); }
.pwa-refuse { background: #fae0e2; color: #8f1c26; }
.pwa-refuse > span { background: #b92b38; }
.pwa-locked-status { display: flex; align-items: center; gap: 12px; margin: 20px 0; padding: 15px 17px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.pwa-locked-status p { margin: 0; color: var(--muted); font-size: 12px; }
.pwa-payment-resend { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 20px 0; padding: 17px 19px; border: 1px solid #e7d8b5; border-radius: 15px; background: #fffaf0; }
.pwa-payment-resend > div { display: grid; gap: 5px; }
.pwa-payment-resend .eyebrow { color: #a7792d; }
.pwa-payment-resend strong { color: #39332b; font-size: 15px; }
.pwa-payment-resend small { color: #776f66; font-size: 11px; line-height: 1.45; }
.pwa-payment-resend form { flex: 0 0 auto; margin: 0; }
.pwa-resend-button { min-height: 44px; padding: 11px 15px; border: 0; border-radius: 9px; background: var(--red); color: #fff; font-size: 12px; font-weight: 800; }
.pwa-resend-button:hover { background: #aa1723; }
.pwa-detail-card, .pwa-amount-card { border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 9px 28px rgba(29,22,16,.045); }
.pwa-detail-card { overflow: hidden; }
.pwa-detail-card-heading { display: flex; justify-content: space-between; gap: 12px; padding: 17px 20px; border-bottom: 1px solid var(--line); }
.pwa-detail-card-heading span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pwa-detail-card-heading strong { color: var(--red); font-size: 11px; }
.pwa-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; }
.pwa-detail-grid > div { display: grid; gap: 6px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.pwa-detail-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.pwa-detail-grid small, .pwa-amount-card small { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.pwa-detail-grid strong { font-size: 14px; }
.pwa-detail-grid span, .pwa-detail-grid a { color: #5e5953; font-size: 12px; line-height: 1.4; overflow-wrap: anywhere; }
.pwa-detail-grid a:hover { color: var(--red); }
.pwa-amount-card { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 14px; padding: 7px; }
.pwa-amount-card > div { display: grid; gap: 6px; padding: 14px 15px; border-right: 1px solid var(--line); }
.pwa-amount-card > div:last-child { border-right: 0; }
.pwa-amount-card strong { font-size: 16px; }
.pwa-deposit-amount { color: var(--red); }
.pwa-footer { padding: 20px; border-top: 1px solid var(--line); background: #fff; color: #888078; text-align: center; font-size: 11px; }

@media (max-width: 1100px) {
  .hero-premium { grid-template-columns: minmax(0,1fr) minmax(300px,.8fr); }
  .hero-visual { grid-column: 1 / -1; grid-row: 2; min-height: 250px; max-height: 330px; }
  .hero-visual > .home-media-image, .hero-visual-placeholder { min-height: 250px; }
  .booking-panel-large { grid-column: 2; grid-row: 1; }
  .hero-copy { grid-column: 1; grid-row: 1; }
  .home-media-admin-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .datetime-control-grid { grid-template-columns: 1fr; }
  .hero-premium { display: flex; flex-direction: column; gap: 23px; }
  .hero-copy, .hero-visual, .booking-panel-large { width: 100%; }
  .hero-visual { order: 2; min-height: 265px; max-height: 300px; }
  .hero-visual > .home-media-image, .hero-visual-placeholder { min-height: 265px; }
  .booking-panel-large { order: 3; }
  .hero-copy { order: 1; }
  .home-media-admin-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pwa-header { align-items: start; flex-direction: column; padding: 16px 18px; }
  .pwa-header-actions { width: 100%; justify-content: space-between; }
  .pwa-notification-button { flex: 1; }
  .pwa-main { padding: 30px 13px 48px; }
  .pwa-heading, .pwa-detail-heading { align-items: start; flex-direction: column; }
  .pwa-inbox-toolbar { align-items: start; flex-direction: column; gap: 5px; padding: 16px; }
  .pwa-reservation-card { padding: 15px; }
  .pwa-actions { grid-template-columns: 1fr; }
  .pwa-action-button { min-height: 96px; }
  .pwa-detail-grid { grid-template-columns: 1fr; }
  .pwa-detail-grid > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pwa-detail-grid > div:last-child { border-bottom: 0; }
  .pwa-amount-card { grid-template-columns: repeat(2,1fr); }
  .pwa-amount-card > div:nth-child(2) { border-right: 0; }
  .pwa-amount-card > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* Parcours public final : accueil sans flotte, catalogue en deux colonnes et
   réservation compacte directement depuis chaque carte véhicule. */
.tp-rental-landing {
  overflow: hidden;
  background: #fff;
  color: #171717;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.tp-rental-landing-hero {
  position: relative;
  min-height: min(730px, calc(100vh - 110px));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background-color: #1b1b1b;
  background-image: var(--tp-rental-hero);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tp-rental-landing-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.82) 34%, rgba(10,10,10,.33) 67%, rgba(10,10,10,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55));
}
.tp-rental-landing-content {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(82px, 11vw, 150px) clamp(20px, 6vw, 80px) clamp(175px, 18vw, 235px);
}
.tp-rental-landing-content > span,
.tp-rental-landing-signature strong {
  display: block;
  color: #e0c58d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.tp-rental-landing-content h1 {
  max-width: 700px;
  margin: 17px 0 22px;
  color: #fff;
  font-size: clamp(48px, 7.5vw, 98px);
  line-height: .92;
  letter-spacing: -.065em;
}
.tp-rental-landing-content p {
  max-width: 495px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.65;
}
.tp-rental-landing-content > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding: 16px 21px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}
.tp-rental-landing-content > a:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
}
.tp-rental-landing-signature {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 42px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding-left: 16px;
  border-left: 2px solid var(--red);
}
.tp-rental-landing-signature strong {
  color: #fff;
  font-size: 10px;
  letter-spacing: .12em;
}
.tp-rental-landing-signature span {
  color: rgba(255,255,255,.68);
  font-size: 12px;
}
.tp-rental-search {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 42px));
  margin: -105px auto 0;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(20,20,20,.20);
}
.tp-rental-search > div:first-child > span,
.tp-rental-landing-promise > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.tp-rental-search h2 {
  max-width: 620px;
  margin: 10px 0 8px;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.tp-rental-search p {
  max-width: 690px;
  margin: 0 0 23px;
  color: #85817c;
  font-size: 13px;
  line-height: 1.55;
}
.tp-rental-search form {
  display: grid;
  gap: 14px;
}
.tp-rental-search form > .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.tp-rental-search label {
  gap: 6px;
  color: #5e5a56;
  font-size: 11px;
  font-weight: 800;
}
.tp-rental-search input,
.tp-rental-search select {
  min-height: 49px;
  border-radius: 0;
  border-color: #d8d5d0;
  font-size: 12px;
}
.tp-rental-search .datetime-control {
  gap: 7px;
}
.tp-rental-search .datetime-control-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(90px, .82fr);
  gap: 8px;
}
.tp-rental-search .datetime-control > .field-help {
  display: none;
}
.tp-rental-search .date-rule-message.is-visible {
  padding: 9px 11px;
  border: 0;
  border-radius: 0;
  background: #fff5df;
  color: #855917;
}
.tp-rental-search .button {
  min-height: 53px;
  border-radius: 0;
  font-size: 13px;
}
.tp-rental-search > small {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: #89847d;
  font-size: 11px;
}
.tp-rental-search > small::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #3aa978;
  box-shadow: 0 0 0 4px #e2f3eb;
}
.tp-rental-landing-promise {
  max-width: 780px;
  margin: 0 auto;
  padding: 105px 25px 120px;
  text-align: center;
}
.tp-rental-landing-promise h2 {
  margin: 14px 0 17px;
  font-size: clamp(29px, 4.2vw, 52px);
  line-height: 1.03;
  letter-spacing: -.06em;
}
.tp-rental-landing-promise p {
  max-width: 640px;
  margin: 0 auto;
  color: #78736d;
  font-size: 14px;
  line-height: 1.75;
}
.tp-rental-landing-promise a {
  display: inline-flex;
  gap: 11px;
  margin-top: 25px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.catalog-section {
  width: min(1280px, calc(100% - clamp(56px, 12vw, 160px)));
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  padding-top: 48px;
  padding-bottom: 100px;
  background: #fff;
}
.vehicles-top-search {
  width: min(1280px, calc(100% - clamp(56px, 12vw, 160px)));
  max-width: 1280px;
  margin: 38px auto 0;
  padding: 31px 36px 27px;
  border: 1px solid #242424;
  background: #303030;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
}
.vehicles-top-search-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}
.vehicles-top-search-heading .eyebrow {
  color: #e0b56e;
}
.vehicles-top-search-heading h2 {
  margin: 9px 0 0;
  color: #fff;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.vehicles-top-search-heading p {
  max-width: 600px;
  margin: 10px 0 0;
  color: #bdbdbd;
  font-size: 13px;
  line-height: 1.55;
}
.vehicles-top-search-badge {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  color: #ddd;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.vehicles-top-search-form {
  display: grid;
  gap: 16px;
}
.vehicles-top-search-fields {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,2.15fr);
  gap: 14px;
  align-items: end;
}
.vehicles-top-search-form label {
  gap: 6px;
  color: #d2d2d2;
  font-size: 11px;
  font-weight: 800;
}
.vehicles-top-search-form input,
.vehicles-top-search-form select {
  min-height: 48px;
  border: 1px solid #5b5b5b;
  border-radius: 0;
  background: #3a3a3a;
  color: #fff;
  font-size: 13px;
}
.vehicles-top-search-form input:focus,
.vehicles-top-search-form select:focus {
  border-color: #e15a61;
  box-shadow: 0 0 0 3px rgba(225,90,97,.18);
}
.vehicles-top-search-dates {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  min-width: 0;
}
.vehicles-top-search-dates .datetime-control-grid {
  grid-template-columns: minmax(0,1.35fr) minmax(90px,.8fr);
  gap: 8px;
}
.vehicles-top-search-dates .datetime-control > .field-help {
  display: none;
}
.vehicles-top-search-dates .datetime-control-grid label {
  font-size: 10px;
}
.vehicles-top-search-dates input {
  min-width: 0;
  padding-right: 7px;
  padding-left: 7px;
  font-size: 12px;
}
.vehicles-top-search-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vehicles-top-search-footer .date-rule-message {
  margin: 0;
}
.vehicles-top-search-footer small {
  margin-right: auto;
  color: #a9a9a9;
  font-size: 11px;
  line-height: 1.45;
}
.vehicles-top-search-submit {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 0 26px;
  border: 0;
  border-radius: 0;
  background: #df3d45;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.vehicles-top-search-submit:hover {
  background: #c72e36;
}
.catalog-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.catalog-section .catalog-layout {
  grid-template-columns: minmax(300px, 355px) minmax(0, 1fr);
  gap: clamp(40px, 8.2vw, 160px);
  max-width: 1280px;
  margin: 0 auto;
}
.catalog-section .catalog-filters {
  position: sticky;
  top: 22px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.catalog-section .catalog-filters h2 {
  width: fit-content;
  margin: 0 0 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--red);
  color: #222;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.catalog-section .catalog-filters h2:nth-of-type(2) {
  margin-top: 78px;
  margin-bottom: 28px;
}
.catalog-price-slider {
  position: relative;
  height: 24px;
  margin: 0 9px 25px;
}
.catalog-price-slider span {
  position: absolute;
  top: 9px;
  right: calc(100% - var(--price-range-end, 100%));
  left: var(--price-range-start, 0%);
  height: 5px;
  border-radius: 99px;
  background: #d9555b;
  pointer-events: none;
}
.catalog-price-range {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}
.catalog-price-range.is-front {
  z-index: 3;
}
.catalog-price-range::-webkit-slider-runnable-track {
  height: 5px;
  background: transparent;
}
.catalog-price-range::-moz-range-track {
  height: 5px;
  background: transparent;
}
.catalog-price-range::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  margin-top: -7px;
  border: 4px solid #d9555b;
  border-radius: 50%;
  background: #fff;
  cursor: grab;
  appearance: none;
  pointer-events: auto;
}
.catalog-price-range:active::-webkit-slider-thumb {
  cursor: grabbing;
}
.catalog-price-range::-moz-range-thumb {
  width: 19px;
  height: 19px;
  border: 4px solid #d9555b;
  border-radius: 50%;
  background: #fff;
  cursor: grab;
  pointer-events: auto;
}
.catalog-price-range:focus-visible::-webkit-slider-thumb,
.catalog-price-range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(217,85,91,.18);
}
.catalog-price-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.catalog-price-fields label {
  position: relative;
  display: block;
}
.catalog-price-fields input {
  min-height: 62px;
  padding: 12px 44px 12px 11px;
  border-radius: 0;
  border-color: #d7d7d7;
  color: #494949;
  font-size: 17px;
  text-align: center;
}
.catalog-price-fields input::-webkit-inner-spin-button,
.catalog-price-fields input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}
.catalog-price-fields input[type="number"] {
  appearance: textfield;
}
.catalog-price-fields label > span {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #575757;
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
}
.catalog-radio {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: #555;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}
.catalog-radio input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: #d9555b;
}
.catalog-section .catalog-filter-submit {
  width: 100%;
  min-height: 57px;
  margin-top: 31px;
  border: 0;
  border-radius: 0;
  background: #303030;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.catalog-section .catalog-filter-submit:hover {
  background: var(--red);
}
.catalog-section .filter-reset {
  display: block;
  margin-top: 14px;
  color: #777;
  font-size: 11px;
  text-align: center;
}
.catalog-section .catalog-results {
  min-width: 0;
}
.catalog-section .results-toolbar {
  margin: 0 0 18px;
  color: #787878;
  font-size: 12px;
}
.catalog-section .results-toolbar strong {
  color: #222;
  font-size: 18px;
}
.catalog-section .catalog-results > .search-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0;
  align-items: center;
  margin: 0 0 25px;
  padding: 18px 22px;
  border: 1px solid #dedede;
  border-radius: 0;
  background: #f8f8f8;
  color: #666;
}
.catalog-section .catalog-results > .search-summary > span {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 0 20px;
  border-right: 1px solid #dedede;
}
.catalog-section .catalog-results > .search-summary > span:first-child {
  padding-left: 0;
}
.catalog-section .catalog-results > .search-summary > span small {
  color: #b1793d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}
.catalog-section .catalog-results > .search-summary > span strong {
  overflow-wrap: anywhere;
  color: #242424;
  font-size: 14px;
  line-height: 1.3;
}
.catalog-section .catalog-results > .search-summary .text-link {
  margin-left: 20px;
  white-space: nowrap;
}
.catalog-section .catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 40px;
}
.catalog-section .vehicle-catalog-card {
  position: relative;
  min-width: 0;
  overflow: visible;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.catalog-section .vehicle-catalog-card:hover {
  border-color: #d5d5d5;
  box-shadow: 0 18px 45px rgba(30,30,30,.08);
}
.catalog-section .vehicle-catalog-card .catalog-card-media {
  height: 280px;
  padding: 11px;
  border-bottom: 1px solid #f1f1f1;
  background: #f8f8f8;
}
.catalog-section .vehicle-catalog-card .catalog-card-media .vehicle-photo,
.catalog-section .vehicle-catalog-card .catalog-card-media .vehicle-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: transparent;
}
.catalog-section .vehicle-catalog-card .catalog-card-media .vehicle-placeholder {
  display: grid;
  place-items: center;
  color: #777;
  background: #f4f4f4;
}
.catalog-section .vehicle-catalog-card .catalog-card-body {
  min-height: 492px;
  padding: 34px 38px 38px;
}
.catalog-section .vehicle-catalog-card .catalog-card-body > .eyebrow {
  min-height: 19px;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}
.catalog-section .vehicle-catalog-card .catalog-card-body h2 {
  margin: 9px 0 0;
  color: #252525;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.catalog-section .vehicle-catalog-card .catalog-card-body h2 a:hover {
  color: var(--red);
}
.catalog-section .vehicle-check-list {
  display: grid;
  gap: 13px;
  min-height: 92px;
  margin: 39px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid #ededed;
  list-style: none;
  color: #555;
  font-size: 16px;
  line-height: 1.35;
}
.catalog-section .vehicle-check-list li {
  position: relative;
  padding-left: 26px;
}
.catalog-section .vehicle-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d9555b;
  font-size: 21px;
  font-weight: 900;
  line-height: .9;
}
.catalog-section .vehicle-card-price {
  margin-top: 39px;
  color: #272727;
  font-size: 16px;
  font-weight: 700;
}
.catalog-section .vehicle-card-price strong {
  color: #d83a42;
  font-size: 25px;
  letter-spacing: -.045em;
}
.catalog-section .vehicle-card-actions {
  display: grid;
  gap: 9px;
  margin-top: 29px;
}
.catalog-section .vehicle-card-reserve,
.catalog-section .vehicle-card-whatsapp {
  width: 100%;
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  background: #fff;
  color: #272727;
  font-size: 16px;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.catalog-section .vehicle-card-reserve:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.catalog-section .vehicle-card-whatsapp {
  min-height: 39px;
  border-color: #cfe7d9;
  color: #238253;
  font-size: 11px;
}
.catalog-section .vehicle-card-whatsapp:hover {
  border-color: #238253;
  background: #edf9f1;
  color: #176c43;
}

/* La fiche sélectionnée devient le panneau sombre, dans le même emplacement
   et avec la même empreinte que la carte de la vidéo de référence. */
.catalog-section .vehicle-catalog-card.is-booking-open {
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(30,30,30,.10);
}
.catalog-section .vehicle-catalog-card.is-booking-open > .catalog-card-media,
.catalog-section .vehicle-catalog-card.is-booking-open > .catalog-card-body {
  visibility: hidden;
}
.vehicle-booking-overlay {
  position: absolute;
  inset: -1px;
  z-index: 100;
  display: block;
  overflow: visible;
  background: #303030;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .24s ease;
}
.vehicle-booking-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.vehicle-booking-panel {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: visible;
  padding: 39px 38px 35px;
  background: #303030;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.20);
}
.vehicle-booking-close {
  position: absolute;
  top: 13px;
  right: 17px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
}
.vehicle-booking-close:hover {
  color: #e85a61;
}
.vehicle-booking-panel-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.vehicle-booking-form {
  display: grid;
  gap: 0;
}
.vehicle-booking-date-control {
  position: relative;
  z-index: 4;
}
.vehicle-booking-date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 71px;
  padding: 13px 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.025em;
  text-align: left;
}
.vehicle-booking-date-trigger:hover {
  color: #f3a0a4;
}
.vehicle-booking-calendar-icon,
.vehicle-booking-pin {
  color: #ec777d;
  font-size: 23px;
  line-height: 1;
}
.vehicle-booking-calendar-icon svg,
.vehicle-booking-pin svg,
.vehicle-booking-option-check svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.vehicle-booking-pin svg {
  width: 21px;
  height: 21px;
}
.vehicle-booking-date-popover {
  position: absolute;
  top: calc(100% + 2px);
  right: -1px;
  z-index: 20;
  width: min(590px, calc(100vw - 28px));
  padding: 16px 18px 14px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #4a4a4a;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}
.vehicle-booking-date-popover[hidden] {
  display: none;
}
.vehicle-booking-calendar-navigation {
  display: grid;
  grid-template-columns: 32px 1fr 1fr 32px;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  text-align: center;
}
.vehicle-booking-calendar-navigation button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 28px;
  line-height: 1;
}
.vehicle-booking-calendar-navigation button:hover {
  color: #d83a42;
}
.vehicle-booking-calendar-navigation strong {
  font-size: 14px;
  font-weight: 700;
}
.vehicle-booking-calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.vehicle-booking-weekdays,
.vehicle-booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}
.vehicle-booking-weekdays {
  margin-bottom: 6px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: lowercase;
}
.vehicle-booking-calendar-day {
  min-width: 0;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.vehicle-booking-calendar-day:hover:not(:disabled),
.vehicle-booking-calendar-day.is-selected {
  background: #d83a42;
  color: #fff;
}
.vehicle-booking-calendar-day:hover:not(:disabled) {
  transform: translateY(-1px);
}
.vehicle-booking-calendar-day.is-range {
  border-radius: 0;
  background: #f8e3e4;
  color: #a92c35;
}
.vehicle-booking-calendar-day.is-muted {
  color: #c5c5c5;
}
.vehicle-booking-calendar-day:disabled {
  cursor: not-allowed;
  color: #d2d2d2;
}
.vehicle-booking-calendar-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid #e5e5e5;
}
.vehicle-booking-calendar-times label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #666;
  font-size: 11px;
  font-weight: 600;
}
.vehicle-booking-calendar-times select {
  min-height: 30px;
  padding: 2px 5px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #444;
  font-size: 12px;
}
.vehicle-booking-calendar-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid #e5e5e5;
}
.vehicle-booking-calendar-footer span {
  margin-right: auto;
  color: #777;
  font-size: 11px;
}
.vehicle-booking-calendar-footer button {
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid #e3e3e3;
  background: #fff;
  color: #666;
  font-size: 10px;
  font-weight: 800;
}
.vehicle-booking-calendar-footer button:last-child {
  border-color: #df3d45;
  background: #df3d45;
  color: #fff;
}
.vehicle-booking-location-row {
  display: grid;
  gap: 0;
}
.vehicle-booking-location-control {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.vehicle-booking-location-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 10px;
  width: 100%;
  min-height: 99px;
  padding: 17px 0 15px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  pointer-events: none;
}
.vehicle-booking-location-trigger > span:first-child {
  min-width: 0;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vehicle-booking-location-trigger strong {
  font-weight: 500;
}
.vehicle-booking-location-trigger small {
  grid-column: 1 / -1;
  color: #a8a8a8;
  font-size: 14px;
  line-height: 1.35;
}
.destination-address {
  display: block;
  margin-top: -2px;
  color: #8b847c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}
.destination-address:empty {
  display: none;
}
.vehicle-booking-location-select {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.vehicle-booking-location-control:focus-within .vehicle-booking-location-trigger {
  outline: 2px solid rgba(236,119,125,.75);
  outline-offset: -3px;
}
.vehicle-booking-form input[type="hidden"] {
  display: none;
}
.vehicle-booking-message {
  display: none;
  margin: 12px 0 0;
  padding: 9px 11px;
  border-left: 3px solid #e45b62;
  background: rgba(228,91,98,.12);
  color: #ffd1d3;
  font-size: 11px;
  line-height: 1.45;
}
.vehicle-booking-message.is-visible {
  display: block;
}
.vehicle-booking-breakdown {
  display: grid;
  margin-top: 10px;
}
.vehicle-booking-breakdown > div:not(.vehicle-booking-options) {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: #ededed;
  font-size: 14px;
}
.vehicle-booking-breakdown > div:not(.vehicle-booking-options) strong {
  color: #fff;
  white-space: nowrap;
}
.vehicle-booking-rental-line {
  /* Le retour possède déjà le séparateur inférieur : ne pas en doubler la
     ligne juste avant le prix. */
  border-top: 0;
}
.vehicle-booking-options[hidden] {
  display: none;
}
.vehicle-booking-options {
  display: block;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.vehicle-booking-options-heading {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 13px 0 8px !important;
  border-bottom: 0 !important;
  color: #aaa !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}
.vehicle-booking-options-heading i {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.18);
}
.vehicle-booking-option-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 3px 0 15px;
  color: #ededed;
  font-size: 14px;
}
.vehicle-booking-option-line + .vehicle-booking-option-line {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.vehicle-booking-option-line > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.vehicle-booking-option-check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #eee;
  color: #fff;
  line-height: 1;
}
.vehicle-booking-option-check svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.6;
}
.vehicle-booking-option-line strong {
  display: grid;
  gap: 2px;
  text-align: right;
}
.vehicle-booking-option-line small {
  color: #aaa;
  font-size: 9px;
  letter-spacing: .08em;
}
.vehicle-booking-breakdown .vehicle-booking-total {
  padding-top: 19px;
  padding-bottom: 17px;
  border-bottom: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.vehicle-booking-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 0;
  background: #df3d45;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.vehicle-booking-submit:hover {
  background: #c72e36;
}

@media (max-width: 950px) {
  .vehicles-top-search {
    padding-right: 25px;
    padding-left: 25px;
  }
  .vehicles-top-search-fields {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .vehicles-top-search-dates {
    grid-column: 1 / -1;
  }
  .vehicles-top-search-footer {
    flex-wrap: wrap;
  }
  .vehicles-top-search-footer small {
    flex: 1 1 100%;
    margin-right: 0;
  }
  .catalog-section .catalog-layout {
    grid-template-columns: minmax(205px, 240px) minmax(0, 1fr);
    gap: 28px;
  }
  .catalog-section .catalog-results > .search-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
  }
  .catalog-section .catalog-results > .search-summary > span:nth-child(2) {
    border-right: 0;
  }
  .catalog-section .catalog-results > .search-summary .text-link {
    grid-column: 1 / -1;
    margin-left: 0;
  }
  .catalog-section .vehicle-catalog-card .catalog-card-body {
    padding-right: 25px;
    padding-left: 25px;
  }
  .catalog-section .vehicle-check-list {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .tp-rental-landing-hero {
    min-height: 610px;
    background-position: 58% center;
  }
  .tp-rental-landing-overlay {
    background:
      linear-gradient(90deg, rgba(10,10,10,.92), rgba(10,10,10,.56)),
      linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.64));
  }
  .tp-rental-landing-content {
    padding: 67px 20px 170px;
  }
  .tp-rental-landing-content h1 {
    font-size: clamp(46px, 14vw, 68px);
  }
  .tp-rental-landing-signature {
    right: 20px;
    bottom: 29px;
  }
  .tp-rental-search {
    width: calc(100% - 28px);
    margin-top: -92px;
    padding: 22px 18px 20px;
    border-radius: 14px;
  }
  .tp-rental-search form > .form-grid,
  .tp-rental-search .datetime-control-grid {
    grid-template-columns: 1fr;
  }
  .tp-rental-landing-promise {
    padding: 78px 20px 85px;
  }
  .vehicles-top-search {
    width: calc(100% - 28px);
    margin-top: 22px;
    padding: 23px 18px 20px;
  }
  .vehicles-top-search-heading {
    display: block;
  }
  .vehicles-top-search-heading h2 {
    font-size: 28px;
  }
  .vehicles-top-search-badge {
    display: inline-block;
    margin-top: 16px;
  }
  .vehicles-top-search-fields,
  .vehicles-top-search-dates {
    grid-template-columns: 1fr;
  }
  .vehicles-top-search-dates {
    width: 100%;
    grid-column: auto;
    min-width: 0;
  }
  .vehicles-top-search-dates .datetime-control {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-inline-end: 18px;
  }
  .vehicles-top-search-dates .datetime-control-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr);
  }
  .vehicles-top-search-dates .datetime-control-grid label,
  .vehicles-top-search-dates .datetime-control-grid input {
    min-width: 0;
    max-width: 100%;
  }
  .vehicles-top-search-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .vehicles-top-search-footer small {
    margin: 0;
  }
  .vehicles-top-search-submit {
    width: 100%;
  }
  .catalog-section {
    width: calc(100% - 28px);
    padding-top: 32px;
  }
  .catalog-section .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-section .catalog-results > .search-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 18px;
  }
  .catalog-section .catalog-results > .search-summary > span,
  .catalog-section .catalog-results > .search-summary > span:first-child {
    padding: 0 0 11px;
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }
  .catalog-section .catalog-results > .search-summary > span:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .catalog-section .catalog-results > .search-summary .text-link {
    grid-column: auto;
    margin: 0;
  }
  .catalog-section .catalog-filters {
    position: static;
  }
  .catalog-section .catalog-filters h2:nth-of-type(2) {
    margin-top: 53px;
  }
  .catalog-section .catalog-grid {
    grid-template-columns: 1fr;
  }
  .catalog-section .vehicle-catalog-card .catalog-card-media {
    height: 235px;
  }
  .catalog-section .vehicle-catalog-card .catalog-card-body {
    min-height: 0;
    padding: 28px 25px 29px;
  }
  .catalog-section .vehicle-check-list {
    margin-top: 30px;
  }
  .vehicle-booking-panel {
    padding: 40px 23px 28px;
  }
  .vehicle-booking-date-popover {
    right: 0;
    width: min(590px, calc(100vw - 28px));
  }
  .vehicle-booking-location-trigger small {
    font-size: 13px;
  }
  .vehicle-booking-location-trigger > span:first-child {
    font-size: 15px;
  }
}

/* Header et footer publics : présentation inspirée de la maquette Touline
   Prestige, avec une zone de contact très lisible et un vrai pied de page
   SEO. Ces règles arrivent en dernier pour remplacer les anciens styles
   compacts sans modifier l’interface du backoffice. */
.public-site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  color: #292929;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.public-site-header .site-contact-bar {
  min-height: 74px;
  background: #222;
  border: 0;
}
.public-site-header .site-contact-inner {
  max-width: 1600px;
  min-height: 74px;
  margin: 0 auto;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4f4f4;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: 1.2;
}
.site-contact-phone-icon {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: #df5360;
  color: #222;
}
.site-contact-phone-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-contact-phone,
.site-contact-phone:hover {
  color: #f4f4f4;
  white-space: nowrap;
}
.site-contact-phone:hover {
  text-decoration: underline;
}
.site-socials {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-socials a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
}
.site-socials a:hover {
  color: #df5360;
}
.site-socials svg {
  width: 22px;
  height: 22px;
}
.site-socials a:first-child svg {
  fill: currentColor;
}
.site-socials a:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.site-socials a:last-child .site-icon-fill {
  fill: currentColor;
  stroke: none;
}
.site-main-bar {
  max-width: 1600px;
  min-height: 188px;
  margin: 0 auto;
  padding: 36px 26px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
}
.site-main-bar .brand {
  min-width: 220px;
  display: inline-flex;
  align-items: flex-start;
  margin-top: 10px;
}
.site-main-bar .brand-logo {
  width: auto;
  max-width: 220px;
  max-height: 112px;
  object-fit: contain;
}
.site-main-bar .public-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 52px);
  color: #2d2d2d;
  font-size: clamp(18px, 1.25vw, 25px);
}
.site-main-bar .public-nav a {
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.site-main-bar .public-nav .public-vehicles-link {
  font-size: inherit;
  font-weight: 800;
  white-space: nowrap;
}
.site-main-bar .public-nav .public-vehicles-link:hover {
  color: #d13838;
}
.site-main-bar .public-nav .public-cta {
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 44px;
  border-radius: 2px;
  background: #d13838;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 28px);
  font-weight: 800;
  white-space: nowrap;
}
.site-main-bar .public-nav .public-cta:hover {
  background: #b52730;
  color: #fff;
  transform: translateY(-1px);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer-rich {
  width: 100%;
  margin: 0;
  padding: 70px 32px 28px;
  border: 0;
  background: #222;
  color: #fff;
  text-align: left;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.site-footer-inner {
  max-width: 1600px;
  margin: 0 auto;
}
.site-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.18fr) repeat(3, minmax(190px, .9fr));
  gap: clamp(26px, 4vw, 74px);
}
.site-footer-brand,
.site-footer-column {
  min-width: 0;
}
.site-footer-logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 105px;
  margin: 0 0 24px;
  object-fit: contain;
}
.site-footer-description {
  max-width: 420px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.7;
}
.site-footer-contact {
  display: grid;
  gap: 12px;
}
.site-footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.45;
}
.site-footer-contact a:hover {
  color: #fff;
}
.site-footer-contact svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer-column h2 {
  margin: 4px 0 21px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 800;
}
.site-footer-links {
  display: grid;
  gap: 8px;
}
.site-footer-links a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,.59);
  font-size: 14px;
  line-height: 1.45;
  transition: color .18s ease, transform .18s ease;
}
.site-footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}
.site-footer-arrow {
  flex: 0 0 auto;
  color: #fff;
  font-size: 22px;
  line-height: .85;
}
.site-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  margin-top: 70px;
}
.site-footer-payments {
  align-self: flex-end;
}
.site-footer-payments img {
  display: block;
  width: min(470px, 100%);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.site-footer-copyright {
  width: 100%;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}
.site-footer-copyright sup {
  font-size: .65em;
}

/* Le footer riche est commun à toutes les pages publiques, y compris la
   nouvelle page d’accueil qui possédait auparavant un footer interne. */
.site-page > footer.site-footer-rich {
  display: block !important;
}
.site-page .tp-exact-footer {
  display: none;
}

@media (max-width: 1100px) {
  .site-main-bar {
    min-height: 160px;
    padding-top: 28px;
  }
  .site-main-bar .brand {
    min-width: 190px;
  }
  .site-main-bar .brand-logo {
    max-width: 190px;
    max-height: 96px;
  }
  .site-main-bar .public-nav {
    gap: 25px;
  }
  .site-main-bar .public-nav .public-cta {
    min-height: 70px;
    padding: 18px 27px;
  }
  .site-footer-main {
    grid-template-columns: minmax(240px, 1.15fr) repeat(2, minmax(190px, 1fr));
  }
  .site-footer-column:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .public-site-header .site-contact-bar,
  .public-site-header .site-contact-inner {
    min-height: 56px;
  }
  .public-site-header .site-contact-inner {
    padding: 0 16px;
    gap: 7px;
    font-size: 13px;
  }
  .site-contact-phone-icon {
    width: 21px;
    height: 21px;
  }
  .site-contact-phone-icon svg {
    width: 14px;
    height: 14px;
  }
  .site-socials {
    gap: 10px;
  }
  .site-contact-inner .site-socials a:last-child {
    display: grid;
  }
  .site-socials a,
  .site-socials svg {
    width: 20px;
    height: 20px;
  }
  .site-main-bar {
    min-height: 128px;
    padding: 25px 16px 22px;
    gap: 14px;
  }
  .site-main-bar .brand {
    min-width: 0;
    margin-top: 5px;
  }
  .site-main-bar .brand-logo {
    max-width: 145px;
    max-height: 78px;
  }
  .site-main-bar .public-nav {
    gap: 11px;
    font-size: 13px;
  }
  .site-main-bar .public-nav > a:first-child {
    display: block;
  }
  .site-main-bar .public-nav .public-cta {
    min-height: 50px;
    gap: 6px;
    padding: 12px 13px;
    font-size: 13px;
  }
  .site-footer-rich {
    padding: 55px 20px 25px;
  }
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer-column:last-child {
    grid-column: auto;
  }
  .site-footer-bottom {
    gap: 28px;
    margin-top: 52px;
  }
  .site-footer-payments {
    align-self: center;
  }
  .site-footer-copyright {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  .site-main-bar {
    min-height: 174px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .site-main-bar .public-nav {
    width: 100%;
    justify-content: flex-end;
    margin-left: 0;
  }
  .site-footer-description,
  .site-footer-contact a,
  .site-footer-links a {
    font-size: 13px;
  }
  .site-footer-column h2 {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .site-contact-label {
    display: none;
  }
  .public-site-header .site-contact-inner {
    font-size: 12px;
  }
}

/* Ajustements finaux demandés : le contenu du header reprend la même largeur
   que le tableau de recherche / la flotte, et le CTA reste proportionné. */
@media (min-width: 761px) {
  .public-site-header .site-contact-inner,
  .public-site-header .site-main-bar {
    width: min(1280px, calc(100% - clamp(56px, 12vw, 160px)));
    max-width: 1280px;
    padding-right: 0;
    padding-left: 0;
  }
}

/* Formulaire de réservation : typographie pensée pour la lecture mobile et
   la conversion. Les champs actifs ne doivent jamais retomber à 10–11 px. */
.site-page .reservation-form label {
  color: #403c38;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.site-page .reservation-form input:not([type="checkbox"]):not([type="radio"]),
.site-page .reservation-form select,
.site-page .reservation-form textarea {
  min-height: 54px;
  padding: 13px 15px;
  color: #25211f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}
.site-page .reservation-form textarea {
  min-height: 126px;
  line-height: 1.55;
  resize: vertical;
}
.site-page .reservation-form .form-section-title strong {
  color: #25211f;
  font-size: 17px;
  line-height: 1.25;
}
.site-page .reservation-form .form-section-title small,
.site-page .reservation-form .field-help,
.site-page .reservation-form .destination-address,
.site-page .reservation-form .phone-help {
  font-size: 12px;
  line-height: 1.5;
}
.site-page .reservation-form .form-section-title small {
  margin-top: 4px;
}
.site-page .reservation-form legend {
  color: #403c38;
  font-size: 14px;
  line-height: 1.4;
}
.site-page .reservation-form fieldset .choice {
  color: #4e4944;
  font-size: 14px;
  line-height: 1.4;
}
.site-page .reservation-form fieldset .choice input {
  min-height: 18px;
  width: 18px;
  margin: 0;
  accent-color: var(--red);
}
.site-page .reservation-form .button {
  min-height: 54px;
  font-size: 15px;
}

/* Le champ e-mail et le téléphone commencent sur la même ligne. L’aide du
   téléphone reste sous son contrôle sans décaler visuellement l’e-mail. */
.site-page .reservation-form .contact-fields-grid {
  align-items: start;
}
.site-page .reservation-form .contact-fields-grid > label {
  align-self: start;
  min-width: 0;
  align-content: start;
}
.site-page .reservation-form .phone-field {
  min-width: 0;
  align-content: start;
}
.site-page .reservation-form .phone-field-label {
  display: block;
  min-height: 20px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Indicatif + numéro local dans un seul contrôle visuel. */
.site-page .phone-input-group {
  display: grid;
  grid-template-columns: minmax(132px, 156px) minmax(0, 1fr);
  gap: 0;
  width: 100%;
}
.site-page .reservation-form .phone-country-select {
  min-width: 0;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  padding-right: 9px;
  padding-left: 12px;
  background: #f8f7f4;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.site-page .reservation-form .phone-number-input {
  min-width: 0;
  border-radius: 0 10px 10px 0;
}
.site-page .phone-help {
  display: block;
  color: #817a73;
  font-weight: 500;
}
/* Le format de l’e-mail reste lisible et son erreur est visible avant
   l’envoi, afin de ne pas générer de demande inexploitable. */
.site-page .reservation-form .email-field-help {
  display: block;
  color: #817a73;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}
.site-page .reservation-form input[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201,31,43,.10);
}
.site-page .reservation-form .email-field-help.is-error {
  color: var(--red);
  font-weight: 700;
}

/* Les boutons d’administration restent compacts, mais les actions sont
   clairement séparées pour éviter une suppression accidentelle. */
.destination-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.destination-actions form {
  margin: 0;
}
.destination-actions .button {
  white-space: nowrap;
}
.site-page .reservation-form .terms-consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 11px;
  color: #4e4944;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}
.site-page .reservation-form .terms-consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--red);
}
.site-page .reservation-form .terms-consent a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.site-page .reservation-form .terms-consent a:hover {
  color: var(--red-dark);
}

/* Page conditions : lecture éditoriale, repères rapides et CTA de retour à la
   flotte pour ne pas transformer une page légale en cul-de-sac commercial. */
.tp-legal-page-body {
  background: #fbfaf8;
}
.site-page .tp-legal-page {
  background: #fbfaf8;
  color: #292522;
}
.tp-legal-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 27px 24px 95px;
}
.tp-legal-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: #8b857d;
  font-size: 12px;
  line-height: 1.5;
}
.tp-legal-breadcrumbs a {
  color: #5e5953;
  font-weight: 700;
}
.tp-legal-breadcrumbs a:hover {
  color: var(--red);
}
.tp-legal-hero {
  max-width: 850px;
  padding: 65px 0 46px;
}
.tp-legal-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.45;
  text-transform: uppercase;
}
.tp-legal-hero h1 {
  max-width: 800px;
  margin: 13px 0 19px;
  color: #211e1b;
  font-size: clamp(39px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .99;
}
.tp-legal-hero p {
  max-width: 720px;
  margin: 0;
  color: #706a63;
  font-size: 17px;
  line-height: 1.75;
}
.tp-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-top: 25px;
  color: #8a837b;
  font-size: 12px;
  font-weight: 600;
}
.tp-legal-meta span:first-child {
  color: #5f574e;
}
.tp-legal-summary {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 68px;
  padding: 28px 30px 30px;
  border-radius: 18px;
  background: #1d1b1a;
  color: #fff;
  box-shadow: 0 18px 45px rgba(29, 27, 26, .12);
}
.tp-legal-summary .tp-legal-kicker {
  color: #d7b77b;
}
.tp-legal-summary h2 {
  max-width: 300px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}
.tp-legal-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tp-legal-process > div {
  min-height: 126px;
  padding: 15px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
}
.tp-legal-process strong,
.tp-legal-process span {
  display: block;
}
.tp-legal-process strong {
  color: #e2303d;
  font-size: 20px;
  font-weight: 800;
}
.tp-legal-process span {
  margin-top: 14px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}
.tp-legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}
.tp-legal-index {
  position: sticky;
  top: 22px;
  padding: 20px 0;
  border-top: 1px solid #ded8cf;
  border-bottom: 1px solid #ded8cf;
}
.tp-legal-index-title {
  margin-bottom: 14px;
  color: #a18455;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.tp-legal-index nav {
  display: grid;
  gap: 3px;
}
.tp-legal-index a {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 8px;
  padding: 7px 0;
  color: #746d65;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.tp-legal-index a span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}
.tp-legal-index a:hover {
  color: var(--red);
}
.tp-legal-content {
  min-width: 0;
}
.tp-legal-section {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 19px;
  padding: 0 0 42px;
  margin-bottom: 39px;
  border-bottom: 1px solid #ded8cf;
  scroll-margin-top: 24px;
}
.tp-legal-section-number {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}
.tp-legal-section h2 {
  margin: -5px 0 16px;
  color: #282420;
  font-size: clamp(24px, 3vw, 33px);
  line-height: 1.12;
}
.tp-legal-section p {
  max-width: 710px;
  margin: 0 0 14px;
  color: #625c55;
  font-size: 15px;
  line-height: 1.8;
}
.tp-legal-section p:last-of-type {
  margin-bottom: 0;
}
.tp-legal-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #ded8cf;
}
.tp-legal-contact-details a,
.tp-legal-contact-details > span {
  display: grid;
  gap: 5px;
}
.tp-legal-contact-details span span,
.tp-legal-contact-details > span > span {
  color: #9a9188;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tp-legal-contact-details strong {
  color: #37312d;
  font-size: 14px;
  line-height: 1.4;
}
.tp-legal-contact-details a strong {
  color: var(--red);
}
.tp-legal-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding: 31px 32px;
  border-radius: 16px;
  background: #f0ece5;
}
.tp-legal-cta h2 {
  max-width: 650px;
  margin: 9px 0 7px;
  color: #282420;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}
.tp-legal-cta p {
  margin: 0;
  color: #756e66;
  font-size: 14px;
  line-height: 1.55;
}
.tp-legal-cta .button {
  flex: 0 0 auto;
  min-height: 52px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .tp-legal-summary {
    grid-template-columns: 1fr;
  }
  .tp-legal-summary h2 {
    max-width: none;
  }
  .tp-legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .tp-legal-index {
    position: static;
  }
  .tp-legal-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}
@media (max-width: 600px) {
  .site-page .phone-input-group {
    grid-template-columns: minmax(115px, 38%) minmax(0, 1fr);
  }
  .site-page .reservation-form .phone-country-select {
    padding-right: 6px;
    padding-left: 9px;
    font-size: 13px;
  }
  .site-page .reservation-form label {
    font-size: 14px;
  }
  .site-page .reservation-form input:not([type="checkbox"]):not([type="radio"]),
  .site-page .reservation-form select,
  .site-page .reservation-form textarea {
    font-size: 16px;
  }
  .tp-legal-shell {
    padding: 22px 16px 70px;
  }
  .tp-legal-hero {
    padding: 48px 0 35px;
  }
  .tp-legal-hero h1 {
    font-size: clamp(37px, 12vw, 54px);
  }
  .tp-legal-hero p {
    font-size: 15px;
  }
  .tp-legal-summary {
    margin-bottom: 48px;
    padding: 23px 18px;
  }
  .tp-legal-process {
    grid-template-columns: 1fr;
  }
  .tp-legal-process > div {
    min-height: 0;
  }
  .tp-legal-index nav {
    grid-template-columns: 1fr;
  }
  .tp-legal-section {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 11px;
  }
  .tp-legal-section h2 {
    margin-top: -3px;
    font-size: 25px;
  }
  .tp-legal-section p {
    font-size: 15px;
  }
  .tp-legal-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 19px;
  }
}
.public-site-header .site-main-bar .public-nav .public-vehicles-link {
  font-size: 16px !important;
  font-weight: 700 !important;
}
.public-site-header .site-main-bar .public-nav .public-cta {
  min-height: 62px;
  padding: 17px 30px;
  gap: 12px;
  font-size: 19px;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .public-site-header .site-main-bar .public-nav .public-cta {
    min-height: 58px;
    padding: 15px 24px;
    font-size: 18px;
  }
}
@media (max-width: 760px) {
  .public-site-header .site-main-bar .public-nav .public-cta {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 14px;
  }
}
@media (max-width: 520px) {
  .public-site-header .site-main-bar .public-nav .public-cta {
    min-height: 46px;
    padding: 11px 14px;
    font-size: 14px;
  }
}

/* PWA séparé : interface très simple pour le traitement quotidien des
   demandes, sans navigation vers les écrans de configuration. */
.pwa-auth-page {
  background: #f2f1ee;
  color: #171717;
}
.pwa-auth-header {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 0 max(20px, calc((100vw - 1040px) / 2));
  background: #111;
  color: #fff;
}
.pwa-auth-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.pwa-auth-logo {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 42px;
  object-fit: contain;
}
.pwa-auth-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 142px);
  padding: 54px 20px;
}
.pwa-auth-card {
  width: min(520px, 100%);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid #e0ddd8;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(29, 22, 16, .08);
}
.pwa-auth-card h1 {
  margin: 12px 0 12px;
  font-size: clamp(34px, 7vw, 54px);
  line-height: .98;
  letter-spacing: -.06em;
}
.pwa-auth-card > p {
  margin: 0 0 29px;
  color: #77716b;
  font-size: 15px;
  line-height: 1.55;
}
.pwa-auth-card form {
  display: grid;
  gap: 17px;
}
.pwa-auth-card label {
  display: grid;
  gap: 7px;
  color: #514d48;
  font-size: 12px;
  font-weight: 800;
}
.pwa-auth-card input {
  min-height: 49px;
  border: 1px solid #d8d3cc;
  border-radius: 10px;
  background: #fff;
  color: #171717;
  font-size: 15px;
}
.pwa-auth-card input:focus {
  border-color: #c91f2b;
  box-shadow: 0 0 0 3px rgba(201, 31, 43, .12);
}
.pwa-auth-card .button {
  width: 100%;
  min-height: 54px;
  margin-top: 5px;
  font-size: 16px;
}

.pwa-dashboard {
  display: grid;
  gap: 20px;
}
.pwa-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.pwa-summary-card {
  display: grid;
  gap: 5px;
  min-height: 126px;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(29, 22, 16, .035);
}
.pwa-summary-card span {
  color: #77716b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.pwa-summary-card strong {
  color: #222;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.06em;
}
.pwa-summary-card small {
  color: #98918a;
  font-size: 11px;
}
.pwa-summary-card.pwa-summary-pending {
  border-color: rgba(201, 31, 43, .35);
  background: #fffafa;
}
.pwa-summary-pending strong {
  color: var(--red);
}
.pwa-notification-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 23px 24px;
  border: 1px solid #2f2f2f;
  border-radius: 17px;
  background: #242424;
  color: #fff;
}
/* La PWA distingue la permission iPhone de la souscription effectivement
   enregistrée sur le serveur et propose une alerte test quand elle est active. */
.pwa-notification-copy {
  min-width: 0;
  flex: 1 1 auto;
}
.pwa-notification-tools {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
}
.pwa-notification-panel .eyebrow {
  color: #d4b36e;
}
.pwa-notification-panel h2 {
  margin: 7px 0 6px;
  color: #fff;
  font-size: 22px;
  letter-spacing: -.035em;
}
.pwa-notification-panel p {
  max-width: 620px;
  margin: 0;
  color: #c4c0bb;
  font-size: 12px;
  line-height: 1.45;
}
.pwa-notification-state {
  flex: 0 0 auto;
  color: #d4b36e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}
.pwa-notification-check {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3b9f76;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.pwa-notification-action {
  flex: 0 0 auto;
  min-height: 45px;
  padding: 11px 17px;
  border: 0;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.pwa-notification-action:hover {
  background: #aa1723;
}
.pwa-notification-test {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #d8d3cc;
  border-radius: 8px;
  background: #fff;
  color: #4e4944;
  font-size: 11px;
  font-weight: 800;
}
.pwa-notification-test:hover {
  border-color: var(--red);
  color: var(--red);
}
.pwa-notification-test[hidden] {
  display: none;
}
.pwa-notification-panel.is-active {
  border-color: #b9ddcc;
  background: #eaf6f0;
  color: #165e45;
}
.pwa-notification-panel.is-active h2 {
  color: #165e45;
}
.pwa-notification-panel.is-active p {
  color: #4b806c;
}
.pwa-notification-panel.is-active .eyebrow {
  color: #25815d;
}
.pwa-notification-panel.is-active .pwa-notification-action {
  display: none;
}
.pwa-notification-panel.is-active .pwa-notification-test {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pwa-notification-panel.is-active .pwa-notification-state {
  color: #25815d;
}
.pwa-notification-panel.is-active .pwa-notification-check {
  background: #25815d;
}
.pwa-notification-panel.is-ready .pwa-notification-check {
  background: #3b9f76;
}
.pwa-notification-panel.is-error {
  border-color: #e7c3c7;
  background: #fff4f4;
}
.pwa-notification-panel.is-error h2 {
  color: #7d2029;
}
.pwa-notification-panel.is-error .pwa-notification-check {
  background: #c91f2b;
}
.pwa-refresh-button {
  flex: 0 0 auto;
  min-height: 35px;
  padding: 7px 12px;
  border: 1px solid #d8d3cc;
  border-radius: 8px;
  background: #fff;
  color: #4b4742;
  font-size: 11px;
  font-weight: 800;
}
.pwa-refresh-button:hover {
  border-color: var(--red);
  color: var(--red);
}
.pwa-inbox-toolbar > div {
  display: grid;
  gap: 5px;
}
.pwa-card-locations {
  display: grid;
  gap: 3px;
  margin-top: 3px;
  color: #67615b;
  font-size: 11px;
  line-height: 1.4;
}
.pwa-card-locations span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pwa-card-locations b {
  display: inline-block;
  min-width: 51px;
  color: #9b948d;
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pwa-history {
  display: grid;
  gap: 13px;
}
.pwa-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 2px 0;
}
.pwa-section-heading h2 {
  margin: 7px 0 0;
  font-size: 28px;
  letter-spacing: -.045em;
}
.pwa-section-heading > span {
  color: #948d86;
  font-size: 11px;
}
.pwa-history-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.pwa-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}
.pwa-history-row:last-child {
  border-bottom: 0;
}
.pwa-history-row:hover {
  background: #faf9f7;
}
.pwa-history-meta,
.pwa-history-side {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.pwa-history-meta strong {
  overflow: hidden;
  color: #292623;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pwa-history-meta small,
.pwa-history-side small {
  overflow: hidden;
  color: #938c85;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pwa-history-side {
  justify-items: end;
  flex: 0 0 auto;
}
.pwa-history-empty {
  padding: 21px 18px;
  color: #938c85;
  font-size: 12px;
}
.pwa-notification-button.is-active {
  border-color: rgba(99, 211, 158, .65);
  background: rgba(44, 151, 106, .28);
  color: #dff8eb;
  cursor: default;
  opacity: 1;
}

@media (max-width: 700px) {
  .pwa-auth-header {
    min-height: 64px;
    padding: 0 17px;
  }
  .pwa-auth-logo {
    max-width: 143px;
    max-height: 35px;
  }
  .pwa-auth-main {
    min-height: calc(100vh - 132px);
    padding: 28px 13px 42px;
  }
  .pwa-auth-card {
    padding: 28px 22px;
    border-radius: 18px;
  }
  .pwa-auth-card h1 {
    font-size: 39px;
  }
  .pwa-summary-grid {
    grid-template-columns: 1fr;
  }
  .pwa-summary-card {
    min-height: 95px;
  }
  .pwa-notification-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }
  .pwa-notification-state {
    font-size: 10px;
  }
  .pwa-notification-check {
    align-self: flex-start;
  }
  .pwa-notification-tools {
    width: 100%;
    justify-items: stretch;
  }
  .pwa-notification-action {
    width: 100%;
  }
  .pwa-notification-test {
    width: 100%;
  }
  .pwa-payment-resend {
    align-items: stretch;
    flex-direction: column;
  }
  .pwa-payment-resend form,
  .pwa-resend-button {
    width: 100%;
  }
  .pwa-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }
  .pwa-history-row {
    align-items: start;
    gap: 10px;
    padding: 14px;
  }
  .pwa-history-side {
    text-align: right;
  }
}

/* Choix d'acompte réservé au patron avant la décision. Le réglage global
   reste affiché comme référence et la sélection ne concerne que la demande. */
.pwa-decision-form {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}
.pwa-deposit-picker {
  display: grid;
  gap: 15px;
  padding: 20px;
  border: 1px solid #e0ddd8;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(29, 22, 16, .045);
}
.pwa-deposit-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pwa-deposit-heading > div {
  display: grid;
  gap: 5px;
}
.pwa-deposit-heading strong {
  color: #292623;
  font-size: 18px;
  letter-spacing: -.025em;
}
.pwa-deposit-heading small {
  max-width: 620px;
  color: #888078;
  font-size: 11px;
  line-height: 1.45;
}
.pwa-deposit-live {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.pwa-deposit-select-label,
.pwa-deposit-custom {
  display: grid;
  gap: 7px;
  color: #514d48;
  font-size: 11px;
  font-weight: 800;
}
.pwa-deposit-select-label select,
.pwa-deposit-custom input {
  min-height: 46px;
  padding: 8px 12px;
  border: 1px solid #d8d3cc;
  border-radius: 9px;
  background: #fff;
  color: #292623;
  font-size: 15px;
  font-weight: 700;
}
.pwa-deposit-select-label select:focus,
.pwa-deposit-custom input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201, 31, 43, .12);
  outline: 0;
}
.pwa-deposit-calculation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #6d665f;
  font-size: 12px;
  font-weight: 700;
}
.pwa-deposit-calculation strong {
  color: var(--red);
  font-size: 18px;
}
.pwa-actions {
  margin: 0;
}

/* Identité officielle dans l'administration et le PWA. */
.admin-page .site-header .brand-logo {
  width: auto;
  max-width: 180px;
  max-height: 72px;
}
.pwa-brand-logo {
  max-width: 182px;
  max-height: 78px;
}
.pwa-auth-logo {
  max-width: 182px;
  max-height: 78px;
}

@media (max-width: 700px) {
  /* Les deux décisions restent côte à côte, comme demandé pour le PWA. */
  .pwa-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .pwa-action-button { grid-template-columns: 28px 1fr; min-height: 86px; padding: 11px 9px; border-radius: 11px; }
  .pwa-action-button > span { width: 25px; height: 25px; font-size: 17px; }
  .pwa-action-button b { font-size: 14px; }
  .pwa-action-button small { font-size: 9px; line-height: 1.25; }
  .pwa-deposit-picker { padding: 16px; }
  .pwa-deposit-heading { align-items: start; flex-direction: column; gap: 10px; }
  .pwa-deposit-live { font-size: 20px; }
  .admin-page .site-header .brand-logo,
  .pwa-brand-logo,
  .pwa-auth-logo { max-width: 148px; max-height: 62px; }
}

/* Respiration du logo dans l'en-tête desktop du PWA. Le réglage mobile
   reste piloté par le breakpoint existant ci-dessus. */
@media (min-width: 761px) {
  .admin-page .site-header {
    min-height: 104px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .pwa-header {
    min-height: 104px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

/* Fiche véhicule : présentation claire, image détourée et réservation
   visible sans sacrifier le contenu sémantique utile au référencement. */
.tp-vehicle-detail-page { background: #fbfaf8; }
.tp-vehicle-page { overflow: hidden; background: #fbfaf8; }
.tp-vehicle-shell { max-width: 1200px; margin: 0 auto; padding: 26px 24px 0; }
.tp-vehicle-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #8b857d; font-size: 11px; line-height: 1.5; }
.tp-vehicle-breadcrumbs a { color: #5e5953; font-weight: 700; }
.tp-vehicle-breadcrumbs a:hover { color: var(--red); }
.tp-vehicle-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: end; padding: 54px 0 35px; }
.tp-vehicle-heading-copy { max-width: 790px; }
.tp-vehicle-kicker, .tp-vehicle-card-kicker { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; line-height: 1.45; text-transform: uppercase; }
.tp-vehicle-heading h1 { margin: 10px 0 14px; font-size: clamp(38px, 6vw, 72px); font-weight: 800; letter-spacing: -.065em; line-height: .98; }
.tp-vehicle-heading p { max-width: 700px; margin: 0; color: #706b65; font-size: 14px; line-height: 1.75; }
.tp-vehicle-price-badge { display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 7px; min-width: 175px; padding: 14px 0 10px 24px; border-left: 1px solid #ddd7ce; }
.tp-vehicle-price-badge span { grid-column: 1 / -1; color: #8b857d; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.tp-vehicle-price-badge strong { font-size: 34px; font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.tp-vehicle-price-badge small { color: #706b65; font-size: 12px; }
.tp-vehicle-overview { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(315px, .68fr); gap: 24px; align-items: stretch; }
.tp-vehicle-media-column { min-width: 0; }
.tp-vehicle-visual-card { margin: 0; padding: 13px; border: 1px solid #e6e1d9; border-radius: 18px; background: #fff; box-shadow: 0 16px 45px rgba(35, 29, 23, .07); }
.tp-vehicle-visual-label { display: flex; justify-content: space-between; gap: 12px; padding: 5px 7px 13px; color: #aaa198; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.tp-vehicle-visual-label span:last-child { color: #655f58; }
.tp-vehicle-visual-stage { min-height: 415px; display: grid; place-items: center; overflow: hidden; border-radius: 13px; background: #fff; }
.tp-vehicle-main-image { display: block; width: min(78%, 560px); max-width: 100%; max-height: 300px; height: auto; object-fit: contain; object-position: center; }
.tp-vehicle-visual-stage .vehicle-placeholder { width: min(88%, 690px); min-height: 300px; display: grid; place-items: center; color: #aaa198; background: #faf9f7; font-size: 30px; font-weight: 800; }
.tp-vehicle-visual-card figcaption { padding: 13px 7px 3px; color: #958e86; font-size: 10px; line-height: 1.55; }
.tp-vehicle-gallery-thumbs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 9px; margin-top: 10px; }
.tp-vehicle-gallery-thumb { display: grid; aspect-ratio: 1.45; overflow: hidden; padding: 4px; border: 1px solid #e6e1d9; border-radius: 10px; background: #fff; transition: border-color .18s ease, transform .18s ease; }
.tp-vehicle-gallery-thumb:hover { border-color: var(--red); transform: translateY(-2px); }
.tp-vehicle-gallery-thumb img { display: block; width: 100%; height: 100%; object-fit: contain; }
.tp-vehicle-action-card { min-width: 0; align-self: stretch; padding: 31px 28px 26px; border-radius: 18px; background: #181818; color: #fff; box-shadow: 0 18px 45px rgba(22, 20, 18, .17); }
.tp-vehicle-action-card .tp-vehicle-card-kicker { color: #d7b77b; }
.tp-vehicle-action-card h2 { margin: 13px 0 0; color: #fff; font-size: 29px; font-weight: 700; letter-spacing: -.045em; line-height: 1.08; }
.tp-vehicle-action-price { display: flex; align-items: baseline; gap: 7px; margin: 22px 0 9px; }
.tp-vehicle-action-price strong { font-size: 42px; font-weight: 800; letter-spacing: -.07em; line-height: 1; }
.tp-vehicle-action-price span { color: #b9b0a9; font-size: 13px; }
.tp-vehicle-action-card > p { margin: 0 0 23px; color: #bdb6b0; font-size: 12px; line-height: 1.65; }
.tp-vehicle-action-card .button { min-height: 52px; }
.tp-vehicle-trust-list { display: grid; gap: 0; margin: 27px 0 0; padding: 0; list-style: none; }
.tp-vehicle-trust-list li { display: grid; grid-template-columns: 25px minmax(0, 1fr); gap: 9px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.13); }
.tp-vehicle-trust-list li > span { color: #73c29e; font-size: 18px; font-weight: 800; line-height: 1.1; }
.tp-vehicle-trust-list strong, .tp-vehicle-trust-list small { display: block; }
.tp-vehicle-trust-list strong { color: #fff; font-size: 12px; }
.tp-vehicle-trust-list small { margin-top: 3px; color: #aaa29b; font-size: 10px; line-height: 1.45; }
.tp-vehicle-details-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(38px, 8vw, 92px); align-items: start; padding: 82px 0 78px; }
.tp-vehicle-description-block { padding-top: 5px; }
.tp-vehicle-description-block h2 { max-width: 520px; margin: 13px 0 22px; font-size: clamp(30px, 4vw, 50px); font-weight: 800; letter-spacing: -.06em; line-height: 1.04; }
.tp-vehicle-description-block p { max-width: 560px; margin: 0 0 24px; color: #706b65; font-size: 14px; line-height: 1.8; white-space: normal; text-align: justify; text-align-last: left; text-justify: inter-word; hyphens: auto; }
.tp-vehicle-inline-link { display: inline-flex; align-items: center; gap: 9px; color: var(--red); font-size: 12px; font-weight: 800; }
.tp-vehicle-inline-link:hover { color: var(--red-dark); }
.tp-vehicle-spec-card { padding: 28px 30px 24px; border: 1px solid #e6e1d9; border-radius: 16px; background: #f5f3ef; }
.tp-vehicle-spec-card h2 { margin: 10px 0 21px; font-size: 26px; font-weight: 800; letter-spacing: -.045em; }
.tp-vehicle-spec-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; border-top: 1px solid #ddd7ce; }
.tp-vehicle-spec-list > div { min-width: 0; padding: 15px 10px 14px 0; border-bottom: 1px solid #ddd7ce; }
.tp-vehicle-spec-list > div:nth-child(even) { padding-left: 16px; border-left: 1px solid #ddd7ce; }
.tp-vehicle-spec-list dt { color: #928b83; font-size: 10px; line-height: 1.4; }
.tp-vehicle-spec-list dd { margin: 5px 0 0; color: #262321; font-size: 14px; font-weight: 700; }
.tp-vehicle-seo-content { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr); gap: 42px; margin: 0 0 30px; padding: 42px 0 48px; border-top: 1px solid #e6e1d9; border-bottom: 1px solid #e6e1d9; }
.tp-vehicle-seo-content article { min-width: 0; }
.tp-vehicle-seo-content h2 { max-width: 650px; margin: 12px 0 19px; font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -.06em; line-height: 1.04; }
.tp-vehicle-seo-content p { max-width: 670px; margin: 0 0 13px; color: #706b65; font-size: 14px; line-height: 1.78; }
.tp-vehicle-seo-checks { align-self: start; padding: 25px 27px 22px; border-radius: 14px; background: #f5f3ef; }
.tp-vehicle-seo-checks h3 { margin: 10px 0 17px; color: #262321; font-size: 23px; font-weight: 800; letter-spacing: -.045em; }
.tp-vehicle-seo-checks ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid #ddd7ce; }
.tp-vehicle-seo-checks li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 8px; padding: 13px 0; border-bottom: 1px solid #ddd7ce; color: #706b65; font-size: 12px; line-height: 1.5; }
.tp-vehicle-seo-checks li span { color: var(--red); font-size: 16px; font-weight: 800; line-height: 1.1; }
.tp-vehicle-seo-faq, .tp-vehicle-seo-related { margin-bottom: 30px; }
.tp-vehicle-detail-page .detail-booking-section { max-width: 1200px; margin: 0 auto; padding: 78px 24px 105px; }
.tp-vehicle-detail-page .detail-booking-heading { margin-bottom: 28px; }
.tp-vehicle-detail-page .detail-booking-form, .tp-vehicle-detail-page .detail-booking-summary { border: 1px solid #e6e1d9; border-radius: 16px; box-shadow: 0 13px 35px rgba(35, 29, 23, .06); }
.tp-vehicle-detail-page .detail-booking-summary { position: sticky; top: 18px; }

@media (max-width: 850px) {
  .tp-vehicle-heading { grid-template-columns: 1fr; gap: 24px; }
  .tp-vehicle-price-badge { width: fit-content; padding: 13px 0 0; border-top: 1px solid #ddd7ce; border-left: 0; }
  .tp-vehicle-overview, .tp-vehicle-details-grid, .tp-vehicle-seo-content { grid-template-columns: 1fr; }
  .tp-vehicle-action-card { min-height: 0; }
  .tp-vehicle-details-grid { gap: 42px; padding-top: 60px; }
  .tp-vehicle-detail-page .detail-booking-summary { position: static; }
}

@media (max-width: 600px) {
  .tp-vehicle-shell { padding-right: 16px; padding-left: 16px; }
  .tp-vehicle-heading { padding-top: 39px; }
  .tp-vehicle-heading h1 { font-size: clamp(36px, 12vw, 54px); }
  .tp-vehicle-heading p { font-size: 13px; }
  .tp-vehicle-visual-stage { min-height: 280px; }
  .tp-vehicle-main-image { width: 88%; max-height: 240px; }
  .tp-vehicle-visual-stage .vehicle-placeholder { min-height: 220px; }
  .tp-vehicle-gallery-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tp-vehicle-action-card { padding: 25px 21px 22px; }
  .tp-vehicle-action-price strong { font-size: 37px; }
  .tp-vehicle-spec-card { padding: 23px 19px 20px; }
  .tp-vehicle-seo-content { gap: 27px; padding-top: 42px; }
  .tp-vehicle-seo-checks { padding: 22px 19px 19px; }
  .tp-vehicle-spec-list > div:nth-child(even) { padding-left: 12px; }
  .tp-vehicle-detail-page .detail-booking-section { padding-right: 16px; padding-left: 16px; }
}

/* Ajustements de hiérarchie visuelle demandés : les prix restent visibles et
   commerciaux, mais leur graisse ne doit pas concurrencer le contenu principal
   de la fiche véhicule. */
.catalog-section .vehicle-card-price {
  color: #3d3a37;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.catalog-section .vehicle-card-price strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.04em;
}
.tp-vehicle-heading h1 {
  font-weight: 600;
}
.tp-vehicle-price-badge strong {
  font-size: 31px;
  font-weight: 600;
}
.tp-vehicle-action-card h2 {
  font-weight: 600;
}
.tp-vehicle-action-price strong {
  font-size: 29px;
  font-weight: 600;
}

/* Réorganisation des destinations : une poignée explicite rend le tri
   compréhensible pour le patron et évite de déplacer une ligne par erreur. */
.destination-list-heading {
  align-items: center;
  margin-bottom: 17px;
}
.destination-list-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.destination-order-form {
  margin: 0 0 13px;
}
.destination-order-status {
  padding: 10px 13px;
  border-left: 3px solid var(--gold);
  background: #faf6ee;
  color: #76644c;
  font-size: 12px;
  line-height: 1.45;
}
.destination-order-status.is-saving {
  border-left-color: var(--red);
  background: #fff1f2;
  color: #9f2732;
}
.destination-admin-table {
  min-width: 1040px;
}
.destination-admin-table .destination-order-column {
  width: 70px;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
}
.destination-name-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}
.destination-name-cell strong,
.destination-name-cell small {
  display: block;
}
.destination-drag-handle {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid #ddd6ca;
  border-radius: 8px;
  background: #f7f3ec;
  color: #887c6c;
  font-size: 20px;
  line-height: 1;
  cursor: grab;
  touch-action: none;
}
.destination-drag-handle:hover,
.destination-drag-handle:focus-visible {
  border-color: var(--red);
  background: #fff1f2;
  color: var(--red);
  outline: none;
}
.destination-drag-handle:active {
  cursor: grabbing;
}
.destination-admin-table tr.is-dragging {
  opacity: .45;
}
.destination-admin-table tr.destination-drag-over td {
  border-top: 2px solid var(--red);
}

/* Le numéro est saisi sans ambiguïté : clavier numérique, nettoyage immédiat
   des collages et validation serveur en complément. */
.site-page .reservation-form .phone-number-input {
  letter-spacing: .03em;
}
@media (max-width: 600px) {
  .tp-vehicle-action-price strong {
    font-size: 29px;
  }
  .destination-list-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .destination-list-heading .button {
    width: 100%;
  }
}

/* Réservations back-office : une lecture large et opérationnelle. Les
   montants et les informations de trajet restent visibles sans ouvrir chaque
   fiche, puis le détail complet utilise toute la largeur disponible. */
.admin-page .admin-heading {
  max-width: 1400px;
}
.reservation-list-panel,
.reservation-action-panel,
.reservation-detail-toolbar,
.reservation-detail-layout {
  width: min(1400px, 100%);
  max-width: 1400px;
}
.reservation-list-panel {
  padding: 27px;
}
.reservation-list-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.reservation-list-intro h2 {
  margin: 9px 0 6px;
  font-size: 29px;
  letter-spacing: -.045em;
}
.reservation-list-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.reservation-list-count {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-radius: 999px;
  background: #f5f0e8;
  color: #746348;
  font-size: 11px;
  font-weight: 800;
}
.reservation-table-wrap {
  overflow-x: auto;
}
.reservation-admin-table {
  min-width: 1190px;
}
.reservation-admin-table th {
  white-space: nowrap;
}
.reservation-admin-table td {
  vertical-align: top;
}
.reservation-admin-table td strong,
.reservation-admin-table td small,
.reservation-admin-table td a {
  display: block;
}
.reservation-admin-table td strong {
  color: #24211f;
  font-size: 13px;
}
.reservation-admin-table td small,
.reservation-admin-table td a {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.reservation-admin-table td a {
  color: var(--red);
  font-weight: 800;
}
.reservation-reference-cell strong {
  color: var(--red) !important;
  letter-spacing: .05em;
}
.reservation-customer-cell a {
  overflow-wrap: anywhere;
}
.reservation-period-cell {
  display: grid;
  gap: 10px;
  min-width: 220px;
}
.reservation-period-cell > div {
  display: grid;
  gap: 2px;
}
.reservation-period-cell small {
  margin: 0;
  color: #a39b92 !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.reservation-period-cell strong {
  font-size: 12px !important;
}
.reservation-period-cell span {
  color: var(--muted);
  font-size: 11px;
}
.reservation-amount-cell strong {
  white-space: nowrap;
  font-size: 15px !important;
}
.reservation-amount-cell small {
  max-width: 125px;
}
.reservation-list-fees {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid var(--line);
}
.reservation-list-fees-heading {
  color: #9b9187;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.reservation-list-fee-row {
  display: flex !important;
  align-items: start;
  justify-content: space-between;
  gap: 7px;
  margin: 0 !important;
  color: #887f76 !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
}
.reservation-list-fee-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.reservation-list-fee-row strong {
  flex: 0 0 auto;
  color: #4b4540 !important;
  font-size: 10px !important;
  white-space: nowrap;
}
.reservation-list-fee-row.is-empty {
  color: #9b938a !important;
}

.reservation-detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 16px;
}
.reservation-back-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}
.reservation-delete-form,
.pwa-delete-form {
  margin: 0;
}
.reservation-delete-button,
.pwa-delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #e0aeb3;
  border-radius: 9px;
  background: #fff1f2;
  color: #b71928;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.reservation-delete-button:hover,
.pwa-delete-button:hover {
  border-color: #c91f2b;
  background: #c91f2b;
  color: #fff;
}
.reservation-delete-button span,
.pwa-delete-button span {
  font-size: 17px;
  line-height: .8;
}
.reservation-action-panel {
  margin: 0 auto 20px;
  padding: 23px 27px 27px;
  border: 1px solid #ded9d1;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(29,22,16,.045);
}
.reservation-action-panel h2 {
  margin: 8px 0 18px;
  font-size: 25px;
  letter-spacing: -.04em;
}
.reservation-decision-form {
  margin: 0;
}
.reservation-decision-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.reservation-decision-button {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 78px;
  padding: 14px 17px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.reservation-decision-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(29,22,16,.14);
}
.reservation-decision-button:focus-visible,
.reservation-delete-button:focus-visible,
.pwa-delete-button:focus-visible {
  outline: 3px solid rgba(201,31,43,.22);
  outline-offset: 2px;
}
.reservation-decision-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  font-size: 23px;
  line-height: 1;
}
.reservation-decision-button b,
.reservation-decision-button small {
  display: block;
}
.reservation-decision-button b {
  font-size: 15px;
}
.reservation-decision-button small {
  margin-top: 4px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  line-height: 1.35;
}
.reservation-accept-button {
  background: #198754;
}
.reservation-accept-button:hover {
  background: #147348;
}
.reservation-refuse-button {
  background: #d51f2a;
}
.reservation-refuse-button:hover {
  background: #b71928;
}
.reservation-payment-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 5px;
}
.reservation-payment-action > div {
  display: grid;
  gap: 5px;
}
.reservation-payment-action strong {
  font-size: 15px;
}
.reservation-payment-action p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.reservation-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(340px, .82fr);
  align-items: start;
  gap: 20px;
  margin: 0 auto;
}
.reservation-detail-panel {
  max-width: none;
  margin: 0;
  padding: 28px 30px 12px;
}
.reservation-status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}
.reservation-status-line > span:first-child {
  color: var(--muted);
  font-size: 13px;
}
.reservation-status-line .status {
  font-size: 11px;
}
.reservation-detail-section {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}
.reservation-detail-section:last-child {
  border-bottom: 0;
}
.reservation-section-heading {
  display: flex;
  align-items: start;
  gap: 13px;
  margin-bottom: 19px;
}
.reservation-section-heading > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.reservation-section-heading h2 {
  margin: 7px 0 0;
  font-size: 23px;
  letter-spacing: -.04em;
}
.reservation-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--line);
}
.reservation-info-item {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  min-height: 77px;
  padding: 15px 16px;
  background: #fff;
}
.reservation-info-item small {
  color: #938b82;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.reservation-info-item strong,
.reservation-info-item a {
  color: #282522;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.reservation-info-item a {
  color: var(--red);
  font-weight: 700;
}
.reservation-info-grid-wide .reservation-message-item {
  grid-column: 1 / -1;
}
.reservation-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.reservation-route-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #faf9f7;
}
.reservation-route-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.reservation-route-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px #f9dde0;
}
.reservation-route-card > strong {
  display: block;
  color: #292623;
  font-size: 15px;
}
.reservation-route-card h3 {
  margin: 10px 0 5px;
  color: #292623;
  font-size: 15px;
  line-height: 1.35;
}
.reservation-route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.reservation-summary-card {
  position: sticky;
  top: 18px;
  min-width: 0;
  padding: 28px 27px 25px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(29,22,16,.06);
}
.reservation-summary-card h2 {
  margin: 10px 0 23px;
  font-size: 28px;
  letter-spacing: -.045em;
}
.reservation-summary-line,
.reservation-summary-fees-heading,
.reservation-fee-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
}
.reservation-summary-line {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #68615a;
  font-size: 14px;
}
.reservation-summary-line strong,
.reservation-summary-fees-heading strong,
.reservation-fee-row strong {
  flex: 0 0 auto;
  color: #282522;
  font-size: 15px;
  white-space: nowrap;
}
.reservation-summary-fees {
  padding: 16px 0 6px;
  border-bottom: 1px solid var(--line);
}
.reservation-summary-fees-heading {
  margin-bottom: 7px;
  color: #4d4741;
  font-size: 14px;
  font-weight: 700;
}
.reservation-fee-row {
  align-items: start;
  padding: 8px 0;
  color: #817970;
  font-size: 12px;
  line-height: 1.4;
}
.reservation-fee-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.reservation-fee-row strong {
  font-size: 13px;
}
.reservation-fee-row.is-empty {
  color: #9b938a;
}
.reservation-summary-total {
  padding-top: 20px;
  border-bottom: 0;
  color: #292623;
  font-size: 17px;
}
.reservation-summary-total strong {
  font-size: 23px;
  font-weight: 700;
}
.reservation-summary-deposit {
  margin: 0 -9px;
  padding: 16px 9px;
  border: 0;
  border-radius: 10px;
  background: #faf5ec;
  color: #786548;
}
.reservation-summary-deposit strong {
  color: #26221e;
}
.reservation-summary-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Même hiérarchie de décision dans la PWA : les deux actions doivent être
   immédiatement identifiables sur un petit écran tactile. */
.pwa-action-button.pwa-accept {
  background: #198754;
  color: #fff;
}
.pwa-action-button.pwa-accept:hover {
  background: #147348;
}
.pwa-action-button.pwa-refuse {
  background: #d51f2a;
  color: #fff;
}
.pwa-action-button.pwa-refuse:hover {
  background: #b71928;
}
.pwa-action-button > small {
  color: rgba(255,255,255,.82);
}
.pwa-delete-form {
  display: flex;
  justify-content: flex-end;
  margin: 12px 0 16px;
}
.pwa-delete-button {
  min-height: 42px;
}
.pwa-card-financials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #827a72;
  font-size: 11px;
}
.pwa-card-financials span {
  display: inline-flex;
  gap: 5px;
}
.pwa-card-financials b {
  color: #3b3733;
  font-weight: 800;
}
.pwa-card-fees {
  display: grid;
  gap: 4px;
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.pwa-card-fees-heading {
  color: #9b9187;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pwa-card-fee-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  color: #827a72;
  font-size: 10px;
  line-height: 1.35;
}
.pwa-card-fee-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.pwa-card-fee-row strong {
  flex: 0 0 auto;
  color: #3b3733;
  font-size: 10px;
  white-space: nowrap;
}
.pwa-card-fee-row.is-empty {
  color: #9b938a;
}
.pwa-amount-card-detailed {
  display: block;
  padding: 0;
}
.pwa-amount-card-detailed > .pwa-amount-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 7px;
}
.pwa-amount-card-detailed > .pwa-amount-summary > div {
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border-right: 1px solid var(--line);
}
.pwa-amount-card-detailed > .pwa-amount-summary > div:last-child {
  border-right: 0;
}
.pwa-fee-breakdown {
  padding: 17px 22px 13px;
  border-top: 1px solid var(--line);
}
.pwa-amount-card-detailed > .pwa-fee-breakdown {
  display: block;
  gap: 0;
  border-right: 0;
}
.pwa-fee-breakdown-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 5px;
  color: #4b4641;
  font-size: 12px;
  font-weight: 800;
}
.pwa-fee-breakdown-heading strong {
  color: #292623;
  font-size: 14px;
}
.pwa-fee-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: #746d66;
  font-size: 12px;
  line-height: 1.4;
}
.pwa-fee-row:last-child {
  border-bottom: 0;
}
.pwa-fee-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.pwa-fee-row strong {
  flex: 0 0 auto;
  color: #302c28;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .reservation-detail-layout {
    grid-template-columns: 1fr;
  }
  .reservation-summary-card {
    position: static;
  }
}
@media (max-width: 700px) {
  .reservation-list-panel,
  .reservation-action-panel {
    padding: 20px 16px;
  }
  .reservation-list-intro {
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }
  .reservation-detail-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding: 0 1px;
  }
  .reservation-delete-form,
  .reservation-delete-button {
    width: 100%;
  }
  .reservation-decision-actions,
  .reservation-route-grid,
  .reservation-info-grid {
    grid-template-columns: 1fr;
  }
  .reservation-detail-panel {
    padding: 21px 17px 5px;
  }
  .reservation-info-grid-wide .reservation-message-item {
    grid-column: auto;
  }
  .reservation-payment-action {
    align-items: stretch;
    flex-direction: column;
  }
  .reservation-payment-action form,
  .reservation-payment-action .button {
    width: 100%;
  }
  .pwa-delete-form {
    justify-content: stretch;
  }
  .pwa-delete-button {
    width: 100%;
  }
  .pwa-amount-card-detailed > .pwa-amount-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pwa-amount-card-detailed > .pwa-amount-summary > div:nth-child(2) {
    border-right: 0;
  }
  .pwa-amount-card-detailed > .pwa-amount-summary > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .pwa-detail-grid > div {
    border-bottom: 1px solid var(--line);
  }
  .pwa-detail-grid > div:last-child {
    border-bottom: 0;
  }
}

/* Le panneau de connexion Push est utile pendant l'activation, puis ne doit
   plus réserver une grande zone sur l'accueil de la PWA après le test réussi. */
.pwa-notification-panel.is-dismissed {
  display: none !important;
}

/* Calendrier de réservation : un seul mois lisible à la fois, avec une grille
   plus aérée et des contrôles visuellement plus proches d'un sélecteur de
   dates de site de réservation professionnel. */
.vehicle-booking-date-popover {
  width: min(430px, calc(100vw - 28px));
  padding: 18px 20px 16px;
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
}
.vehicle-booking-calendar-navigation {
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eeeae5;
}
.vehicle-booking-calendar-navigation button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7f4f0;
  color: #48433e;
  font-size: 25px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.vehicle-booking-calendar-navigation button:hover {
  background: #fbe4e6;
  color: #c91f2b;
  transform: translateY(-1px);
}
.vehicle-booking-calendar-navigation strong {
  color: #292522;
  font-size: 15px;
  letter-spacing: -.02em;
}
.vehicle-booking-calendar-months {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.vehicle-booking-weekdays,
.vehicle-booking-calendar-grid {
  gap: 4px;
}
.vehicle-booking-weekdays {
  margin-bottom: 9px;
  color: #9a938b;
  font-size: 10px;
  letter-spacing: .05em;
}
.vehicle-booking-calendar-day {
  height: 38px;
  border-radius: 50%;
  color: #403b36;
  font-size: 13px;
  font-weight: 600;
}
.vehicle-booking-calendar-day.is-range {
  border-radius: 9px;
  background: #fbe7e8;
  color: #a72c35;
}
.vehicle-booking-calendar-day:hover:not(:disabled),
.vehicle-booking-calendar-day.is-selected {
  background: #d32330;
  color: #fff;
}
.vehicle-booking-calendar-day:disabled {
  color: #d2d0cd;
}
.vehicle-booking-calendar-times {
  gap: 12px;
  margin-top: 17px;
  padding-top: 14px;
}
.vehicle-booking-calendar-times label {
  color: #625b54;
  font-size: 11px;
}
.vehicle-booking-calendar-times select {
  min-height: 34px;
  border-radius: 8px;
  font-size: 12px;
}
.vehicle-booking-calendar-footer {
  margin-top: 14px;
  padding-top: 13px;
}
.vehicle-booking-calendar-footer button {
  min-height: 35px;
  border-radius: 7px;
  font-size: 10px;
  letter-spacing: .03em;
}

/* En-tête public plus compact : le logo reste respirant mais ne crée plus une
   longue bande blanche avant le début de la réservation. */
.public-site-header .site-main-bar {
  min-height: 128px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.public-site-header .site-main-bar .brand {
  min-width: 190px;
  align-items: center;
  margin-top: 0;
}
.public-site-header .site-main-bar .brand-logo {
  max-width: 190px;
  max-height: 88px;
}

@media (max-width: 1100px) {
  .public-site-header .site-main-bar {
    min-height: 116px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .public-site-header .site-main-bar .brand {
    min-width: 175px;
  }
  .public-site-header .site-main-bar .brand-logo {
    max-width: 175px;
    max-height: 82px;
  }
}
@media (max-width: 760px) {
  .public-site-header .site-main-bar {
    min-height: 98px;
    padding: 14px 16px;
  }
  .public-site-header .site-main-bar .brand {
    margin-top: 0;
  }
  .public-site-header .site-main-bar .brand-logo {
    max-width: 135px;
    max-height: 68px;
  }
  .vehicle-booking-date-popover {
    width: min(430px, calc(100vw - 28px));
    padding-right: 16px;
    padding-left: 16px;
  }
  .vehicle-booking-calendar-day {
    height: 36px;
  }
}
@media (max-width: 520px) {
  .public-site-header .site-main-bar {
    min-height: 140px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

/* Outils de tarification : l'administrateur voit ses règles comme une petite
   bibliothèque et peut les réutiliser sans refaire toute la saisie. */
#pricing-rules {
  scroll-margin-top: 22px;
}
.pricing-rule-row {
  grid-template-columns: minmax(0, 1fr) auto minmax(270px, auto);
  padding: 14px 16px;
}
.pricing-rule-copy,
.pricing-rule-values,
.pricing-rule-actions {
  min-width: 0;
}
.pricing-rule-copy strong {
  font-size: 14px;
}
.pricing-rule-values {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.pricing-rule-values > strong {
  color: var(--ink);
  font-size: 13px;
}
.pricing-rule-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}
.pricing-rule-actions .button.small {
  min-height: 34px;
  padding: 8px 11px;
  font-size: 10px;
}
.button.ghost-dark {
  border: 1px solid #d9d3ca;
  background: #fff;
  color: #4d4842;
}
.button.ghost-dark:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fffafa;
}
.pricing-form-heading,
.pricing-template-tools,
.pricing-bulk-apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pricing-form-heading {
  margin-bottom: 18px;
}
.pricing-form-heading > div,
.pricing-template-tools > label,
.pricing-bulk-apply > div:first-child {
  display: grid;
  gap: 4px;
}
.pricing-form-heading strong,
.pricing-bulk-apply strong {
  color: var(--ink);
  font-size: 15px;
}
.pricing-form-heading small,
.pricing-template-tools small,
.pricing-bulk-apply small,
.pricing-bulk-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.pricing-template-tools {
  align-items: end;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid #e8e2d9;
  border-radius: 11px;
  background: #fcfaf6;
}
.pricing-template-tools > label {
  flex: 0 1 370px;
  color: #514c46;
  font-size: 11px;
  font-weight: 800;
}
.pricing-template-tools select {
  min-height: 42px;
  padding: 8px 11px;
  border: 1px solid #d8d2c9;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.pricing-template-tools > small {
  flex: 1 1 220px;
  max-width: 320px;
}
.pricing-live-preview {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 14px 15px;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: #f7f1e6;
}
.pricing-live-preview > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.pricing-live-preview strong {
  color: #715829;
  font-size: 12px;
}
.pricing-live-preview small,
.pricing-live-preview p {
  color: #826f51;
  font-size: 11px;
  line-height: 1.45;
}
.pricing-live-preview p {
  margin: 0;
}
.pricing-bulk-apply {
  align-items: start;
  margin: 18px 0;
  padding: 15px;
  border: 1px solid #d8e9df;
  border-radius: 11px;
  background: #f0f8f3;
}
.pricing-bulk-list {
  display: flex;
  flex: 1 1 420px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}
.pricing-bulk-list label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #235c47;
  font-size: 11px;
  font-weight: 700;
}
.pricing-bulk-list input {
  width: auto;
  min-height: 0;
}
.pricing-bulk-note {
  margin: 18px 0;
  padding: 12px 14px;
  border-radius: 9px;
  background: #f6f4f0;
}
.pricing-bulk-note strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .pricing-rule-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .pricing-rule-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .pricing-rule-row {
    grid-template-columns: 1fr;
  }
  .pricing-template-tools,
  .pricing-bulk-apply {
    align-items: stretch;
    flex-direction: column;
  }
  .pricing-template-tools > label,
  .pricing-template-tools > small,
  .pricing-bulk-list {
    max-width: none;
    width: 100%;
    flex-basis: auto;
  }
  .pricing-bulk-list {
    justify-content: flex-start;
  }
  .pricing-form-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Accueil éditorial statique : une direction premium, lisible et orientée
   conversion. Ces classes sont isolées pour ne pas modifier les écrans du
   backoffice ni les anciens composants de réservation. */
.tp-home-static {
  --home-ink: #171717;
  --home-muted: #716e69;
  --home-paper: #f6f4f0;
  --home-soft: #ebe6de;
  --home-red: #d3222e;
  --home-red-dark: #a81822;
  --home-gold: #b79661;
  overflow: hidden;
  background: #fff;
  color: var(--home-ink);
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.tp-home-static h1,
.tp-home-static h2,
.tp-home-static h3,
.tp-home-static p {
  margin-top: 0;
}
.tp-home-static a {
  text-decoration: none;
}
.tp-home-kicker {
  color: var(--home-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.45;
  text-transform: uppercase;
}
.tp-home-static-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 23%, rgba(210, 34, 46, .27), transparent 24%),
    radial-gradient(circle at 88% 96%, rgba(183, 150, 97, .16), transparent 22%),
    #151515;
  color: #fff;
}
.tp-home-static-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: .38;
  pointer-events: none;
}
.tp-home-hero-shell,
.tp-home-hero-bottom,
.tp-home-section,
.tp-home-route,
.tp-home-services-inner {
  width: min(1220px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}
.tp-home-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  min-height: 650px;
  align-items: center;
  gap: clamp(28px, 6vw, 96px);
  padding-top: 72px;
  padding-bottom: 88px;
}
.tp-home-hero-copy {
  max-width: 610px;
}
.tp-home-hero-copy h1 {
  max-width: 670px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(44px, 5.7vw, 78px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .99;
}
.tp-home-hero-copy h1 em {
  color: #ee6870;
  font-style: normal;
}
.tp-home-hero-copy > p {
  max-width: 530px;
  margin-bottom: 0;
  color: rgba(255,255,255,.67);
  font-size: 16px;
  line-height: 1.75;
}
.tp-home-hero-actions,
.tp-home-final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
}
.tp-home-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 14px 21px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.tp-home-button:hover {
  transform: translateY(-2px);
}
.tp-home-button-primary {
  background: var(--home-red);
  color: #fff;
}
.tp-home-button-primary:hover {
  background: var(--home-red-dark);
  color: #fff;
}
.tp-home-button-ghost {
  border-color: rgba(255,255,255,.24);
  color: #fff;
}
.tp-home-button-ghost:hover {
  border-color: rgba(255,255,255,.56);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.tp-home-button-dark {
  background: var(--home-ink);
  color: #fff;
}
.tp-home-button-dark:hover {
  background: var(--home-red);
  color: #fff;
}
.tp-home-button-light {
  background: #fff;
  color: var(--home-ink);
}
.tp-home-button-light:hover {
  background: #f1e7d8;
  color: var(--home-ink);
}
.tp-home-hero-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 42px;
  color: rgba(255,255,255,.74);
  font-size: 11px;
  line-height: 1.45;
}
.tp-home-hero-proof strong,
.tp-home-hero-proof small {
  display: block;
}
.tp-home-hero-proof strong {
  color: #fff;
  font-size: 11px;
}
.tp-home-hero-proof small {
  margin-top: 3px;
  color: rgba(255,255,255,.5);
}
.tp-home-proof-check {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(238,104,112,.75);
  border-radius: 50%;
  color: #f07b81;
  font-size: 16px;
  font-weight: 800;
}
.tp-home-hero-art {
  position: relative;
  min-height: 470px;
  isolation: isolate;
}
.tp-home-hero-art::before {
  position: absolute;
  inset: 11% 2% 10% 7%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 71%, #eee8df 0 25%, rgba(238,232,223,.32) 26%, transparent 57%);
  content: "";
  opacity: .96;
}
.tp-home-hero-art::after {
  position: absolute;
  right: 8%;
  bottom: 16%;
  left: 14%;
  height: 2px;
  border-radius: 50%;
  background: rgba(238,232,223,.46);
  box-shadow: 0 0 26px 9px rgba(238,232,223,.14);
  content: "";
}
.tp-home-hero-art-orbit {
  position: absolute;
  top: 3%;
  right: 3%;
  width: min(560px, 95%);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 96px rgba(255,255,255,.018);
}
.tp-home-hero-art-grid {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 70%;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, transparent 0, #000 35%, #000 100%);
  opacity: .24;
}
.tp-home-hero-car {
  position: absolute;
  z-index: 1;
  right: -4%;
  bottom: 9%;
  display: block;
  width: min(650px, 112%);
  height: auto;
  filter: drop-shadow(0 28px 22px rgba(0,0,0,.32));
}
.tp-home-hero-float {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: 1%;
  display: grid;
  gap: 7px;
  width: 180px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(22,22,22,.78);
  backdrop-filter: blur(8px);
}
.tp-home-hero-float span,
.tp-home-hero-float small {
  color: #ef777d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.tp-home-hero-float strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.tp-home-hero-float small {
  color: rgba(255,255,255,.46);
  font-weight: 500;
  letter-spacing: .04em;
}
.tp-home-hero-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.13);
}
.tp-home-hero-bottom > div {
  display: grid;
  gap: 5px;
  padding: 20px 26px 23px 0;
}
.tp-home-hero-bottom > div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(255,255,255,.13);
}
.tp-home-hero-bottom strong {
  color: #fff;
  font-size: 11px;
  letter-spacing: -.01em;
}
.tp-home-hero-bottom span {
  color: rgba(255,255,255,.46);
  font-size: 10px;
  line-height: 1.45;
}
.tp-home-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--home-soft);
  background: #fff;
}
.tp-home-trust > div {
  display: grid;
  gap: 6px;
  min-height: 112px;
  align-content: center;
  padding: 18px clamp(16px, 3vw, 36px);
  border-right: 1px solid var(--home-soft);
}
.tp-home-trust > div:last-child {
  border-right: 0;
}
.tp-home-trust span {
  color: var(--home-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.tp-home-trust strong {
  color: var(--home-ink);
  font-size: 12px;
  letter-spacing: -.02em;
}
.tp-home-trust small {
  color: #99938b;
  font-size: 10px;
  line-height: 1.4;
}
.tp-home-section {
  padding-top: clamp(74px, 9vw, 122px);
  padding-bottom: clamp(74px, 9vw, 122px);
}
.tp-home-introduction {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  align-items: end;
  gap: clamp(36px, 8vw, 130px);
}
.tp-home-intro-copy {
  max-width: 680px;
}
.tp-home-intro-copy h2,
.tp-home-section-heading h2,
.tp-home-services-heading h2,
.tp-home-process-copy h2,
.tp-home-faq-heading h2 {
  margin: 13px 0 20px;
  color: var(--home-ink);
  font-size: clamp(32px, 4.3vw, 58px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: 1.02;
}
.tp-home-intro-copy > p,
.tp-home-section-heading p,
.tp-home-services-heading p,
.tp-home-process-copy p,
.tp-home-faq-heading p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.8;
}
.tp-home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-red);
  font-size: 12px;
  font-weight: 800;
  transition: gap .18s ease, color .18s ease;
}
.tp-home-text-link:hover {
  gap: 16px;
  color: var(--home-red-dark);
}
.tp-home-intro-copy .tp-home-text-link {
  margin-top: 27px;
}
.tp-home-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-soft);
  border-bottom: 1px solid var(--home-soft);
}
.tp-home-intro-stats > div {
  display: grid;
  gap: 8px;
  padding: 18px 15px 18px 0;
}
.tp-home-intro-stats > div + div {
  padding-left: 15px;
  border-left: 1px solid var(--home-soft);
}
.tp-home-intro-stats strong {
  color: var(--home-red);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.06em;
}
.tp-home-intro-stats span {
  color: #89847d;
  font-size: 10px;
  line-height: 1.45;
}
.tp-home-fleet {
  padding-top: 0;
}
.tp-home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}
.tp-home-section-heading h2 {
  max-width: 640px;
}
.tp-home-section-heading > .tp-home-text-link {
  flex: 0 0 auto;
  margin-bottom: 5px;
}
.tp-home-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.tp-home-fleet-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-soft);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.tp-home-fleet-card:hover {
  border-color: #d9cdbb;
  box-shadow: 0 18px 44px rgba(39,28,17,.09);
  transform: translateY(-4px);
}
.tp-home-fleet-media {
  position: relative;
  display: grid;
  min-height: 218px;
  place-items: center;
  overflow: hidden;
  background: #f8f8f7;
}
.tp-home-fleet-media::after {
  position: absolute;
  right: 13%;
  bottom: 19px;
  left: 13%;
  height: 1px;
  background: #d9d6d1;
  content: "";
}
.tp-home-fleet-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 88%;
  height: 190px;
  object-fit: contain;
  transition: transform .3s ease;
}
.tp-home-fleet-card:hover .tp-home-fleet-image {
  transform: scale(1.04);
}
.tp-home-fleet-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  padding: 6px 9px;
  background: #fff;
  color: var(--home-red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tp-home-fleet-body {
  padding: 20px 20px 18px;
}
.tp-home-fleet-category {
  color: #a4988a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}
.tp-home-fleet-body h3 {
  margin: 8px 0 10px;
  color: var(--home-ink);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: 1.05;
}
.tp-home-fleet-body p {
  min-height: 43px;
  margin-bottom: 18px;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.55;
}
.tp-home-fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px solid var(--home-soft);
}
.tp-home-fleet-footer > span {
  color: #9a938a;
  font-size: 9px;
}
.tp-home-fleet-footer a {
  color: var(--home-red);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.tp-home-route {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--home-paper);
}
.tp-home-route-art {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #e9e2d6;
}
.tp-home-route-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}
.tp-home-route-stamp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(22,22,22,.72);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: .9;
  text-align: center;
}
.tp-home-route-stamp small {
  color: #e4b970;
  font-size: 7px;
  letter-spacing: .12em;
}
.tp-home-route-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
}
.tp-home-route-copy h2 {
  max-width: 500px;
  margin: 14px 0 19px;
  color: var(--home-ink);
  font-size: clamp(30px, 4vw, 53px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: 1.02;
}
.tp-home-route-copy p {
  max-width: 500px;
  margin-bottom: 22px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.75;
}
.tp-home-route-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: #625c55;
  font-size: 11px;
  line-height: 1.45;
  list-style: none;
}
.tp-home-route-copy li {
  display: flex;
  align-items: start;
  gap: 9px;
}
.tp-home-route-copy li span {
  color: var(--home-red);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}
.tp-home-services {
  background: #171717;
  color: #fff;
}
.tp-home-services-inner {
  padding-top: clamp(74px, 9vw, 116px);
  padding-bottom: clamp(74px, 9vw, 116px);
}
.tp-home-services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.tp-home-services-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
  color: #fff;
}
.tp-home-services-heading p {
  color: rgba(255,255,255,.53);
}
.tp-home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.tp-home-service-grid article {
  min-height: 225px;
  padding: 25px 28px 28px 0;
}
.tp-home-service-grid article + article {
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.tp-home-service-grid article > span {
  color: #e15b65;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.tp-home-service-grid h3 {
  margin: 38px 0 13px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.04em;
}
.tp-home-service-grid p {
  max-width: 300px;
  margin-bottom: 0;
  color: rgba(255,255,255,.51);
  font-size: 11px;
  line-height: 1.65;
}
.tp-home-process {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}
.tp-home-process-art {
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  background: #f5f1e9;
}
.tp-home-process-image {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: contain;
}
.tp-home-process-copy h2 {
  max-width: 530px;
}
.tp-home-process-copy > .tp-home-text-link {
  margin-top: 29px;
}
.tp-home-process-copy ol {
  display: grid;
  gap: 22px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}
.tp-home-process-copy li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}
.tp-home-process-copy li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.tp-home-process-copy li strong {
  display: block;
  margin-bottom: 5px;
  color: var(--home-ink);
  font-size: 14px;
  letter-spacing: -.02em;
}
.tp-home-process-copy li p {
  max-width: 390px;
  font-size: 11px;
  line-height: 1.55;
}
.tp-home-morocco {
  padding: clamp(74px, 9vw, 115px) 24px;
  background: #eee6d8;
}
.tp-home-morocco-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}
.tp-home-morocco h2 {
  max-width: 760px;
  margin: 14px auto 18px;
  color: var(--home-ink);
  font-size: clamp(30px, 4.3vw, 57px);
  font-weight: 650;
  letter-spacing: -.07em;
  line-height: 1.02;
}
.tp-home-morocco p {
  max-width: 740px;
  margin: 0 auto;
  color: #716a60;
  font-size: 13px;
  line-height: 1.8;
}
.tp-home-morocco-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 25px;
  margin-top: 29px;
}
.tp-home-morocco-links a {
  color: var(--home-red);
  font-size: 11px;
  font-weight: 800;
}
.tp-home-gallery {
  padding-bottom: 78px;
}
.tp-home-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  grid-template-rows: 170px 170px;
  gap: 13px;
}
.tp-home-gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e6e1da;
}
.tp-home-gallery-grid a:first-child {
  grid-row: 1 / 3;
}
.tp-home-gallery-grid a:last-child {
  grid-column: 2 / 4;
}
.tp-home-gallery-grid a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.22));
  content: "";
  opacity: .7;
  transition: opacity .2s ease;
}
.tp-home-gallery-grid a:hover::after {
  opacity: .35;
}
.tp-home-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.tp-home-gallery-grid a:hover .tp-home-gallery-image {
  transform: scale(1.05);
}
.tp-home-faq {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 9vw, 150px);
  padding-top: 58px;
  border-top: 1px solid var(--home-soft);
}
.tp-home-faq-heading h2 {
  font-size: clamp(29px, 3.6vw, 49px);
}
.tp-home-faq-list {
  border-top: 1px solid var(--home-soft);
}
.tp-home-faq-list details {
  border-bottom: 1px solid var(--home-soft);
}
.tp-home-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: var(--home-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}
.tp-home-faq-list summary::-webkit-details-marker {
  display: none;
}
.tp-home-faq-list summary b {
  color: var(--home-red);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  transition: transform .18s ease;
}
.tp-home-faq-list details[open] summary b {
  transform: rotate(45deg);
}
.tp-home-faq-list details p {
  max-width: 620px;
  margin: -2px 40px 19px 0;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.7;
}
.tp-home-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px max(24px, calc((100% - 1220px) / 2));
  background: var(--home-red);
  color: #fff;
}
.tp-home-final-cta .tp-home-kicker {
  color: rgba(255,255,255,.7);
}
.tp-home-final-cta h2 {
  margin: 11px 0 10px;
  color: #fff;
  font-size: clamp(29px, 4vw, 49px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: 1;
}
.tp-home-final-cta p {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
.tp-home-final-actions {
  flex: 0 0 auto;
  margin-top: 0;
}
.tp-home-final-phone {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* Nouveau footer : hiérarchie courte, contact visible et liens utiles sans
   nuage de mots-clés. */
.site-page > footer.site-footer-modern {
  width: 100%;
  padding: 0;
  border-top: 0;
  background: #151515;
  color: #fff;
  text-align: left;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.site-footer-modern .tp-footer-shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 25px;
}
.tp-footer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 60px;
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.tp-footer-brand {
  max-width: 490px;
}
.tp-footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 21px;
}
.tp-footer-logo {
  display: block;
  width: auto;
  max-width: 178px;
  max-height: 68px;
  object-fit: contain;
}
.tp-footer-brand p {
  max-width: 450px;
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.7;
}
.tp-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.tp-footer-socials > span {
  margin-right: 5px;
  color: rgba(255,255,255,.42);
  font-size: 10px;
}
.tp-footer-socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.tp-footer-socials a:hover {
  border-color: var(--home-red);
  background: var(--home-red);
  color: #fff;
}
.tp-footer-socials svg {
  width: 14px;
  height: 14px;
}
.tp-footer-socials a:first-of-type svg {
  fill: currentColor;
}
.tp-footer-socials a:last-of-type svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.tp-footer-socials a:last-of-type .tp-footer-icon-fill {
  fill: currentColor;
  stroke: none;
}
.tp-footer-cta {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 24px 25px 25px;
  border-left: 2px solid var(--home-red);
  background: #1e1e1e;
}
.tp-footer-kicker {
  color: #e06a71;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}
.tp-footer-cta strong {
  max-width: 270px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.1;
}
.tp-footer-cta a,
.tp-footer-contact-action {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.tp-footer-cta a:hover,
.tp-footer-contact-action:hover {
  color: #ed7279;
}
.tp-footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(3, minmax(135px, .8fr));
  gap: clamp(28px, 5vw, 70px);
  padding: 49px 0 52px;
}
.tp-footer-contact,
.tp-footer-column {
  min-width: 0;
}
.tp-footer-contact h2,
.tp-footer-column h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.tp-footer-contact-line {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255,255,255,.67);
}
.tp-footer-contact-line:hover {
  color: #fff;
}
.tp-footer-contact-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #e16a72;
  font-size: 12px;
}
.tp-footer-contact-line small,
.tp-footer-contact-line strong {
  display: block;
}
.tp-footer-contact-line small {
  margin-bottom: 3px;
  color: rgba(255,255,255,.4);
  font-size: 9px;
}
.tp-footer-contact-line strong {
  color: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.tp-footer-address {
  max-width: 230px;
  margin: 21px 0 19px 34px;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  line-height: 1.55;
}
.tp-footer-whatsapp {
  display: inline-flex;
  margin-left: 34px;
  color: #75d2a7;
}
.tp-footer-links {
  display: grid;
  gap: 11px;
}
.tp-footer-links a {
  display: flex;
  align-items: start;
  gap: 7px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  line-height: 1.45;
  transition: color .18s ease, transform .18s ease;
}
.tp-footer-links a > span:first-child {
  color: #e16a72;
  font-size: 14px;
  line-height: .85;
}
.tp-footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}
.tp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.tp-footer-bottom > p {
  margin: 0;
  color: rgba(255,255,255,.39);
  font-size: 9px;
  line-height: 1.5;
}
.tp-footer-bottom sup {
  font-size: .7em;
}
.tp-footer-payment-note {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  white-space: nowrap;
}
.tp-footer-payment-note img {
  display: block;
  width: auto;
  max-width: 180px;
  height: 27px;
  object-fit: contain;
}

/* La grille de la flotte doit respirer de la même manière horizontalement et
   verticalement. */
.catalog-section .catalog-grid {
  gap: 40px;
}

/* Réduction définitive de la bande blanche du header public autour du logo. */
@media (min-width: 761px) {
  .public-site-header .site-contact-bar,
  .public-site-header .site-contact-inner {
    min-height: 46px;
  }
  .public-site-header .site-main-bar {
    min-height: 116px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .public-site-header .site-main-bar .brand {
    min-width: 178px;
  }
  .public-site-header .site-main-bar .brand-logo {
    max-width: 178px;
    max-height: 78px;
  }
  .public-site-header .site-main-bar .public-nav .public-cta {
    min-height: 56px;
    padding: 15px 25px;
  }
}

@media (max-width: 1050px) {
  .tp-home-hero-shell {
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
    gap: 25px;
  }
  .tp-home-hero-copy h1 {
    font-size: clamp(41px, 6vw, 64px);
  }
  .tp-home-route-copy {
    padding: 44px;
  }
  .tp-footer-grid {
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(150px, 1fr));
  }
  .tp-footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .tp-home-hero-shell,
  .tp-home-section,
  .tp-home-route,
  .tp-home-services-inner,
  .site-footer-modern .tp-footer-shell {
    width: min(100% - 32px, 620px);
  }
  .tp-home-hero-shell {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 57px;
    padding-bottom: 52px;
  }
  .tp-home-hero-copy h1 {
    margin-top: 14px;
    font-size: clamp(41px, 11vw, 58px);
  }
  .tp-home-hero-copy > p {
    font-size: 14px;
  }
  .tp-home-hero-actions {
    margin-top: 24px;
  }
  .tp-home-hero-proof {
    margin-top: 28px;
  }
  .tp-home-hero-art {
    min-height: 285px;
    margin-top: 8px;
  }
  .tp-home-hero-art-orbit {
    top: 2%;
    right: 4%;
    width: 72%;
  }
  .tp-home-hero-car {
    right: -5%;
    bottom: 12%;
    width: 105%;
  }
  .tp-home-hero-float {
    right: 0;
    bottom: 0;
    width: 145px;
    padding: 12px 13px;
  }
  .tp-home-hero-float strong {
    font-size: 11px;
  }
  .tp-home-hero-bottom {
    width: min(100% - 32px, 620px);
    grid-template-columns: 1fr;
  }
  .tp-home-hero-bottom > div,
  .tp-home-hero-bottom > div + div {
    min-height: 0;
    padding: 13px 0;
    border-left: 0;
  }
  .tp-home-hero-bottom > div + div {
    border-top: 1px solid rgba(255,255,255,.13);
  }
  .tp-home-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-home-trust > div:nth-child(2) {
    border-right: 0;
  }
  .tp-home-trust > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--home-soft);
  }
  .tp-home-trust > div {
    min-height: 102px;
    padding: 15px;
  }
  .tp-home-introduction,
  .tp-home-route,
  .tp-home-process,
  .tp-home-faq {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .tp-home-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .tp-home-intro-stats {
    margin-top: 5px;
  }
  .tp-home-section-heading,
  .tp-home-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .tp-home-section-heading {
    gap: 17px;
    margin-bottom: 25px;
  }
  .tp-home-fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .tp-home-fleet-media {
    min-height: 170px;
  }
  .tp-home-fleet-image {
    height: 150px;
  }
  .tp-home-fleet-body {
    padding: 16px 14px 15px;
  }
  .tp-home-fleet-body h3 {
    font-size: 20px;
  }
  .tp-home-fleet-body p {
    min-height: 0;
  }
  .tp-home-fleet-footer {
    display: grid;
    align-items: start;
  }
  .tp-home-route {
    width: 100%;
    gap: 0;
  }
  .tp-home-route-art,
  .tp-home-route-image {
    min-height: 265px;
    height: 265px;
  }
  .tp-home-route-copy {
    padding: 50px max(16px, calc((100% - 620px) / 2));
  }
  .tp-home-services-inner {
    width: min(100% - 32px, 620px);
  }
  .tp-home-services-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 32px;
  }
  .tp-home-service-grid {
    grid-template-columns: 1fr;
  }
  .tp-home-service-grid article,
  .tp-home-service-grid article + article {
    min-height: 0;
    padding: 21px 0 24px;
    border-left: 0;
  }
  .tp-home-service-grid article + article {
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .tp-home-service-grid h3 {
    margin-top: 22px;
  }
  .tp-home-process-art,
  .tp-home-process-image {
    min-height: 300px;
    height: 300px;
  }
  .tp-home-morocco {
    padding-right: 16px;
    padding-left: 16px;
  }
  .tp-home-gallery {
    padding-bottom: 58px;
  }
  .tp-home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 150px 150px 150px;
  }
  .tp-home-gallery-grid a:first-child {
    grid-row: 1 / 3;
  }
  .tp-home-gallery-grid a:last-child {
    grid-column: 1 / 3;
  }
  .tp-home-final-cta {
    padding: 47px 16px;
  }
  .tp-home-final-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .site-footer-modern .tp-footer-shell {
    padding-top: 54px;
  }
  .tp-footer-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 38px;
  }
  .tp-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 37px 25px;
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .tp-footer-contact {
    grid-column: 1 / -1;
  }
  .tp-footer-column:last-child {
    grid-column: auto;
  }
  .tp-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .tp-footer-payment-note {
    align-items: flex-start;
    flex-direction: column;
    white-space: normal;
  }
  .catalog-section .catalog-grid {
    gap: 24px;
  }
  .public-site-header .site-contact-bar,
  .public-site-header .site-contact-inner {
    min-height: 46px;
  }
  .public-site-header .site-main-bar {
    min-height: 92px;
    padding: 12px 16px;
  }
  .public-site-header .site-main-bar .brand {
    min-width: 0;
  }
  .public-site-header .site-main-bar .brand-logo {
    max-width: 135px;
    max-height: 62px;
  }
  .public-site-header .site-main-bar .public-nav .public-cta {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .tp-home-hero-actions,
  .tp-home-hero-actions .tp-home-button {
    width: 100%;
  }
  .tp-home-fleet-grid {
    grid-template-columns: 1fr;
  }
  .tp-home-fleet-media {
    min-height: 205px;
  }
  .tp-home-fleet-image {
    height: 180px;
  }
  .tp-home-intro-stats {
    grid-template-columns: 1fr;
  }
  .tp-home-intro-stats > div,
  .tp-home-intro-stats > div + div {
    padding: 13px 0;
    border-left: 0;
  }
  .tp-home-intro-stats > div + div {
    border-top: 1px solid var(--home-soft);
  }
  .tp-home-gallery-grid {
    grid-template-rows: 135px 135px 135px;
  }
  .tp-footer-grid {
    grid-template-columns: 1fr;
  }
  .tp-footer-column:last-child {
    grid-column: auto;
  }
  .public-site-header .site-main-bar {
    min-height: 82px;
    align-items: center;
    flex-wrap: nowrap;
  }
  .public-site-header .site-main-bar .brand-logo {
    max-width: 121px;
    max-height: 55px;
  }
  .public-site-header .site-main-bar .public-nav {
    width: auto;
    margin-left: auto;
  }
  .public-site-header .site-main-bar .public-nav .public-cta {
    padding: 9px 10px;
    font-size: 11px;
  }
}

/* Lisibilité PWA : deuxième micro-ajustement demandé par le client
   (+1px supplémentaire), sans modifier la hiérarchie ni les espacements. */
.pwa-heading p { font-size: 15px; }
.pwa-live-dot { font-size: 13px; }
.pwa-summary-card span,
.pwa-summary-card small { font-size: 13px; }
.pwa-notification-panel p { font-size: 14px; }
.pwa-notification-state,
.pwa-notification-action,
.pwa-notification-test { font-size: 13px; }
.pwa-inbox-toolbar strong { font-size: 15px; }
.pwa-inbox-toolbar span { font-size: 13px; }
.pwa-reference { font-size: 13px; }
.pwa-reservation-card > strong { font-size: 21px; }
.pwa-card-vehicle { font-size: 15px; }
.pwa-card-period,
.pwa-card-locations,
.pwa-card-financials { font-size: 13px; }
.pwa-card-locations b { font-size: 12px; }
.pwa-card-bottom { font-size: 14px; }
.pwa-card-fees-heading { font-size: 11px; }
.pwa-card-fee-row,
.pwa-card-fee-row strong { font-size: 12px; }
.pwa-section-heading > span { font-size: 13px; }
.pwa-history-meta strong { font-size: 15px; }
.pwa-history-meta small,
.pwa-history-side small { font-size: 12px; }
.pwa-history-empty { font-size: 14px; }
.pwa-back-link { font-size: 14px; }
.pwa-detail-heading p,
.pwa-locked-status p { font-size: 14px; }
.pwa-resend-button { font-size: 14px; }
.pwa-payment-resend small { font-size: 13px; }
.pwa-detail-card-heading span,
.pwa-detail-card-heading strong { font-size: 13px; }
.pwa-detail-grid small { font-size: 12px; }
.pwa-detail-grid strong { font-size: 16px; }
.pwa-detail-grid span,
.pwa-detail-grid a { font-size: 14px; }
.pwa-amount-card strong { font-size: 18px; }
.pwa-fee-breakdown-heading { font-size: 14px; }
.pwa-fee-breakdown-heading strong { font-size: 16px; }
.pwa-fee-row { font-size: 14px; }
.pwa-action-button b { font-size: 23px; }
.pwa-action-button small { font-size: 13px; }
.pwa-footer { font-size: 13px; }

/* Refonte complète de l’accueil : direction éditoriale premium, parcours
   court et conversion immédiate. Les classes sont isolées pour ne pas
   modifier les pages de réservation, la flotte ou le backoffice. */
.tp-home-neo {
  --neo-red: #d52632;
  --neo-red-dark: #a81925;
  --neo-ink: #161616;
  --neo-muted: #77736d;
  --neo-paper: #f4f1eb;
  --neo-soft: #e5dfd5;
  --neo-gold: #b8945c;
  overflow: hidden;
  background: #fff;
  color: var(--neo-ink);
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.tp-home-neo *,
.tp-home-neo *::before,
.tp-home-neo *::after {
  box-sizing: border-box;
}
.tp-home-neo h1,
.tp-home-neo h2,
.tp-home-neo h3,
.tp-home-neo p {
  margin-top: 0;
}
.tp-home-neo a {
  text-decoration: none;
}
.tp-neo-shell {
  width: min(1220px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}
.tp-neo-kicker {
  color: var(--neo-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.45;
  text-transform: uppercase;
}
.tp-neo-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 31%, rgba(213,38,50,.22), transparent 26%),
    radial-gradient(circle at 14% 100%, rgba(184,148,92,.13), transparent 28%),
    #141414;
  color: #fff;
}
.tp-neo-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: .45;
  pointer-events: none;
}
.tp-neo-hero .tp-neo-shell {
  position: relative;
  z-index: 1;
  padding-top: 27px;
  padding-bottom: 58px;
}
.tp-neo-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.55);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tp-neo-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tp-neo-hero-meta span:first-child i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #71d1a1;
  box-shadow: 0 0 0 5px rgba(113,209,161,.13);
}
.tp-neo-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: clamp(25px, 6vw, 90px);
  min-height: 555px;
  padding-top: 55px;
  padding-bottom: 35px;
}
.tp-neo-hero-copy {
  max-width: 575px;
}
.tp-neo-hero-copy h1 {
  max-width: 600px;
  margin: 16px 0 24px;
  color: #fff;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .94;
}
.tp-neo-hero-copy h1 em,
.tp-neo-section-head h2 em,
.tp-neo-process-copy h2 em {
  color: #ef7078;
  font-style: normal;
}
.tp-neo-hero-copy > p {
  max-width: 485px;
  margin-bottom: 0;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.75;
}
.tp-neo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 31px;
}
.tp-neo-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 21px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.tp-neo-button:hover {
  transform: translateY(-2px);
}
.tp-neo-button-red {
  background: var(--neo-red);
  color: #fff;
}
.tp-neo-button-red:hover {
  background: var(--neo-red-dark);
  color: #fff;
}
.tp-neo-button-line {
  border-color: rgba(255,255,255,.27);
  color: #fff;
}
.tp-neo-button-line:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  color: #fff;
}
.tp-neo-button-dark {
  background: var(--neo-ink);
  color: #fff;
}
.tp-neo-button-dark:hover {
  background: var(--neo-red);
  color: #fff;
}
.tp-neo-button-light {
  background: #fff;
  color: var(--neo-ink);
}
.tp-neo-button-light:hover {
  background: #f0e1ca;
  color: var(--neo-ink);
}
.tp-neo-hero-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 38px;
}
.tp-neo-proof-mark {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(239,112,120,.75);
  border-radius: 50%;
  color: #ef7078;
  font-size: 16px;
  font-weight: 800;
}
.tp-neo-hero-proof strong,
.tp-neo-hero-proof small {
  display: block;
}
.tp-neo-hero-proof strong {
  color: #fff;
  font-size: 11px;
}
.tp-neo-hero-proof small {
  margin-top: 3px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
}
.tp-neo-hero-visual {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}
.tp-neo-hero-visual::before {
  position: absolute;
  inset: 9% 5% 11% 4%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 71%, #eee7dc 0 28%, rgba(238,231,220,.3) 29%, transparent 61%);
  content: "";
}
.tp-neo-hero-visual::after {
  position: absolute;
  right: 10%;
  bottom: 15%;
  left: 10%;
  height: 2px;
  border-radius: 50%;
  background: rgba(238,231,220,.5);
  box-shadow: 0 0 28px 10px rgba(238,231,220,.12);
  content: "";
}
.tp-neo-visual-ring {
  position: absolute;
  top: 2%;
  right: 2%;
  width: min(510px, 95%);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.018);
}
.tp-neo-visual-grid {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: 76%;
  height: 67%;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(135deg, transparent 0, #000 38%, #000 100%);
  opacity: .22;
}
.tp-neo-hero-car {
  position: absolute;
  z-index: 2;
  right: -5%;
  bottom: 11%;
  display: block;
  width: min(670px, 114%);
  height: auto;
  filter: drop-shadow(0 28px 23px rgba(0,0,0,.35));
}
.tp-neo-visual-label {
  position: absolute;
  z-index: 3;
  top: 9%;
  left: 0;
  display: grid;
  gap: 8px;
  width: 142px;
  padding: 16px 15px;
  border-left: 2px solid var(--neo-red);
  background: rgba(22,22,22,.76);
  backdrop-filter: blur(8px);
}
.tp-neo-visual-label span,
.tp-neo-visual-foot span {
  color: #ef7078;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}
.tp-neo-visual-label strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: -.04em;
  line-height: 1.18;
}
.tp-neo-visual-foot {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 1%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 12px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(20,20,20,.78);
  backdrop-filter: blur(8px);
}
.tp-neo-visual-foot b {
  grid-row: span 2;
  color: #fff;
  font-size: 25px;
  letter-spacing: -.07em;
}
.tp-neo-visual-foot small {
  color: rgba(255,255,255,.5);
  font-size: 9px;
}
.tp-neo-trip-panel {
  display: grid;
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: stretch;
  padding: 23px 25px;
  background: #fff;
  color: var(--neo-ink);
}
.tp-neo-trip-intro {
  display: grid;
  align-content: center;
  gap: 9px;
  padding-right: 18px;
  border-right: 1px solid var(--neo-soft);
}
.tp-neo-trip-intro strong {
  font-size: 18px;
  letter-spacing: -.05em;
  line-height: 1.1;
}
.tp-neo-trip-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tp-neo-trip-links a {
  position: relative;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) 18px;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-content: center;
  padding: 5px 17px;
  border-left: 1px solid var(--neo-soft);
  color: var(--neo-ink);
}
.tp-neo-trip-links a:hover {
  color: var(--neo-red);
}
.tp-neo-trip-links a > span {
  grid-row: span 2;
  color: var(--neo-red);
  font-size: 10px;
  font-weight: 800;
}
.tp-neo-trip-links b {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.tp-neo-trip-links small {
  color: #908a81;
  font-size: 9px;
  line-height: 1.35;
}
.tp-neo-trip-links i {
  grid-row: span 2;
  align-self: center;
  color: var(--neo-red);
  font-size: 18px;
  font-style: normal;
}
.tp-neo-benefits {
  border-bottom: 1px solid var(--neo-soft);
  background: #fff;
}
.tp-neo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tp-neo-benefits article {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 13px;
  min-height: 124px;
  align-content: center;
  padding: 19px 25px 19px 0;
}
.tp-neo-benefits article + article {
  padding-left: 25px;
  border-left: 1px solid var(--neo-soft);
}
.tp-neo-benefits article > span {
  color: var(--neo-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}
.tp-neo-benefits strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: -.025em;
}
.tp-neo-benefits p {
  max-width: 250px;
  margin: 0;
  color: #938d84;
  font-size: 10px;
  line-height: 1.5;
}
.tp-neo-section {
  padding-top: clamp(74px, 9vw, 116px);
  padding-bottom: clamp(74px, 9vw, 116px);
}
.tp-neo-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
.tp-neo-section-head h2 {
  max-width: 620px;
  margin: 13px 0 0;
  color: var(--neo-ink);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .94;
}
.tp-neo-section-side {
  padding-bottom: 4px;
}
.tp-neo-section-side p {
  max-width: 360px;
  margin: 0 0 20px;
  color: var(--neo-muted);
  font-size: 13px;
  line-height: 1.7;
}
.tp-neo-text-link,
.tp-neo-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--neo-red);
  font-size: 11px;
  font-weight: 800;
  transition: gap .18s ease, color .18s ease;
}
.tp-neo-text-link:hover,
.tp-neo-card-link:hover {
  gap: 15px;
  color: var(--neo-red-dark);
}
.tp-neo-fleet {
  background: #fff;
}
.tp-neo-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}
.tp-neo-fleet-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--neo-soft);
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tp-neo-fleet-card:hover {
  border-color: #d4c5b0;
  box-shadow: 0 18px 40px rgba(38,27,16,.1);
  transform: translateY(-4px);
}
.tp-neo-fleet-media {
  position: relative;
  display: grid;
  min-height: 206px;
  place-items: center;
  overflow: hidden;
  background: #f6f6f4;
}
.tp-neo-fleet-media::after {
  position: absolute;
  right: 13%;
  bottom: 20px;
  left: 13%;
  height: 1px;
  background: #d8d5d0;
  content: "";
}
.tp-neo-fleet-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 91%;
  height: 175px;
  object-fit: contain;
  transition: transform .3s ease;
}
.tp-neo-fleet-card:hover .tp-neo-fleet-image {
  transform: scale(1.04);
}
.tp-neo-fleet-index {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 15px;
  color: var(--neo-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}
.tp-neo-fleet-arrow {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--neo-soft);
  border-radius: 50%;
  background: #fff;
  color: var(--neo-red);
  font-size: 15px;
}
.tp-neo-fleet-body {
  padding: 19px 18px 19px;
}
.tp-neo-fleet-category {
  color: #a4988a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}
.tp-neo-fleet-body h3 {
  margin: 8px 0 9px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: 1;
}
.tp-neo-fleet-body p {
  min-height: 42px;
  margin-bottom: 17px;
  color: var(--neo-muted);
  font-size: 10px;
  line-height: 1.55;
}
.tp-neo-airport {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: stretch;
  background: var(--neo-paper);
}
.tp-neo-airport-media {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background: #e8e1d5;
}
.tp-neo-airport-media::before {
  position: absolute;
  inset: 13% 10%;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  content: "";
}
.tp-neo-airport-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(86%, 610px);
  height: 340px;
  object-fit: contain;
}
.tp-neo-airport-code {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 23px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: rgba(21,21,21,.79);
  color: #fff;
  text-align: center;
}
.tp-neo-airport-code b {
  font-size: 21px;
  letter-spacing: -.06em;
}
.tp-neo-airport-code small {
  color: #e1b96d;
  font-size: 7px;
  letter-spacing: .14em;
}
.tp-neo-airport-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(45px, 7vw, 88px);
}
.tp-neo-airport-copy h2 {
  max-width: 500px;
  margin: 14px 0 19px;
  font-size: clamp(35px, 4.5vw, 61px);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .95;
}
.tp-neo-airport-copy p {
  max-width: 465px;
  margin-bottom: 22px;
  color: var(--neo-muted);
  font-size: 13px;
  line-height: 1.75;
}
.tp-neo-airport-copy ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  color: #615b53;
  font-size: 11px;
  line-height: 1.45;
  list-style: none;
}
.tp-neo-airport-copy li {
  display: flex;
  align-items: start;
  gap: 9px;
}
.tp-neo-airport-copy li span {
  color: var(--neo-red);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}
.tp-neo-process {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(45px, 9vw, 130px);
  padding-top: clamp(76px, 9vw, 120px);
  padding-bottom: clamp(76px, 9vw, 120px);
}
.tp-neo-process-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #262626;
}
.tp-neo-process-photo {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.tp-neo-process-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55));
  content: "";
}
.tp-neo-process-stamp {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 3px;
  padding: 13px 15px;
  border-left: 2px solid var(--neo-red);
  background: rgba(20,20,20,.8);
  color: #fff;
}
.tp-neo-process-stamp b {
  font-size: 20px;
  letter-spacing: -.07em;
}
.tp-neo-process-stamp span {
  color: rgba(255,255,255,.58);
  font-size: 9px;
}
.tp-neo-process-copy h2 {
  max-width: 550px;
  margin: 14px 0 18px;
  font-size: clamp(35px, 4.6vw, 61px);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .95;
}
.tp-neo-process-copy > p {
  max-width: 470px;
  margin-bottom: 26px;
  color: var(--neo-muted);
  font-size: 13px;
  line-height: 1.75;
}
.tp-neo-process-copy ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tp-neo-process-copy li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}
.tp-neo-process-copy li > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--neo-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}
.tp-neo-process-copy li strong,
.tp-neo-process-copy li small {
  display: block;
}
.tp-neo-process-copy li strong {
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: -.02em;
}
.tp-neo-process-copy li small {
  max-width: 420px;
  color: #8b857d;
  font-size: 10px;
  line-height: 1.5;
}
.tp-neo-faq {
  display: grid;
  grid-template-columns: minmax(230px, .65fr) minmax(0, 1.35fr);
  gap: clamp(42px, 9vw, 145px);
  padding-top: 70px;
  padding-bottom: 80px;
  border-top: 1px solid var(--neo-soft);
}
.tp-neo-faq-heading h2 {
  margin: 14px 0 24px;
  font-size: clamp(35px, 4.4vw, 57px);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .95;
}
.tp-neo-faq-list {
  border-top: 1px solid var(--neo-soft);
}
.tp-neo-faq-list details {
  border-bottom: 1px solid var(--neo-soft);
}
.tp-neo-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: var(--neo-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}
.tp-neo-faq-list summary::-webkit-details-marker {
  display: none;
}
.tp-neo-faq-list summary b {
  color: var(--neo-red);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  transition: transform .18s ease;
}
.tp-neo-faq-list details[open] summary b {
  transform: rotate(45deg);
}
.tp-neo-faq-list details p {
  max-width: 650px;
  margin: -2px 35px 19px 0;
  color: var(--neo-muted);
  font-size: 11px;
  line-height: 1.7;
}
.tp-neo-final {
  background: var(--neo-red);
  color: #fff;
}
.tp-neo-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 55px;
  padding-bottom: 55px;
}
.tp-neo-final .tp-neo-kicker {
  color: rgba(255,255,255,.72);
}
.tp-neo-final h2 {
  margin: 11px 0 10px;
  color: #fff;
  font-size: clamp(38px, 5vw, 65px);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .92;
}
.tp-neo-final p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.tp-neo-final-actions {
  display: grid;
  justify-items: start;
  gap: 17px;
  flex: 0 0 auto;
}
.tp-neo-final-phone {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* Les liens utiles doivent rester lisibles sur desktop comme sur mobile. */
.site-page > footer.site-footer-modern .tp-footer-simple-links a,
.site-page > footer.site-footer-modern .tp-footer-simple-contact-link,
.site-page > footer.site-footer-modern .tp-footer-simple-contact-link strong {
  font-size: 14px;
}

@media (max-width: 1050px) {
  .tp-neo-hero-layout {
    grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
    gap: 28px;
  }
  .tp-neo-hero-copy h1 {
    font-size: clamp(45px, 6.5vw, 70px);
  }
  .tp-neo-fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-neo-process {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .tp-neo-shell {
    width: min(100% - 32px, 620px);
  }
  .tp-neo-hero .tp-neo-shell {
    padding-top: 19px;
    padding-bottom: 36px;
  }
  .tp-neo-hero-meta {
    font-size: 9px;
  }
  .tp-neo-hero-meta span:last-child {
    display: none;
  }
  .tp-neo-hero-layout {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 43px;
    padding-bottom: 24px;
  }
  .tp-neo-hero-copy h1 {
    margin-top: 13px;
    font-size: clamp(51px, 14vw, 69px);
  }
  .tp-neo-hero-copy > p {
    font-size: 14px;
  }
  .tp-neo-actions {
    margin-top: 24px;
  }
  .tp-neo-hero-proof {
    margin-top: 28px;
  }
  .tp-neo-hero-visual {
    min-height: 340px;
    margin-top: 13px;
  }
  .tp-neo-visual-ring {
    top: 1%;
    right: 2%;
    width: 90%;
  }
  .tp-neo-hero-car {
    right: -9%;
    bottom: 11%;
    width: 112%;
  }
  .tp-neo-visual-label {
    top: 8%;
    width: 132px;
    padding: 13px 12px;
  }
  .tp-neo-visual-label strong {
    font-size: 12px;
  }
  .tp-neo-visual-foot {
    right: 0;
    bottom: 0;
    padding: 10px 12px;
  }
  .tp-neo-visual-foot b {
    font-size: 21px;
  }
  .tp-neo-trip-panel {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 20px 17px 14px;
  }
  .tp-neo-trip-intro {
    padding-right: 0;
    padding-bottom: 15px;
    border-right: 0;
    border-bottom: 1px solid var(--neo-soft);
  }
  .tp-neo-trip-intro strong {
    font-size: 17px;
  }
  .tp-neo-trip-links {
    grid-template-columns: 1fr;
  }
  .tp-neo-trip-links a {
    min-height: 53px;
    padding: 9px 0;
    border-left: 0;
    border-bottom: 1px solid var(--neo-soft);
  }
  .tp-neo-trip-links a:last-child {
    border-bottom: 0;
  }
  .tp-neo-benefits-grid {
    grid-template-columns: 1fr;
  }
  .tp-neo-benefits article,
  .tp-neo-benefits article + article {
    min-height: 91px;
    padding: 17px 0;
    border-left: 0;
  }
  .tp-neo-benefits article + article {
    border-top: 1px solid var(--neo-soft);
  }
  .tp-neo-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .tp-neo-section-head {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-bottom: 27px;
  }
  .tp-neo-section-head h2 {
    font-size: clamp(43px, 12vw, 61px);
  }
  .tp-neo-section-side p {
    font-size: 12px;
  }
  .tp-neo-fleet-grid {
    gap: 15px;
  }
  .tp-neo-fleet-media {
    min-height: 182px;
  }
  .tp-neo-fleet-image {
    height: 154px;
  }
  .tp-neo-fleet-body {
    padding: 16px 15px 17px;
  }
  .tp-neo-fleet-body h3 {
    font-size: 21px;
  }
  .tp-neo-fleet-body p {
    min-height: 0;
  }
  .tp-neo-airport {
    grid-template-columns: 1fr;
  }
  .tp-neo-airport-media {
    min-height: 295px;
  }
  .tp-neo-airport-image {
    width: min(88%, 480px);
    height: 255px;
  }
  .tp-neo-airport-code {
    right: 17px;
    bottom: 17px;
    width: 70px;
    height: 70px;
  }
  .tp-neo-airport-code b {
    font-size: 17px;
  }
  .tp-neo-airport-copy {
    padding: 51px max(16px, calc((100% - 620px) / 2));
  }
  .tp-neo-airport-copy h2 {
    font-size: clamp(39px, 11vw, 58px);
  }
  .tp-neo-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .tp-neo-process-image,
  .tp-neo-process-photo {
    min-height: 290px;
    height: 290px;
  }
  .tp-neo-process-copy h2 {
    font-size: clamp(39px, 11vw, 58px);
  }
  .tp-neo-faq {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 59px;
    padding-bottom: 68px;
  }
  .tp-neo-faq-heading h2 {
    font-size: clamp(39px, 11vw, 58px);
  }
  .tp-neo-final-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .tp-neo-final h2 {
    font-size: clamp(43px, 12vw, 61px);
  }
  .tp-neo-final-actions {
    width: 100%;
  }
  .site-page > footer.site-footer-modern .tp-footer-simple-links a,
  .site-page > footer.site-footer-modern .tp-footer-simple-contact-link,
  .site-page > footer.site-footer-modern .tp-footer-simple-contact-link strong {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .tp-neo-actions,
  .tp-neo-actions .tp-neo-button {
    width: 100%;
  }
  .tp-neo-fleet-grid {
    grid-template-columns: 1fr;
  }
  .tp-neo-fleet-media {
    min-height: 205px;
  }
  .tp-neo-fleet-image {
    height: 176px;
  }
  .tp-neo-hero-visual {
    min-height: 300px;
  }
  .tp-neo-hero-car {
    bottom: 13%;
  }
}

@media (max-width: 700px) {
  .pwa-action-button b { font-size: 16px; }
  .pwa-action-button small { font-size: 11px; }
}

/* Navigation rapide du PWA : les cartes du résumé pointent vers leur
   section respective et restent visuellement des cartes, pas des liens. */
.pwa-summary-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.pwa-summary-card:hover {
  color: inherit;
  border-color: #d7d0c8;
  box-shadow: 0 11px 28px rgba(29, 22, 16, .08);
  transform: translateY(-1px);
}
.pwa-summary-card:focus-visible {
  outline: 3px solid rgba(201, 31, 43, .28);
  outline-offset: 3px;
}
#pwa-pending-section,
#pwa-payment-section,
#pwa-confirmed-section,
#pwa-decisions-section { scroll-margin-top: 20px; }

/* Suivi PWA compact : les blocs secondaires ne doivent pas allonger l'écran
   principal. Le contenu reste accessible dans une liste défilante lorsqu'un
   panneau est ouvert. */
.pwa-collapsible-history {
  gap: 0;
}
.pwa-collapsible-history > summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 2px 12px;
  cursor: pointer;
  list-style: none;
}
.pwa-collapsible-history > summary::-webkit-details-marker {
  display: none;
}
.pwa-collapsible-history > summary:focus-visible {
  outline: 3px solid rgba(201, 31, 43, .28);
  outline-offset: 4px;
  border-radius: 5px;
}
.pwa-collapsible-history .pwa-section-heading-copy {
  display: grid;
  gap: 0;
  min-width: 0;
  color: #292623;
  font-size: initial;
}
.pwa-collapsible-history .pwa-section-title {
  display: block;
  margin-top: 7px;
  color: #222;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.pwa-collapsible-history .pwa-section-heading-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #948d86;
  font-size: 13px;
  white-space: nowrap;
}
.pwa-collapsible-history .pwa-section-heading-count b {
  display: inline-block;
  color: var(--red);
  font-size: 21px;
  line-height: 1;
  transition: transform .18s ease;
}
.pwa-collapsible-history[open] .pwa-section-heading-count b {
  transform: rotate(180deg);
}
.pwa-collapsible-history[open] .pwa-history-list {
  max-height: min(420px, 55vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 760px) {
  .pwa-collapsible-history > summary {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }
  .pwa-collapsible-history .pwa-section-title {
    font-size: 24px;
  }
}

/* Refonte demandée du footer public : une structure courte, lisible et
   directement utile au client, avec les moyens de paiement bien visibles. */
.site-page > footer.site-footer-modern {
  width: 100%;
  padding: 0;
  border-top: 0;
  background: #151515;
  color: #fff;
  text-align: left;
}
.site-page > footer.site-footer-modern .tp-footer-shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 43px 0 19px;
}
.tp-footer-simple-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .75fr) minmax(210px, 1fr);
  gap: 42px;
  padding-bottom: 32px;
}
.tp-footer-simple-brand,
.tp-footer-simple-links,
.tp-footer-simple-contact {
  min-width: 0;
}
.tp-footer-simple-brand .tp-footer-logo-link {
  margin-bottom: 15px;
}
.tp-footer-simple-brand .tp-footer-logo {
  max-width: 170px;
  max-height: 68px;
}
.tp-footer-simple-brand p {
  max-width: 330px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.65;
}
/* Accueil multilingue : coordonnées visibles sous la présentation de l’agence. */
.tp-footer-simple-brand-contact {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.tp-footer-simple-brand-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.45;
}
.tp-footer-simple-brand-contact-link:hover {
  color: #fff;
}
.tp-footer-simple-brand-contact-link svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tp-footer-simple-links,
.tp-footer-simple-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}
.tp-footer-simple-heading {
  display: block;
  margin-bottom: 5px;
  color: #d7b26a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tp-footer-simple-links a,
.tp-footer-simple-contact-link {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.45;
  transition: color .18s ease;
}
.tp-footer-simple-links a:hover,
.tp-footer-simple-contact-link:hover {
  color: #fff;
}
.tp-footer-simple-contact-link span,
.tp-footer-simple-contact-link strong {
  display: block;
}
.tp-footer-simple-contact-link span {
  margin-bottom: 1px;
  color: rgba(255,255,255,.43);
  font-size: 10px;
}
.tp-footer-simple-contact-link strong {
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.tp-footer-simple-address {
  color: rgba(255,255,255,.43);
  font-size: 10px;
  line-height: 1.45;
}
.tp-footer-simple-whatsapp strong {
  color: #77d5a8;
}
.tp-footer-simple-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.tp-footer-payment {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.tp-footer-payment img {
  display: block;
  width: min(280px, 100%);
  height: auto;
  max-height: 42px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}
.tp-footer-simple-bottom > p {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}
.tp-footer-simple-bottom sup {
  font-size: .7em;
}

/* Footer public multilingue : retirer la colonne Contact et placer les liens utiles à droite. */
.site-page > footer.site-footer-modern .tp-footer-simple-main {
  grid-template-columns: minmax(260px, 1.35fr) minmax(210px, .75fr);
}
.site-page > footer.site-footer-modern .tp-footer-simple-contact {
  display: none;
}

/* Header mobile : le logo et le bouton sont désormais dans deux colonnes
   stables, sans chevauchement ni grande bande blanche inutile. */
@media (max-width: 760px) {
  .site-page > footer.site-footer-modern .tp-footer-shell {
    width: min(100% - 32px, 620px);
    padding-top: 34px;
    padding-bottom: 18px;
  }
  .tp-footer-simple-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 28px;
  }
  .tp-footer-simple-links a,
  .tp-footer-simple-contact-link,
  .tp-footer-simple-address {
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .tp-footer-simple-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .tp-footer-payment {
    width: 100%;
  }
  .tp-footer-payment img {
    width: min(280px, 100%);
    max-height: none;
  }
  .tp-footer-simple-bottom > p {
    text-align: left;
  }

  .site-page > footer.site-footer-modern .tp-footer-simple-main {
    grid-template-columns: 1fr;
  }

  .public-site-header .site-contact-bar,
  .public-site-header .site-contact-inner {
    min-height: 45px;
  }
  .public-site-header .site-contact-inner {
    width: 100%;
    max-width: none;
    padding: 0 16px;
    gap: 7px;
    font-size: 12px;
  }
  .public-site-header .site-contact-phone-icon {
    width: 22px;
    height: 22px;
  }
  .public-site-header .site-contact-phone-icon svg {
    width: 14px;
    height: 14px;
  }
  .public-site-header .site-contact-label,
  .public-site-header .site-contact-phone {
    white-space: nowrap;
  }
  .public-site-header .site-contact-phone {
    font-size: 12px;
  }
  .public-site-header .site-contact-spacer {
    display: none;
  }
  .public-site-header .site-socials {
    gap: 8px;
    margin-left: auto;
  }
  .public-site-header .site-socials a,
  .public-site-header .site-socials svg {
    width: 21px;
    height: 21px;
  }
  .public-site-header .site-main-bar {
    width: 100%;
    max-width: none;
    min-height: 78px;
    margin: 0;
    padding: 9px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }
  .public-site-header .site-main-bar .brand {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .public-site-header .site-main-bar .brand-logo {
    width: auto;
    max-width: 145px;
    max-height: 56px;
  }
  .public-site-header .site-main-bar .public-nav {
    width: auto;
    min-width: 0;
    margin: 0;
    justify-content: flex-end;
    gap: 0;
  }
  .public-site-header .site-main-bar .public-nav .public-vehicles-link {
    display: none !important;
  }
  .public-site-header .site-main-bar .public-nav .public-cta {
    min-width: 0;
    max-width: 180px;
    min-height: 44px !important;
    padding: 10px 13px !important;
    gap: 6px;
    font-size: 13px !important;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
  .public-site-header .site-main-bar .public-nav .public-cta span[aria-hidden="true"] {
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .public-site-header .site-contact-label {
    display: none;
  }
  .public-site-header .site-contact-phone {
    font-size: 12px;
  }
  .public-site-header .site-main-bar {
    min-height: 74px;
    padding: 8px 12px;
    gap: 9px;
  }
  .public-site-header .site-main-bar .brand-logo {
    max-width: 128px;
    max-height: 52px;
  }
  .public-site-header .site-main-bar .public-nav .public-cta {
    max-width: 165px;
    min-height: 42px !important;
    padding: 9px 10px !important;
    font-size: 12px !important;
  }
}
@media (max-width: 360px) {
  .public-site-header .site-contact-inner {
    padding-right: 12px;
    padding-left: 12px;
  }
  .public-site-header .site-main-bar .brand-logo {
    max-width: 113px;
  }
  .public-site-header .site-main-bar .public-nav .public-cta {
    max-width: 150px;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
}

/* Pages éditoriales françaises : une mise en page magazine légère, lisible
   sur mobile et cohérente avec l’identité rouge, noire et dorée du site. */
.tp-seo-page-body {
  background: #f5f4f1;
}
.tp-seo-page-body > main {
  background: #f5f4f1;
}
.tp-seo-page {
  padding: 28px 0 92px;
  color: #171717;
}
.tp-seo-shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}
.tp-seo-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  color: #8b8781;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}
.tp-seo-breadcrumbs a {
  color: #b51e2a;
  text-decoration: none;
}
.tp-seo-breadcrumbs a:hover {
  text-decoration: underline;
}
.tp-seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, .65fr);
  gap: 48px;
  align-items: stretch;
  min-height: 370px;
  padding: clamp(34px, 5vw, 70px);
  border-radius: 3px;
  background: #151515;
  color: #fff;
  box-shadow: 0 20px 46px rgba(20, 17, 14, .12);
}
.tp-seo-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}
.tp-seo-kicker {
  color: #c8a264;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.tp-seo-hero h1 {
  max-width: 850px;
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.tp-seo-hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.65;
}
.tp-seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.tp-seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.tp-seo-button:hover {
  color: inherit;
  transform: translateY(-2px);
}
.tp-seo-button-primary {
  background: #d52332;
  color: #fff;
}
.tp-seo-button-primary:hover {
  background: #ec3544;
}
.tp-seo-button-secondary {
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.tp-seo-button-secondary:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
}
.tp-seo-hero-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 24px 0 0 28px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.tp-seo-hero-note span {
  margin-bottom: auto;
  color: #dfc184;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}
.tp-seo-hero-note strong {
  max-width: 245px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.15;
}
.tp-seo-hero-note small {
  margin-top: 20px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}
.tp-seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
  margin-top: 30px;
}
.tp-seo-article {
  overflow: hidden;
  border: 1px solid #e5e0d8;
  background: #fff;
}
.tp-seo-section {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 26px;
  padding: 38px 42px;
}
.tp-seo-section + .tp-seo-section {
  border-top: 1px solid #e8e4de;
}
.tp-seo-section-number {
  color: #d22231;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
}
.tp-seo-section h2 {
  margin: 0 0 14px;
  color: #191919;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.12;
}
.tp-seo-section p {
  max-width: 720px;
  margin: 0 0 12px;
  color: #6f6b66;
  font-size: 15px;
  line-height: 1.75;
}
.tp-seo-section p:last-child {
  margin-bottom: 0;
}
.tp-seo-section ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.tp-seo-section li {
  display: flex;
  gap: 10px;
  color: #393632;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}
.tp-seo-section li span {
  flex: 0 0 auto;
  color: #cf2331;
  font-weight: 800;
}
.tp-seo-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 20px;
}
.tp-seo-aside-card {
  padding: 30px 28px;
  background: #171717;
  color: #fff;
}
.tp-seo-aside-card h2 {
  margin: 18px 0 13px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.08;
}
.tp-seo-aside-card p {
  margin: 0 0 25px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.65;
}
.tp-seo-aside-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.tp-seo-aside-card a:hover {
  color: #ef5260;
}
.tp-seo-aside-list {
  padding: 25px 28px;
  border: 1px solid #e5e0d8;
  background: #efede8;
}
.tp-seo-aside-list > span {
  display: block;
  margin-bottom: 19px;
  color: #b1884c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tp-seo-aside-list strong {
  display: block;
  margin-top: 13px;
  color: #202020;
  font-size: 13px;
  font-weight: 800;
}
.tp-seo-aside-list p {
  margin: 4px 0 0;
  color: #77716a;
  font-size: 12px;
  line-height: 1.55;
}
.tp-seo-faq {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 42px;
  margin-top: 30px;
  padding: 38px 42px;
  border: 1px solid #e5e0d8;
  background: #fff;
}
.tp-seo-faq h2,
.tp-seo-related h2 {
  margin: 14px 0 0;
  color: #1b1b1b;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.05;
}
.tp-seo-faq-list {
  min-width: 0;
}
.tp-seo-faq details {
  border-top: 1px solid #e8e4de;
}
.tp-seo-faq details:last-child {
  border-bottom: 1px solid #e8e4de;
}
.tp-seo-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  color: #272522;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}
.tp-seo-faq summary::-webkit-details-marker {
  display: none;
}
.tp-seo-faq summary span {
  flex: 0 0 auto;
  color: #d22231;
  font-size: 22px;
  font-weight: 400;
}
.tp-seo-faq details[open] summary span {
  transform: rotate(45deg);
}
.tp-seo-faq details p {
  margin: -3px 0 17px;
  color: #77716a;
  font-size: 13px;
  line-height: 1.65;
}
.tp-seo-related {
  margin-top: 30px;
  padding: 38px 42px;
  background: #df2634;
  color: #fff;
}
.tp-seo-related .tp-seo-kicker {
  color: #ffdca1;
}
.tp-seo-related h2 {
  max-width: 630px;
  color: #fff;
}
.tp-seo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 31px;
}
.tp-seo-related-grid a {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.tp-seo-related-grid a:hover {
  background: rgba(0,0,0,.14);
  color: #fff;
  transform: translateY(-2px);
}
.tp-seo-related-grid a span {
  color: rgba(255,255,255,.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}
.tp-seo-related-grid a strong {
  margin-top: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.tp-seo-related-grid a b {
  align-self: flex-end;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 400;
}
.tp-seo-page a:focus-visible {
  outline: 3px solid rgba(210,34,49,.35);
  outline-offset: 3px;
}

/* Page 404 publique : garder le même langage visuel que les pages éditoriales
   sans transformer une URL inexistante en page indexable. */
.tp-404-page-body {
  background: #f5f4f1;
}
.tp-404-page-body > main {
  background: #f5f4f1;
}
.tp-404-page {
  padding: clamp(42px, 8vw, 108px) 0;
}
.tp-404-shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}
.tp-404-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: 48px;
  align-items: center;
  min-height: 430px;
  padding: clamp(34px, 6vw, 76px);
  background: #171717;
  color: #fff;
  box-shadow: 0 20px 46px rgba(20, 17, 14, .12);
}
.tp-404-copy {
  min-width: 0;
}
.tp-404-eyebrow {
  color: #dfc184;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
}
.tp-404-copy h1 {
  max-width: 780px;
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .98;
}
.tp-404-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.65;
}
.tp-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.tp-404-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.tp-404-button:hover {
  color: inherit;
  transform: translateY(-2px);
}
.tp-404-button-primary {
  background: #d52332;
}
.tp-404-button-primary:hover {
  background: #ec3544;
}
.tp-404-button-secondary {
  border-color: rgba(255,255,255,.28);
}
.tp-404-button-secondary:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
}
.tp-404-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 260px;
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.tp-404-mark span,
.tp-404-mark small {
  color: rgba(255,255,255,.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.tp-404-mark strong {
  margin: 14px 0 8px;
  color: #d52332;
  font-size: clamp(76px, 12vw, 150px);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .8;
}
.tp-404-discovery {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 42px;
  margin-top: 30px;
  padding: 38px 42px;
  background: #fff;
  color: #191919;
}
.tp-404-discovery-heading h2 {
  max-width: 380px;
  margin: 14px 0 14px;
  color: #191919;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.05;
}
.tp-404-discovery-heading p {
  max-width: 330px;
  margin: 0;
  color: #77716a;
  font-size: 13px;
  line-height: 1.65;
}
.tp-404-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.tp-404-help-link {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 136px;
  padding: 19px 20px;
  border: 1px solid #e5e0d8;
  color: #202020;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.tp-404-help-link:hover {
  border-color: #d52332;
  background: #fff8f8;
  color: #202020;
  transform: translateY(-2px);
}
.tp-404-help-link span {
  color: #202020;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.25;
}
.tp-404-help-link small {
  margin-top: 9px;
  color: #77716a;
  font-size: 12px;
  line-height: 1.5;
}
.tp-404-help-link b {
  align-self: flex-end;
  margin-top: auto;
  color: #d52332;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 700px) {
  .tp-404-shell {
    width: min(100% - 30px, 560px);
  }
  .tp-404-page {
    padding: 28px 0 56px;
  }
  .tp-404-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    min-height: 0;
    padding: 32px 24px;
  }
  .tp-404-copy h1 {
    font-size: clamp(36px, 11vw, 58px);
  }
  .tp-404-copy p {
    font-size: 14px;
  }
  .tp-404-actions {
    display: grid;
    width: 100%;
  }
  .tp-404-button {
    width: 100%;
  }
  .tp-404-mark {
    min-height: 150px;
    padding: 26px 0 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }
  .tp-404-discovery {
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
    padding: 27px 22px;
  }
  .tp-404-discovery-heading h2 {
    font-size: 29px;
  }
  .tp-404-help-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .tp-seo-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .tp-seo-hero-note {
    min-height: 150px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }
  .tp-seo-hero-note strong {
    max-width: 560px;
  }
  .tp-seo-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .tp-seo-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .tp-seo-shell {
    width: min(100% - 30px, 560px);
  }
  .tp-seo-page {
    padding-top: 20px;
    padding-bottom: 56px;
  }
  .tp-seo-breadcrumbs {
    margin-bottom: 16px;
    font-size: 10px;
  }
  .tp-seo-hero {
    min-height: 0;
    padding: 31px 25px;
  }
  .tp-seo-hero h1 {
    margin-top: 15px;
    font-size: clamp(31px, 9vw, 48px);
  }
  .tp-seo-hero-copy > p {
    font-size: 14px;
  }
  .tp-seo-actions {
    display: grid;
    width: 100%;
  }
  .tp-seo-button {
    width: 100%;
  }
  .tp-seo-section {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 28px 22px;
  }
  .tp-seo-section-number {
    font-size: 13px;
  }
  .tp-seo-section h2 {
    font-size: 23px;
  }
  .tp-seo-section p {
    font-size: 14px;
    line-height: 1.65;
  }
  .tp-seo-aside,
  .tp-seo-faq {
    grid-template-columns: minmax(0, 1fr);
  }
  .tp-seo-aside-card,
  .tp-seo-aside-list,
  .tp-seo-faq,
  .tp-seo-related {
    padding: 27px 22px;
  }
  .tp-seo-faq {
    gap: 25px;
  }
  .tp-seo-related-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .tp-seo-related-grid a {
    min-height: 120px;
  }
}

/* Pages SEO arabes uniquement : le RTL est limité au contenu SEO central.
   Le header et le footer conservent exactement la présentation du site. */
.tp-arabic-seo-page {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, sans-serif;
}

.tp-arabic-seo-page .tp-seo-breadcrumbs,
.tp-arabic-seo-page .tp-seo-hero,
.tp-arabic-seo-page .tp-seo-layout,
.tp-arabic-seo-page .tp-seo-faq,
.tp-arabic-seo-page .tp-seo-related {
  direction: rtl;
}

.tp-arabic-seo-page .tp-seo-actions {
  justify-content: flex-start;
  direction: rtl;
}

.tp-arabic-seo-page .tp-seo-button span,
.tp-arabic-seo-page .tp-seo-related-grid a b {
  display: inline-block;
  transform: scaleX(-1);
}

.tp-arabic-seo-page .tp-seo-section-number {
  direction: ltr;
  text-align: right;
}

.tp-arabic-seo-page .tp-seo-section li span {
  margin-left: 10px;
  margin-right: 0;
}

.tp-arabic-seo-page .tp-seo-faq summary span {
  margin-right: 16px;
  margin-left: 0;
}

/* Bouton WhatsApp public : animation discrète et infobulle uniquement au survol. */
.tp-floating-whatsapp {
  position: fixed;
  z-index: 1000;
  right: calc(24px + env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25d366;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(20, 70, 38, .25);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tp-floating-whatsapp::before {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37, 211, 102, .35);
  border-radius: 50%;
  content: '';
  animation: tp-whatsapp-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.tp-floating-whatsapp svg {
  position: relative;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.tp-floating-whatsapp:hover,
.tp-floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 70, 38, .32);
}

.tp-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  width: max-content;
  max-width: min(320px, calc(100vw - 120px));
  padding: 10px 14px;
  color: #292725;
  background: #fff;
  border: 1px solid rgba(41, 39, 37, .1);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 24, 22, .14);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity .18s ease, transform .18s ease;
  visibility: hidden;
}

.tp-floating-whatsapp:hover .tp-whatsapp-tooltip,
.tp-floating-whatsapp:focus-visible .tp-whatsapp-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
  visibility: visible;
}

@keyframes tp-whatsapp-pulse {
  0%, 100% { opacity: .75; transform: scale(.92); }
  60% { opacity: 0; transform: scale(1.18); }
}

@media (max-width: 700px) {
  .tp-floating-whatsapp {
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }

  .tp-floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }

  .tp-whatsapp-tooltip {
    display: none;
  }
}
