/* ============================================================
   main.css — Tuktuk Paris « PHOSPHORE — Paris s'allume à 21h »
   Mécanique signature : L'ALLUMAGE (titres éteints → faisceau →
   cascade lettre à lettre). Grille 12 col fracturée, rail
   d'horodatage sticky, panneaux inégaux, guichet de nuit.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--fg);
  background-color: var(--nuit);
  /* strates de nuit : halos radiaux empilés (matière B), jamais de linear bicolore */
  background-image:
    radial-gradient(60rem 40rem at 85% -8%, rgba(74, 90, 232, 0.14), transparent 65%),
    radial-gradient(48rem 34rem at -12% 28%, rgba(193, 161, 255, 0.07), transparent 70%),
    radial-gradient(52rem 44rem at 108% 62%, rgba(111, 232, 255, 0.05), transparent 70%),
    radial-gradient(40rem 30rem at 18% 96%, rgba(224, 204, 159, 0.05), transparent 72%);
  background-attachment: fixed;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Les halos débordants (matière B) et les orbites restent DANS la page :
   clip horizontal aux racines de flux, sinon scrollWidth > viewport (DoD #4). */
main, .footer { overflow-x: clip; }

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

::selection { background: var(--eteint); color: var(--fg); }

/* ── Accessibilité ── */
.skip-link {
  position: absolute; left: -200vw; top: 0; z-index: 200;
  background: var(--phare); color: var(--phare-ink);
  padding: var(--sp-2) var(--sp-3); font-weight: 700; border-radius: 0 0 0.5rem 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--phare); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ════════════════════════════════════════════════════════════
   NAV — fine, translucide, rail d'horodatage sticky
   ════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 31, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ligne);
}
.nav__inner {
  display: flex; align-items: center; gap: var(--sp-3);
  padding-block: 0.7rem;
  flex-wrap: wrap; row-gap: 0.15rem;
}
/* mobile/tablette : le rail passe sur sa propre ligne, bande défilante (jamais de débord de page) */
.rail-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
.rail-nav::-webkit-scrollbar { display: none; }
.nav__inner > .cta--nav { margin-left: auto; }
@media (min-width: 1120px) {
  .nav__inner { flex-wrap: nowrap; gap: var(--sp-4); }
  /* le rail reste rétrécissable (scroll interne) : la marque et le CTA ne sortent JAMAIS du cadre */
  .rail-nav { order: 0; flex: 0 1 auto; overflow-x: auto; margin-inline: auto; min-width: 0; }
  .nav__inner > .cta--nav { margin-left: 0; }
}
.nav__marque, .nav__inner > .cta--nav { flex-shrink: 0; }
.nav__marque {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.02em; text-decoration: none; color: var(--fg);
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(111, 232, 255, 0.35);
  transition: text-shadow var(--dur-med) var(--ease-out);
}
.nav__marque:hover { text-shadow: 0 0 26px rgba(111, 232, 255, 0.75); }
.nav__marque .tld { color: var(--phare); }

/* Rail d'horodatage : la navigation EST un programme de soirée */
.rail {
  display: flex; gap: clamp(0.8rem, 2.5vw, 2.2rem);
  list-style: none; width: max-content;
  font-family: var(--font-mono); font-size: var(--step--1);
}
.rail a {
  display: inline-flex; align-items: center; gap: 0.45em;
  color: var(--nuee); text-decoration: none;
  padding: 0.35rem 0.15rem; min-height: 44px;
  transition: color var(--dur-fast) var(--ease-out);
}
.rail .heure { color: var(--reverbere); font-weight: 500; opacity: 0.55; transition: opacity var(--dur-fast) var(--ease-out), text-shadow var(--dur-fast) var(--ease-out); }
.rail a:hover { color: var(--fg); }
.rail a:hover .heure { opacity: 1; }
.rail a.is-active { color: var(--fg); }
.rail a.is-active .heure {
  opacity: 1;
  text-shadow: 0 0 12px rgba(224, 204, 159, 0.8);
}
.rail .libelle { display: none; }
@media (min-width: 768px) { .rail .libelle { display: inline; } }

/* ════════════════════════════════════════════════════════════
   CTA « balayage de phare » (matière A : double couche, slide 0.6s)
   Le label reste lisible — seule la lumière traverse.
   ════════════════════════════════════════════════════════════ */
.cta {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6em; min-height: 48px; padding: 0.85rem 1.9rem;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-0);
  color: var(--phare-ink); text-decoration: none; cursor: pointer;
  background: var(--phare); border: none; border-radius: 999px;
  overflow: hidden; isolation: isolate;
  box-shadow: 0 0 0 rgba(111, 232, 255, 0);
  transition: box-shadow var(--dur-med) var(--ease-beam), transform var(--dur-fast) var(--ease-out);
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.85) 50%, transparent 70%);
  transform: translateX(-130%) skewX(-12deg);
  transition: transform var(--dur-beam) var(--ease-beam);
}
.cta:hover, .cta:focus-visible {
  box-shadow: 0 0 34px rgba(111, 232, 255, 0.55), 0 0 90px rgba(111, 232, 255, 0.25);
  transform: translateY(-1px);
}
.cta:hover::before, .cta:focus-visible::before { transform: translateX(130%) skewX(-12deg); }
.cta:active { transform: translateY(0) scale(0.98); }
.cta--nav { padding: 0.55rem 1.3rem; min-height: 44px; font-size: 0.9rem; white-space: nowrap; }

/* variante fantôme (liens secondaires lumineux) */
.lien-lueur {
  color: var(--phare); text-decoration: none; font-weight: 700;
  background-image: linear-gradient(var(--neon), var(--neon));
  background-repeat: no-repeat; background-size: 0% 2px; background-position: 0 100%;
  transition: background-size var(--dur-beam) var(--ease-beam), color var(--dur-fast) var(--ease-out);
  padding-bottom: 2px;
}
.lien-lueur:hover, .lien-lueur:focus-visible { background-size: 100% 2px; color: var(--fg); }

/* ════════════════════════════════════════════════════════════
   L'ALLUMAGE — mécanique signature (matières A + C)
   Titre éteint (contour indigo) → faisceau cyan → cascade 40ms
   avec micro-flicker → stabilisé + souligné violet rémanent.
   ════════════════════════════════════════════════════════════ */
.allumage {
  font-family: var(--font-display); font-weight: 800;
  line-height: 1.02; letter-spacing: -0.02em;
  position: relative; overflow: hidden;
}
.allumage .ltr {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--eteint);
  text-shadow: 0 0 14px rgba(193, 161, 255, 0.16);
}
.allumage.is-lit .ltr {
  animation: allumer 0.36s var(--ease-beam) forwards;
  animation-delay: calc(var(--i) * 40ms + 180ms);
}
@keyframes allumer {
  0%   { color: transparent; -webkit-text-stroke: 1.5px var(--eteint); }
  38%  { color: var(--fg); -webkit-text-stroke: 0.5px transparent; text-shadow: 0 0 22px rgba(111, 232, 255, 0.9); }
  52%  { color: transparent; -webkit-text-stroke: 1px var(--eteint); }
  100% { color: var(--fg); -webkit-text-stroke: 0 transparent; text-shadow: 0 0 16px rgba(111, 232, 255, 0.4); }
}
/* le faisceau qui traverse la ligne */
.allumage::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(111, 232, 255, 0.28) 50%, transparent 62%);
  transform: translateX(-115%);
}
.allumage.is-lit::before { animation: faisceau var(--dur-beam) var(--ease-beam) forwards; }
@keyframes faisceau {
  from { transform: translateX(-115%); }
  to   { transform: translateX(115%); }
}
/* rémanence : souligné violet laissé par le faisceau */
.allumage::after {
  content: ""; position: absolute; left: 0; bottom: 0.02em;
  width: 100%; height: 2px; background: var(--neon); opacity: 0.75;
  transform: scaleX(0); transform-origin: left center;
}
.allumage.is-lit::after {
  animation: remanence var(--dur-slow) var(--ease-out) forwards;
  animation-delay: 300ms;
}
@keyframes remanence { to { transform: scaleX(1); } }

/* états statiques : audit / reduced-motion / no-js → tout allumé, complet */
.is-static .allumage .ltr,
.allumage.is-static .ltr {
  color: var(--fg); -webkit-text-stroke: 0 transparent; animation: none;
  text-shadow: 0 0 16px rgba(111, 232, 255, 0.4);
}
.is-static .allumage::after, .allumage.is-static::after { transform: scaleX(1); animation: none; }
.is-static .allumage::before, .allumage.is-static::before { display: none; }

/* ════════════════════════════════════════════════════════════
   REVEALS complémentaires (hétérogènes — jamais de fade-up unique)
   ════════════════════════════════════════════════════════════ */
[data-reveal] { will-change: opacity, transform; }
[data-reveal="bloom"] {
  opacity: 0; transform: scale(0.965);
  filter: brightness(0.4) saturate(0.7);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out),
              filter 1.1s var(--ease-out);
}
[data-reveal="bloom"].is-in { opacity: 1; transform: scale(1); filter: brightness(1) saturate(1); }
[data-reveal="derive-g"] {
  opacity: 0; transform: translateX(-2.6rem) rotate(-1.2deg);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-slow) var(--ease-beam);
}
[data-reveal="derive-d"] {
  opacity: 0; transform: translateX(2.6rem) rotate(0.8deg);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-slow) var(--ease-beam);
}
[data-reveal="monte"] {
  opacity: 0; transform: translateY(2.2rem);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════
   HERO — enseigne typographique asymétrique (9 col + fenêtre photo)
   ════════════════════════════════════════════════════════════ */
.hero { position: relative; padding-block: clamp(3rem, 8vh, 6rem) var(--sp-7); }
.hero__grille {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); align-items: center;
}
.hero__enseigne { grid-column: 1 / 13; position: relative; z-index: 2; }
.hero__titre { font-size: var(--step-hero); text-wrap: balance; }
.hero__titre .ligne { display: block; }
.hero__titre .ligne--decale { margin-left: clamp(1rem, 4.5vw, 4rem); }

.hero__phrase {
  margin-top: var(--sp-4); max-width: 34ch;
  font-size: var(--step-1); color: var(--nuee); font-weight: 400;
}
.hero__actions { margin-top: var(--sp-5); display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero__depart { font-family: var(--font-mono); font-size: var(--step--1); color: var(--reverbere); }

/* fenêtre photo verticale, halo débordant (matière B) */
.hero__fenetre {
  grid-column: 1 / 13; position: relative; margin-top: var(--sp-5);
}
@media (min-width: 900px) {
  .hero__enseigne { grid-column: 1 / 9; }
  .hero__fenetre { grid-column: 9 / 13; margin-top: 0; }
}
.fenetre {
  position: relative; border-radius: 1.1rem; overflow: hidden;
  border: 1px solid var(--ligne);
  clip-path: polygon(0 0, calc(100% - 1.4rem) 0, 100% 1.4rem, 100% 100%, 1.4rem 100%, 0 calc(100% - 1.4rem));
}
.fenetre img { width: 100%; height: 100%; object-fit: cover; }
.fenetre--hero { aspect-ratio: 3 / 4; max-height: 74vh; }
.hero__fenetre::before {
  content: ""; position: absolute; inset: -22%; z-index: -1;
  background: var(--halo-phare); pointer-events: none;
}
.hero__fenetre::after {
  content: ""; position: absolute; inset: -14% -18% auto auto; width: 60%; height: 60%; z-index: -1;
  background: var(--halo-neon); pointer-events: none;
}

/* points d'orbite (matière C : lucioles lentes autour du mot) */
.orbites { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.orbite {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--phare);
  box-shadow: 0 0 10px 2px rgba(111, 232, 255, 0.55);
  offset-path: ellipse(clamp(8rem, 22vw, 19rem) clamp(3.5rem, 8vw, 7rem) at center);
  animation: orbiter 16s linear infinite;
  animation-play-state: paused;
  opacity: 0.85;
}
.orbite--2 { width: 5px; height: 5px; background: var(--neon);
  box-shadow: 0 0 9px 2px rgba(193, 161, 255, 0.5); animation-duration: 23s; animation-delay: -8s; }
.orbite--3 { width: 4px; height: 4px; background: var(--reverbere);
  box-shadow: 0 0 8px 2px rgba(224, 204, 159, 0.5); animation-duration: 29s; animation-delay: -17s; }
.is-orbiting .orbite { animation-play-state: running; }
@keyframes orbiter { from { offset-distance: 0%; } to { offset-distance: 100%; } }
.is-static .orbite { animation: none; offset-distance: 30%; }
.is-static .orbite--2 { offset-distance: 62%; }
.is-static .orbite--3 { offset-distance: 88%; }

/* ════════════════════════════════════════════════════════════
   SECTIONS communes
   ════════════════════════════════════════════════════════════ */
.section { padding-block: var(--sp-7); position: relative; }
.section__kicker {
  font-family: var(--font-mono); font-size: var(--step--1); font-weight: 500;
  color: var(--reverbere); letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.7em; margin-bottom: var(--sp-3);
}
.section__kicker::before {
  content: ""; width: 2.2rem; height: 1px; background: var(--reverbere); opacity: 0.5;
}
.section__titre { font-size: var(--step-3); max-width: 18ch; }

/* respiration pleine nuit entre blocs denses */
.respiration { position: relative; height: clamp(3rem, 8vh, 5.5rem); display: grid; place-items: center; }
.respiration::before {
  content: ""; width: min(38rem, 70%); height: 1px;
  background: repeating-linear-gradient(90deg, var(--ligne) 0 7px, transparent 7px 16px);
}
.respiration::after {
  content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--reverbere); opacity: 0.8;
  box-shadow: 0 0 14px 3px rgba(224, 204, 159, 0.45);
}
.respiration .orbites { inset: 0; }

/* ════════════════════════════════════════════════════════════
   POURQUOI — manifeste : 3 arguments en quinconce, pas une grille
   ════════════════════════════════════════════════════════════ */
.pourquoi__flux { display: flex; flex-direction: column; gap: var(--sp-5); margin-top: var(--sp-6); }
.argument {
  display: grid; grid-template-columns: 3.4rem 1fr; gap: var(--sp-4);
  align-items: start; max-width: 42rem; padding: var(--sp-4);
  border-radius: 1rem; border: 1px solid transparent;
  transition: border-color var(--dur-med) var(--ease-out), background-color var(--dur-med) var(--ease-out);
}
.argument:hover { border-color: var(--ligne); background-color: rgba(20, 26, 56, 0.5); }
.argument:nth-child(2) { margin-left: clamp(0rem, 12vw, 11rem); }
.argument:nth-child(3) { margin-left: clamp(0rem, 5vw, 4.5rem); }
.argument__icone {
  width: 3.4rem; height: 3.4rem; border-radius: 0.9rem;
  display: grid; place-items: center;
  background: var(--panneau); border: 1px solid var(--ligne);
  color: var(--phare);
  transition: box-shadow var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out);
}
.argument:hover .argument__icone { box-shadow: 0 0 22px rgba(111, 232, 255, 0.3); color: var(--fg); }
.argument__icone svg { width: 1.5rem; height: 1.5rem; }
.argument h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); margin-bottom: 0.35rem; }
.argument p { color: var(--nuee); max-width: 52ch; }

/* ════════════════════════════════════════════════════════════
   CIRCUITS — panneaux INÉGAUX (banni #5 : jamais uniformes)
   ════════════════════════════════════════════════════════════ */
.circuits__duo {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-5);
  margin-top: var(--sp-6); align-items: stretch;
}
@media (min-width: 900px) {
  .circuits__duo { grid-template-columns: 5fr 7fr; }
  .panneau--essentiel { margin-top: var(--sp-6); }
}
.panneau {
  position: relative; border-radius: 1.2rem; padding: var(--sp-5);
  display: flex; flex-direction: column;
  border: 1px solid var(--ligne); overflow: visible; isolation: isolate;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.panneau:hover { transform: translateY(-4px); border-color: var(--eteint); }
.panneau::before {
  content: ""; position: absolute; inset: -18%; z-index: -1; pointer-events: none;
  opacity: 0.75; transition: opacity var(--dur-slow) var(--ease-out);
}
.panneau:hover::before { opacity: 1; }
/* chaque panneau est éclairé par SON réverbère (halos distincts) */
.panneau--essentiel {
  background:
    radial-gradient(26rem 20rem at 15% 0%, rgba(224, 204, 159, 0.10), transparent 68%),
    var(--panneau);
}
.panneau--essentiel::before { background: var(--halo-or); }
.panneau--nuit {
  background:
    radial-gradient(30rem 22rem at 82% 8%, rgba(111, 232, 255, 0.12), transparent 66%),
    radial-gradient(24rem 18rem at 8% 92%, rgba(193, 161, 255, 0.10), transparent 70%),
    var(--panneau-2);
}
.panneau--nuit::before { background: var(--halo-phare); }
.panneau__heure {
  font-family: var(--font-mono); font-size: var(--step--1); font-weight: 500;
  color: var(--reverbere); letter-spacing: 0.1em;
}
.panneau__titre { font-family: var(--font-display); font-weight: 800; font-size: var(--step-2); margin-block: 0.4rem 0.8rem; }
.panneau__desc { color: var(--nuee); max-width: 46ch; }
.panneau__fenetre { margin-block: var(--sp-4); }
.panneau__fenetre .fenetre { aspect-ratio: 16 / 10; }
.panneau__pied { display: flex; align-items: end; justify-content: space-between; gap: var(--sp-3); margin-top: auto; padding-top: var(--sp-4); flex-wrap: wrap; }
.panneau__prix { font-family: var(--font-display); font-weight: 800; font-size: var(--step-3); line-height: 1; }
.panneau__prix small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: var(--step--1); color: var(--nuee); margin-top: 0.4rem; letter-spacing: 0.05em; }
.panneau__badge {
  position: absolute; top: -0.85rem; right: var(--sp-4);
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--nuit); border: 1px solid var(--neon); color: var(--neon);
  padding: 0.3rem 0.8rem; border-radius: 999px;
  box-shadow: 0 0 16px rgba(193, 161, 255, 0.35);
}
.panneau__inclus { list-style: none; margin-top: var(--sp-3); display: grid; gap: 0.45rem; color: var(--nuee); }
.panneau__inclus li { display: flex; gap: 0.6em; align-items: baseline; }
.panneau__inclus li::before { content: "◆"; color: var(--phare); font-size: 0.6em; flex-shrink: 0; }
.panneau--nuit .panneau__inclus li::before { color: var(--neon); }

/* bande privatisation — un guichet discret, pas un 3e panneau clone */
.privatisation {
  margin-top: var(--sp-5); padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap;
  border-radius: 1rem; border: 1px dashed var(--ligne);
  background: rgba(16, 21, 46, 0.6);
}
.privatisation p { color: var(--nuee); max-width: 52ch; }
.privatisation strong { color: var(--fg); font-family: var(--font-display); }

/* ════════════════════════════════════════════════════════════
   COMMENT ÇA MARCHE — programme horodaté (4 étapes qui s'allument)
   ════════════════════════════════════════════════════════════ */
/* duo timeline + fenêtre sticky : la colonne droite reste habitée sur toute la hauteur */
.programme__duo { display: grid; gap: var(--sp-5); margin-top: var(--sp-6); align-items: start; }
@media (min-width: 900px) {
  .programme__duo { grid-template-columns: 7fr 5fr; gap: var(--gutter); }
  .programme__fenetre { position: sticky; top: 5.5rem; }
}
.programme__fenetre { position: relative; max-width: 26rem; }
.programme__fenetre::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background: var(--halo-or); pointer-events: none;
}
.fenetre--quais { aspect-ratio: 3 / 4; }

.programme { position: relative; display: grid; gap: var(--sp-5); }
.programme::before {
  content: ""; position: absolute; left: 1.05rem; top: 0.8rem; bottom: 0.8rem;
  width: 2px; background: var(--ligne);
}
.etape { display: grid; grid-template-columns: 2.2rem 1fr; gap: var(--sp-4); position: relative; }
.etape__point {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: grid; place-items: center; z-index: 1;
  background: var(--nuit-2); border: 2px solid var(--ligne);
  transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.etape__point::after {
  content: ""; width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: var(--eteint); transition: background-color var(--dur-med) var(--ease-out);
}
.etape.is-in .etape__point { border-color: var(--reverbere); box-shadow: 0 0 16px rgba(224, 204, 159, 0.35); }
.etape.is-in .etape__point::after { background: var(--reverbere); }
.etape__heure { font-family: var(--font-mono); font-size: var(--step--1); color: var(--reverbere); font-weight: 500; }
.etape h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); margin-block: 0.2rem 0.3rem; }
.etape p { color: var(--nuee); max-width: 52ch; }

/* ════════════════════════════════════════════════════════════
   AVIS — trois voix de la nuit (décalées, rémanence violette)
   ════════════════════════════════════════════════════════════ */
.avis__flux { display: grid; gap: var(--sp-5); margin-top: var(--sp-6); }
@media (min-width: 900px) {
  .avis__flux { grid-template-columns: repeat(3, 1fr); }
  .avis__carte:nth-child(2) { transform: translateY(var(--sp-3)); }
}
.avis__carte {
  padding: var(--sp-4) 0 var(--sp-3); position: relative;
  border-top: 2px solid var(--neon);
  transition: border-color var(--dur-med) var(--ease-out);
}
.avis__carte:hover { border-color: var(--phare); }
.avis__carte blockquote { font-size: var(--step-1); font-weight: 500; line-height: 1.45; text-wrap: pretty; }
.avis__carte blockquote::before { content: "« "; color: var(--neon); }
.avis__carte blockquote::after { content: " »"; color: var(--neon); }
.avis__qui { margin-top: var(--sp-3); font-family: var(--font-mono); font-size: var(--step--1); color: var(--nuee); }
.avis__note { display: block; margin-top: var(--sp-2); font-size: 0.78rem; color: var(--nuee); opacity: 0.8; }

/* ════════════════════════════════════════════════════════════
   FAQ — lanternes disclosure
   ════════════════════════════════════════════════════════════ */
.faq__duo { display: grid; gap: var(--gutter); align-items: start; }
.faq__heure-geante { display: none; }
@media (min-width: 1120px) {
  .faq__duo { grid-template-columns: minmax(0, 46rem) 1fr; }
  /* l'heure de la section, en enseigne éteinte — la colonne droite tient la grille */
  .faq__heure-geante {
    display: block; position: sticky; top: 26vh; margin-top: var(--sp-7);
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(6.5rem, 10vw, 10rem); line-height: 1; text-align: center;
    color: transparent; -webkit-text-stroke: 2px var(--eteint); opacity: 0.55;
  }
}
.faq__liste { margin-top: var(--sp-6); display: grid; gap: var(--sp-3); max-width: 46rem; }
.faq__item {
  border: 1px solid var(--ligne); border-radius: 0.9rem;
  background: rgba(20, 26, 56, 0.45);
  transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.faq__item:hover { border-color: var(--eteint); }
.faq__item[open] { border-color: var(--eteint); box-shadow: 0 0 24px rgba(74, 90, 232, 0.22); }
.faq__item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); padding: var(--sp-3) var(--sp-4); min-height: 48px;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-0);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-mono); color: var(--phare); font-size: 1.2rem;
  transition: transform var(--dur-med) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 var(--sp-4) var(--sp-4); color: var(--nuee); max-width: 60ch; }

/* ════════════════════════════════════════════════════════════
   GUICHET DE NUIT — formulaire (matière D : champs qui s'allument)
   ════════════════════════════════════════════════════════════ */
.guichet {
  border-radius: 1.4rem; border: 1px solid var(--ligne);
  background:
    radial-gradient(38rem 26rem at 88% -10%, rgba(111, 232, 255, 0.08), transparent 68%),
    radial-gradient(30rem 22rem at 0% 110%, rgba(193, 161, 255, 0.07), transparent 70%),
    var(--nuit-2);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  display: grid; gap: var(--sp-5); margin-top: var(--sp-6);
}
@media (min-width: 900px) { .guichet { grid-template-columns: 5fr 7fr; } }
.guichet__intro p { color: var(--nuee); margin-top: var(--sp-3); max-width: 40ch; }
.guichet__horaires { margin-top: var(--sp-4); font-family: var(--font-mono); font-size: var(--step--1); color: var(--reverbere); display: grid; gap: 0.4rem; }

.formulaire { display: grid; gap: var(--sp-4); }
.champ { display: grid; gap: 0.45rem; position: relative; }
.champ label { font-weight: 700; font-size: var(--step--1); }
.champ label .requis { color: var(--neon); }
.champ input, .champ select, .champ textarea {
  font: inherit; color: var(--fg);
  background: rgba(10, 14, 31, 0.65);
  border: 1.5px solid var(--ligne); border-radius: 0.7rem;
  padding: 0.8rem 1rem; min-height: 48px; width: 100%;
  transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.champ textarea { min-height: 6.5rem; resize: vertical; }
/* le champ s'allume au focus : bordure phare + halo naissant + point réverbère */
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none; border-color: var(--phare);
  box-shadow: 0 0 0 3px rgba(111, 232, 255, 0.16), 0 0 26px rgba(111, 232, 255, 0.18);
}
.champ::after {
  content: ""; position: absolute; top: 2.35rem; right: 0.9rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--eteint); opacity: 0.5;
  transition: background-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.champ:focus-within::after {
  background: var(--reverbere); opacity: 1;
  box-shadow: 0 0 10px 2px rgba(224, 204, 159, 0.6);
}
.champ--textarea::after { top: 2.35rem; }
.champ .aide { font-size: 0.82rem; color: var(--nuee); }
.champ .erreur { font-size: 0.85rem; color: var(--danger); min-height: 1.2em; }
.formulaire__duo { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .formulaire__duo { grid-template-columns: 1fr 1fr; } }
.formulaire__envoi { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.formulaire__statut { font-family: var(--font-mono); font-size: var(--step--1); color: var(--phare); min-height: 1.4em; }

/* ════════════════════════════════════════════════════════════
   FOOTER — extinction des feux
   ════════════════════════════════════════════════════════════ */
.footer {
  margin-top: var(--sp-7); border-top: 1px solid var(--ligne);
  padding-block: var(--sp-5); font-size: var(--step--1); color: var(--nuee);
}
.footer__inner { display: grid; gap: var(--sp-3); }
@media (min-width: 768px) { .footer__inner { grid-template-columns: 1fr auto; align-items: center; } }
.footer__demo {
  font-family: var(--font-mono); font-size: 0.78rem;
  border: 1px solid var(--ligne); border-radius: 0.6rem;
  padding: var(--sp-2) var(--sp-3); max-width: 62ch;
}
.footer a { color: var(--nuee); }
.footer a:hover { color: var(--phare); }

/* ── divers ── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
