/* =========================================================================
   Taxi de France — styles.css  (v2 "Depart" : energique, vif, conversion)
   Reference : Kayak (bleu/orange, module central), G Adventures (chaleur, humain).
   Pile systeme, zero dependance, mobile-first, WCAG AA.
   1) Tokens  2) Reset/Base  3) Layout  4) Composants  5) Nouveaux  6) Utilitaires
   ========================================================================= */

/* =========================================================================
   1. TOKENS
   ========================================================================= */
:root {
  /* --- Neutres chauds --- */
  --bg:        #fbfaf8;
  --bg-tint:   #f1f4fb;   /* tint = bleu tres pale, plus vivant que creme */
  --surface:   #ffffff;
  --surface-2: #f7f5f2;
  --ink:       #16161a;
  --ink-2:     #44434b;
  --muted:     #6c6b75;
  --line:      #e7e4e9;
  --line-2:    #d4d1da;

  /* --- Bleu (marque) --- texte blanc AA --- */
  --brand:      #2f6bff;
  --brand-600:  #1f55e6;
  --brand-700:  #1745c4;
  --brand-ink:  #ffffff;
  --brand-soft: #e9f0ff;
  --brand-line: #c8dbff;

  /* --- Orange (accent energie) --- texte FONCE sur orange (AA) --- */
  --accent:      #ff6a2b;
  --accent-600:  #f0560f;
  --accent-deep: #b8430d;   /* texte orange lisible sur fond clair */
  --accent-soft: #fff0e7;
  --accent-line: #ffd4bd;
  --accent-ink:  #2a1206;   /* encre foncee posee SUR l'orange */

  /* --- Hero band (degrade bleu) --- */
  --hero-1: #3d7cff;
  --hero-2: #1a52d8;
  --hero-3: #123fab;
  --on-hero:       #ffffff;
  --on-hero-soft:  rgba(255,255,255,.84);
  --on-hero-line:  rgba(255,255,255,.24);
  --on-hero-fill:  rgba(255,255,255,.12);

  /* --- Semantique --- */
  --warn-bg: #fdf3e6; --warn-line: #f0d4a6; --warn-ink: #8a560f;
  --ok: #18895a; --ok-soft: #e6f6ee;

  /* --- Typo systeme --- */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --fs-xs: .8125rem; --fs-sm: .875rem; --fs-base: 1rem; --fs-md: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl:  clamp(1.4rem, 1.1rem + 1.3vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 1.25rem + 2.3vw, 2.5rem);
  --fs-3xl: clamp(2.3rem, 1.4rem + 4vw, 3.6rem);

  --lh-tight: 1.08; --lh-snug: 1.32; --lh-base: 1.62;

  --s-1:.25rem; --s-2:.5rem; --s-3:.75rem; --s-4:1rem; --s-5:1.25rem;
  --s-6:1.5rem; --s-7:2rem; --s-8:2.5rem; --s-9:3rem; --s-10:4rem; --s-12:5rem; --s-14:6rem;

  --r-xs:7px; --r-sm:10px; --r:13px; --r-lg:18px; --r-xl:26px; --r-pill:999px;

  --sh-xs: 0 1px 2px rgba(20,20,30,.06);
  --sh-sm: 0 1px 2px rgba(20,20,30,.06), 0 3px 8px -3px rgba(20,20,30,.10);
  --sh:    0 2px 4px rgba(20,20,30,.05), 0 12px 28px -10px rgba(20,20,30,.18);
  --sh-lg: 0 6px 12px rgba(20,20,30,.06), 0 28px 60px -16px rgba(23,69,196,.30);
  --sh-cta: 0 8px 22px -8px rgba(255,106,43,.55);
  --ring:  0 0 0 3px rgba(47,107,255,.35);

  --maxw: 1140px; --maxw-prose: 720px;
  --gutter: clamp(1.1rem, 4vw, 2.2rem);
  --header-h: 66px;

  --ease: cubic-bezier(.2,.7,.2,1); --t-fast:120ms; --t:200ms; --t-slow:340ms;
}

/* =========================================================================
   2. RESET / BASE
   ========================================================================= */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration:.001ms!important; transition-duration:.001ms!important; }
}
body {
  font-family: var(--font); font-size: var(--fs-base); line-height: var(--lh-base);
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  scroll-padding-top: calc(var(--header-h) + 12px); overflow-x: hidden;
}
h1,h2,h3,h4 { line-height: var(--lh-tight); font-weight: 800; letter-spacing: -0.022em; color: var(--ink); text-wrap: balance; }
p { text-wrap: pretty; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { color: var(--brand-700); }
img,svg { display:block; max-width:100%; }
button,input,select,textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--accent-soft); color: var(--accent-deep); }

.skip { position:absolute; left:-9999px; top:0; background:var(--ink); color:#fff; padding:.65rem 1rem; border-radius:var(--r-sm); z-index:200; }
.skip:focus { left:12px; top:12px; }

svg.icon { width:1em; height:1em; flex:none; fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }

/* =========================================================================
   3. LAYOUT
   ========================================================================= */
.section { padding: clamp(2.75rem, 6.5vw, 5rem) 0; }
.section.tint { background: var(--bg-tint); }

.nav, .hero, .section > *, .ctaband > *, .foot-grid, .foot-bottom, .crumb, .prose,
.quotes, .quick {
  width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter);
}
.prose { max-width: var(--maxw-prose); }

.head { max-width: 680px; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.head h2 { font-size: var(--fs-2xl); }
.head p { margin-top: var(--s-3); color: var(--ink-2); font-size: var(--fs-lg); line-height: var(--lh-snug); }
/* petit trait orange sous les titres de section */
.head h2 { position: relative; }
.head h2::after { content:""; display:block; width:54px; height:4px; margin-top:var(--s-4); border-radius:var(--r-pill); background: linear-gradient(90deg, var(--accent), var(--accent-600)); }

/* =========================================================================
   4. COMPOSANTS
   ========================================================================= */

/* ---- 4.1 Header / Nav --------------------------------------------------- */
header.site {
  position: sticky; top:0; z-index:100;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: saturate(170%) blur(12px); -webkit-backdrop-filter: saturate(170%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display:flex; align-items:center; gap:var(--s-4); min-height:var(--header-h); }
.brand { display:inline-flex; align-items:center; gap:.6rem; font-weight:800; font-size:1.1rem; letter-spacing:-0.025em; color:var(--ink); margin-right:auto; }
.brand:hover { color: var(--ink); }
.brand .logo {
  display:grid; place-items:center; width:36px; height:36px; border-radius:11px;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-700) 70%);
  color:#fff; box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.3);
  position: relative;
}
.brand .logo::after { content:""; position:absolute; right:-3px; bottom:-3px; width:13px; height:13px; border-radius:50%; background: var(--accent); border:2px solid var(--surface); }
.brand .logo svg { width:21px; height:21px; }

.nav a:not(.brand):not(.btn) {
  color: var(--ink-2); font-size: var(--fs-sm); font-weight: 600; padding:.5rem .25rem; border-radius:var(--r-xs);
  transition: color var(--t) var(--ease);
}
.nav a:not(.brand):not(.btn):hover { color: var(--ink); }
.nav .btn { padding-block:.5rem; }
@media (max-width:620px){ .nav a:not(.brand):not(.btn){ display:none; } }

/* ---- 4.2 Eyebrow -------------------------------------------------------- */
.eyebrow {
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:var(--fs-xs); font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  color:var(--accent-deep); background:var(--accent-soft); border:1px solid var(--accent-line);
  padding:.4rem .8rem; border-radius:var(--r-pill);
}
.eyebrow .dot { width:7px; height:7px; border-radius:50%; background:var(--accent); flex:none; box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent); }

/* ---- 4.3 Hero (bande bleue immersive) ----------------------------------- */
.hero {
  position: relative; isolation: isolate; color: var(--on-hero);
  padding-top: clamp(2.75rem, 7vw, 4.75rem);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
  display:grid; gap: clamp(1.5rem,3.5vw,2.25rem); grid-template-columns:1fr;
}
/* fond pleine largeur */
.hero::before {
  content:""; position:absolute; z-index:-2; top:0; bottom:0; left:50%; width:100vw; transform:translateX(-50%);
  background:
    radial-gradient(90% 120% at 82% -10%, var(--hero-1) 0%, var(--hero-2) 48%, var(--hero-3) 100%);
}
/* texture/lueur subtile */
.hero::after {
  content:""; position:absolute; z-index:-1; top:0; bottom:0; left:50%; width:100vw; transform:translateX(-50%);
  pointer-events:none; opacity:.5;
  background-image:
    radial-gradient(40% 60% at 12% 110%, rgba(255,106,43,.30), transparent 70%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='2' cy='2' r='1' fill='white' fill-opacity='0.10'/></svg>");
}
.hero > .eyebrow { justify-self:start; background: var(--on-hero-fill); border-color: var(--on-hero-line); color:#fff; }
.hero > .eyebrow .dot { background: var(--accent); }
.hero h1 { font-size: var(--fs-3xl); max-width: 15ch; color: var(--on-hero); letter-spacing:-0.03em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { font-size: var(--fs-lg); color: var(--on-hero-soft); max-width: 50ch; line-height: var(--lh-snug); }

@media (min-width: 920px){
  .hero { grid-template-columns: minmax(0,1.05fr) minmax(440px, .95fr); align-items:center; column-gap: clamp(2rem,4vw,3.5rem); }
  .hero > .eyebrow, .hero > h1, .hero > .lead, .hero > .trust, .hero > .quick { grid-column:1; }
  .hero .booking { grid-column:2; grid-row: 1 / 6; align-self:center; }
}

/* ---- 4.4 Booking / Formulaire (carte flottante) ------------------------ */
.booking {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: clamp(1.25rem, 3vw, 1.85rem); color: var(--ink);
}
.booking::before {
  /* mini titre du module, decoratif via le 1er enfant si absent : on s'appuie sur le form */
}
#booking-form { display:grid; gap: var(--s-4); }
.field { display:grid; gap:.4rem; }
.field > label, .field > .label { font-size: var(--fs-sm); font-weight:700; color: var(--ink-2); }
.ctrl {
  width:100%; min-height:50px; padding:.75rem .95rem; font-size: var(--fs-base); color: var(--ink);
  background: var(--surface-2); border:1.5px solid var(--line-2); border-radius: var(--r);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  appearance: none;
}
select.ctrl {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%236c6b75' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M5 8l5 5 5-5'/></svg>");
  background-repeat:no-repeat; background-position: right .85rem center; padding-right:2.6rem; cursor:pointer;
}
.ctrl::placeholder { color: var(--muted); }
.ctrl:hover { border-color: var(--brand-line); background: var(--surface); }
.ctrl:focus { outline:none; border-color: var(--brand); background: var(--surface); box-shadow: var(--ring); }

/* Facade widget */
.facade, #widget-facade {
  position:relative; border:1.5px dashed var(--line-2); border-radius: var(--r); background: var(--surface-2);
  padding: var(--s-5); min-height:120px; display:grid; place-content:center; gap:.4rem; text-align:center;
  color: var(--muted); font-size: var(--fs-sm); cursor:pointer;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
}
.facade strong, #widget-facade strong { color: var(--ink); font-size: var(--fs-base); }
.facade:hover, #widget-facade:hover { border-color: var(--brand-line); background: var(--brand-soft); color: var(--brand-700); }
#widget-mount { display:block; }
#widget-mount:empty { display:none; }

/* ---- 4.5 Boutons -------------------------------------------------------- */
.btn {
  --btn-bg: var(--surface); --btn-ink: var(--ink); --btn-line: var(--line-2);
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  min-height:46px; padding:.75rem 1.25rem; font-size:var(--fs-base); font-weight:700; line-height:1; white-space:nowrap;
  color:var(--btn-ink); background:var(--btn-bg); border:1.5px solid var(--btn-line); border-radius:var(--r);
  cursor:pointer; user-select:none;
  transition: transform var(--t-fast) var(--ease), background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), color var(--t) var(--ease);
}
.btn:hover { color: var(--btn-ink); }
.btn:active { transform: translateY(1px); }

/* Primaire = bleu, texte blanc (AA) */
.btn-primary {
  --btn-bg: var(--brand); --btn-ink: var(--brand-ink); --btn-line: transparent;
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-primary:hover { --btn-bg: var(--brand-600); box-shadow: var(--sh), inset 0 1px 0 rgba(255,255,255,.22); }
.btn-primary:active { --btn-bg: var(--brand-700); }

/* Accent = orange vif, texte FONCE (AA, energie max) */
.btn-accent {
  --btn-bg: var(--accent); --btn-ink: var(--accent-ink); --btn-line: transparent;
  box-shadow: var(--sh-cta), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-accent:hover { --btn-bg: var(--accent-600); }
.btn-accent:active { --btn-bg: var(--accent-600); }

/* Ghost */
.btn-ghost { --btn-bg: transparent; --btn-ink: var(--ink-2); --btn-line: var(--line-2); }
.btn-ghost:hover { --btn-bg: var(--surface); --btn-ink: var(--ink); box-shadow: var(--sh-xs); }

.btn-lg { min-height:54px; padding:.95rem 1.6rem; font-size: var(--fs-md); border-radius: var(--r-lg); }
.btn-block { display:flex; width:100%; }

/* ---- 4.6 Trust ---------------------------------------------------------- */
.trust { display:flex; flex-wrap:wrap; align-items:center; gap:.55rem clamp(1rem,2.5vw,1.6rem); margin-top: var(--s-2); font-size: var(--fs-sm); font-weight:600; color: var(--ink-2); }
.trust > * { display:inline-flex; align-items:center; gap:.5rem; }
.trust > *::before {
  content:""; width:20px; height:20px; flex:none; border-radius:50%;
  background-color: var(--ok-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2318895a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4.5 10.5l3.2 3.2L15.5 6'/></svg>");
  background-repeat:no-repeat; background-position:center;
}
/* sur la bande bleue du hero */
.hero .trust { color: var(--on-hero-soft); }
.hero .trust > *::before { background-color: var(--on-hero-fill); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4.5 10.5l3.2 3.2L15.5 6'/></svg>"); }

/* ---- 4.7 Cards ---------------------------------------------------------- */
.cards { display:grid; gap: clamp(1rem,2.4vw,1.5rem); grid-template-columns:1fr; }
@media (min-width:620px){ .cards { grid-template-columns: repeat(2,1fr); } }
@media (min-width:920px){ .cards.c3 { grid-template-columns: repeat(3,1fr); } }

a.card, .card {
  position: relative; display:flex; flex-direction:column; gap: var(--s-3);
  background: var(--surface); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-6); color: var(--ink); box-shadow: var(--sh-xs); overflow:hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
/* liseré orange en haut, revele au survol */
a.card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--accent), var(--accent-600)); transform: scaleX(0); transform-origin:left; transition: transform var(--t-slow) var(--ease); }
a.card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--brand-line); color: var(--ink); }
a.card:hover::before { transform: scaleX(1); }
a.card:focus-visible { outline:2px solid var(--brand); outline-offset:2px; }

.card-top { display:flex; align-items:center; justify-content:space-between; gap: var(--s-3); }
.card h3, .card .title { font-size: var(--fs-lg); letter-spacing:-0.02em; }
.card p { color: var(--ink-2); font-size: var(--fs-sm); }

.ico { display:grid; place-items:center; width:48px; height:48px; flex:none; border-radius:14px; background: var(--brand-soft); color: var(--brand-700); border:1px solid var(--brand-line); }
.ico svg { width:24px; height:24px; }
.ico.alt { background: var(--accent-soft); color: var(--accent-deep); border-color: var(--accent-line); }

/* Chip / badge */
.chip { display:inline-flex; align-items:center; gap:.35rem; font-size: var(--fs-xs); font-weight:800; letter-spacing:.02em; color: var(--brand-700); background: var(--brand-soft); border:1px solid var(--brand-line); border-radius: var(--r-pill); padding:.28rem .65rem; }
.card .chip { align-self:flex-start; }
/* variantes de badges deals (optionnel, voir build.py) */
.chip.is-deal { color: var(--accent-deep); background: var(--accent-soft); border-color: var(--accent-line); }
.chip.is-top  { color:#9a6800; background:#fff6db; border-color:#f3e2a6; }
.chip.is-zen  { color: var(--ok); background: var(--ok-soft); border-color:#bfe7d2; }

.card .more, .card .arrow { margin-top:auto; color: var(--brand-600); font-weight:700; font-size: var(--fs-sm); display:inline-flex; align-items:center; gap:.4rem; transition: gap var(--t) var(--ease); }
a.card:hover .more, a.card:hover .arrow { gap:.7rem; color: var(--brand-700); }

/* ---- 4.8 Liste d'aeroports --------------------------------------------- */
.airport-list { display:grid; gap:.6rem; grid-template-columns:1fr; list-style:none; padding:0; }
@media (min-width:560px){ .airport-list { grid-template-columns: repeat(2,1fr); } }
@media (min-width:880px){ .airport-list { grid-template-columns: repeat(3,1fr); } }
.airport-list a { display:flex; align-items:center; gap:.7rem; background: var(--surface); border:1px solid var(--line); border-radius: var(--r); padding:.7rem .85rem; color: var(--ink); min-height:50px; font-weight:600;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.airport-list a:hover { border-color: var(--brand-line); background: var(--surface); color: var(--ink); transform: translateY(-2px); box-shadow: var(--sh-xs); }
.airport-list .code { display:grid; place-items:center; min-width:48px; height:32px; padding:0 .45rem; font:800 var(--fs-xs)/1 var(--mono); letter-spacing:.05em; color:#fff; background: linear-gradient(150deg, var(--brand), var(--brand-700)); border-radius: var(--r-xs); flex:none; }

/* ---- 4.9 Etapes -------------------------------------------------------- */
.steps { display:grid; gap: clamp(1.5rem,3.5vw,2.25rem); grid-template-columns:1fr; }
@media (min-width:760px){ .steps { grid-template-columns: repeat(3,1fr); } }
.step { display:flex; flex-direction:column; gap: var(--s-3); }
.step .n { display:grid; place-items:center; width:48px; height:48px; font:800 var(--fs-xl)/1 var(--font); color:#fff; background: linear-gradient(150deg, var(--accent), var(--accent-600)); border-radius:15px; box-shadow: var(--sh-cta); }
.step h3 { font-size: var(--fs-lg); }
.step p { color: var(--ink-2); font-size: var(--fs-sm); }
@media (min-width:760px){
  .step { position:relative; }
  .step:not(:last-child)::after { content:""; position:absolute; top:24px; left:calc(48px + .8rem); right:-1.1rem; height:2px; background: repeating-linear-gradient(90deg, var(--brand-line) 0 7px, transparent 7px 14px); }
}

/* ---- 4.10 Tableau ------------------------------------------------------- */
.table-wrap { overflow-x:auto; border:1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs); background: var(--surface); -webkit-overflow-scrolling:touch; }
table { width:100%; border-collapse:collapse; font-size: var(--fs-sm); min-width:480px; }
thead th { text-align:left; font-weight:700; color:#fff; font-size: var(--fs-xs); letter-spacing:.04em; text-transform:uppercase; padding:.9rem 1rem; background: linear-gradient(150deg, var(--brand), var(--brand-700)); position:sticky; top:0; }
thead th:first-child { border-top-left-radius:0; }
tbody td { padding:.9rem 1rem; border-bottom:1px solid var(--line); color: var(--ink-2); vertical-align:top; }
tbody tr:last-child td { border-bottom:0; }
tbody tr:nth-child(even) td { background: var(--surface-2); }
tbody tr:hover td { background: var(--brand-soft); }
tbody td:first-child, thead th:first-child { font-weight:700; color: var(--ink); }
thead th:first-child { color:#fff; }
table .price { font-variant-numeric: tabular-nums; font-weight:800; color: var(--accent-deep); }

/* ---- 4.11 FAQ ----------------------------------------------------------- */
.faq { display:grid; gap:.75rem; max-width: var(--maxw-prose); }
.faq details { background: var(--surface); border:1px solid var(--line); border-radius: var(--r); overflow:hidden; transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.faq details[open] { border-color: var(--brand-line); box-shadow: var(--sh-xs); }
.faq summary { display:flex; align-items:center; gap:.75rem; cursor:pointer; list-style:none; padding:1.05rem 1.15rem; font-weight:700; color: var(--ink); min-height:54px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary:hover { color: var(--brand-700); }
.faq summary .chev { margin-left:auto; color: var(--muted); transition: transform var(--t) var(--ease); }
.faq details[open] summary .chev { transform: rotate(180deg); color: var(--brand-600); }
.faq .a { padding:0 1.15rem 1.15rem; color: var(--ink-2); }
.faq .a > * + * { margin-top:.6rem; }

/* ---- 4.12 Note ---------------------------------------------------------- */
.note { display:flex; gap:.7rem; align-items:flex-start; background: var(--surface-2); border:1px solid var(--line); border-radius: var(--r); padding:.9rem 1.05rem; font-size: var(--fs-sm); color: var(--ink-2); }
.note::before { content:""; width:18px; height:18px; flex:none; margin-top:.1rem; background-repeat:no-repeat; background-position:center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%236c6b75' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='9' r='7.5'/><path d='M9 8.5v4M9 5.6h.01'/></svg>"); }
.note.warn { background: var(--warn-bg); border-color: var(--warn-line); color: var(--warn-ink); }
.note.warn::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%238a560f' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M9 2.5L16.5 15.5H1.5z'/><path d='M9 7.5v3.2M9 13.4h.01'/></svg>"); }

/* ---- 4.13 Crumb --------------------------------------------------------- */
.crumb { display:flex; flex-wrap:wrap; align-items:center; gap:.4rem; font-size: var(--fs-sm); color: var(--muted); padding-top: var(--s-6); padding-bottom: var(--s-1); }
.crumb a { color: var(--ink-2); }
.crumb a:hover { color: var(--brand-700); }
.crumb > * + *::before { content:"/"; margin-right:.4rem; color: var(--line-2); }

/* ---- 4.14 Prose --------------------------------------------------------- */
.prose { color: var(--ink-2); font-size: var(--fs-md); }
.prose > * + * { margin-top:1.15em; }
.prose h2 { font-size: var(--fs-xl); color: var(--ink); margin-top:2em; }
.prose h3 { font-size: var(--fs-lg); color: var(--ink); margin-top:1.6em; }
.prose p, .prose li { line-height: var(--lh-base); }
.prose a { text-decoration:underline; text-underline-offset:2px; text-decoration-color: var(--brand-line); }
.prose a:hover { text-decoration-color: var(--brand); }
.prose ul, .prose ol { padding-left:1.3em; }
.prose li + li { margin-top:.4em; }
.prose strong { color: var(--ink); }
.prose blockquote { border-left:3px solid var(--accent); padding-left:1rem; color: var(--muted); font-style:italic; }
.prose code { font: var(--fs-sm)/1 var(--mono); background: var(--bg-tint); padding:.15em .4em; border-radius: var(--r-xs); color: var(--ink); }

/* ---- 4.15 CTA band (final, bande bleue) -------------------------------- */
.ctaband { position: relative; isolation:isolate; color: var(--on-hero); padding: clamp(3rem,7vw,4.75rem) 0; overflow:hidden; }
.ctaband::before { content:""; position:absolute; inset:0; z-index:-2; background: radial-gradient(90% 130% at 18% 0%, var(--hero-1), var(--hero-2) 55%, var(--hero-3)); }
.ctaband::after { content:""; position:absolute; inset:0; z-index:-1; opacity:.5; background-image: radial-gradient(45% 70% at 88% 110%, rgba(255,106,43,.35), transparent 70%); }
.ctaband > * { text-align:center; }
.ctaband h2 { font-size: var(--fs-2xl); color: var(--on-hero); }
.ctaband h2::after { display:none; }
.ctaband p { margin: var(--s-3) auto var(--s-6); color: var(--on-hero-soft); font-size: var(--fs-lg); max-width: 46ch; }
/* CTA orange sur fond bleu = pop */
.ctaband .btn-primary { --btn-bg: var(--accent); --btn-ink: var(--accent-ink); box-shadow: var(--sh-cta), inset 0 1px 0 rgba(255,255,255,.35); }
.ctaband .btn-primary:hover { --btn-bg: var(--accent-600); }

/* ---- 4.16 Sticky CTA (mobile) ------------------------------------------ */
.sticky-cta { position:fixed; left:0; right:0; bottom:0; z-index:90; padding:.7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: saturate(170%) blur(12px); -webkit-backdrop-filter: saturate(170%) blur(12px); border-top:1px solid var(--line); box-shadow: 0 -6px 20px -12px rgba(20,20,30,.3); }
.sticky-cta .btn { width:100%; }
@media (min-width:760px){ .sticky-cta { display:none; } }
@media (max-width:759px){ body { padding-bottom:86px; } }

/* ---- 4.17 Footer -------------------------------------------------------- */
footer.site { background: var(--ink); color: rgba(255,255,255,.7); border-top:1px solid var(--line); padding: clamp(2.75rem,5vw,3.75rem) 0 var(--s-7); margin-top: clamp(2rem,5vw,3rem); }
.foot-grid { display:grid; gap: clamp(1.75rem,4vw,2.5rem); grid-template-columns:1fr; }
@media (min-width:720px){ .foot-grid { grid-template-columns:1.6fr 1fr 1fr; } }
footer.site .brand { color:#fff; }
footer.site .brand .logo::after { border-color: var(--ink); }
.foot-brand .brand { margin-bottom: var(--s-3); }
.foot-brand p { color: rgba(255,255,255,.6); font-size: var(--fs-sm); max-width:42ch; }
.foot-links h4, .foot-links > strong { display:block; font-size: var(--fs-xs); text-transform:uppercase; letter-spacing:.08em; color: rgba(255,255,255,.5); font-weight:700; margin-bottom: var(--s-3); }
.foot-links a { display:block; color: rgba(255,255,255,.72); font-size: var(--fs-sm); padding:.3rem 0; }
.foot-links a:hover { color:#fff; }
.foot-bottom { display:flex; flex-wrap:wrap; gap: var(--s-2) var(--s-5); align-items:center; justify-content:space-between; margin-top: var(--s-8); padding-top: var(--s-5); border-top:1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: var(--fs-xs); }

/* ---- 4.18 Cookies ------------------------------------------------------- */
.cookie { position:fixed; left:12px; right:12px; bottom:12px; z-index:120; display:flex; flex-wrap:wrap; align-items:center; gap: var(--s-3) var(--s-5); background: var(--surface); border:1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: var(--s-4) var(--s-5); max-width:760px; margin-inline:auto; }
.cookie p { font-size: var(--fs-sm); color: var(--ink-2); flex:1 1 280px; min-width:0; }
.cookie p a { text-decoration:underline; text-underline-offset:2px; }
.cookie .actions, .cookie > div:last-child { display:flex; gap: var(--s-2); flex-wrap:wrap; }
#cookie-accept, #cookie-refuse { min-height:44px; }
@media (max-width:759px){ .cookie { bottom:86px; } }

/* =========================================================================
   5. COMPOSANTS NOUVEAUX (optionnels — voir docs/design.md + build.py)
   ========================================================================= */

/* ---- 5.1 Suggestions rapides (.quick) — sous le hero / le form ---------- */
.quick { display:flex; flex-wrap:wrap; gap:.55rem; align-items:center; margin-top: var(--s-2); }
.quick .quick-label { font-size: var(--fs-sm); font-weight:700; color: var(--on-hero-soft); margin-right:.25rem; }
.quick a {
  display:inline-flex; align-items:center; gap:.45rem; font-size: var(--fs-sm); font-weight:700;
  color:#fff; background: var(--on-hero-fill); border:1px solid var(--on-hero-line); border-radius: var(--r-pill);
  padding:.45rem .85rem; min-height:38px;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.quick a:hover { background: rgba(255,255,255,.22); color:#fff; transform: translateY(-1px); border-color: rgba(255,255,255,.45); }
.quick a svg { width:1em; height:1em; opacity:.8; }
/* hors hero (fond clair) */
.section .quick a, .booking .quick a { color: var(--brand-700); background: var(--brand-soft); border-color: var(--brand-line); }
.section .quick a:hover, .booking .quick a:hover { background: #dfeaff; }
.section .quick .quick-label { color: var(--ink-2); }

/* ---- 5.2 Temoignages (.quotes / .quote / .who / .stars) ----------------- */
.quotes { display:grid; gap: clamp(1rem,2.4vw,1.5rem); grid-template-columns:1fr; }
@media (min-width:680px){ .quotes { grid-template-columns: repeat(2,1fr); } }
@media (min-width:980px){ .quotes { grid-template-columns: repeat(3,1fr); } }
.quote { display:flex; flex-direction:column; gap: var(--s-4); background: var(--surface); border:1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-xs); }
.quote .stars { display:inline-flex; gap:2px; color: var(--accent); }
.quote .stars svg { width:18px; height:18px; fill: currentColor; stroke:none; }
.quote p { color: var(--ink); font-size: var(--fs-md); line-height: var(--lh-snug); }
.quote .who { display:flex; align-items:center; gap:.7rem; margin-top:auto; }
.quote .who .av { width:42px; height:42px; border-radius:50%; flex:none; object-fit:cover; background: var(--brand-soft); display:grid; place-items:center; color: var(--brand-700); font-weight:800; border:1px solid var(--brand-line); }
.quote .who b { display:block; font-size: var(--fs-sm); color: var(--ink); }
.quote .who span { display:block; font-size: var(--fs-xs); color: var(--muted); }

/* placeholder photo (preview uniquement) */
.ph { background:
  repeating-linear-gradient(135deg, #e9eef7 0 12px, #eef2f9 12px 24px); color: var(--muted);
  display:grid; place-items:center; font: 600 var(--fs-xs)/1.3 var(--mono); text-align:center; padding:1rem; border-radius: var(--r); border:1px dashed var(--line-2); }

/* =========================================================================
   6. UTILITAIRES
   ========================================================================= */
.center { text-align:center; }
.mt-0 { margin-top:0; }
.muted { color: var(--muted); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
[hidden] { display:none !important; }
