/* ==========================================================================
   CARLOCA — carloca.fr
   Charte : fond #121212 · panneau #1C1C1C · ivoire #EFEDE6 · jaune #F5D90A
   Titres : Bricolage Grotesque · Texte : Space Grotesk
   ========================================================================== */

:root {
  --noir: #121212;
  --panneau: #1C1C1C;
  --ivoire: #EFEDE6;
  --ivoire-75: rgba(239, 237, 230, 0.75);
  --ivoire-65: rgba(239, 237, 230, 0.65);
  --ivoire-50: rgba(239, 237, 230, 0.5);
  --ivoire-40: rgba(239, 237, 230, 0.4);
  --jaune: #F5D90A;
  --bordure: rgba(239, 237, 230, 0.18);
  --bordure-claire: rgba(239, 237, 230, 0.15);
  --pad-x: clamp(16px, 4vw, 48px);
  --titres: 'Bricolage Grotesque', sans-serif;
  --texte: 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; }

/* overflow-x sur html (pas body) : body deviendrait le conteneur de
   défilement et les liens d'ancrage (#flotte, #faq…) ne défileraient plus */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--noir);
  color: var(--ivoire);
  font-family: var(--texte);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--jaune); text-decoration: none; }
a:hover { color: var(--ivoire); }
::selection { background: var(--jaune); color: var(--noir); }

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

@keyframes roadline { from { background-position-x: 0; } to { background-position-x: -120px; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px 20px;
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--bordure-claire);
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo-badge {
  background: var(--jaune); color: var(--noir);
  font-family: var(--titres); font-weight: 800; font-size: 20px;
  padding: 6px 12px; border-radius: 6px; letter-spacing: -0.02em;
}
.logo-texte {
  font-family: var(--titres); font-weight: 800; font-size: 20px;
  letter-spacing: -0.02em; color: var(--ivoire);
}
.logo-texte span { color: var(--jaune); }

.nav {
  display: flex; flex-wrap: wrap; gap: 2px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav a {
  color: var(--ivoire); padding: 10px 18px; border-radius: 999px;
  display: inline-flex; align-items: center; min-height: 44px; /* zone tactile */
}
.nav a:hover { background: rgba(239, 237, 230, 0.1); color: var(--jaune); }

.header-actions { display: flex; align-items: center; gap: 20px; }

/* Bouton burger — visible uniquement sur mobile */
.burger {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid rgba(239, 237, 230, 0.35); border-radius: 10px;
  cursor: pointer; transition: border-color 0.2s;
}
.burger:hover { border-color: var(--jaune); }
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--ivoire); border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Numéro de téléphone dans le menu mobile — masqué sur desktop
   (spécificité .nav a.nav-tel : doit battre .nav a { display:inline-flex }) */
.nav a.nav-tel { display: none; }
.header-tel { font-size: 14px; font-weight: 500; color: rgba(239, 237, 230, 0.6); white-space: nowrap; }
.header-tel:hover { color: var(--jaune); }
.lien-retour {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; min-height: 44px; /* zone tactile */
  margin-left: auto; /* reste calé à droite même en cas de repli */
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; /* zone tactile mobile */
  border: none; cursor: pointer;
  border-radius: 999px; font-family: var(--texte);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 26px; transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}
.btn-jaune { background: var(--jaune); color: var(--noir); }
.btn-jaune:hover { background: var(--ivoire); color: var(--noir); }
.btn-noir { background: var(--noir); color: var(--jaune); }
.btn-noir:hover { color: var(--ivoire); }
.btn-contour { background: transparent; border: 1px solid rgba(239, 237, 230, 0.35); color: var(--ivoire); }
.btn-contour:hover { border-color: var(--jaune); color: var(--jaune); }
.btn-grand { padding: 16px 36px; font-size: 15px; }

/* --------------------------------------------------------------------------
   Sections / titres
   -------------------------------------------------------------------------- */
.section { padding: clamp(48px, 8vw, 96px) var(--pad-x); }
.section-serree { padding: 0 var(--pad-x) clamp(48px, 8vw, 96px); }

.section-tete {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 12px 24px; margin-bottom: 56px;
}
.section-num { font-family: var(--titres); font-weight: 300; font-size: 20px; color: var(--jaune); }
.section-titre {
  font-family: var(--titres); font-weight: 800;
  font-size: clamp(34px, 6vw, 64px); letter-spacing: -0.03em;
  margin: 0; text-transform: uppercase;
}
.section-note { font-size: 15px; color: rgba(239, 237, 230, 0.6); margin-left: auto; }

.surtitre {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--jaune); margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Hero (accueil)
   -------------------------------------------------------------------------- */
.hero { position: relative; padding: clamp(32px, 6vw, 64px) var(--pad-x) 0; overflow: hidden; }
.hero-anim { animation: riseIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero-ligne1 {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-end; gap: 20px;
}
.hero-titre {
  font-family: var(--titres); font-weight: 800;
  font-size: clamp(44px, 11vw, 140px); line-height: 0.9;
  letter-spacing: -0.04em; margin: 0; text-transform: uppercase;
}
.hero-titre .point { color: var(--jaune); }
.hero-titre-contour {
  font-weight: 300; font-style: italic; margin-top: 4px;
  color: transparent; -webkit-text-stroke: 1.5px rgba(239, 237, 230, 0.85);
}
.hero-intro { max-width: 360px; padding-bottom: 16px; }
.hero-intro p { font-size: 17px; line-height: 1.55; color: rgba(239, 237, 230, 0.7); margin: 0 0 8px; text-wrap: pretty; }
.hero-tag { font-size: 13px; font-weight: 700; color: var(--jaune); letter-spacing: 0.08em; text-transform: uppercase; }

.roadline {
  height: 6px; margin: 44px 0 0;
  background-image: linear-gradient(90deg, var(--jaune) 0 60px, transparent 60px 120px);
  background-size: 120px 6px;
  animation: roadline 2.5s linear infinite;
}

.hero-visuel { position: relative; }
.hero-photo { height: clamp(240px, 45vw, 440px); overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.pastille-prix {
  position: absolute; right: clamp(12px, 3vw, 40px); top: -46px;
  background: var(--jaune); color: var(--noir); border-radius: 50%;
  width: clamp(104px, 14vw, 150px); height: clamp(104px, 14vw, 150px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; transform: rotate(8deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.pastille-prix strong { font-family: var(--titres); font-weight: 800; font-size: clamp(24px, 3vw, 34px); line-height: 1; }
.pastille-prix span { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* Barre de recherche rapide */
.barre-resa {
  position: relative; margin: -64px clamp(8px, 4vw, 48px) 0;
  background: var(--panneau); border: 1px solid var(--bordure);
  border-radius: 16px; padding: 12px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}
.barre-resa label {
  display: flex; flex-direction: column; gap: 5px;
  padding: 12px 16px; border-radius: 10px; min-width: 0;
}
.barre-resa label:hover { background: rgba(239, 237, 230, 0.06); }
.barre-resa label + label { border-left: 1px solid rgba(239, 237, 230, 0.14); }
.barre-resa .etiquette {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--jaune);
}
.barre-resa input, .barre-resa select {
  border: none; outline: none; background: transparent;
  width: 100%; min-width: 0; font-family: var(--texte);
  font-size: 16px; /* 16px mini : évite le zoom auto iOS au focus */
  font-weight: 500; color: var(--ivoire);
  padding: 0; color-scheme: dark;
}
.barre-resa button { border-radius: 10px; padding: 16px 34px; }

/* --------------------------------------------------------------------------
   Marquee villes
   -------------------------------------------------------------------------- */
.marquee-bloc { overflow: hidden; padding: 26px 0; border-bottom: 1px solid var(--bordure-claire); margin-top: 72px; }
.marquee-piste {
  display: flex; width: max-content;
  animation: marquee 24s linear infinite;
  font-family: var(--titres); font-weight: 800; font-size: 28px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.marquee-piste span { white-space: nowrap; }
.marquee-piste .etoile { color: var(--jaune); }

/* --------------------------------------------------------------------------
   Flotte
   -------------------------------------------------------------------------- */
.flotte-ligne {
  display: flex; flex-wrap: wrap; gap: 12px 32px; align-items: center;
  border-top: 1px solid var(--bordure); padding: 26px 8px;
  transition: background 0.2s, padding 0.2s;
  color: var(--ivoire);
}
/* Hover réservé aux pointeurs : évite le décalage « collant » au tap sur mobile */
@media (hover: hover) {
  .flotte-ligne:hover { background: rgba(245, 217, 10, 0.06); padding-left: 20px; color: var(--ivoire); }
}
.flotte-num { font-family: var(--titres); font-weight: 300; font-size: 30px; color: rgba(239, 237, 230, 0.45); }
.flotte-nom {
  font-family: var(--titres); font-weight: 800;
  font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em;
  margin: 0; text-transform: uppercase; width: min(260px, 100%);
}
.flotte-infos { flex: 1 1 240px; }
.flotte-modeles { font-size: 15px; color: var(--ivoire-75); margin-bottom: 6px; }
.flotte-specs { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(239, 237, 230, 0.45); }
.flotte-prix { text-align: right; margin-left: auto; }
.flotte-prix strong { font-family: var(--titres); font-weight: 800; font-size: 32px; }
.flotte-prix span { font-size: 14px; color: var(--ivoire-50); }
.flotte-fleche { font-family: var(--titres); font-weight: 300; font-size: 32px; color: var(--jaune); text-align: right; }
.flotte-fin { border-top: 1px solid var(--bordure); }

.tuiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 40px; }
.tuile { height: 240px; border-radius: 12px; overflow: hidden; position: relative; }
.tuile img { width: 100%; height: 100%; object-fit: cover; }
.tuile figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(18, 18, 18, 0.85); color: var(--ivoire);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Section VTC (fond jaune)
   -------------------------------------------------------------------------- */
.vtc { padding: clamp(48px, 8vw, 88px) var(--pad-x); background: var(--jaune); color: var(--noir); }
.vtc-grille {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.vtc .section-tete { margin-bottom: 32px; }
.vtc .section-num { color: var(--noir); }
.vtc .section-titre { line-height: 0.95; }
.vtc-texte { font-size: 18px; line-height: 1.6; margin: 0 0 32px; color: rgba(18, 18, 18, 0.8); max-width: 480px; text-wrap: pretty; }
.vtc-tarifs { display: flex; flex-direction: column; border-top: 2px solid var(--noir); max-width: 480px; }
.vtc-tarif {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-bottom: 2px solid var(--noir);
}
.vtc-tarif span { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.vtc-tarif strong { font-family: var(--titres); font-weight: 800; font-size: 30px; }
.vtc-photo { height: clamp(280px, 45vw, 480px); border-radius: 16px; overflow: hidden; border: 3px solid var(--noir); }
.vtc-photo img { width: 100%; height: 100%; object-fit: cover; }
.vtc .btn-noir { margin-top: 36px; }

/* --------------------------------------------------------------------------
   Étapes
   -------------------------------------------------------------------------- */
.etapes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.etape { border: 1px solid rgba(239, 237, 230, 0.2); border-radius: 16px; padding: 36px 32px; transition: border-color 0.2s; }
.etape:hover { border-color: var(--jaune); }
.etape-num { font-family: var(--titres); font-weight: 800; font-size: 64px; line-height: 1; color: var(--jaune); }
.etape h3 { font-size: 19px; font-weight: 700; margin: 20px 0 10px; text-transform: uppercase; letter-spacing: 0.02em; }
.etape p { font-size: 15px; line-height: 1.6; margin: 0; color: var(--ivoire-65); text-wrap: pretty; }

/* --------------------------------------------------------------------------
   Agence
   -------------------------------------------------------------------------- */
.agence-grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 16px; align-items: stretch; }
.agence-carte {
  background: var(--panneau); border: 1px solid var(--bordure);
  border-radius: 16px; padding: 44px 40px;
  display: flex; flex-direction: column;
}
.agence-carte .section-tete { margin-bottom: 28px; gap: 20px; }
.agence-carte .section-titre { font-size: 44px; }
.agence-infos { display: flex; flex-direction: column; gap: 22px; font-size: 16px; line-height: 1.5; }
.agence-libelle {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--jaune); margin-bottom: 6px;
}
.agence-actions { margin-top: auto; padding-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.agence-actions .btn { padding: 14px 28px; white-space: nowrap; }
.agence-photo { border-radius: 16px; overflow: hidden; min-height: 420px; }
.agence-photo img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   Avis
   -------------------------------------------------------------------------- */
.avis-grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.avis { margin: 0; border: 1px solid rgba(239, 237, 230, 0.2); border-radius: 16px; padding: 32px; }
.avis-etoiles { color: var(--jaune); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.avis blockquote { font-size: 17px; line-height: 1.55; margin: 0 0 20px; color: rgba(239, 237, 230, 0.85); text-wrap: pretty; }
.avis figcaption { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ivoire-50); }

/* --------------------------------------------------------------------------
   FAQ (details/summary)
   -------------------------------------------------------------------------- */
.faq-bloc { max-width: 900px; }
.faq-bloc .section-tete { margin-bottom: 48px; }
.faq-item { border-top: 1px solid rgba(239, 237, 230, 0.2); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; padding: 24px 0; list-style: none;
  font-size: 18px; font-weight: 700; color: var(--ivoire);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--titres); font-weight: 300;
  font-size: 30px; color: var(--jaune); flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  font-size: 16px; line-height: 1.65; color: var(--ivoire-65);
  margin: 0; padding: 0 clamp(8px, 6vw, 60px) 28px 0; text-wrap: pretty;
}
.faq-fin { border-top: 1px solid rgba(239, 237, 230, 0.2); }

/* --------------------------------------------------------------------------
   Bandeau CTA final
   -------------------------------------------------------------------------- */
.cta-bandeau {
  margin: 0 clamp(12px, 3vw, 24px); border-radius: 20px;
  background: var(--jaune); color: var(--noir);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-bandeau h2 {
  font-family: var(--titres); font-weight: 800;
  font-size: clamp(30px, 6vw, 60px); letter-spacing: -0.03em;
  margin: 0; line-height: 0.95; text-transform: uppercase;
}
.cta-bandeau-droite { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.cta-bandeau-note { font-size: 14px; font-weight: 500; color: rgba(18, 18, 18, 0.7); }
.cta-bandeau .btn-noir { padding: 18px 44px; font-size: 16px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { padding: clamp(48px, 7vw, 72px) var(--pad-x) 40px; }
.footer-grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 56px; }
.footer .logo { margin-bottom: 18px; }
.footer-texte { font-size: 15px; line-height: 1.6; color: rgba(239, 237, 230, 0.55); max-width: 320px; margin: 0; text-wrap: pretty; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer-col-titre {
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 13px; margin-bottom: 6px; color: var(--ivoire-50);
}
.footer-col a, .footer-col span { color: var(--ivoire-75); }
.footer-col a:hover { color: var(--jaune); }
.footer-bas {
  border-top: 1px solid var(--bordure-claire); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px 24px; font-size: 13px; color: var(--ivoire-40);
}
.footer-bas a { color: var(--ivoire-40); }
.footer-bas a:hover { color: var(--jaune); }
.footer-bas-liens { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-bas-liens a { display: inline-block; padding: 10px 0; margin: -10px 0; }

.footer-simple {
  border-top: 1px solid var(--bordure-claire);
  padding: 24px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: 13px; color: var(--ivoire-40);
}
.footer-simple a { color: var(--ivoire-40); }
.footer-simple a:hover { color: var(--jaune); }

/* --------------------------------------------------------------------------
   Pages intérieures (réservation, légal)
   -------------------------------------------------------------------------- */
.page { background: var(--noir); min-height: 100vh; display: flex; flex-direction: column; }

.page-legal { padding: clamp(40px, 7vw, 72px) var(--pad-x) 96px; max-width: 820px; flex: 1; }
.page-legal h1 {
  font-family: var(--titres); font-weight: 800;
  font-size: clamp(38px, 8vw, 64px); letter-spacing: -0.03em;
  margin: 0 0 48px; text-transform: uppercase; line-height: 0.95;
}
.page-legal h1.avec-date { margin-bottom: 12px; }
.date-vigueur { font-size: 14px; color: var(--ivoire-50); margin: 0 0 48px; }
.article { border-top: 1px solid rgba(239, 237, 230, 0.2); padding: 28px 0; }
.article:last-of-type { border-bottom: 1px solid rgba(239, 237, 230, 0.2); }
.article h2 { font-family: var(--titres); font-weight: 800; font-size: 24px; margin: 0 0 16px; text-transform: uppercase; }
.article p { font-size: 16px; line-height: 1.7; color: var(--ivoire-75); margin: 0; text-wrap: pretty; }
.article strong { color: var(--ivoire); }
.article em { color: var(--ivoire-50); }
.liens-legaux { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.liens-legaux .btn { font-size: 13px; padding: 12px 24px; letter-spacing: 0.06em; }

/* Réservation */
.page-resa {
  padding: clamp(32px, 6vw, 64px) var(--pad-x) 96px; flex: 1;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
}
.page-resa h1 {
  font-family: var(--titres); font-weight: 800;
  font-size: clamp(38px, 8vw, 64px); letter-spacing: -0.03em;
  margin: 0 0 20px; text-transform: uppercase; line-height: 0.95;
}
.resa-intro { font-size: 17px; line-height: 1.6; color: var(--ivoire-65); margin: 0 0 40px; max-width: 460px; text-wrap: pretty; }

.formulaire { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.form-ligne { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.champ { display: flex; flex-direction: column; gap: 6px; }
.champ > span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--jaune);
}
.champ input, .champ select, .champ textarea {
  background: var(--panneau); border: 1px solid rgba(239, 237, 230, 0.2);
  border-radius: 10px; padding: 14px 16px;
  font-family: var(--texte); font-size: 16px; /* 16px mini : évite le zoom auto iOS au focus */
  color: var(--ivoire);
  outline: none; min-width: 0; color-scheme: dark; width: 100%;
}
.champ input:focus, .champ select:focus, .champ textarea:focus { border-color: var(--jaune); }
.champ textarea { resize: vertical; }
.champ select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23EFEDE6' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.formulaire button[type="submit"] { border-radius: 10px; padding: 18px; font-size: 16px; margin-top: 8px; }
.form-note { font-size: 13px; color: rgba(239, 237, 230, 0.45); }
.form-erreur { color: #ff8f6b; font-size: 14px; font-weight: 500; display: none; }
.form-erreur.visible { display: block; }

.resa-colonne { display: flex; flex-direction: column; gap: 16px; }
.resa-photo { height: clamp(220px, 40vw, 340px); border-radius: 16px; overflow: hidden; }
.resa-photo img { width: 100%; height: 100%; object-fit: cover; }
.carte-info { background: var(--panneau); border: 1px solid var(--bordure); border-radius: 16px; padding: 32px 36px; }
.carte-info h2 { font-family: var(--titres); font-weight: 800; font-size: 22px; margin: 0 0 18px; text-transform: uppercase; }
.carte-info p { font-size: 15px; line-height: 1.6; color: var(--ivoire-65); margin: 0; }
.liste-inclus { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--ivoire-75); }
.liste-inclus > span { display: flex; align-items: flex-start; gap: 10px; }
.liste-inclus .coche { color: var(--jaune); flex-shrink: 0; }

/* Confirmation (merci.html) */
.bloc-merci {
  background: var(--jaune); color: var(--noir);
  border-radius: 16px; padding: 32px 36px; max-width: 520px;
}
.bloc-merci h1, .bloc-merci .merci-titre {
  font-family: var(--titres); font-weight: 800; font-size: clamp(22px, 7vw, 28px);
  margin: 0 0 10px; text-transform: uppercase; line-height: 1.05;
}
.bloc-merci p { font-size: 16px; line-height: 1.55; margin: 0; }
.bloc-merci a { color: var(--noir); text-decoration: underline; }

/* --------------------------------------------------------------------------
   Bandeau cookies (Consent Mode v2)
   -------------------------------------------------------------------------- */
.bandeau-cookies {
  position: fixed; left: 16px; right: 16px; z-index: 1000;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px)); /* barre gestuelle iPhone */
  background: var(--panneau); border: 1px solid var(--bordure);
  border-radius: 16px; padding: 22px 26px;
  display: none; flex-wrap: wrap; align-items: center; gap: 16px 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  max-width: 720px; margin: 0 auto;
}
.bandeau-cookies.visible { display: flex; }
.bandeau-cookies p { flex: 1 1 300px; font-size: 14px; line-height: 1.55; color: var(--ivoire-75); margin: 0; }
.bandeau-cookies-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.bandeau-cookies .btn { padding: 12px 22px; font-size: 13px; min-height: 44px; }

/* Réserve la place du bandeau tant qu'il est affiché (classe posée par js/main.js) */
body.avec-bandeau { padding-bottom: 150px; }

/* --------------------------------------------------------------------------
   Divers
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--jaune); color: var(--noir);
  padding: 12px 20px; font-weight: 700; z-index: 2000;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  /* Header compact : logo + Réserver + burger sur une ligne,
     menu déroulant plein écran en dessous quand le burger est ouvert */
  .header { gap: 10px 12px; padding: 12px 16px; }
  .burger { display: inline-flex; }
  .header .nav {
    order: 4; flex-basis: 100%;
    display: none; flex-direction: column; gap: 0;
    padding: 6px 0 2px;
  }
  .header.nav-ouverte .nav { display: flex; }
  .header .nav a {
    width: 100%; min-height: 48px;
    padding: 10px 6px; border-radius: 0;
    border-top: 1px solid var(--bordure-claire);
  }
  .header .nav .nav-tel { display: inline-flex; color: var(--jaune); font-weight: 700; }
  .header-actions { margin-left: auto; gap: 10px; }
  .header .btn { padding: 10px 16px; font-size: 13px; }
}

@media (max-width: 640px) {
  .header-tel { display: none; }
  .section-note { margin-left: 0; }
  .flotte-fleche { display: none; }

  /* Barre de recherche empilée : séparateurs horizontaux, pas verticaux */
  .barre-resa label + label { border-left: none; border-top: 1px solid rgba(239, 237, 230, 0.14); border-radius: 0; }
  .barre-resa { margin-top: -48px; }

  /* Pastille prix plus discrète pour ne pas déborder du visuel */
  .pastille-prix { top: -34px; }

  /* Cartes : paddings réduits en étroit */
  .agence-carte { padding: 32px 24px; }
  .agence-carte .section-titre { font-size: clamp(32px, 9vw, 44px); }
  .agence-photo { min-height: 0; aspect-ratio: 4 / 3; } /* évite le crop portrait sévère */
  .carte-info { padding: 26px 22px; }
  .avis { padding: 26px 22px; }
  .etape { padding: 28px 24px; }
  .bloc-merci { padding: 24px 20px; }

  /* CTA final : bouton pleine largeur, ne peut plus déborder du bandeau jaune */
  .cta-bandeau-droite { width: 100%; }
  .cta-bandeau .btn-noir { width: 100%; padding: 16px 24px; font-size: 14px; }

  /* Bandeau cookies compact : texte pleine largeur, boutons côte à côte ≥ 44px */
  .bandeau-cookies {
    left: 10px; right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 16px 18px; gap: 12px;
  }
  .bandeau-cookies p { font-size: 13px; flex-basis: 100%; }
  .bandeau-cookies-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  body.avec-bandeau { padding-bottom: 230px; }

  /* Marges des sections légales */
  .page-legal h1 { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  /* Header des pages intérieures : logo + « Retour à l'accueil » sur une seule ligne */
  .logo { gap: 10px; }
  .logo-badge { font-size: 16px; padding: 5px 9px; }
  .logo-texte { font-size: 16px; }
  .lien-retour { font-size: 11px; letter-spacing: 0.04em; }
}

@media (max-width: 420px) {
  /* Formulaire : un champ par ligne pour une saisie confortable */
  .form-ligne { grid-template-columns: 1fr; }

  /* Boutons côte à côte : pleine largeur empilés */
  .agence-actions .btn, .liens-legaux .btn { flex: 1 1 100%; }
}
