/* =============================================================
   test-tdah-asrs — feuille de style autonome (hand-written)
   Charte CHAUDE : Terracotta/Ambre  primaire #EA580C + clair #FFF1E8
   Fond papier crème chaud (#FBF6F0) — registre éditorial chaleureux
   Polices : Fraunces (titres, serif souple) + Outfit (corps, sans)
   Aucune dépendance utilitaire ; classes propres à ce site.
   ============================================================= */

:root {
  /* Marque chaude */
  --rust-800: #7c2d12;
  --rust-700: #9a3412;
  --rust-600: #ea580c;   /* primaire */
  --rust-500: #f97316;
  --amber-300: #fdba74;
  --amber-200: #fed7aa;
  --cream-200: #fff1e8;  /* teinte claire */
  --cream-100: #fbf6f0;  /* papier chaud */
  --cream-50:  #fdfaf6;

  /* Neutres chauds */
  --ink-900: #231a14;
  --ink-800: #2f241c;
  --ink-700: #3f342c;
  --ink-500: #6b5d52;
  --ink-300: #a4978c;
  --line:    #ece2d8;
  --surface: #ffffff;

  /* Sémantique */
  --ok:   #15803d;
  --info: #b45309;

  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(74, 39, 16, .06);
  --shadow-md: 0 14px 34px -16px rgba(234, 88, 12, .35);
  --shadow-lg: 0 30px 70px -28px rgba(60, 30, 10, .45);
  --maxw: 1160px;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- Reset léger ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--cream-100);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.01em;
}
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--amber-300); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--rust-600); color: #fff; padding: .65rem 1.1rem; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.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;
}

/* ---- Conteneurs ---- */
.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.3rem; }
.shell--narrow { max-width: 800px; }
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--cream { background: var(--cream-200); }
.section--plain { background: var(--surface); }
.section--paper { background: var(--cream-100); }

/* =============================================================
   BANDE D'ACCENT + EN-TÊTE
   nav en pilule centrée, marque à gauche, CTA à droite
   ============================================================= */
.topbar { height: 5px; background: linear-gradient(90deg, var(--rust-700), var(--rust-500), var(--amber-300)); }

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 240, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead__bar { display: flex; align-items: center; gap: 1.25rem; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 13px; background: var(--rust-600); color: #fff;
  box-shadow: var(--shadow-md);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--ink-900); }
.brand__name b { color: var(--rust-600); font-weight: 600; }

.navpills { display: flex; align-items: center; gap: .2rem; margin-inline: auto; }
.navpills a {
  padding: .5rem .95rem; border-radius: var(--radius-pill);
  font-weight: 500; font-size: .95rem; color: var(--ink-500);
  transition: background .15s, color .15s;
}
.navpills a:hover { color: var(--rust-700); background: var(--cream-200); }
.navpills a[aria-current="page"] { color: var(--rust-700); background: var(--cream-200); font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; line-height: 1;
  padding: .8rem 1.35rem; border-radius: var(--radius-pill); border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--solid { background: var(--rust-600); color: #fff; box-shadow: var(--shadow-md); }
.btn--solid:hover { background: var(--rust-700); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--rust-700); border-color: var(--amber-300); }
.btn--outline:hover { background: var(--cream-200); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 13px; background: #fff; align-items: center; justify-content: center; color: var(--ink-700);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav { display: none; border-top: 1px solid var(--line); padding-block: .8rem 1.1rem; }
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: .7rem .6rem; font-weight: 500; color: var(--ink-700); border-radius: 11px; }
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { background: var(--cream-200); color: var(--rust-700); }
.mobile-nav .btn { margin-top: .6rem; }

/* =============================================================
   INTRO / HERO — crème chaud, centré, iframe en encart blanc
   ============================================================= */
.intro {
  position: relative; overflow: hidden;
  background:
    radial-gradient(820px 460px at 85% -12%, var(--cream-200), transparent 60%),
    radial-gradient(680px 480px at -8% 6%, #fff3ea, transparent 55%),
    var(--cream-100);
}
.intro__inner { text-align: center; padding-block: clamp(2.2rem, 4.5vw, 3.6rem); max-width: 780px; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--rust-700); background: #fff; border: 1px solid var(--amber-200);
  padding: .42rem .9rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.eyebrow svg { width: 15px; height: 15px; }

.intro h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-top: 1.1rem; }
.intro h1 em { font-style: italic; color: var(--rust-600); }
.intro__lead { font-size: 1.14rem; color: var(--ink-500); margin: 1.05rem auto 0; max-width: 56ch; }

.cred { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.6rem; }
.cred li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: .45rem .9rem; font-size: .88rem; font-weight: 500; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.cred svg { width: 16px; height: 16px; color: var(--rust-600); }

/* Encart du test : cadre dégradé chaud + barre "navigateur", corps BLANC */
.testframe {
  margin: clamp(1.8rem, 4vw, 2.8rem) auto 0; max-width: 900px;
  background: linear-gradient(135deg, var(--rust-600), var(--amber-300));
  padding: 6px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.testframe__bar {
  display: flex; align-items: center; gap: .55rem;
  padding: .7rem 1.1rem; background: var(--ink-900); color: #fff;
  border-radius: 20px 20px 0 0; font-size: .85rem; font-weight: 500;
}
.testframe__dots { display: inline-flex; gap: .35rem; }
.testframe__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); }
.testframe__dots i:first-child { background: var(--rust-500); }
.testframe__label { margin-left: .35rem; color: #f3e7dd; }
.testframe__body { background: #fff; border-radius: 0 0 20px 20px; overflow: hidden; }
.testframe__body iframe { width: 100%; height: 900px; border: 0; display: block; background: #fff; }

/* =============================================================
   En-têtes de section
   ============================================================= */
.band__head { max-width: 660px; margin-bottom: 2.4rem; }
.band__head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-block; color: var(--rust-700); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
}
.band__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: .55rem; }
.band__head p { color: var(--ink-500); margin-top: .85rem; font-size: 1.05rem; }

/* =============================================================
   TIMELINE — déroulé "comment ça marche" (rangée connectée)
   ============================================================= */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; counter-reset: tstep; }
.tstep {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem 1.4rem;
}
.tstep__num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; counter-increment: tstep;
  background: var(--cream-200); color: var(--rust-700);
  font-family: var(--font-head); font-weight: 600; font-size: 1.3rem;
}
.tstep__num::before { content: counter(tstep); }
.tstep h3 { font-size: 1.18rem; margin: .9rem 0 .4rem; }
.tstep p { font-size: .95rem; color: var(--ink-500); }

/* =============================================================
   ASSURANCES — bande de gages, icône + texte
   ============================================================= */
.assure { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.assure__item {
  background: var(--cream-100); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
}
.assure__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: #fff; color: var(--rust-600); border: 1px solid var(--amber-200); margin-bottom: .9rem;
}
.assure__icon svg { width: 24px; height: 24px; }
.assure__item h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.assure__item p { font-size: .9rem; color: var(--ink-500); }

/* =============================================================
   PATHWAYS — cartes adulte / enfant
   ============================================================= */
.paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 880px; margin-inline: auto; }
.path {
  display: flex; flex-direction: column; gap: .7rem; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.path:hover { border-color: var(--amber-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.path__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--cream-200); color: var(--rust-700); }
.path__icon svg { width: 28px; height: 28px; }
.path h3 { font-size: 1.35rem; }
.path p { color: var(--ink-500); flex: 1; }
.path .btn { align-self: flex-start; }

/* =============================================================
   LONGREAD — article éditorial
   ============================================================= */
.read { color: var(--ink-700); }
.read > * + * { margin-top: 1.2rem; }
.read h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-top: 2.6rem;
  padding-bottom: .55rem; border-bottom: 2px solid var(--cream-200);
}
.read h2:first-child { margin-top: 0; }
.read h3 { font-size: 1.35rem; margin-top: 2.1rem; color: var(--rust-700); }
.read p { color: var(--ink-500); }
.read strong { color: var(--ink-900); font-weight: 600; }
.read em { font-style: italic; }
.read a { color: var(--rust-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.read a:hover { color: var(--rust-600); }

.pullquote {
  background: var(--cream-200); border-left: 5px solid var(--rust-600);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.3rem 1.5rem;
}
.pullquote p { color: var(--ink-800); font-weight: 500; font-family: var(--font-head); font-size: 1.1rem; }

.read .tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.read table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 520px; }
.read table caption { caption-side: top; text-align: left; font-size: .82rem; color: var(--ink-300); padding: .8rem 1rem 0; }
.read th, .read td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
.read thead th { background: var(--cream-200); color: var(--rust-700); font-weight: 600; font-size: .86rem; letter-spacing: .01em; }
.read tbody tr:last-child td { border-bottom: 0; }
.read tbody tr:nth-child(even) td { background: var(--cream-50); }

.factgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.fact {
  display: flex; align-items: flex-start; gap: .75rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem;
}
.fact__n { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--cream-200); color: var(--rust-700); font-weight: 600; font-size: .85rem; display: grid; place-items: center; }
.fact span:last-child { font-size: .92rem; color: var(--ink-700); }

.ticks { display: grid; gap: .75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.ticks li { position: relative; padding-left: 2.1rem; color: var(--ink-500); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: .05em;
  width: 22px; height: 22px; border-radius: 7px; background: var(--rust-600); color: #fff;
  font-size: .78rem; font-weight: 700; display: grid; place-items: center;
}

/* =============================================================
   QBANK — aperçu des questions par dimension
   ============================================================= */
.dimblock + .dimblock { margin-top: 2.4rem; }
.dimrow { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.dimrow .count { color: var(--ink-300); font-size: .88rem; font-weight: 600; }
.dimtag { display: inline-flex; align-items: center; padding: .3rem .85rem; border-radius: var(--radius-pill); font-weight: 600; font-size: .8rem; }
.dimtag--att { background: var(--cream-200); color: var(--rust-700); }
.dimtag--hyp { background: #fde7d2; color: #9a3412; }
.dimtag--imp { background: #fbe3c4; color: #b45309; }

.qgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.qitem {
  display: flex; align-items: flex-start; gap: .8rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; transition: border-color .2s, box-shadow .2s;
}
.qitem:hover { border-color: var(--amber-300); box-shadow: var(--shadow-sm); }
.qitem__n { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--cream-200); color: var(--rust-700); font-weight: 600; font-size: .9rem; display: grid; place-items: center; }
.qitem p { font-size: .95rem; color: var(--ink-700); }

/* =============================================================
   SIGNS — colonnes de signes (page enfant)
   ============================================================= */
.signs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-bottom: 2rem; }
.sign { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; border-top: 4px solid var(--rust-600); }
.sign__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--cream-200); color: var(--rust-700); margin-bottom: .9rem; }
.sign__icon svg { width: 24px; height: 24px; }
.sign h3 { font-size: 1.15rem; margin-bottom: .7rem; }
.sign li { position: relative; padding-left: 1.25rem; font-size: .92rem; color: var(--ink-500); margin-top: .5rem; }
.sign li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--rust-500); }

.alert {
  display: flex; gap: 1.1rem; background: #fff;
  border: 1px solid var(--amber-200); border-left: 5px solid var(--rust-600);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.alert > svg { flex: none; width: 26px; height: 26px; color: var(--rust-600); margin-top: 2px; }
.alert h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.alert p { color: var(--ink-500); font-size: .96rem; }
.alert .btn { margin-top: .9rem; }

/* =============================================================
   JOURNAL — grille blog
   ============================================================= */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.post {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.post:hover { border-color: var(--amber-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.post:hover h3 { color: var(--rust-700); }
.post p { font-size: .92rem; color: var(--ink-500); }
.post--all { display: grid; place-items: center; text-align: center; background: var(--cream-200); border-style: dashed; border-color: var(--amber-300); }
.post--all .lead { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--rust-700); display: block; }
.post--all span:last-child { font-size: .9rem; color: var(--ink-500); }

/* =============================================================
   QA — FAQ accordéon <details>, chevron pivotant
   ============================================================= */
.qa { display: grid; gap: .8rem; max-width: 800px; margin-inline: auto; }
.qa details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 1.4rem; transition: border-color .2s, box-shadow .2s;
}
.qa details[open] { border-color: var(--amber-300); box-shadow: var(--shadow-sm); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  list-style: none; cursor: pointer; padding: 1.2rem 0;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink-900);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .chev {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream-200); color: var(--rust-700);
  display: grid; place-items: center; transition: transform .25s, background .2s, color .2s;
}
.qa summary .chev svg { width: 18px; height: 18px; }
.qa details[open] summary .chev { transform: rotate(180deg); background: var(--rust-600); color: #fff; }
.qa__a { color: var(--ink-500); padding: 0 0 1.3rem; margin: 0; }

/* =============================================================
   Page intérieure simple (mentions, contact…)
   ============================================================= */
.page-head { background: linear-gradient(180deg, var(--cream-200), var(--cream-100)); padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.page-head p { color: var(--ink-500); margin-top: .8rem; font-size: 1.1rem; }

/* =============================================================
   PAGES INTERNES — formulaire contact + documents légaux
   ============================================================= */
.inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.6rem; align-items: start; }
.formcard, .infocard, .doc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; }
.formcard h2 { font-size: 1.4rem; margin-bottom: 1.2rem; }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink-700); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink-800);
  background: var(--cream-50); border: 1px solid var(--line); border-radius: 11px; padding: .7rem .85rem;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber-300); box-shadow: 0 0 0 3px rgba(253, 186, 116, .3); }
.field textarea { min-height: 120px; resize: vertical; }
.infocard + .infocard { margin-top: 1.2rem; }
.infocard h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.infocard p { color: var(--ink-500); font-size: .95rem; }
.infocard p + p { margin-top: .7rem; }
.infocard--soft { background: var(--cream-200); border-color: var(--amber-200); }
.infoline { display: flex; align-items: center; gap: .75rem; margin-top: .8rem; }
.infoline .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--cream-200); color: var(--rust-600); display: grid; place-items: center; flex: none; }
.infoline .ic svg { width: 20px; height: 20px; }
.infoline small { color: var(--ink-300); display: block; }
.infoline a { color: var(--rust-700); font-weight: 600; }
.doc-card + .doc-card { margin-top: 1.2rem; }
.doc-card h2 { font-size: 1.3rem; margin-bottom: .7rem; }
.doc-card p { color: var(--ink-500); }
.doc-card p + p { margin-top: .7rem; }
.doc-card address { font-style: normal; background: var(--cream-200); border-radius: var(--radius); padding: 1.1rem 1.2rem; color: var(--ink-700); margin-top: .6rem; }
.doc-card a { color: var(--rust-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   COLOPHON — pied de page chaud foncé
   ============================================================= */
.colophon { background: var(--ink-900); color: #d8cabd; border-top: 5px solid var(--rust-600); }
.colophon a { color: #d8cabd; }
.colophon a:hover { color: #fff; }
.colophon__grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 2.6rem; padding-block: 3.6rem 2rem; }
.colophon .brand__name { color: #fff; }
.colophon .brand__name b { color: var(--amber-300); }
.colophon .brand__mark { box-shadow: none; }
.colophon__about { margin-top: 1rem; max-width: 44ch; font-size: .95rem; color: #b0a094; }
.colophon__col h3 { font-family: var(--font-body); color: #fff; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.colophon__col li + li { margin-top: .65rem; }
.colophon__col li { font-size: .95rem; display: flex; align-items: center; gap: .55rem; }
.colophon__col svg { width: 16px; height: 16px; color: var(--amber-300); flex: none; }
.colophon__disclaimer { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.6rem; font-size: .85rem; color: #9b8b7e; }
.colophon__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .85rem; color: #9b8b7e; }
.colophon__bottom nav { display: flex; gap: 1.5rem; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 920px) {
  .inner { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .assure { grid-template-columns: repeat(2, 1fr); }
  .paths { grid-template-columns: 1fr; }
  .signs { grid-template-columns: 1fr; }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .colophon__grid { grid-template-columns: 1fr 1fr; }
  .colophon__brand-col { grid-column: 1 / -1; }
  .testframe__body iframe { height: 820px; }
}
@media (max-width: 680px) {
  .navpills, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .factgrid, .qgrid { grid-template-columns: 1fr; }
  .assure { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .colophon__grid { grid-template-columns: 1fr; }
  .colophon__bottom { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
