/* =====================================================================
   Soliman Consulting Services — www.solimancs.com
   Design system. Restrained, senior, editorial. McKinsey-grade quality.
   Two typefaces only: Source Serif 4 (headings) + Inter (body/UI).
   Self-hosted fonts — nothing phones home.
   ===================================================================== */

/* ---------- Fonts (self-hosted, variable, latin subset) ---------- */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/SourceSerif4-Variable.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/SourceSerif4-Italic-Variable.woff2") format("woff2");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ----------
   Palette: McKinsey-style deep-blue monochrome. A near-black deep blue base,
   a single vivid bright-blue accent, cool greys, white. No second decorative
   colour — the accent does all the work. (--navy* names retained = deep blue.) */
:root {
  --navy:       #051C2C;   /* deep blue — headlines, dark sections, primary fills */
  --navy-deep:  #03141E;   /* hero/masthead gradient depth */
  --navy-line:  rgba(5, 28, 44, 0.12);
  --accent:      #2251FF;  /* vivid bright blue — accent on white (AA: 5.7:1) */
  --accent-dark: #1B3FCC;  /* accent for hover/press on light */
  --accent-on-dark: #6AA1FF; /* lighter blue — accent text/links on deep blue (AA: 6.8:1) */
  --accent-soft: rgba(106, 161, 255, 0.55); /* hairline on dark */
  --ink:        #1A1A1A;
  --grey:       #5A6672;
  --grey-light: #7A828D;
  --light:      #F0F3F7;   /* cloud — section fills, card surfaces */
  --white:      #FFFFFF;
  --line-on-dark: rgba(255, 255, 255, 0.18);

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1200px;
  --measure: 68ch;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 10vw, 132px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; }

::selection { background: rgba(34, 81, 255, 0.18); }

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

/* ---------- Layout primitives ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }

.prose { max-width: var(--measure); }
.prose p + p { margin-top: 1.2em; }

/* Kicker — the visual signature: a short accent rule above an uppercase label */
.kicker {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.4rem;
  display: inline-block;
}
.kicker::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1rem;
}
.section--navy .kicker { color: var(--accent-on-dark); }

/* Headings */
.h-display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
}
.h-section {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.018em;
}
.section--navy .h-section { color: var(--white); }
.h-sub {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  color: var(--navy);
}
.lead {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}
.muted { color: var(--grey); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--accent); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy-line); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
/* On dark backgrounds */
.on-dark .btn--primary { background: var(--white); color: var(--navy); }
.on-dark .btn--primary:hover { background: var(--accent-on-dark); color: var(--navy); }
.on-dark .btn--outline { color: var(--white); border-color: var(--line-on-dark); }
.on-dark .btn--outline:hover { border-color: var(--accent-on-dark); color: var(--accent-on-dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 2.4rem; }

/* Arrow text link */
.arrow-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy-line);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.arrow-link .arw { color: var(--accent); transition: transform 0.25s var(--ease); }
.arrow-link:hover { color: var(--accent); border-color: var(--accent); }
.arrow-link:hover .arw { transform: translateX(4px); }
.section--navy .arrow-link { color: var(--white); border-color: var(--line-on-dark); }
.section--navy .arrow-link .arw { color: var(--accent-on-dark); }
.section--navy .arrow-link:hover { color: var(--accent-on-dark); border-color: var(--accent-on-dark); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.55em;
  transition: color 0.3s var(--ease);
}
.wordmark .wordmark__sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  transition: color 0.3s var(--ease);
}
.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent-on-dark);
  transition: width 0.25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

/* Scrolled / solid state */
.site-header.is-solid { background: var(--white); box-shadow: 0 1px 0 var(--navy-line); }
.site-header.is-solid .wordmark { color: var(--navy); }
.site-header.is-solid .wordmark__sub { color: var(--accent); }
.site-header.is-solid .nav a { color: var(--grey); }
.site-header.is-solid .nav a::after { background: var(--accent); }
.site-header.is-solid .nav a:hover,
.site-header.is-solid .nav a[aria-current="page"] { color: var(--navy); }
.site-header.is-solid .nav-toggle span { background: var(--navy); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--white); transition: 0.3s var(--ease); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    padding: 8px var(--gutter) 24px;
    box-shadow: 0 12px 24px rgba(19,31,56,0.12);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: 0.28s var(--ease);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { color: var(--navy); width: 100%; padding: 16px 0; border-bottom: 1px solid var(--navy-line); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero (home) ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding-top: 168px;
  padding-bottom: clamp(72px, 11vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::after { /* faint accent hairline at base — restrained signature */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft) 18%, var(--accent-soft) 82%, transparent);
  opacity: 0.7;
}
.hero h1 { color: var(--white); max-width: 16ch; }
.hero__role {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  letter-spacing: 0.01em;
  color: var(--accent-on-dark);
  margin: 1.6rem 0 0;
}
.hero__lead {
  margin-top: 2rem;
  max-width: 60ch;
  font-size: clamp(1.12rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
  font-weight: 300;
}

/* ---------- Inner-page masthead ---------- */
.masthead {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding-top: 152px;
  padding-bottom: clamp(48px, 7vw, 84px);
  position: relative;
}
.masthead::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft) 18%, var(--accent-soft) 82%, transparent);
  opacity: 0.7;
}
.masthead h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 18ch;
}
.masthead__standfirst {
  margin-top: 1.6rem;
  max-width: 56ch;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
}

/* ---------- Generic two-column editorial block ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.split--media { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr); }
.split--reverse > :first-child { order: 2; }
@media (max-width: 860px) {
  .split, .split--media { grid-template-columns: 1fr; gap: 28px; }
  .split--reverse > :first-child { order: 0; }
}

/* ---------- Proof strip ---------- */
.proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--navy-line);
}
.proof__item {
  padding: 1.6rem 2rem 1.6rem 0;
  border-bottom: 1px solid var(--navy-line);
}
.proof__item:nth-child(odd) { border-right: 1px solid var(--navy-line); padding-right: 2.4rem; }
.proof__item:nth-child(even) { padding-left: 2.4rem; }
.proof__term {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.35rem;
}
.proof__detail { color: var(--grey); font-size: 0.97rem; line-height: 1.5; }
@media (max-width: 720px) {
  .proof { grid-template-columns: 1fr; }
  .proof__item, .proof__item:nth-child(odd), .proof__item:nth-child(even) {
    border-right: 0; padding: 1.3rem 0;
  }
}
/* Reference links inside the proof strip and platform list — subtle, on-brand */
.proof a, .platform-list a, .prose a:not([class]) {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.proof a:hover, .proof a:focus-visible,
.platform-list a:hover, .platform-list a:focus-visible,
.prose a:not([class]):hover, .prose a:not([class]):focus-visible {
  color: var(--accent);
  border-color: var(--accent-dark);
}

/* ---------- "How can I help you?" cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
}
.card {
  background: var(--white);
  padding: clamp(28px, 3.4vw, 44px);
  position: relative;
  transition: background 0.3s var(--ease);
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { background: var(--light); }
.card:hover::before { transform: scaleX(1); }
.card__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.9rem; display: block;
}
.card h3 {
  font-family: var(--serif); font-weight: 600; color: var(--navy);
  font-size: 1.32rem; line-height: 1.2; margin-bottom: 0.85rem;
}
.card p { color: var(--grey); font-size: 1rem; line-height: 1.55; }
.card p strong, .card h3 strong { color: var(--navy); font-weight: inherit; }
@media (max-width: 720px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Practice / detail lists ---------- */
.feature-list { list-style: none; margin-top: 1.8rem; }
.feature-list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.8rem;
  border-bottom: 1px solid var(--navy-line);
  color: var(--ink);
  line-height: 1.55;
  max-width: 78ch;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 1.55rem;
  width: 9px; height: 2px; background: var(--accent);
}
.feature-list li:first-child { border-top: 1px solid var(--navy-line); }

/* ---------- Practice block header ---------- */
.practice + .practice { margin-top: clamp(56px, 8vw, 96px); }
.practice__audience {
  font-style: italic;
  font-family: var(--serif);
  color: var(--grey);
  font-size: 1.1rem;
  margin: 0.4rem 0 1.6rem;
}
.callout {
  margin-top: 2rem;
  padding: 1.4rem 0 1.4rem 1.6rem;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--navy);
  max-width: 60ch;
}

/* Sub-section inside a practice (e.g. compliance) */
.subblock { margin-top: clamp(40px, 6vw, 64px); }
.subblock h3 {
  font-family: var(--serif); color: var(--navy);
  font-size: 1.5rem; line-height: 1.2; margin-bottom: 1rem;
}

/* ---------- Independence band ---------- */
.independence p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.5;
  color: var(--white);
  max-width: 30ch;
}
.independence .prose-body {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
}

/* ---------- Insights: episode / platform lists ---------- */
.platform-list { list-style: none; margin-top: 0.5rem; }
.platform-list li {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--navy-line);
}
.platform-list li:first-child { border-top: 1px solid var(--navy-line); }
.platform-list .pl-title { font-weight: 700; color: var(--navy); font-size: 1.08rem; }
.platform-list .pl-detail { color: var(--grey); margin-top: 0.3rem; line-height: 1.5; }

/* ---------- Media slot (images added post-build) ---------- */
.media {
  position: relative;
  background: var(--light);
  overflow: hidden;
  border: 1px solid var(--navy-line);
}
.media--portrait { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 3 / 2; }
.media > img { width: 100%; height: 100%; object-fit: cover; }
.media__label {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 0.6rem; padding: 1.5rem;
  color: var(--grey); font-size: 0.85rem; letter-spacing: 0.02em;
}
.media__label::before {
  content: ""; width: 34px; height: 2px; background: var(--accent);
}
.media__label code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem; color: var(--navy);
  background: rgba(5,28,44,0.06); padding: 2px 6px;
}
.media--empty { background: var(--light); }
.media--empty .media__label { display: flex; }
figure.media { margin: 0; }
.media__caption {
  font-size: 0.85rem; color: var(--grey); margin-top: 0.7rem; line-height: 1.4;
}

/* ---------- Speaking gallery (variety strip) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(36px, 5vw, 60px);
}
.gallery .media { aspect-ratio: 4 / 5; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }

/* Wide image pair (e.g. event establishing shots) */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(36px, 5vw, 60px);
}
.duo .media { aspect-ratio: 3 / 2; }
@media (max-width: 700px) { .duo { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
  margin-top: 2.5rem;
}
.contact-route { background: var(--white); padding: clamp(28px, 3.5vw, 44px); }
.contact-route h3 { font-family: var(--serif); color: var(--navy); font-size: 1.3rem; margin-bottom: 0.7rem; }
.contact-route p { color: var(--grey); font-size: 1rem; line-height: 1.55; }
.mail-link {
  display: inline-block; margin-top: 1rem;
  font-weight: 600; color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--accent); padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.mail-link:hover { color: var(--accent-dark); }
@media (max-width: 640px) { .contact-routes { grid-template-columns: 1fr; } }

/* ---------- Enquiry form (Formspree) ---------- */
.enquiry-form { margin-top: clamp(40px, 6vw, 64px); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.55rem;
}
.form-field label span { color: var(--accent); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--navy-line);
  border-radius: 0;
  padding: 0.8em 0.9em;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-field textarea { resize: vertical; min-height: 132px; line-height: 1.55; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235A6672' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 81, 255, 0.12);
}
.form-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  margin-top: clamp(22px, 3vw, 32px);
}
.form-actions .btn { border: 0; }
.form-status { font-size: 0.95rem; color: var(--grey); margin: 0; }
.form-status.is-ok { color: var(--navy); font-weight: 600; }
.form-status.is-error { color: #B0241C; }
.enquiry-form.is-sent .form-grid,
.enquiry-form.is-sent .form-actions .btn { display: none; }
.enquiry-form.is-sent .form-actions { margin-top: 0; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding-block: clamp(48px, 7vw, 80px);
  font-size: 0.92rem;
}
.site-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.site-footer a:hover { color: var(--accent-on-dark); }
.footer-grid {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px;
  align-items: flex-start;
}
.footer-brand .wordmark { color: var(--white); margin-bottom: 0.9rem; }
.footer-meta { line-height: 1.7; }
.footer-meta .footer-loc { color: rgba(255,255,255,0.7); }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-bottom {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-on-dark);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
}
.footer-avail { font-style: italic; font-family: var(--serif); color: rgba(255,255,255,0.7); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--white); color: var(--navy); padding: 12px 18px; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Reveal-on-scroll (progressive enhancement) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.center { text-align: center; }
.eyebrow-note { font-size: 0.8rem; color: var(--grey-light); }
