/* =================================================================
   100P LOCATION — SHARED STYLES (assurance / contact / conditions)
   Aligné sur le design d'index.html (tokens, typographie,
   booking bar, footer).
   ================================================================= */

:root {
  --bg:           #FBFBFA;
  --surface:      #FFFFFF;
  --surface-2:    #F4F1EA;
  --surface-3:    #EFEBE3;
  --ink:          #111111;
  --ink-soft:     #2F3437;
  --muted:        #787774;
  --muted-2:      #9B9A96;
  --line:         #EAEAEA;
  --line-soft:    rgba(17,17,17,.06);

  --accent:       #B5404A;
  --accent-2:     #9C2F38;
  --accent-soft:  #F8EDED;

  --pastel-green:    #EDF3EC;
  --pastel-green-tx: #4A7A4E;
  --pastel-sand:     #FBF3DB;
  --pastel-sand-tx:  #956400;
  --pastel-blue:     #E1F3FE;
  --pastel-blue-tx:  #1F6C9F;

  --serif:  'Newsreader', 'Instrument Serif', Georgia, serif;
  --sans:   'Geist', 'Helvetica Neue', system-ui, -apple-system, Segoe UI, sans-serif;
  --mono:   'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  --maxw:   1300px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease:   cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--bg); }

/* =================================================================
   AMBIENT
   ================================================================= */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .03;
  will-change: transform;
}
.ambient::before {
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  top: -20vmax;
  right: -10vmax;
  animation: drift1 32s ease-in-out infinite alternate;
}
.ambient::after {
  background: radial-gradient(circle, #C7A86B 0%, transparent 60%);
  bottom: -25vmax;
  left: -15vmax;
  animation: drift2 36s ease-in-out infinite alternate;
}
@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-8vmax, 6vmax) scale(1.1); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1.05); }
  to   { transform: translate(6vmax, -4vmax) scale(1); }
}

/* =================================================================
   SHELL & CONTAINER
   ================================================================= */
.shell { position: relative; z-index: 1; }
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(80px, 12vw, 140px); }
.section--tight { padding-block: clamp(56px, 7vw, 88px); }

/* =================================================================
   TYPOGRAPHY
   ================================================================= */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--muted-2);
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.04;
  color: var(--ink);
}
.display em { font-style: italic; font-weight: 500; color: var(--accent); }
h1.display { font-size: clamp(40px, 5.6vw, 76px); }
h2.display { font-size: clamp(30px, 4vw, 52px); }
h3.display { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -.02em; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
}
.body { max-width: 60ch; color: var(--ink-soft); }
.body + .body { margin-top: 14px; }
.meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s;
  will-change: transform;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: #2A2A2A; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn .arrow {
  width: 14px; height: 14px; flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

.ulink {
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 2px;
}
.ulink:hover { border-color: var(--ink); }
.ulink .arrow { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.ulink:hover .arrow { transform: translateX(3px); }

/* =================================================================
   TAGS
   ================================================================= */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
}
.tag--green { background: var(--pastel-green); color: var(--pastel-green-tx); }
.tag--sand  { background: var(--pastel-sand);  color: var(--pastel-sand-tx);  }
.tag--blue  { background: var(--pastel-blue);  color: var(--pastel-blue-tx);  }
.tag--accent{ background: var(--accent-soft);  color: var(--accent-2); }
.tag--ghost { border: 1px solid var(--line); color: var(--muted); }

/* =================================================================
   TOP NAV
   ================================================================= */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-block: 22px;
  background: var(--bg);
}
.topnav__inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}
.topnav__logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.04em;
  color: var(--ink);
  flex-shrink: 0;
}
.topnav__logo .accent-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  align-self: center;
  margin: 0 1px;
}
.topnav__logo .small {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
  align-self: stretch;
  display: inline-flex;
  align-items: center;
}
.topnav__links {
  display: flex;
  gap: clamp(18px, 2.5vw, 32px);
  margin-left: clamp(16px, 4vw, 56px);
  flex: 1;
}
.topnav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.topnav__links a:hover,
.topnav__links a.is-active { color: var(--accent-2); }
.topnav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.topnav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s;
}
.topnav__lang:hover { background: rgba(17,17,17,.04); }
.topnav__lang .flag {
  width: 16px; height: 12px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-flex;
  flex-shrink: 0;
}
.topnav__lang .flag span { flex: 1; height: 100%; }
.topnav__lang svg { width: 11px; height: 11px; opacity: .55; }
.topnav__user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .2s;
}
.topnav__user:hover { background: #2A2A2A; }
.topnav__user:active { transform: scale(.96); }
@media (max-width: 980px) { .topnav__links { display: none; } }

/* =================================================================
   PAGE HERO (court — pages secondaires)
   ================================================================= */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2) 0%, #ECE7DC 100%);
  padding-block: clamp(48px, 7vw, 96px) clamp(64px, 9vw, 120px);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.04;
  font-size: clamp(40px, 5.6vw, 76px);
  color: var(--ink);
  margin-top: 18px;
}
.page-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.page-hero__sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
}

/* =================================================================
   BOOKING BAR (sticky-on-scroll, dimensions inchangées)
   Sur les pages secondaires : centrée, max-width 1180px.
   ================================================================= */
.bb-host {
  position: relative;
  z-index: 9999;
  padding-inline: var(--gutter);
  margin-top: clamp(-72px, -6vw, -48px);
  padding-bottom: clamp(40px, 5vw, 72px);
}
#booking-bar {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1180px;
  z-index: 9999;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(17,17,17,.02),
    0 18px 50px rgba(17,17,17,.1);
}
#booking-bar.is-stuck {
  position: fixed;
  top: 28px;
  margin-top: 0;
  z-index: 9999;
}
.bb-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 18px;
  width: 100%;
  min-height: 108px;
}
.bb-place {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px 22px;
  flex: 0 0 260px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: text;
  transition: border-color .2s, background .2s;
  line-height: 1.2;
  margin-right: 18px;
}
.bb-place:hover { border-color: #DCDCDC; }
.bb-place:focus-within { border-color: var(--ink); }
.bb-place .bb-label {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
}
.bb-place .bb-input {
  font-size: 14px;
  color: var(--ink);
}
.bb-place .bb-input::placeholder { color: var(--muted-2); }
.bb-fields {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
}
.bb-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
  cursor: text;
  border-radius: 10px;
  transition: background .2s;
  line-height: 1.2;
}
.bb-field:hover { background: var(--surface-2); }
.bb-field:focus-within { background: var(--surface-2); }
.bb-divider {
  width: 1px;
  align-self: center;
  height: 38px;
  background: var(--line);
  flex-shrink: 0;
}
.bb-label {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  pointer-events: none;
  white-space: nowrap;
}
.bb-input,
.bb-select {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.2;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.bb-input::-webkit-calendar-picker-indicator { opacity: .35; cursor: pointer; }
.bb-input:focus::-webkit-calendar-picker-indicator { opacity: .7; }
.bb-input::placeholder { color: var(--muted-2); }
.bb-input[type="date"],
.bb-input[type="time"] { color: var(--muted); }
.bb-input[type="date"]:valid,
.bb-input[type="time"]:valid { color: var(--ink-soft); }

/* Select agence : caret minimaliste à droite */
.bb-place .bb-select {
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  padding-right: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23787774' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
}
.bb-place .bb-select.is-empty {
  color: var(--muted-2);
  font-weight: 400;
}
.bb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 0 28px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 18px;
  transition: background .2s, transform .25s var(--ease);
}
.bb-cta:hover { background: #2A2A2A; }
.bb-cta:active { transform: scale(.98); }
.bb-cta .arrow {
  width: 13px; height: 13px;
  transition: transform .3s var(--ease);
}
.bb-cta:hover .arrow { transform: translateX(3px); }
/* Zone tablette intermédiaire (769px–1140px) : flex-wrap pour éviter
   l'écrasement sans encore passer en mode mobile carte */
@media (min-width: 769px) and (max-width: 1140px) {
  .bb-wrap { flex-wrap: wrap; min-height: auto; padding: 14px; }
  .bb-place { flex: 1 1 100%; margin: 0 0 8px; }
  .bb-fields { width: 100%; flex-wrap: wrap; }
  .bb-field { flex: 1 1 calc(50% - 1px); }
  .bb-cta { width: 100%; margin: 12px 0 0; padding: 14px 22px; justify-content: center; }
}

/* Calendar dropdown — date + heure dans un seul popup ──────────── */
.bb-date-field { cursor: pointer; }
.bb-date-display {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bb-date-display.placeholder { color: var(--muted-2); }
.bb-field.is-open { background: var(--surface-2); }
.bb-cal-dropdown {
  position: fixed;
  z-index: 10000;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(17,17,17,.1);
  padding: 18px;
  width: 320px;
  display: none;
}
.bb-cal-dropdown.is-open { display: block; }
.bb-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.bb-cal-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -.01em;
  color: var(--ink);
  text-transform: capitalize;
}
.bb-cal-nav {
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1;
  transition: background .15s, border-color .2s;
}
.bb-cal-nav:hover { background: var(--surface-2); border-color: var(--line); }
.bb-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.bb-cal-dow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  padding: 4px 0 8px;
}
.bb-cal-day {
  font-family: var(--sans);
  font-size: 13.5px;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s, color .15s;
  color: var(--ink-soft);
}
.bb-cal-day:hover:not(.disabled):not(.selected):not(.empty) {
  background: var(--surface-2);
}
.bb-cal-day.disabled { color: var(--line); cursor: default; }
.bb-cal-day.selected {
  background: var(--ink);
  color: var(--bg);
  font-weight: 500;
}
.bb-cal-day.empty { cursor: default; }
.bb-cal-sep {
  height: 1px;
  background: var(--line);
  margin: 14px 0 12px;
}
.bb-cal-time-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.bb-cal-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.bb-cal-slot {
  font-family: var(--mono);
  font-size: 12px;
  text-align: center;
  padding: 7px 2px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.bb-cal-slot:hover:not(.selected) {
  background: var(--surface-2);
  border-color: #DCDCDC;
}
.bb-cal-slot.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* =================================================================
   SECTION HEADER
   ================================================================= */
.s-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.s-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.s-head--center .s-head__title { max-width: none; }
.s-head--center .lede { margin-inline: auto; }
@media (max-width: 800px) { .s-head { grid-template-columns: 1fr; gap: 18px; } }
.s-head__title { max-width: 14ch; }

/* =================================================================
   GENERIC CARD
   ================================================================= */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s var(--ease), border-color .2s;
}
.card:hover {
  box-shadow: 0 2px 14px rgba(17,17,17,.04);
  border-color: #DEDEDE;
}
.card__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-2);
  margin-bottom: 4px;
}
.card__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card__title { color: var(--ink); }
.card__text { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.card__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.45;
}
.card__list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =================================================================
   STEPS (numérotées)
   ================================================================= */
.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding-block: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (max-width: 800px) {
  .step { grid-template-columns: 1fr; gap: 14px; }
}
.step__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
  padding-top: 6px;
}
.step__title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  line-height: 1.15;
}
.step__body {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 50ch;
}
.step__list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
}
.step__list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =================================================================
   CTA STRIP
   ================================================================= */
.cta-strip {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip__title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--ink);
  line-height: 1.15;
}
.cta-strip__title em { font-style: italic; color: var(--accent); }
.cta-strip__sub {
  color: var(--muted);
  font-size: 15px;
  margin-top: 6px;
  max-width: 56ch;
}

/* =================================================================
   FOOTER
   ================================================================= */
footer.foot {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: 28px;
  background: #ECE7DC;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot__top { grid-template-columns: 1fr; } }
.foot__brand .topnav__logo { font-size: 22px; }
.foot__brand p { color: var(--muted); font-size: 14px; max-width: 38ch; margin-top: 16px; }
.foot__contact { margin-top: 18px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); display: flex; flex-direction: column; gap: 4px; }
.foot__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.foot__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot__col a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
.foot__col a:hover { color: var(--accent-2); }
.foot__bottom {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--muted);
  flex-wrap: wrap;
}
.foot__bottom a { color: var(--muted); transition: color .2s; }
.foot__bottom a:hover { color: var(--ink); }
.foot__legal { display: flex; gap: 22px; }

/* =================================================================
   REVEAL
   ================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ambient::before, .ambient::after { animation: none !important; }
}

/* =================================================================
   PAGE: ASSURANCE
   ================================================================= */
.assurance__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .assurance__grid { grid-template-columns: 1fr; } }

/* =================================================================
   PAGE: CONTACT
   ================================================================= */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 40px);
}
.form__title { color: var(--ink); }
.form__sub { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.form__row--full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .2s, background .2s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--surface);
}
.form__textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23787774' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
  padding-right: 38px;
  cursor: pointer;
}
.form__submit {
  margin-top: 22px;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  border: none;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .25s var(--ease);
}
.form__submit:hover { background: #2A2A2A; }
.form__submit:active { transform: scale(.99); }
.form__note { color: var(--muted); font-size: 12.5px; margin-top: 12px; }

.form__confirm {
  display: none;
  margin-top: 18px;
  padding: 18px;
  background: var(--pastel-green);
  border-radius: 12px;
  border: 1px solid rgba(74,122,78,.15);
}
.form__confirm.is-on { display: block; }
.form__confirm-title { font-family: var(--serif); font-weight: 500; font-size: 18px; color: var(--pastel-green-tx); }
.form__confirm-text { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

.contact__side { display: flex; flex-direction: column; gap: 16px; }
.agency {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agency__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.agency__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.agency__name {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.1;
}
.agency__detail {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.agency__detail-icon {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink-soft);
}
.agency__detail-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.agency__detail-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.agency__detail-text strong {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact__pulse {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
}
.contact__pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pastel-green-tx);
  box-shadow: 0 0 0 3px rgba(74,122,78,.16);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,122,78,.18); }
  50%      { box-shadow: 0 0 0 7px rgba(74,122,78,.04); }
}
.contact__pulse-text { font-size: 13.5px; color: var(--ink-soft); }

/* =================================================================
   PAGE: HORAIRES
   ================================================================= */
.schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .schedule { grid-template-columns: 1fr; } }

.schedule-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .25s var(--ease), border-color .2s;
}
.schedule-card:hover {
  box-shadow: 0 2px 14px rgba(17,17,17,.04);
  border-color: #DEDEDE;
}
.schedule-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.schedule-card__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.schedule-card__name {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--ink);
  line-height: 1.1;
  margin-top: 6px;
}
.schedule-card__address {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.schedule-card__address strong {
  display: block;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 4px;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table tr {
  border-bottom: 1px solid var(--line);
}
.schedule-table tr:last-child { border-bottom: none; }
.schedule-table tr.is-today { background: var(--accent-soft); }
.schedule-table td {
  padding: 13px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.schedule-table tr.is-today td {
  color: var(--accent-2);
  font-weight: 500;
  padding-left: 12px;
  padding-right: 12px;
}
.schedule-table td:first-child {
  font-family: var(--sans);
}
.schedule-table td:last-child {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .02em;
  text-align: right;
  color: var(--ink);
}
.schedule-table tr.day-closed td:last-child {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
}

.schedule-note {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.schedule-note__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-2);
}
.schedule-note__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.schedule-note__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.schedule-note__text {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.schedule-note__text strong {
  color: var(--ink-soft);
  font-weight: 500;
}

/* =================================================================
   PAGE: RESERVATION (détail véhicule + récap tarif)
   ================================================================= */
.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
  margin-block: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 28px);
}
.booking-back:hover { color: var(--ink); border-color: var(--ink); }
.booking-back svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.booking-back:hover svg { transform: translateX(-3px); }

.booking-notice {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 22px;
  background: var(--accent-soft);
  border: 1px solid rgba(181,64,74,.15);
  border-radius: 12px;
  margin-bottom: 22px;
  color: var(--accent-2);
  font-size: 14.5px;
  line-height: 1.5;
}
.booking-notice__icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 50%;
}
.booking-notice__icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.booking-notice__icon path,
.booking-notice__icon line,
.booking-notice__icon circle { stroke: var(--accent-2); }

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  padding-bottom: clamp(48px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 980px) {
  .booking { grid-template-columns: 1fr; }
}

/* Main column */
.booking-main { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

.booking-vehicle {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
@media (max-width: 700px) { .booking-vehicle { grid-template-columns: 1fr; } }
.booking-vehicle__media {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  display: grid;
  place-items: center;
  padding: 28px;
  min-height: 240px;
}
.booking-vehicle__media img,
.booking-vehicle__media svg { max-width: 320px; width: 100%; filter: saturate(.92); }
.booking-vehicle__body { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.booking-vehicle__title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--ink);
  line-height: 1.1;
}
.booking-vehicle__sub {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.booking-vehicle__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.booking-vehicle__spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.booking-vehicle__spec svg {
  width: 16px; height: 16px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Block "Inclus" */
.booking-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
}
.booking-block__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 16px;
}
.booking-included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}
@media (max-width: 700px) { .booking-included { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .booking-included { grid-template-columns: 1fr; } }
.booking-included li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.booking-included svg {
  width: 16px; height: 16px;
  stroke: var(--pastel-green-tx);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Upgrade card */
.booking-upgrade {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking-upgrade__head { display: flex; align-items: center; gap: 14px; }
.booking-upgrade__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  flex-shrink: 0;
}
.booking-upgrade__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.booking-upgrade__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.booking-upgrade__sub { font-size: 14px; color: var(--muted); margin-top: 2px; }
.booking-upgrade__card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
}
@media (max-width: 600px) {
  .booking-upgrade__card { grid-template-columns: 90px 1fr; }
  .booking-upgrade__card .booking-upgrade__select { grid-column: 1 / -1; width: 100%; justify-content: center; }
}
.booking-upgrade__media {
  width: 110px; height: 78px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 8px;
  flex-shrink: 0;
}
.booking-upgrade__media img,
.booking-upgrade__media svg { max-width: 100%; max-height: 100%; }
.booking-upgrade__name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.booking-upgrade__name-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.booking-upgrade__name-price {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.booking-upgrade__name-price strong { color: var(--accent-2); font-weight: 500; }
.booking-upgrade__select {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .25s var(--ease);
}
.booking-upgrade__select:hover { background: #2A2A2A; }
.booking-upgrade__select:active { transform: scale(.98); }

/* Cancellation policy / FAQ-like */
.booking-policy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px 28px;
}
.booking-policy details {
  border-bottom: 1px solid var(--line);
}
.booking-policy details:last-of-type { border-bottom: none; }
.booking-policy summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}
.booking-policy summary::-webkit-details-marker { display: none; }
.booking-policy summary:hover { color: var(--accent-2); }
.booking-policy summary .icon {
  width: 22px; height: 22px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .3s var(--ease);
}
.booking-policy summary .icon::before,
.booking-policy summary .icon::after {
  content: ""; position: absolute;
  left: 50%; top: 50%;
  background: var(--ink);
}
.booking-policy summary .icon::before {
  width: 8px; height: 1.4px;
  transform: translate(-50%, -50%);
}
.booking-policy summary .icon::after {
  width: 1.4px; height: 8px;
  transform: translate(-50%, -50%);
}
.booking-policy details[open] summary .icon { background: var(--ink); border-color: var(--ink); }
.booking-policy details[open] summary .icon::before { background: var(--bg); }
.booking-policy details[open] summary .icon::after { opacity: 0; }
.booking-policy__body {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Sidebar */
.booking-aside { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
}
.booking-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.booking-summary__line {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  position: relative;
}
.booking-summary__line + .booking-summary__line { border-top: 1px solid var(--line); }
.booking-summary__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 5px;
}
.booking-summary__line:last-child .booking-summary__dot { background: var(--ink); }
.booking-summary__place {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}
.booking-summary__date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.booking-summary__addr {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: .02em;
  margin-top: 4px;
  line-height: 1.4;
}
.booking-summary__addr[hidden] { display: none; }
.booking-summary__link {
  font-size: 12.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.booking-summary__link:hover { border-color: var(--ink); }

.booking-tariff__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.booking-tariff__row + .booking-tariff__row { border-top: 1px solid var(--line); }
.booking-tariff__row .info {
  display: inline-flex;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid var(--muted-2);
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: 10px;
  color: var(--muted);
  cursor: help;
}
.booking-tariff__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.booking-tariff__total-label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.booking-tariff__total-amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.booking-tariff__cta {
  margin-top: 20px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .25s var(--ease);
}
.booking-tariff__cta:hover { background: #2A2A2A; }
.booking-tariff__cta:active { transform: scale(.99); }
.booking-tariff__cta .arrow { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.booking-tariff__cta:hover .arrow { transform: translateX(3px); }
.booking-tariff__note {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: start;
}
.booking-tariff__note .info-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  border: 1px solid var(--muted-2);
  border-radius: 50%;
  font-size: 10px;
  margin-top: 2px;
}

/* Paiement à l'agence (remplace "Nous acceptons") */
.booking-payment {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}
.booking-payment__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--ink-soft);
  flex-shrink: 0;
}
.booking-payment__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.booking-payment__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
}
.booking-payment__text {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.45;
}

.booking-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.booking-quote__text {
  font-size: 14px;
  color: var(--muted);
}
.booking-quote__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.booking-quote__link:hover { opacity: .65; }

/* =================================================================
   PAGE: CONDITIONS
   ================================================================= */
.conditions__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* =================================================================
   PAGE: VEHICULES (résultats)
   ================================================================= */

/* Bandeau récap des critères, style "search summary" */
.results-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.results-bar__inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding-block: 18px;
  flex-wrap: wrap;
}
.results-bar__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.results-tab {
  width: 38px; height: 32px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.results-tab svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.results-tab:hover { color: var(--ink-soft); }
.results-tab.is-active { background: var(--ink); color: var(--bg); }

.results-summary {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}
.results-summary__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
  min-width: 0;
}
.results-summary__label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.results-summary__value {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.results-summary__item.is-editable {
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 14px;
  margin: -8px 0;
  transition: background .15s;
}
.results-summary__item.is-editable:hover,
.results-summary__item.is-editable.is-open,
.results-summary__item.is-editable:focus-within {
  background: var(--surface-2);
}
.results-summary__item.is-editable .bb-date-display {
  font-size: 14.5px;
  font-weight: 500;
}
.results-summary__input,
.results-summary__select {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
  width: 220px;
  max-width: 100%;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  cursor: pointer;
}
.results-summary__input::placeholder {
  color: var(--muted-2);
  font-weight: 400;
}
.results-summary__select {
  appearance: none;
  -webkit-appearance: none;
  width: auto;
  min-width: 180px;
  padding-right: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23787774' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
}
.results-summary__select.is-empty {
  color: var(--muted-2);
  font-weight: 400;
}
.results-bar__edit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13.5px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, transform .25s var(--ease);
}
.results-bar__edit:hover { background: #2A2A2A; }
.results-bar__edit:active { transform: scale(.98); }

/* Layout 2 col sidebar + main */
.results {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding-block: clamp(28px, 4vw, 44px);
}
@media (max-width: 980px) {
  .results { grid-template-columns: 1fr; }
}

/* Sidebar */
.results-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
  align-self: start;
}
@media (max-width: 980px) { .results-side { position: static; } }

.results-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(181,64,74,.06), transparent 60%),
    linear-gradient(135deg, #E8E5DD 0%, #D9D4C5 100%);
  border: 1px solid var(--line);
}
.results-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0;
  opacity: .5;
}
.results-map__pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  width: 28px; height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform-origin: center bottom;
  rotate: -45deg;
  box-shadow: 0 6px 16px rgba(181,64,74,.3);
}
.results-map__pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--surface);
}
.results-map__cta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--bg);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .25s var(--ease);
  white-space: nowrap;
}
.results-map__cta:hover { background: #2A2A2A; }
.results-map__cta:active { transform: translateX(-50%) scale(.97); }

.filter-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.filter-block__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.filter-block__group {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.filter-block__group:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.filter-block__label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.filter-select {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23787774' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  padding-right: 36px;
}
.filter-select:focus { outline: none; border-color: var(--ink); }

.filter-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.filter-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-soft);
  transition: background .15s;
}
.filter-list label:hover { background: var(--surface-2); }
.filter-list input[type="checkbox"],
.filter-list input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--muted-2);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
  position: relative;
}
.filter-list input[type="radio"] { border-radius: 50%; }
.filter-list input[type="checkbox"]:checked,
.filter-list input[type="radio"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.filter-list input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid var(--bg);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.filter-list input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg);
}
.filter-list .icon {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.filter-list .icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Main results column */
.results-main { min-width: 0; }
.results-header {
  margin-bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.results-header__title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--ink);
  line-height: 1.05;
}
.results-header__sub {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--muted);
}
.results-header__link {
  font-size: 13.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.results-header__link:hover { opacity: .65; }

/* Vehicle card */
.vehicle-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: box-shadow .25s var(--ease), border-color .2s;
}
.vehicle-card:hover {
  box-shadow: 0 2px 18px rgba(17,17,17,.05);
  border-color: #DEDEDE;
}
@media (max-width: 700px) {
  .vehicle-card { grid-template-columns: 1fr; }
}
.vehicle-card__media {
  position: relative;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  display: grid;
  place-items: center;
  padding: 24px;
  min-height: 220px;
}
.vehicle-card__media img,
.vehicle-card__media svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  filter: saturate(.92);
}
.vehicle-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent-2);
  padding: 5px 10px;
  border-radius: 9999px;
}
.vehicle-card__body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vehicle-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.vehicle-card__title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ink);
  line-height: 1.1;
}
.vehicle-card__sub {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.vehicle-card__price {
  text-align: right;
  flex-shrink: 0;
}
.vehicle-card__price-amount {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -.02em;
  color: var(--ink);
  font-weight: 500;
}
.vehicle-card__price-unit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 4px;
}
.vehicle-card__price-total {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted);
}
.vehicle-card__price-total s {
  color: var(--muted-2);
  margin-right: 4px;
}
.vehicle-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.vehicle-card__spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.vehicle-card__spec svg {
  width: 15px; height: 15px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.vehicle-card__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--pastel-green-tx);
}
.vehicle-card__check svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.vehicle-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.vehicle-card__select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13.5px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .25s var(--ease);
}
.vehicle-card__select:hover { background: #2A2A2A; }
.vehicle-card__select:active { transform: scale(.98); }
.vehicle-card__select .arrow {
  width: 12px; height: 12px;
  transition: transform .3s var(--ease);
}
.vehicle-card__select:hover .arrow { transform: translateX(3px); }

/* Supplément livraison affiché en mode delivery */
.vcard__price-add,
.vehicle-card__price-add {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent-2);
}

/* =================================================================
   PICKUP TOGGLE (vehicules.html : retrait / livraison)
   ================================================================= */
.pickup-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .pickup-toggle { grid-template-columns: 1fr; }
}
.pickup-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .25s var(--ease);
  min-height: 76px;
}
.pickup-tab:hover {
  border-color: #DCDCDC;
  box-shadow: 0 2px 12px rgba(17,17,17,.04);
}
.pickup-tab.is-active {
  border-color: var(--ink);
  background: var(--surface-2);
}
.pickup-tab__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pickup-tab.is-active .pickup-tab__icon { background: var(--surface); }
.pickup-tab > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.pickup-tab__label {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
}
.pickup-tab__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--muted);
}

/* =================================================================
   DELIVERY INFO (visible en mode delivery)
   ================================================================= */
.delivery-info {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 28px;
  background: var(--accent-soft);
  border: 1px solid rgba(181,64,74,.18);
  border-radius: 14px;
  margin-bottom: 24px;
}
.delivery-info[hidden] { display: none !important; }
.delivery-info__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  font-size: 22px;
  flex-shrink: 0;
}
.delivery-info__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.delivery-info__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.delivery-info__text strong { font-weight: 600; color: var(--ink); }
.delivery-info__list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.delivery-info__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.delivery-info__list svg {
  flex-shrink: 0;
  stroke: var(--accent-2);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 600px) {
  .delivery-info {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .delivery-info__icon { width: 40px; height: 40px; font-size: 18px; }
}

/* =================================================================
   RESPONSIVE — mobile / tablette / desktop
   Breakpoints : 480px / 600px / 700px / 768px / 900px / 980px
   ================================================================= */

/* Reset global anti-débordement (déjà partiellement en place) */
img, svg, video { max-width: 100%; height: auto; }

/* Hamburger menu mobile */
.topnav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  border-radius: 6px;
  transition: background .2s;
}
.topnav__burger:hover { background: var(--surface-2); }
.topnav__burger svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ─── Top nav : mobile ──────────────────────────────────────── */
@media (max-width: 980px) {
  .topnav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .topnav__right { margin-left: auto; }
  .topnav__inner { gap: 10px; }
  .topnav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 16px clamp(20px, 4vw, 56px);
    box-shadow: 0 8px 24px rgba(17,17,17,.08);
    margin-left: 0;
    gap: 14px;
    z-index: 60;
  }
  .topnav__links.open { display: flex; }
}
@media (max-width: 600px) {
  .topnav__lang { display: none; }
  .topnav__logo { font-size: 19px; }
  .topnav__logo .small { display: none; }
}

/* Placeholder universel pour préserver l'espace quand le bar est sticky */
.bb-placeholder {
  display: none;
  width: 100%;
  pointer-events: none;
}

/* ─── Mobile header (booking bar + results-bar) ─────────────── */
.bb-mobile-header {
  display: none;
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border: 1.5px solid rgba(17,17,17,.1);
  min-height: 52px;
  text-align: left;
}
.bb-mobile-header__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.bb-mobile-header.open .bb-mobile-header__icon {
  transform: rotate(180deg);
}

@keyframes bbSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Forcer le header caché sur desktop */
@media (min-width: 769px) {
  .bb-mobile-header { display: none !important; }
}

/* Booking bar : compact quand sticky sur mobile */
@media (max-width: 768px) {
  #booking-bar.is-stuck {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
  }
  #booking-bar.is-stuck .bb-mobile-header {
    display: flex;
    box-shadow: 0 4px 16px rgba(17,17,17,.1);
  }
  #booking-bar.is-stuck .bb-wrap {
    display: none;
    margin-top: 8px;
    padding: 16px;
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(17,17,17,.1);
    flex-direction: column;
    gap: 8px;
    animation: bbSlideDown .25s ease;
  }
  #booking-bar.is-stuck.expanded .bb-wrap {
    display: flex;
  }
  /* Pas stuck (mode carte normale) : header caché */
  #booking-bar:not(.is-stuck) .bb-mobile-header {
    display: none;
  }
}

/* Results-bar (vehicules + reservation) : compact toujours sur mobile */
@media (max-width: 768px) {
  .results-bar {
    background: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 8px;
  }
  .results-bar .bb-mobile-header {
    display: flex;
    box-shadow: 0 4px 16px rgba(17,17,17,.1);
  }
  .results-bar .results-bar__inner {
    display: none;
    margin-top: 8px;
    padding: 16px;
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(17,17,17,.1);
    flex-direction: column;
    gap: 8px;
    animation: bbSlideDown .25s ease;
  }
  .results-bar.expanded .results-bar__inner {
    display: flex;
  }
}

/* ─── Booking bar : carte verticale soignée sur mobile ─────── */
@media (max-width: 768px) {

  /* Sur les pages secondaires : retire le margin-top négatif */
  .bb-host {
    margin-top: 0 !important;
    padding-bottom: clamp(24px, 4vw, 40px);
  }

  #booking-bar {
    position: relative !important;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px 0 0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(17,17,17,.08);
  }

  #booking-bar.is-stuck {
    position: fixed !important;
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    width: calc(100% - 16px) !important;
    max-width: none !important;
    transform: none !important;
    max-height: calc(100vh - 16px);
    overflow-y: auto;
  }

  /* Container des champs : vertical, gap soigné */
  .bb-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    height: auto;
    min-height: 0;
    align-items: stretch;
  }

  /* Chaque champ : bloc carte avec bordure visible */
  .bb-place,
  .bb-field {
    width: 100%;
    flex: 1 1 100%;
    margin: 0;
    padding: 14px 16px;
    border: 1.5px solid rgba(17,17,17,.1);
    border-radius: 12px;
    background: var(--surface);
    transition: border-color .2s, background .2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
  }

  .bb-place:focus-within,
  .bb-field:focus-within {
    border-color: var(--ink);
    background: rgba(17,17,17,.02);
  }

  .bb-place .bb-label,
  .bb-field .bb-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,17,17,.55);
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.1;
  }

  .bb-place select,
  .bb-place input,
  .bb-field select,
  .bb-field input,
  .bb-field .bb-date-display {
    font-size: 15px;
    color: var(--ink);
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.3;
  }

  .bb-fields {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  /* Cache les dividers verticaux */
  .bb-divider { display: none; }

  /* Bouton CTA pleine largeur, bien dimensionné */
  .bb-cta {
    width: 100%;
    height: auto;
    margin: 4px 0 0;
    margin-left: 0;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

/* ─── Results-bar (vehicules.html, reservation.html) ────────── */
@media (max-width: 768px) {
  .results-bar { padding: 0; }
  .results-bar__inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .results-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
  }
  .results-summary__item {
    width: 100%;
    flex: 1 1 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(17,17,17,.1);
    border-radius: 12px;
    background: var(--surface);
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
  }
  .results-summary__item.is-editable {
    padding: 12px 14px;
    margin: 0;
  }
  .results-summary__item:focus-within {
    border-color: var(--ink);
    background: rgba(17,17,17,.02);
  }
  .results-summary__label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,17,17,.55);
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.1;
  }
  .results-summary__input,
  .results-summary__select,
  .results-summary__item .bb-date-display {
    font-size: 15px;
    color: var(--ink);
    width: 100%;
    background: transparent;
    line-height: 1.3;
  }
  .results-bar__tabs { align-self: flex-start; }
  .results-bar__edit {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    border-radius: 12px;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .bb-wrap,
  .results-bar__inner {
    padding: 12px;
  }
  .bb-place,
  .bb-field,
  .results-summary__item {
    padding: 12px 14px;
    min-height: 56px;
  }
  .bb-cta,
  .results-bar__edit {
    padding: 14px;
    font-size: 14px;
  }
}

/* ─── Page hero (pages secondaires) ─────────────────────────── */
@media (max-width: 768px) {
  .page-hero {
    padding-block: clamp(40px, 8vw, 72px) clamp(48px, 8vw, 80px);
  }
  .page-hero__title { font-size: clamp(34px, 9vw, 56px); }
  .page-hero__sub   { font-size: 15px; }
}

/* ─── Results bar (vehicules + reservation) ─────────────────── */
@media (max-width: 980px) {
  .results-bar__inner {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 14px;
  }
  .results-summary {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
  .results-summary__item {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }
  .results-bar__edit { width: 100%; min-height: 44px; }
}
@media (max-width: 480px) {
  .results-summary__item { flex: 1 1 100%; }
}

/* ─── Vehicules : sidebar order ─────────────────────────────── */
@media (max-width: 980px) {
  .results { grid-template-columns: 1fr; gap: 24px; }
  .results-side {
    order: -1;
    position: static;
    top: 0;
  }
}

/* ─── Vehicle card : stack mobile ───────────────────────────── */
@media (max-width: 700px) {
  .vehicle-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vehicle-card__media {
    aspect-ratio: 16/10;
    min-height: 200px;
  }
  .vehicle-card__body { padding: 20px; }
  .vehicle-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .vehicle-card__price { text-align: left; }
  .vehicle-card__specs { font-size: 13.5px; }
}
@media (max-width: 480px) {
  .vehicle-card__specs { grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .vehicle-card__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .vehicle-card__select { width: 100%; justify-content: center; }
}

/* ─── Reservation : layout mobile ───────────────────────────── */
@media (max-width: 980px) {
  .booking { grid-template-columns: 1fr; gap: 20px; }
  .booking-aside { position: static; }
}
@media (max-width: 700px) {
  .booking-vehicle { grid-template-columns: 1fr; }
  .booking-vehicle__specs { grid-template-columns: 1fr 1fr; }
  .booking-vehicle__media { min-height: 200px; padding: 20px; }
  .booking-card { padding: 20px; }
  .booking-tariff__total-amount { font-size: 24px; }
  .booking-included { grid-template-columns: 1fr 1fr; }
  .booking-upgrade__card {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
  .booking-upgrade__select {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .booking-included { grid-template-columns: 1fr; }
  .booking-vehicle__specs { grid-template-columns: 1fr; }
}

/* ─── Contact : layout + form ───────────────────────────────── */
@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
  .form-card { padding: 20px; }
  .agency { padding: 18px; }
}

/* ─── Schedule (horaires) ───────────────────────────────────── */
@media (max-width: 600px) {
  .schedule-card { padding: 22px; }
  .schedule-card__name { font-size: 24px; }
  .schedule-table td { font-size: 13.5px; padding: 10px 0; }
  .schedule-note { grid-template-columns: 1fr; gap: 10px; }
}

/* ─── Map ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .map-wrap { aspect-ratio: 16/10; }
}

/* ─── CTA strip + assurance grid ────────────────────────────── */
@media (max-width: 700px) {
  .cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 18px;
  }
  .cta-strip .btn { justify-content: center; }
}

/* ─── Footer bottom : stack center sur petit écran ──────────── */
@media (max-width: 480px) {
  .foot__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
}

/* ─── Globaux mobile : tailles de typo + touch targets ──────── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding-inline: 16px; }
  .section { padding-block: clamp(48px, 9vw, 96px); }

  /* Titres : présence renforcée sur mobile */
  h1.display { font-size: clamp(40px, 10vw, 56px); line-height: 1.05; }
  h2.display { font-size: clamp(30px, 7vw, 42px); line-height: 1.1; }
  h3.display { font-size: clamp(22px, 5.5vw, 28px); line-height: 1.2; }

  /* Titre principal des pages secondaires (page-hero) */
  .page-hero__title { font-size: clamp(36px, 8.5vw, 48px); line-height: 1.05; }

  /* Titre du véhicule sur reservation.html */
  .booking-vehicle__title { font-size: clamp(28px, 6.5vw, 36px); }

  /* Titre de la liste des véhicules sur vehicules.html */
  .results-header__title { font-size: clamp(28px, 6.5vw, 36px); line-height: 1.1; }

  /* Nom d'agence sur horaires.html */
  .schedule-card__name { font-size: clamp(26px, 6vw, 32px); }

  /* Nom d'agence sur contact.html */
  .agency__name { font-size: clamp(24px, 5.5vw, 30px); }

  /* Évite le zoom auto iOS sur focus */
  input, textarea, select,
  .bb-input, .bb-select,
  .form__input, .form__select, .form__textarea,
  .filter-select,
  .results-summary__input, .results-summary__select {
    font-size: 16px;
  }

  /* Touch target min 44px */
  .btn, .bb-cta, .vehicle-card__select, .booking-tariff__cta,
  .booking-upgrade__select, .results-bar__edit, .map-cta,
  .form__submit, .topnav__user, .topnav__burger {
    min-height: 44px;
  }
}

/* Calendar dropdown : pleine largeur disponible sur mobile */
@media (max-width: 480px) {
  .bb-cal-dropdown {
    width: calc(100vw - 24px) !important;
    left: 12px !important;
    right: 12px !important;
  }

  /* Titres : ajustement très petit écran */
  h1.display     { font-size: clamp(36px, 11vw, 48px); }
  h2.display     { font-size: clamp(28px, 7.5vw, 36px); }
  .page-hero__title { font-size: clamp(34px, 9.5vw, 44px); }
}
