/* Olufona Booking — site vitrine & pages légales.
   Couleurs de marque identiques à l'app (lib/core/theme/app_colors.dart) ;
   le bleu marine est celui du fond du logo (Logo1.png). */

:root {
  --navy: #011C5C;
  --navy-line: rgba(255, 255, 255, 0.14);
  --on-navy: #FFFFFF;
  --on-navy-soft: rgba(255, 255, 255, 0.76);
  --blue: #0140C2;
  --blue-hover: #0036A6;
  --orange: #F26E07;

  --ground: #F4F6FB;
  --surface: #FFFFFF;
  --ink: #0E1A33;
  --ink-soft: #33405C;
  --muted: #67728A;
  --line: #DFE4EF;
  --tint: #EAF0FD;
  --link: #0140C2;
  --heading: #031C5C;

  --radius: 16px;
  --wrap: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #060F24;
    --surface: #0C1833;
    --ink: #E7ECF7;
    --ink-soft: #C3CCDF;
    --muted: #8E9AB4;
    --line: #1D2B4D;
    --tint: #12224A;
    --link: #86A9FF;
    --heading: #F2F5FC;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--link); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}
strong { color: var(--heading); font-weight: 650; }
h1, h2, h3 { text-wrap: balance; letter-spacing: -0.015em; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 20px;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 10;
  padding: 8px 14px;
  background: var(--surface);
  color: var(--ink);
  border-radius: 8px;
}

/* Étiquette espacée, reprise du « — B O O K I N G — » du logo */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  height: 2px;
  width: 22px;
  background: currentColor;
  border-radius: 2px;
}

@media (max-width: 519px) {
  .eyebrow::after { display: none; }
}

/* ---------- Barre de navigation ---------- */
.site-header {
  background: var(--navy);
  color: var(--on-navy);
  position: relative;
  z-index: 2;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand { display: block; line-height: 0; }
.brand img { width: 168px; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  color: var(--on-navy-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 550;
  padding: 8px 12px;
  border-radius: 10px;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--on-navy); background: rgba(255, 255, 255, 0.08); }
.nav .nav-link { display: none; }
.nav .nav-cta {
  color: var(--on-navy);
  border: 1px solid var(--navy-line);
}
@media (min-width: 820px) {
  .nav .nav-link { display: inline-block; }
  .brand img { width: 190px; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 0.97rem;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.3;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary { background: var(--orange); color: #FFFFFF; }
.btn-primary:hover { background: #D95F02; }
.btn-blue { background: var(--blue); color: #FFFFFF; overflow-wrap: anywhere; }
.btn-blue:hover { background: var(--blue-hover); }
.btn-ghost { color: var(--on-navy); border-color: var(--navy-line); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* Badges stores — statut « bientôt » tant que l'app n'est pas publiée */
.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border-radius: 12px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  min-width: 190px;
}
.store svg { width: 26px; height: 26px; fill: currentColor; flex-shrink: 0; }
.store small { display: block; font-size: 0.68rem; letter-spacing: 0.04em; opacity: 0.75; line-height: 1.2; }
.store b { display: block; font-size: 1.05rem; font-weight: 650; line-height: 1.25; }
.store[aria-disabled="true"] { cursor: default; }
.stores { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Hero de la page d'accueil ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--on-navy);
  overflow: hidden;
}
.hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero .wrap {
  position: relative;
  display: grid;
  gap: 48px;
  padding-block: 48px 64px;
  align-items: center;
}
.hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .lede {
  margin: 20px 0 0;
  max-width: 50ch;
  font-size: 1.1rem;
  color: var(--on-navy-soft);
}
.hero .stores { margin-top: 32px; }
.hero .hero-note { margin: 14px 0 0; font-size: 0.85rem; color: var(--on-navy-soft); }
@media (min-width: 900px) {
  .hero .wrap { grid-template-columns: 1.15fr 0.85fr; padding-block: 72px 96px; }
}

/* Maquette de téléphone — reprend l'écran d'accueil réel de l'app */
.phone {
  justify-self: center;
  width: min(300px, 100%);
  aspect-ratio: 300 / 610;
  max-width: 100%;
  padding: 12px;
  border-radius: 44px;
  background: #0B0F1A;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.screen {
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #F4F6FB;
  color: #0E1A33;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.4;
}
.screen-top { padding: 30px 16px 14px; background: #FFFFFF; }
.screen-top .hello { margin: 0; color: #67728A; font-size: 11px; }
.screen-top .title { margin: 2px 0 12px; font-weight: 800; font-size: 16px; color: #031C5C; letter-spacing: -0.01em; }
.screen-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  background: #EEF1F7;
  color: #67728A;
  font-size: 11px;
}
.screen-search svg { width: 14px; height: 14px; stroke: #67728A; flex-shrink: 0; }
.chips { display: flex; gap: 6px; padding: 12px 16px 4px; overflow: hidden; }
.chip {
  flex-shrink: 0;
  padding: 5px 11px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #DFE4EF;
  font-size: 10.5px;
  font-weight: 600;
  color: #33405C;
}
.chip.on { background: #0140C2; border-color: #0140C2; color: #FFFFFF; }
.screen-label { margin: 10px 16px 8px; font-weight: 750; font-size: 12.5px; color: #031C5C; }
.listing {
  margin: 0 16px 10px;
  border-radius: 16px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 6px 18px -10px rgba(1, 28, 92, 0.35);
}
.listing-photo {
  position: relative;
  height: 118px;
  background:
    radial-gradient(circle at 78% 22%, #FFD8A8 0 16px, transparent 17px),
    linear-gradient(180deg, #8DB4FF 0%, #CFE0FF 58%, #E9D9BF 58%, #D9C3A0 100%);
}
.listing-photo::before {
  /* silhouette de villa */
  content: "";
  position: absolute;
  left: 22%;
  bottom: 30px;
  width: 56%;
  height: 46px;
  background: #FFFFFF;
  box-shadow: inset 0 -12px 0 #EDE3D2;
  clip-path: polygon(0 34%, 50% 0, 100% 34%, 100% 100%, 0 100%);
}
.listing-photo::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: 30px;
  width: 12%;
  height: 22px;
  background: #F26E07;
  border-radius: 3px 3px 0 0;
}
.fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  z-index: 1;
}
.fav svg { width: 14px; height: 14px; fill: #F26E07; }
.listing-body { padding: 10px 12px 12px; }
.listing-body .name { margin: 0; font-weight: 700; font-size: 12.5px; color: #0E1A33; }
.listing-body .place { margin: 1px 0 6px; color: #67728A; font-size: 10.5px; }
.listing-body .price { margin: 0; font-weight: 800; color: #0140C2; font-size: 13px; }
.listing-body .price span { font-weight: 500; color: #67728A; font-size: 10.5px; }
.listing-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.listing-actions span {
  text-align: center;
  padding: 6px 0;
  border-radius: 9px;
  font-weight: 700;
  font-size: 10.5px;
}
.listing-actions .wa { background: #E3F6EA; color: #11783C; }
.listing-actions .call { background: #EAF0FD; color: #0140C2; }
.listing.small { display: grid; grid-template-columns: 64px 1fr; }
.listing.small .listing-photo { height: auto; min-height: 64px; }
.listing.small .listing-photo::before { left: 14%; width: 72%; height: 26px; bottom: 12px; }
.listing.small .listing-photo::after { left: 43%; width: 14%; height: 12px; bottom: 12px; }
.tabbar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 6px 14px;
  background: #FFFFFF;
  border-top: 1px solid #DFE4EF;
  font-size: 9.5px;
  color: #67728A;
  text-align: center;
}
.tabbar b { color: #0140C2; font-weight: 700; }
.tabbar i { display: block; width: 18px; height: 3px; margin: 0 auto 5px; border-radius: 3px; background: currentColor; opacity: 0.5; }
.tabbar b i { opacity: 1; }

/* ---------- Sections ---------- */
.section { padding-block: 72px; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--heading);
}
.section-head p { margin: 14px 0 0; color: var(--ink-soft); font-size: 1.05rem; }

.types {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.types .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding-block: 22px;
}
.types p { margin: 0 8px 0 0; font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.types ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.types li {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--heading);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Parcours en 3 étapes (vraie séquence : l'ordre compte) */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--navy);
  color: #FFFFFF;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.steps h3 { margin: 18px 0 8px; font-size: 1.15rem; color: var(--heading); }
.steps p { margin: 0; color: var(--ink-soft); }
@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* Bloc propriétaires : texte + maquette « Demandes reçues » */
.owners {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.owners .wrap { display: grid; gap: 48px; align-items: center; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.checks li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; }
.checks .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--tint);
  display: grid;
  place-items: center;
}
.checks .ico svg { width: 20px; height: 20px; stroke: var(--link); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.checks b { display: block; color: var(--heading); font-weight: 700; }
.checks span { color: var(--ink-soft); }
.owners .btn { margin-top: 32px; }

.requests {
  padding: 22px;
  border-radius: 20px;
  background: var(--ground);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.requests-title { margin: 0 0 4px; font-weight: 800; color: var(--heading); font-size: 1.05rem; }
.request {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.request-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.request-top b { color: var(--heading); font-size: 0.95rem; }
.request p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }
.request small { color: var(--muted); font-size: 0.8rem; }
.pill {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}
.pill-wait { background: #FFF1E3; color: #A74A00; }
.pill-ok { background: #E3F6EA; color: #11783C; }
@media (prefers-color-scheme: dark) {
  .pill-wait { background: #3A2410; color: #FFB877; }
  .pill-ok { background: #0F3320; color: #7EDCA2; }
}
.request-actions { display: flex; gap: 8px; margin-top: 6px; }
.request-actions span {
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}
.request-actions .yes { background: var(--blue); color: #FFFFFF; }
.request-actions .no { border: 1px solid var(--line); color: var(--ink-soft); }
@media (min-width: 900px) {
  .owners .wrap { grid-template-columns: 1fr 0.9fr; gap: 72px; }
}

/* Confiance */
.trust { display: grid; gap: 16px; }
.trust article {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.trust h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--heading); }
.trust p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.trust a { font-weight: 600; }
@media (min-width: 700px) { .trust { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .trust { grid-template-columns: repeat(4, 1fr); } }

/* Bandeau téléchargement */
.download {
  background: var(--navy);
  color: var(--on-navy);
}
.download .wrap {
  display: grid;
  gap: 28px;
  padding-block: 64px;
  align-items: center;
}
.download h2 {
  margin: 12px 0 0;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1.15;
  font-weight: 800;
}
.download p { margin: 12px 0 0; color: var(--on-navy-soft); max-width: 48ch; }
@media (min-width: 900px) {
  .download .wrap { grid-template-columns: 1fr auto; }
}

/* ---------- Pages internes (légal, support) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--on-navy);
  padding-block: 48px 96px;
}
.page-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero .lede { margin: 16px 0 0; max-width: 60ch; color: var(--on-navy-soft); font-size: 1.02rem; }
.meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; font-size: 0.85rem; }
.meta li { padding: 6px 12px; border: 1px solid var(--navy-line); border-radius: 999px; color: var(--on-navy-soft); }

.page {
  margin-top: -56px;
  padding-bottom: 64px;
  display: grid;
  gap: 24px;
}
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }

.essentials { padding: 24px; }
.essentials h2 { margin: 10px 0 18px; font-size: 1.15rem; color: var(--heading); }
.essentials ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.essentials li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; color: var(--ink-soft); font-size: 0.95rem; }
.essentials li b { display: block; color: var(--heading); font-weight: 650; }
.tick { width: 36px; height: 36px; border-radius: 10px; background: var(--tint); display: grid; place-items: center; }
.tick svg { width: 18px; height: 18px; stroke: var(--link); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.layout { display: grid; gap: 24px; }
.toc { padding: 20px 24px; }
.toc .eyebrow { color: var(--muted); }
.toc .eyebrow::before, .toc .eyebrow::after { display: none; }
.toc ol { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 2px; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: flex;
  gap: 10px;
  padding: 7px 10px;
  margin: 0 -10px;
  border-radius: 8px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
}
.toc a::before { content: counter(toc); min-width: 1.2em; color: var(--orange); font-weight: 700; font-variant-numeric: tabular-nums; }
.toc a:hover { background: var(--tint); color: var(--heading); }

.prose { padding: 8px 24px 28px; }
.prose section { padding-top: 28px; scroll-margin-top: 16px; }
.prose section + section { border-top: 1px solid var(--line); margin-top: 28px; }
.prose h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--heading);
}
.prose h2 .num { flex-shrink: 0; font-size: 0.8rem; font-weight: 700; color: var(--orange); font-variant-numeric: tabular-nums; letter-spacing: 0.08em; }
.prose h3 { margin: 20px 0 8px; font-size: 1.02rem; color: var(--heading); }
.prose p, .prose li { max-width: 68ch; color: var(--ink-soft); }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 14px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 20px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.prose ol.howto { margin: 0 0 14px; padding: 0; list-style: none; display: grid; gap: 12px; counter-reset: how; }
.prose ol.howto li { counter-increment: how; display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: baseline; }
.prose ol.howto li::before {
  content: counter(how);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--navy);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
}
.path { white-space: nowrap; font-size: 0.88em; padding: 1px 7px; border-radius: 6px; background: var(--tint); color: var(--heading); }

.data { margin: 4px 0 18px; display: grid; gap: 10px; }
.data-row { display: grid; gap: 6px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; }
.data-head { display: none; }
.data-row > div { font-size: 0.93rem; color: var(--ink-soft); }
.data-row > div:first-child { color: var(--heading); font-weight: 650; }
.data-row > div[data-label]::before {
  content: attr(data-label);
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.note {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 14px;
  padding: 14px 16px;
  margin: 0 0 14px;
  border-radius: 12px;
  background: var(--tint);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.note::before { content: ""; border-radius: 4px; background: var(--orange); }

.contact { padding: 28px 24px; display: grid; gap: 20px; align-items: center; }
.contact h2 { margin: 8px 0 6px; font-size: 1.2rem; color: var(--heading); }
.contact p { margin: 0; color: var(--ink-soft); max-width: 52ch; }
.contact .btn { justify-self: start; }
@media (max-width: 419px) {
  .contact { padding-inline: 18px; }
  .contact .btn { padding: 12px 14px; font-size: 0.88rem; gap: 8px; }
}

.faq { padding: 8px 24px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:first-child { border-top: 0; }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 650;
  color: var(--heading);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.3rem; line-height: 1; font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 18px; color: var(--ink-soft); max-width: 68ch; }

@media (min-width: 760px) {
  .wrap { padding-inline: 32px; }
  .essentials { padding: 28px 32px; }
  .essentials ul { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .layout { grid-template-columns: 240px 1fr; align-items: start; }
  .toc { position: sticky; top: 16px; }
  .prose { padding: 12px 40px 36px; }
  .faq { padding: 8px 40px; }
  .data { gap: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
  .data-row { grid-template-columns: 1.1fr 0.9fr 1.3fr; gap: 20px; border: 0; border-radius: 0; border-top: 1px solid var(--line); }
  .data-head { display: grid; border-top: 0; background: var(--tint); padding-block: 10px; }
  .data-head > div { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
  .data-row.data-head > div, .data-row.data-head > div:first-child { color: var(--muted); font-weight: 700; }
  .data-row > div[data-label]::before { display: none; }
  .contact { grid-template-columns: 1fr auto; padding: 32px 40px; }
  .contact .btn { justify-self: end; }
}

/* ---------- Pied de page ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .wrap { display: grid; gap: 32px; padding-block: 48px 32px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img {
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--line);
}
.footer-brand b { display: block; color: var(--heading); font-size: 1rem; }
.footer-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.footer-cols h2 {
  margin: 0 0 10px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-cols a { color: var(--ink-soft); text-decoration: none; overflow-wrap: anywhere; }
.footer-cols > div:last-child { grid-column: 1 / -1; }
.footer-cols a:hover { color: var(--link); text-decoration: underline; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}
@media (min-width: 820px) {
  .site-footer .wrap { grid-template-columns: 1fr 1.4fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-cols > div:last-child { grid-column: auto; }
  .footer-bottom { grid-column: 1 / -1; }
}
