/* ============================================================
   VieKey Consulting — editorial design system
   Serif display: Playfair Display (h1 italic signature). Sans body/UI: Inter.
   Palette: corporate VieKey cyan/blue on cool paper (logo-derived:
   cyan #02C2C5, blue #0880C2; deck theme 02C0C3/0563C1/4472C4/44546A).
   Per-region accent tints via body.region-* (visibly different per
   country, same corporate family).
   Fonts are SELF-HOSTED (hard rule 7: no third-party requests
   on personalised routes; OFL licences in /fonts/).
   ============================================================ */

@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/playfair-display-latin-wght-normal.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/playfair-display-latin-wght-italic.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


:root {
  --paper: #f6f9fb;
  --paper-deep: #ebf2f5;
  --ink: #16232b;
  --ink-soft: #3d4e5a;
  --grey: #64747f;
  --accent: #028a8d;         /* text-safe darkened brand cyan */
  --accent-bright: #02c2c5;  /* logo cyan - decoration/borders */
  --accent-deep: #026b6e;
  --blue: #0880c2;           /* logo blue - secondary accent */
  --blue-deep: #0663a0;
  --rule: #dce6eb;
  --rule-strong: #b9cbd4;
  --max: 74rem;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --measure: 68ch;
  --lh-body: 1.6;
  --fs-body: clamp(1.0625rem, 0.5vw + 1rem, 1.125rem);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Reset & base ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 1rem;
}
h1 {
  font-style: italic;                 /* signature */
  font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h2 { font-style: normal; font-size: clamp(1.75rem, 3vw + 0.5rem, 2.25rem); line-height: 1.15; }
h3 { font-style: normal; font-size: clamp(1.375rem, 2vw + 0.4rem, 1.625rem); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-body); font-style: normal; font-weight: 600; margin: 0 0 1rem; }
h4 { font-size: 1.25rem; line-height: 1.3; }
h5 { font-size: 1.125rem; line-height: 1.35; }
h6 { font-size: 0.875rem; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.04em; }

p { margin: 0 0 1.1rem; }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease, color 120ms ease;
}

a:hover { border-bottom-color: currentColor; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}

ul { padding-left: 1.2rem; }

img { max-width: 100%; }

::selection { background: var(--accent); color: var(--paper); }

/* ---------- Layout primitives ---------- */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.measure { max-width: 44rem; }

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.kicker-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--grey);
  font-variant-numeric: oldstyle-nums;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.header-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: none;
}

.wordmark:hover { color: var(--accent); }

.wordmark .wordmark-dot { color: var(--accent); }

.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
}

.site-nav a:hover { color: var(--ink); border-bottom-color: var(--rule-strong); }

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav-toggle { display: inline-block; }
  .header-inner { align-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 0.5rem 1.5rem 1rem;
    z-index: 50;
  }
  .site-nav.is-open { display: flex; }
  .site-nav li { border-top: 1px solid var(--rule); }
  .site-nav a { display: block; padding: 0.85rem 0; font-size: 1rem; }
  .site-header { position: relative; }
}

/* ---------- Hero ---------- */

.hero {
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid var(--rule);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 500;
  max-width: 20ch;
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-subline {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40rem;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--ink);
  transition: background 120ms ease, color 120ms ease;
}

.btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--paper);
}

.btn-quiet {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-strong);
}

.btn-quiet:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---------- Proof points ---------- */

.proofs {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.proofs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.proof h2 {
  font-size: 1.3rem;
  margin: 0.6rem 0 0.6rem;
}

.proof p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 820px) {
  .proofs-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Section scaffolding ---------- */

.section { padding: 4.5rem 0; border-bottom: 1px solid var(--rule); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0;
}

.section-head .more-link {
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- Notes / insight cards ---------- */

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 3rem;
}

.note-card {
  border-top: 1px solid var(--rule-strong);
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
}

.note-card.is-emphasised { border-top: 3px solid var(--accent); padding-top: calc(1.4rem - 2px); }

.note-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.9rem;
}

.note-meta .note-topic { color: var(--accent); }

.note-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.note-card h3 a { color: var(--ink); border-bottom: none; }

.note-card h3 a:hover { color: var(--accent); }

.note-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.note-card .read-link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 820px) {
  .notes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- Practice grid (home) ---------- */

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
}

.practice-item {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0 1.7rem;
}

.practice-item h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }

.practice-item h3 a { color: var(--ink); border-bottom: none; }

.practice-item h3 a:hover { color: var(--accent); }

.practice-item p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

.practice-item .kicker-num { display: block; margin-bottom: 0.4rem; }

@media (max-width: 820px) {
  .practice-grid { grid-template-columns: 1fr; }
}

/* ---------- About strip ---------- */

.about-strip { background: var(--paper-deep); }

.about-strip blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.35;
  max-width: 34ch;
}

.about-strip .attribution {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--grey);
}

/* ---------- Contact CTA ---------- */

.contact-cta { text-align: left; }

.contact-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 24ch;
}

.contact-cta p { color: var(--ink-soft); max-width: 38rem; }

/* ---------- Page headers (interior) ---------- */

.page-head {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--rule);
}

.page-head h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  max-width: 22ch;
  margin-bottom: 1.2rem;
}

.page-head .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0;
}

/* ---------- Practice page sections ---------- */

.pillar {
  padding: 3.8rem 0;
  border-bottom: 1px solid var(--rule);
}

.pillar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem 4.5rem;
}

.pillar h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.pillar .positioning {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.pillar ul.capabilities {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.pillar ul.capabilities li {
  padding: 0.65rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.97rem;
}

.pillar ul.capabilities li::before {
  content: "—";
  color: var(--accent);
  margin-right: 0.7rem;
}

.matters h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.matters ul { list-style: none; padding: 0; margin: 0; }

.matters li {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.45;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
}

@media (max-width: 820px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ---------- Insights index ---------- */

.insight-feature {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.insight-feature h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 26ch;
  margin: 0.5rem 0 1rem;
}

.insight-feature h2 a { color: var(--ink); border-bottom: none; }

.insight-feature h2 a:hover { color: var(--accent); }

.insight-feature .standfirst {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.insight-list { padding: 3rem 0 4rem; }

.insight-row {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1rem 3rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--rule);
}

.insight-row .note-meta { margin: 0.3rem 0 0; }

.insight-row h2 { font-size: 1.7rem; margin-bottom: 0.6rem; }

.insight-row h2 a { color: var(--ink); border-bottom: none; }

.insight-row h2 a:hover { color: var(--accent); }

.insight-row p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0.6rem; max-width: 40rem; }

@media (max-width: 700px) {
  .insight-row { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ---------- Generated insight index (Stage C, pipeline-emitted) ---------- */

.insight-index { list-style: none; padding: 0; margin: 2rem 0 1rem; }

.insight-index li { border-top: 1px solid var(--rule); padding: 1.8rem 0; }

.insight-index li > a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-bottom: none;
  display: inline-block;
}

.insight-index li > a:hover { color: var(--accent); }

.insight-index li > p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0.5rem 0 0;
  max-width: 40rem;
}

.insight-index .insight-date {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--grey);
}

/* ---------- Article pages ---------- */

.article-head { padding: 4.5rem 0 2.5rem; }

.article-head h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  max-width: 24ch;
  margin: 1rem 0 1.4rem;
}

.article-body { padding-bottom: 4.5rem; }

.article-body > * { max-width: 44rem; }

.article-body h2 {
  font-size: 1.5rem;
  margin: 2.6rem 0 0.9rem;
}

.article-body p, .article-body li { font-size: 1.03rem; line-height: 1.75; }
.article-body p { max-width: var(--measure); }

.tldr {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 1.4rem 0 1rem;
  margin: 0 0 2.2rem;
}

.tldr h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.8rem;
}

.tldr ul { list-style: none; padding: 0; margin: 0; }

.tldr li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.98rem;
}

.tldr li:first-child { border-top: none; }

.article-contact {
  margin-top: 3rem;
  border-top: 1px solid var(--rule-strong);
  padding-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.article-footer-nav {
  padding: 0 0 4rem;
  font-size: 0.92rem;
}

/* ---------- About page ---------- */

.about-section { padding: 3.5rem 0; border-bottom: 1px solid var(--rule); }

.steps { list-style: none; padding: 0; margin: 2rem 0 0; counter-reset: step; }

.steps li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--rule);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--accent);
  font-variant-numeric: oldstyle-nums;
}

.steps h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }

.steps p { font-size: 0.97rem; color: var(--ink-soft); margin: 0; }

/* ---------- Contact page ---------- */

.contact-page { padding: 4.5rem 0 5.5rem; }

.contact-email {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  display: inline-block;
  margin: 1.5rem 0;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
}

.contact-email:hover { color: var(--accent); }

.contact-details {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  max-width: 44rem;
}

.contact-details h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.6rem;
}

.contact-details p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 640px) {
  .contact-details { grid-template-columns: 1fr; }
}

/* ---------- Privacy / legal prose ---------- */

.legal-body { padding: 3rem 0 5rem; }

.legal-body > * { max-width: 44rem; }

.legal-body h2 { font-size: 1.35rem; margin: 2.4rem 0 0.8rem; }

.legal-body p, .legal-body li { font-size: 0.98rem; line-height: 1.7; color: var(--ink-soft); }

.legal-body .updated { font-size: 0.85rem; color: var(--grey); }

/* ---------- Personalisation disclosure ---------- */

.adapt-disclosure {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}

.adapt-disclosure p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--grey);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #c2d2db;
  padding: 3.5rem 0 2.5rem;
  font-size: 0.9rem;
}

.site-footer a { color: #e2ecf2; border-bottom-color: transparent; }

.site-footer a:hover { color: #fff; border-bottom-color: #fff; }

.site-footer a:focus-visible { outline-color: #e2ecf2; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #f2f7fa;
  margin-bottom: 0.8rem;
}

.footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.6rem; }

.footer-legal {
  border-top: 1px solid #2a3b47;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: #8ca2af;
  max-width: 52rem;
}

.footer-copy { font-size: 0.85rem; color: #8ca2af; margin-top: 1rem; }

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ============================================================
   Markdown adapters — the compose pipeline emits plain markdown
   HTML (p/strong/ul) inside the section wrappers; these rules
   shape it into the editorial layout without changing content.
   ============================================================ */

.hero .wrap > p:not(.eyebrow):first-of-type {
  margin: 0 0 1.6rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40rem;
}
.hero .wrap > p:not(.eyebrow) strong {
  font-family: var(--font-display);
  font-style: italic;                 /* h1-equivalent signature */
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  display: block;
  max-width: 20ch;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.hero .wrap > p:not(.eyebrow):not(:first-of-type) {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40rem;
}

.proofs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.proofs li {
  border-top: 1px solid var(--rule-strong);
  padding-top: 1.1rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
@media (max-width: 820px) { .proofs ul { grid-template-columns: 1fr; gap: 1.6rem; } }

.trigger-note p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  max-width: 38ch;
}
.trigger-note p + p {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 44rem;
}

.notes .wrap > p { font-size: 1.05rem; color: var(--ink-soft); max-width: 44rem; }
.notes ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 3rem; }
.notes li { border-top: 1px solid var(--rule-strong); padding-top: 1.3rem; font-size: 0.97rem; color: var(--ink-soft); }
@media (max-width: 820px) { .notes ul { grid-template-columns: 1fr; gap: 2rem; } }

.matters-strip p, .matters-strip li {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
}
.matters-strip ul { list-style: none; padding: 0; }
.matters-strip li { padding: 0.9rem 0; border-top: 1px solid var(--rule); }

.about-strip .wrap > p:not(.attribution) {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.35;
  max-width: 34ch;
}
.about-strip .attribution { font-size: 0.9rem; color: var(--grey); margin-top: 1.5rem; }

.contact-cta .wrap > p:not(.eyebrow) { color: var(--ink-soft); max-width: 38rem; font-size: 1.1rem; }

.site-footer .wrap > p { max-width: 52rem; }
.site-footer .wrap > p:first-of-type { font-size: 0.95rem; }
.site-footer nav[aria-label="Language"] { margin-top: 1.5rem; }
.site-footer nav[aria-label="Language"] a {
  border: 1px solid #2a3b47;
  padding: 0.15rem 0.55rem;
  font-size: 0.82rem;
}

.proofs li strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.about-strip .wrap > p:not(.attribution) em { font-style: italic; }

.footer-corp { font-size: 0.82rem; color: #8ca2af; margin-top: 0.6rem; }

/* Interior pipeline pages (templates/page.hbs): the whole page body is
   markdown inside .article-body; give its h1 the article-head scale. */
.article-body h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  max-width: 24ch;
  margin: 2.5rem 0 1.4rem;
}
.about-strip .wrap > p + p:not(.attribution) { font-family: var(--sans); font-size: 0.85rem; color: var(--grey); max-width: none; margin-top: 2rem; }


/* ---------- Brand logo (replaces text wordmark) ---------- */

.logo-img { height: 34px; width: auto; display: block; }
.header-inner { align-items: center; }

/* ---------- Per-region accent tints (corporate family) ----------
   Visibly different per country; text accents kept contrast-safe. */

body { border-top: 3px solid var(--accent-bright); }

body.region-fr { --accent: #06679c; --accent-bright: #0880c2; --accent-deep: #054e77; }
body.region-be { --accent: #35599e; --accent-bright: #4472c4; --accent-deep: #28437a; }
body.region-de { --accent: #44546a; --accent-bright: #5a7089; --accent-deep: #333f50; }
body.region-nl { --accent: #027e95; --accent-bright: #02aac5; --accent-deep: #01617a; }
/* lu + default keep the brand cyan (root values) */

/* ---------- 4:5 figures (rounded) ---------- */
.figure-45 { margin: 0; }
.figure-45 .frame { aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; background: var(--paper-deep); }
.figure-45 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.figure-45 figcaption { margin-top: 0.7rem; font-size: 0.8rem; color: var(--grey); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(240px, 25rem); gap: 3rem 4.5rem; align-items: center; }
.page-head-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 19rem); gap: 2.5rem 4.5rem; align-items: start; }
@media (max-width: 820px) {
  .hero-grid, .page-head-grid { grid-template-columns: 1fr; }
  .hero-grid .figure-45, .page-head-grid .figure-45 { max-width: 21rem; }
}
