/* ============================================================================
   formation-duerp.fr : CSS bespoke
   DNA : Archivo (titres, grotesque geometrique) / Figtree (corps) / Newsreader
   italic (etiquettes des parcours, chapos). Palette encre verte/teal pedagogique
   COOL, accent <=10%. Hero dual-track (deux parcours). Anti-footprint : aucune
   structure bespoke reprise d'un autre EMD de la niche.
   ========================================================================== */

:root {
  /* Neutres tintés COOL (gris-bleu froid), fond clair pédagogique */
  --paper:      #f6f8f8;
  --paper-2:    #eaf0ef;
  --ink:        #16211f;   /* near-black légèrement vert/froid */
  --muted:      #586462;
  --line:       #d6dedc;
  --line-soft:  #e4ebe9;
  --card:       #ffffff;
  /* Accent : encre verte/teal profonde (oklch hue ~178), sérieuse, <=10% surface */
  --accent:     oklch(0.52 0.085 184);
  --accent-2:   oklch(0.43 0.085 188);   /* plus foncé, pour textes/hover */
  --accent-ink: oklch(0.40 0.075 188);
  --accent-bg:  oklch(0.95 0.022 185);
  --accent-deep:oklch(0.30 0.055 190);   /* fond bandeau sombre */
  --ok:         oklch(0.55 0.12 150);
  --r-card:     12px;     /* cartes douces */
  --r-soft:     8px;      /* boutons / inputs */
  --maxw:       1060px;
  --gap:        clamp(2.6rem, 6vw, 5rem);
  --fz:         clamp(1rem, 0.96rem + 0.2vw, 1.07rem);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: var(--fz);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(1.95rem, 1.45rem + 2.3vw, 3rem); }
h2 { font-size: clamp(1.45rem, 1.18rem + 1.2vw, 2.05rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { text-wrap: pretty; }
a  { color: var(--accent-ink); text-underline-offset: 2px; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; z-index: 100; border-radius: 0 0 var(--r-soft) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--gap); }
.section.narrow .wrap { width: min(100% - 2.4rem, 740px); }
.section.tint { background: var(--paper-2); }
.narrow-col { width: min(100% - 2.4rem, 760px) !important; }
.narrow-lead { max-width: 64ch; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; gap: 1rem; min-height: 66px; }
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 1.16rem;
  color: var(--ink); text-decoration: none; letter-spacing: -0.01em; margin-right: auto;
}
.brand b { color: var(--accent-2); font-weight: 700; }
.brand-mark {
  width: 13px; height: 22px; border-radius: 3px;
  background: linear-gradient(180deg, var(--accent) 0 50%, var(--ink) 50% 100%);
  display: inline-block;
}
.nav { display: flex; gap: .1rem; align-items: center; flex-wrap: nowrap; }
.nav a {
  color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500;
  padding: .5rem .55rem; border-radius: var(--r-soft); white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); background: var(--paper-2); }
.nav .nav-cta {
  background: var(--accent); color: #fff; border-radius: var(--r-soft);
  padding: .55rem .9rem; margin-left: .35rem; font-weight: 600; white-space: nowrap;
}
.nav .nav-cta:hover { background: var(--accent-2); color: #fff; }
.nav-burger {
  display: none; flex-direction: column; gap: 4px; background: none; border: 0;
  padding: .6rem; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 1040px) {
  .nav-burger { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .6rem 1.2rem 1rem; gap: .1rem; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .8rem .6rem; min-height: 44px; display: flex; align-items: center; font-size: .95rem; }
  .nav .nav-cta { margin: .5rem 0 0; justify-content: center; }
}

/* ── Buttons (soft) ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Figtree", sans-serif; font-size: 1rem; font-weight: 600; line-height: 1;
  padding: .85rem 1.4rem; min-height: 48px; border-radius: var(--r-soft);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none; transition: .16s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #0d1816; color: #fff; }
.btn-ghost { background: transparent; color: var(--accent-2); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); background: var(--accent-bg); }
.btn-on-dark { color: #fff; border-color: #ffffff55; }
.btn-on-dark:hover { color: #fff; border-color: #fff; background: #ffffff1a; }
.btn.wide { width: 100%; }

/* ── Eyebrow / kicker ───────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: var(--accent-2);
  background: var(--accent-bg); padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem;
}
.kicker { font-size: .79rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 .6rem; }

/* ── Hero HOME (dual-track) ──────────────────────────────────────────────── */
.hero { padding-top: clamp(1.8rem, 4vw, 3rem); padding-bottom: var(--gap); }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-areas:
    "head form"
    "tracks form";
  gap: clamp(1.4rem, 3vw, 2.4rem) clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}
.hero__head { grid-area: head; }
.hero__tracks { grid-area: tracks; }
.hero__form { grid-area: form; align-self: start; }
.hero h1 { margin-bottom: .5rem; }
.hero__lede { font-size: 1.06rem; color: var(--muted); max-width: 56ch; margin: 0; }
.hero-sources { display: block; margin-top: .8rem; font-size: .84rem; color: var(--muted); }

/* Les parcours : rail de voies (2 ou 3) */
.hero__tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
/* Hub à 3 voies : pile verticale de cartes horizontales compactes à côté du form */
.hero__tracks-3 { grid-template-columns: 1fr; gap: .8rem; }
.hero__tracks-3 .track {
  flex-direction: row; align-items: center; gap: 1rem; padding: 1rem 1.1rem; flex-wrap: wrap;
}
.hero__tracks-3 .track-n { flex-direction: column; align-items: center; gap: .1rem; margin: 0; min-width: 56px; }
.hero__tracks-3 .track-num { font-size: 1.7rem; }
.hero__tracks-3 .track-label { font-size: .82rem; text-align: center; }
.hero__tracks-3 .track-body { flex: 1 1 220px; }
.hero__tracks-3 .track h3 { font-size: 1.02rem; margin: 0 0 .2rem; }
.hero__tracks-3 .track-desc { margin: 0; font-size: .9rem; }
.hero__tracks-3 .track-cta { width: auto; flex: 0 0 auto; margin-top: 0; }
.track {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 1.2rem 1.25rem; display: flex; flex-direction: column;
}
.track-b { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); box-shadow: 0 1px 0 var(--accent-bg); }
.track-n { display: flex; align-items: center; gap: .55rem; margin: 0 0 .5rem; }
.track-num {
  font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 1.5rem;
  color: var(--accent); line-height: 1;
}
.track-label {
  font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 1.02rem; color: var(--muted);
}
.track-body { flex: 1; }
.track h3 { font-size: 1.06rem; margin: 0 0 .4rem; }
.track-desc { color: var(--muted); font-size: .94rem; margin: 0 0 1rem; }
.track-cta { width: 100%; min-height: 44px; padding: .7rem 1rem; font-size: .94rem; }

/* Carte formulaire compacte du hero */
.hero-form { padding: clamp(1.1rem, 2.4vw, 1.4rem); }
.hero-form h3 { font-size: 1.16rem; margin-bottom: .2rem; }
.hero-form .hf-sub { color: var(--muted); font-size: .9rem; margin: 0 0 .9rem; }
.hero-form .form { gap: .7rem; }
.hero-form .form label { font-size: .85rem; gap: .25rem; }
.hero-form .form input, .hero-form .form select { padding: .58rem .7rem; min-height: 42px; }
.hero-form .consent { margin: .8rem 0; font-size: .83rem; }
.hero-form .btn { min-height: 46px; }
.hero-form .reassurance { margin-top: .7rem; font-size: .8rem; }
.hero__form .card-law { margin-top: 1rem; }

@media (max-width: 1040px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "form" "tracks";
    gap: 1rem;
  }
  .hero { padding-top: 1rem; padding-bottom: clamp(2.2rem, 6vw, 3rem); }
  .hero h1 { font-size: 1.62rem; margin-bottom: .35rem; }
  .hero__head .hero__lede { display: none; }
  .hero__head .hero-sources { display: none; }
  .hero-form { padding: 1rem; }
}
@media (max-width: 460px) {
  .hero__tracks { grid-template-columns: 1fr; }
}

/* ── Hero INNER (pages money / devis) : split texte + aside ───────────────── */
.hero-inner .wrap {
  display: grid; grid-template-columns: 1.1fr .9fr;
  grid-template-areas: "main aside"; gap: clamp(1.6rem, 4vw, 3rem); align-items: start;
}
.hero-inner__main { grid-area: main; }
.hero-inner__aside { grid-area: aside; display: grid; gap: 1rem; }
.hero-inner .lede { font-size: 1.08rem; color: var(--muted); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
@media (max-width: 880px) {
  .hero-inner .wrap { grid-template-columns: 1fr; grid-template-areas: "main" "aside"; }
}

/* ── « L'essentiel en clair » ────────────────────────────────────────────── */
.rule-clear { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.rule-clear .rc-head {
  font-family: "Archivo", sans-serif; font-weight: 600; font-size: .98rem;
  padding: .85rem 1.15rem; border-bottom: 1px solid var(--line-soft); color: var(--ink);
  background: var(--accent-bg);
}
.rule-clear dl { margin: 0; }
.rule-clear .rc-row { display: grid; gap: .15rem; padding: .85rem 1.15rem; }
.rule-clear .rc-row + .rc-row { border-top: 1px solid var(--line-soft); }
.rule-clear dt { font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); }
.rule-clear dd { margin: 0; }
.rule-clear dd .ans { font-weight: 600; font-size: 1.02rem; }
.rule-clear dd .ref { display: block; font-size: .82rem; color: var(--muted); margin-top: .1rem; }

/* essentials layout (home) */
.essentials { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; margin-top: 1.4rem; }
.essentials-txt { margin: 0; }
@media (max-width: 820px) { .essentials { grid-template-columns: 1fr; } }

/* ── Fiche article daté ──────────────────────────────────────────────────── */
.card-law { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--r-card); padding: 1.1rem 1.2rem; }
.card-law .cl-art { font-family: "Archivo", sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); margin: 0; }
.card-law .cl-note { font-weight: 400; color: var(--muted); font-size: .86rem; }
.card-law .cl-quote { font-family: "Newsreader", Georgia, serif; font-style: italic; color: var(--muted); margin: .5rem 0; font-size: 1rem; line-height: 1.5; }
.card-law .cl-meta { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--ok); font-weight: 600; }
.card-law .cl-meta::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }

/* ── Prose ──────────────────────────────────────────────────────────────── */
.prose > * + * { margin-top: 1.05rem; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .4rem; }
.prose strong { font-weight: 600; }
.lead-p { font-size: 1.1rem; color: var(--muted); }
.form-lead { font-size: 1rem; }
.after-list { margin-top: 1.3rem; }
.band-spacer { margin-top: 2rem; }
.check-list { list-style: none; padding-left: 0; margin-top: 1.2rem; }
.check-list li { position: relative; padding-left: 1.7rem; color: var(--ink); margin-top: .5rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 11px; height: 6px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* ── Cards grid ─────────────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.3rem 1.4rem; }
.card h3 { margin-top: 0; font-size: 1.08rem; }
.card p { color: var(--muted); margin: 0; font-size: .95rem; }
.card a.card-link, .after-list a.card-link { font-weight: 600; text-decoration: none; }
.card a.card-link::after, .after-list a.card-link::after { content: " →"; }
.card-soon .soon-tag { margin-top: .9rem; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); }

/* ── Risk checklist ─────────────────────────────────────────────────────── */
.risk-list { margin-top: 1.4rem; }
.risk-list ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: .7rem; }
.risk-list li {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-soft);
  padding: .85rem 1rem .85rem 2.4rem; font-size: .96rem; color: var(--ink);
}
.risk-list li::before {
  content: ""; position: absolute; left: .95rem; top: 1.1rem; width: 9px; height: 9px;
  border-radius: 2px; background: var(--accent);
}

/* ── Mandate : déroulé de mission numéroté 01..05 (sous-cocon rédaction) ──── */
.mandate { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1rem; counter-reset: none; }
.mandate-step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.2rem 1.4rem;
}
.mandate-step .ms-num {
  font-family: "Newsreader", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: 2.1rem; line-height: 1; color: var(--accent); min-width: 2.4ch;
}
.mandate-step .ms-body h3 { margin: 0 0 .3rem; font-size: 1.08rem; }
.mandate-step .ms-body p { margin: 0; color: var(--muted); font-size: .96rem; }
@media (max-width: 560px) {
  .mandate-step { grid-template-columns: 1fr; gap: .4rem; padding: 1.1rem 1.2rem; }
  .mandate-step .ms-num { font-size: 1.7rem; }
}

/* ── Deliverable : le livrable concret ──────────────────────────────────── */
.deliverable-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: .8rem; }
.deliverable-list li {
  position: relative; background: var(--accent-bg); border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  border-radius: var(--r-card); padding: 1.1rem 1.2rem 1.1rem 2.6rem; font-size: .96rem; color: var(--ink);
}
.deliverable-list li::before {
  content: ""; position: absolute; left: 1rem; top: 1.45rem; width: 11px; height: 6px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}
.deliverable-list li strong { color: var(--ink); }

/* ── Table (exemple) → cards <640 ───────────────────────────────────────── */
.ex-table { margin: 1.4rem 0 0; }
.ex-table figcaption { font-size: .84rem; color: var(--muted); margin-top: .7rem; font-style: italic; font-family: "Newsreader", Georgia, serif; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-card); }
table.data { width: 100%; border-collapse: collapse; font-size: .94rem; background: var(--card); }
table.data th, table.data td { padding: .75rem .9rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.data th { font-family: "Archivo", sans-serif; font-weight: 600; background: var(--accent-bg); color: var(--ink); }
table.data tr:last-child td { border-bottom: 0; }
@media (max-width: 660px) {
  table.data, table.data thead, table.data tbody, table.data tr, table.data th, table.data td { display: block; }
  table.data thead { position: absolute; left: -9999px; }
  .table-wrap { overflow: visible; border: 0; }
  table.data tr { border: 1px solid var(--line); border-radius: var(--r-card); margin-bottom: .8rem; background: var(--card); padding: .3rem .2rem; }
  table.data td { border-bottom: 1px solid var(--line-soft); padding-left: 42%; position: relative; min-height: 44px; }
  table.data td:last-child { border-bottom: 0; }
  table.data td::before {
    content: attr(data-label); position: absolute; left: .9rem; top: .75rem; width: 36%;
    font-weight: 600; font-size: .78rem; color: var(--accent-2); text-transform: uppercase; letter-spacing: .02em;
  }
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq details { border: 1px solid var(--line); border-radius: var(--r-card); background: var(--card); margin-bottom: .7rem; }
.faq summary {
  cursor: pointer; padding: 1rem 1.2rem; font-family: "Archivo", sans-serif; font-weight: 600; font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-2); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq details > p { padding: .5rem 1.2rem 1.1rem; margin: 0; color: var(--muted); }

/* ── Form ───────────────────────────────────────────────────────────────── */
.form-block { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(1.4rem, 3vw, 2rem); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; font-weight: 500; }
.form label.wide { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  font: inherit; font-size: .98rem; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: var(--r-soft);
  background: var(--paper); color: var(--ink); min-height: 44px; width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--accent); background: #fff; outline: none; }
.form textarea { min-height: 92px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); margin: 1.1rem 0; }
.consent input { margin-top: .25rem; min-width: 20px; min-height: 20px; accent-color: var(--accent); }
.field-opt { color: var(--muted); font-weight: 400; }
.reassurance { font-size: .85rem; color: var(--muted); margin-top: .9rem; text-align: center; }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

/* ── Magnet (secondaire) ────────────────────────────────────────────────── */
.magnet { background: var(--accent-bg); border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line)); border-radius: var(--r-card); padding: 1.4rem 1.6rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.magnet .magnet-txt { flex: 1 1 260px; }
.magnet h3 { margin: 0 0 .3rem; }
.magnet p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band { background: var(--accent-deep); color: #fff; border-radius: var(--r-card); padding: clamp(1.8rem, 4vw, 2.8rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d3e2df; max-width: 56ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); background: var(--paper-2); padding-block: 2.6rem; margin-top: 2rem; }
.site-footer .wrap { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { font-family: "Archivo", sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: .7rem; }
.site-footer a { display: block; color: var(--ink); text-decoration: none; font-size: .93rem; padding: .25rem 0; }
.site-footer a:hover { color: var(--accent-2); }
.site-footer .foot-brand { font-family: "Archivo", sans-serif; font-size: 1.1rem; font-weight: 700; }
.site-footer .foot-tag { color: var(--muted); font-size: .9rem; margin: .4rem 0 0; max-width: 36ch; }
.site-footer .foot-legal { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 1.2rem; font-size: .82rem; color: var(--muted); }
.site-footer .foot-legal a { display: inline; }
@media (max-width: 720px) { .site-footer .wrap { grid-template-columns: 1fr; } }

/* ── Consent banner ─────────────────────────────────────────────────────── */
.consent-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 520px; margin-inline: auto; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1rem 1.2rem; box-shadow: 0 10px 40px #16211f22; z-index: 60; display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.consent-banner p { margin: 0; flex: 1 1 200px; font-size: .9rem; }
.consent-banner .btn { padding: .55rem 1.1rem; min-height: 40px; font-size: .9rem; }

/* ── Note source ────────────────────────────────────────────────────────── */
.note-source { font-size: .86rem; color: var(--muted); border-left: 2px solid var(--accent); padding-left: .9rem; margin-top: 1.4rem; }
